:root {
  --ink: #080808;
  --ink-soft: #111111;
  --paper: #f3f0ea;
  --white: #ffffff;
  --muted: #a7a29a;
  --line: rgba(255, 255, 255, 0.16);
  --red: #c51920;
  --red-bright: #e0262e;
  --gold: #bd9b62;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1200px;
  --radius: 18px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea { font: inherit; }

button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--white);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(255,255,255,.1);
  background: rgba(8, 8, 8, 0.97);
}

.nav-shell {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-width: 214px;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-copy { display: grid; gap: 4px; }

.brand-name {
  color: var(--white);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.brand-tagline {
  color: var(--gold);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 26px);
}

.site-nav a {
  position: relative;
  color: #d8d4cd;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--red-bright);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--white); }

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.site-nav .nav-cta {
  padding: 12px 16px;
  border: 1px solid var(--red);
  color: var(--white);
  background: var(--red);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-nav .nav-cta:hover {
  border-color: var(--red-bright);
  background: var(--red-bright);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  width: 20px;
  height: 2px;
  background: var(--white);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span { display: block; }
.menu-toggle::before { transform: translateY(-5px); }
.menu-toggle::after { transform: translateY(5px); }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(2px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-2px) rotate(-45deg); }

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 82px);
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,.98) 0%, rgba(8,8,8,.8) 46%, rgba(8,8,8,.24) 100%),
    url("../img/backgrounds/red-folds.jpg") center 42% / cover;
  content: "";
  filter: saturate(.72) contrast(1.06);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(transparent, var(--ink));
  content: "";
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  padding-block: 72px;
}

.eyebrow {
  display: flex;
  margin: 0 0 22px;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--red-bright);
  content: "";
}

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2,
.display {
  color: var(--white);
  font-family: var(--serif);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}

h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 6.8vw, 7.3rem);
}

h1 em,
h2 em {
  color: var(--red-bright);
  font-weight: inherit;
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 34px;
  color: #d0ccc5;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
  border-color: var(--red);
  background: var(--red);
}

.button-primary:hover {
  border-color: var(--red-bright);
  background: var(--red-bright);
}

.button-light:hover {
  color: var(--ink);
  background: var(--white);
}

.hero-art {
  position: relative;
  min-height: 560px;
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: var(--ink-soft);
  box-shadow: 0 30px 80px rgba(0,0,0,.44);
}

.hero-card img {
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  right: 0;
  bottom: 0;
  width: 83%;
  height: 82%;
}

.hero-card-accent {
  top: 0;
  left: 0;
  width: 45%;
  height: 46%;
  border: 8px solid var(--ink);
}

.hero-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.74));
  content: "";
}

.hero-card-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: var(--white);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--red);
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  justify-content: space-around;
  gap: 36px;
  padding: 14px 20px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.ticker-track span::after {
  margin-left: 36px;
  color: #f0b6b8;
  content: "✦";
}

.section { padding-block: clamp(82px, 10vw, 140px); }
.section-tight { padding-block: clamp(64px, 7vw, 94px); }
.section-dark { background: #0b0b0b; }
.section-paper { color: #24211e; background: var(--paper); }
.section-red { background: var(--red); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .6fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 74px);
}

.section-heading h2 {
  max-width: 850px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 5.1vw, 5.5rem);
}

.section-paper .section-heading h2,
.section-paper h2,
.section-paper h3 { color: var(--ink); }

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-paper .section-heading p,
.section-paper .muted { color: #625e58; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d0d0d;
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  z-index: 2;
  background: #151515;
  transform: translateY(-5px);
}

.service-number {
  color: var(--red-bright);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.service-card h3 {
  max-width: 250px;
  margin: 66px 0 16px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  font-weight: 500;
  line-height: 1.05;
}

.service-card p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: .94rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.text-link::after {
  color: var(--red-bright);
  content: "↗";
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover::after { transform: translate(3px, -3px); }
.section-paper .text-link { color: var(--ink); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
}

.split-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.split-copy > p:not(.eyebrow) { color: #ccc7c0; }

.split-media {
  position: relative;
  min-height: 620px;
}

.split-media img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.split-media::before {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  width: 42%;
  height: 38%;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  content: "";
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
}

.stat {
  padding: 24px 18px;
  background: var(--ink);
}

.stat strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 500;
}

.stat span {
  color: var(--muted);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.work-card {
  position: relative;
  grid-column: span 6;
  overflow: hidden;
  min-height: 540px;
  border: 1px solid var(--line);
  background: #151515;
}

.work-card:nth-child(3n) { grid-column: span 5; }
.work-card:nth-child(4n) { grid-column: span 7; }

.work-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}

.work-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0,0,0,.92));
  content: "";
}

.work-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.work-copy {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 26px;
  left: 30px;
}

.work-kicker {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.work-copy h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.work-copy p { margin-bottom: 0; color: #d7d1ca; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0,0,0,.18);
}

.process-step {
  padding: 30px 28px 30px 0;
  border-right: 1px solid rgba(0,0,0,.18);
}

.process-step + .process-step { padding-left: 28px; }
.process-step:last-child { border-right: 0; }

.process-step span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.process-step h3 {
  margin: 48px 0 14px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 500;
}

.process-step p { margin: 0; color: #625e58; font-size: .92rem; }

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 90px);
  background: var(--red);
}

.cta-panel::after {
  position: absolute;
  top: -35%;
  right: -10%;
  width: 55%;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255,255,255,.04), 0 0 0 90px rgba(255,255,255,.03);
  content: "";
}

.cta-panel > * { position: relative; z-index: 2; }

.cta-panel h2 {
  max-width: 900px;
  margin-bottom: 34px;
  font-size: clamp(2.8rem, 6vw, 6rem);
}

.cta-panel p { max-width: 620px; color: #ffe9e9; }

.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.page-hero::after {
  position: absolute;
  top: -35%;
  right: -8%;
  width: 48vw;
  aspect-ratio: 1;
  border: 1px solid rgba(197,25,32,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(197,25,32,.035), 0 0 0 160px rgba(197,25,32,.02);
  content: "";
}

.page-hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .5fr);
  gap: 60px;
  align-items: end;
  min-height: 570px;
  padding-block: 90px 80px;
}

.page-hero h1 {
  max-width: 940px;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 7.3vw, 7.8rem);
}

.page-hero-copy {
  max-width: 460px;
  margin-bottom: 12px;
  color: #c9c4bd;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(240px, .48fr) minmax(0, 1fr);
  gap: clamp(50px, 9vw, 130px);
}

.intro-grid h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.lead-copy {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2.6rem);
  line-height: 1.3;
}

.copy-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 38px;
}

.copy-columns p { color: #625e58; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 22px 22px 22px 48px;
  border: 1px solid var(--line);
  color: #d0cbc4;
}

.feature-list li::before {
  position: absolute;
  left: 21px;
  color: var(--red-bright);
  content: "✦";
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.platform-list span {
  padding: 9px 14px;
  border: 1px solid var(--line);
  color: #d5d0ca;
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.big-stat {
  padding: clamp(50px, 7vw, 90px);
  color: var(--white);
  background: var(--red);
}

.big-stat strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 500;
  line-height: .8;
}

.big-stat p {
  max-width: 630px;
  margin-bottom: 0;
  color: #ffe4e5;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.contact-stack { display: grid; gap: 32px; }

.contact-item {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.contact-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.25;
}

.contact-item a:hover { color: var(--red-bright); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.field { display: grid; gap: 8px; }
.field-full { grid-column: 1 / -1; }

.field label {
  color: #c9c4bd;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #3a3835;
  border-radius: 0;
  padding: 15px 16px;
  color: var(--white);
  background: #111;
  transition: border-color 180ms ease, background 180ms ease;
}

.field textarea { min-height: 160px; resize: vertical; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red-bright);
  outline: 0;
  background: #151515;
}

.field select option { color: var(--white); background: #111; }

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: .83rem;
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  margin: 0;
  padding: 13px 16px;
  border: 1px solid var(--line);
}

.form-status.is-visible { display: block; }
.form-status.is-success { border-color: #4a825e; color: #c7f3d6; background: #102117; }
.form-status.is-error { border-color: #a94044; color: #ffd2d4; background: #291114; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #060606;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr .55fr .55fr;
  gap: 60px;
  padding-block: 68px 54px;
}

.footer-brand p {
  max-width: 420px;
  margin: 24px 0 0;
  color: var(--muted);
}

.footer-title {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a { color: #d1ccc5; }
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  padding-block: 24px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #77736d;
  font-size: .78rem;
}

.footer-bottom a:hover { color: var(--white); }

.legal-copy h2 {
  margin-top: 56px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.legal-copy p,
.legal-copy li { color: #5e5a54; }

.not-found {
  display: grid;
  min-height: 72svh;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 16px;
  color: var(--red-bright);
  font-size: clamp(6rem, 16vw, 13rem);
}

.not-found h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.not-found p { max-width: 560px; color: var(--muted); }

@media (max-width: 1080px) {
  .menu-toggle { display: grid; }

  .site-nav {
    position: fixed;
    z-index: 900;
    inset: 82px 0 auto;
    display: grid;
    max-height: calc(100svh - 82px);
    padding: 30px 28px 40px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(8,8,8,.99);
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 0;
    font-size: .9rem;
  }

  .site-nav .nav-cta { margin-top: 8px; text-align: center; }

  .hero .container { grid-template-columns: 1fr .7fr; gap: 40px; }
  .hero-art { min-height: 470px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(n+3) { border-top: 1px solid rgba(0,0,0,.18); }
}

@media (max-width: 820px) {
  .hero { min-height: auto; }
  .hero .container { grid-template-columns: 1fr; padding-block: 74px 80px; }
  .hero-art { min-height: 500px; }
  .hero-card-main { width: 76%; }
  .hero-card-accent { width: 43%; }
  .section-heading,
  .split,
  .page-hero .container,
  .intro-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .section-heading { gap: 24px; }
  .split-media,
  .split-media img { min-height: 500px; }
  .page-hero .container { min-height: 500px; gap: 30px; }
  .work-card,
  .work-card:nth-child(3n),
  .work-card:nth-child(4n) { grid-column: span 12; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-shell { min-height: 72px; }
  .site-nav { inset: 72px 0 auto; max-height: calc(100svh - 72px); }
  .brand { min-width: 0; }
  .brand img { width: 44px; height: 44px; }
  .brand-name { font-size: .66rem; }
  .brand-tagline { font-size: .48rem; }
  h1 { font-size: clamp(3rem, 16vw, 5rem); }
  .hero-art { min-height: 410px; }
  .hero-card-main { width: 84%; }
  .hero-card-accent { width: 48%; height: 43%; }
  .ticker-track { justify-content: flex-start; }
  .ticker-track span:nth-child(even) { display: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; }
  .split-media,
  .split-media img { min-height: 420px; }
  .stat-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 430px; }
  .work-copy { right: 20px; bottom: 20px; left: 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step,
  .process-step + .process-step {
    padding: 27px 0;
    border-right: 0;
    border-top: 1px solid rgba(0,0,0,.18);
  }
  .process-step:first-child { border-top: 0; }
  .process-step h3 { margin-top: 20px; }
  .copy-columns,
  .feature-list,
  .contact-form,
  .footer-main { grid-template-columns: 1fr; }
  .field-full,
  .form-note,
  .form-status,
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cta-panel { padding-inline: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
