/* ============================================================
   Formed — formed.co.nz
   2026 monochrome editorial ("Graya-grade"): bone field,
   charcoal ink, cinematic photography, oversized DM Sans,
   sharp square edges. Roboto carries body copy.
   ============================================================ */

:root {
  --bone: #F1EFEC;          /* page field */
  --panel: #FAF9F7;         /* raised light panel */
  --ink: #16140F;           /* charcoal ink */
  --ink-deep: #0E0D0A;      /* footer / dark band */
  --body: #55524C;          /* body copy on bone */
  --muted: #8A867F;
  --taupe: #7C735F;         /* the single brand accent — used sparingly */
  --cream: #F1E7DB;         /* brand light, over dark bands only */
  --warm-grey: #CAC3B2;
  --hero-sub: #D8CFC1;
  --hairline: rgba(22, 20, 15, .14);
  --hairline-soft: rgba(22, 20, 15, .09);
  --hairline-dark: rgba(241, 231, 219, .14);
  --placeholder: #DEDBD6;

  --font-display: 'DM Sans', sans-serif;
  --font-body: 'Roboto', sans-serif;

  --container: 1360px;
  --pad-x: clamp(20px, 4vw, 56px);
  --pad-section: clamp(80px, 10vw, 150px);
  --nav-h: 78px;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bone); }
body { font-family: var(--font-body); color: var(--ink); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: var(--ink); text-decoration: none; transition: color .25s ease, border-color .25s ease, background-color .25s ease, opacity .25s ease; }
a:hover { color: var(--muted); }
::selection { background: var(--ink); color: var(--bone); }
input::placeholder, textarea::placeholder { color: var(--muted); }
:focus-visible { outline: 2px solid var(--taupe); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: var(--bone);
  padding: 12px 22px; font-family: var(--font-display); font-size: 14px;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

/* ── Type ── */
.eyebrow {
  margin: 0 0 20px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--taupe);
}
.h-section {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.04; letter-spacing: -.03em;
  text-wrap: balance;
}
.arrow-link {
  display: inline-block;
  font-family: var(--font-display); font-size: 15px; font-weight: 500;
  border-bottom: 1px solid var(--taupe); padding-bottom: 3px;
}
.arrow-link:hover { color: var(--muted); border-color: var(--ink); }

/* ── Buttons — one style, sharp ── */
.btn {
  display: inline-block;
  background: var(--ink); color: var(--bone);
  font-family: var(--font-display); font-size: 15px; font-weight: 500;
  padding: 17px 34px; border-radius: 0; border: none; cursor: pointer;
}
.btn:hover { background: #000; color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bone); }
.btn--dark { background: var(--ink); color: var(--bone); }
.btn--dark:hover { background: #000; color: #fff; }

/* Hero buttons sit on film — light */
.hero .btn { background: var(--bone); color: var(--ink); }
.hero .btn:hover { background: #fff; }
.hero .btn--outline { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }
.hero .btn--outline:hover { border-color: #fff; background: transparent; color: #fff; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  height: var(--nav-h); padding: 0 var(--pad-x);
  background: rgba(241, 239, 236, .88);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline-soft);
}
.nav__logo { display: flex; align-items: center; flex: 0 0 auto; }
.nav__logo img { height: 28px; filter: invert(1); }   /* white mark → ink */
.nav__links { display: flex; align-items: center; gap: clamp(18px, 3vw, 40px); }
.nav__links a {
  font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid transparent; padding: 4px 0;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { border-bottom-color: var(--taupe); color: var(--ink); }
.nav__cta {
  flex: 0 0 auto;
  background: var(--ink); color: var(--bone);
  font-family: var(--font-display); font-size: 13.5px; font-weight: 500;
  letter-spacing: .04em; padding: 12px 24px; border-radius: 0;
}
.nav__cta:hover { background: #000; color: #fff; }

/* Over the film (home, top of page): transparent, light */
.nav--overlay:not(.nav--scrolled) {
  background: transparent; border-bottom-color: transparent;
  -webkit-backdrop-filter: none; backdrop-filter: none;
}
.nav--overlay:not(.nav--scrolled) .nav__logo img { filter: none; }
.nav--overlay:not(.nav--scrolled) .nav__links a { color: #fff; }
.nav--overlay:not(.nav--scrolled) .nav__cta { background: var(--bone); color: var(--ink); }
.nav--overlay:not(.nav--scrolled) .nav__burger span { background: #fff; }

.nav__burger {
  display: none; flex-direction: column; justify-content: center; gap: 6px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: none; cursor: pointer;
}
.nav__burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s ease; }
.nav-open .nav__burger span { background: var(--bone) !important; }
.nav-open .nav__burger span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-open .nav__burger span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 40;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: calc(var(--nav-h) + 42px) var(--pad-x) 42px;
  background: rgba(14, 13, 10, .97);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.nav-open .mobile-menu { opacity: 1; visibility: visible; }
.nav-open { overflow: hidden; }
.nav-open .nav { background: transparent; border-bottom-color: transparent; }
.nav-open .nav__logo img { filter: none !important; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu__links a {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(32px, 9vw, 44px); letter-spacing: -.03em;
  color: var(--cream); padding: 8px 0;
  border-bottom: 1px solid transparent; align-self: flex-start;
}
.mobile-menu__links a[aria-current="page"] { border-bottom-color: var(--taupe); }
.nav-open .mobile-menu__links a { animation: fadeUp .5s ease both; }
.nav-open .mobile-menu__links a:nth-child(2) { animation-delay: .05s; }
.nav-open .mobile-menu__links a:nth-child(3) { animation-delay: .1s; }
.nav-open .mobile-menu__links a:nth-child(4) { animation-delay: .15s; }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 18px; }
.mobile-menu__foot .btn { align-self: flex-start; background: var(--cream); color: var(--ink); }
.mobile-menu__contact { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu__contact a { font-size: 14px; color: var(--warm-grey); }

/* ── Sections ── */
.section { padding: var(--pad-section) var(--pad-x); }
.section--cream { background: var(--panel); color: var(--ink); border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); }
.section--flush-top { padding-top: 0; }
.section-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end;
  gap: 20px; margin-bottom: clamp(36px, 5vw, 72px);
}
.section-head--tight { margin-bottom: clamp(28px, 4vw, 48px); }
.section-head__intro { margin: 0; max-width: 38ch; font-size: 14.5px; line-height: 1.7; color: var(--body); }

/* ── Hero (film) ── */
.hero {
  position: relative; min-height: 92vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; background: var(--ink-deep); color: #fff;
}
.hero--video { min-height: 100svh; }
.hero__photo, .hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0;
  animation: fadeIn 1.2s ease .1s forwards, heroDrift 28s ease-in-out .1s infinite alternate;
}
@keyframes heroDrift { from { transform: scale(1); } to { transform: scale(1.06); } }
.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(10, 9, 7, .82) 0%,
    rgba(10, 9, 7, .28) 40%,
    rgba(10, 9, 7, .12) 70%,
    rgba(10, 9, 7, .35) 100%);
}
.hero__scrim--video { }
.hero__content {
  position: relative; width: 100%;
  max-width: var(--container); margin: 0 auto;
  padding: 140px var(--pad-x) 0;
}
.hero__content--video { padding-bottom: clamp(56px, 8vw, 100px); }
.hero__eyebrow {
  margin: 0 0 20px;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--hero-sub);
  animation: fadeUp .7s ease .15s both;
}
.hero__title {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(52px, 8vw, 128px);
  line-height: .98; letter-spacing: -.035em;
  color: #fff; max-width: 12ch; text-wrap: balance;
  animation: fadeUp .7s ease .25s both;
}
.hero__sub {
  margin: 26px 0 0; font-size: 17px; line-height: 1.65; font-weight: 300;
  color: var(--hero-sub); max-width: 54ch;
  animation: fadeUp .7s ease .35s both;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 40px 0 0; animation: fadeUp .7s ease .45s both; }
.hero__caption {
  position: absolute; right: var(--pad-x); bottom: 26px; margin: 0;
  font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  animation: fadeIn 1.2s ease .8s both;
}
@media (max-width: 700px) { .hero__caption { display: none; } }

/* ── Intro statement ── */
.intro-grid {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: minmax(260px, 1.35fr) minmax(260px, 1fr);
  gap: clamp(32px, 5vw, 100px); align-items: start;
}
.intro-grid__copy { padding-top: 10px; }
.intro-grid__copy p { margin: 0; font-size: 16.5px; line-height: 1.8; color: var(--body); }
.intro-grid .arrow-link { margin-top: 28px; color: var(--ink); }

/* ── Services index ── */
.services { border-top: 1px solid var(--hairline); }
.service {
  display: grid; grid-template-columns: 70px minmax(180px, 320px) 1fr;
  gap: clamp(16px, 3vw, 48px); align-items: baseline;
  padding: 30px 0; border-bottom: 1px solid var(--hairline);
  transition: background-color .3s ease, padding-left .3s ease;
}
.service:hover { background: rgba(22, 20, 15, .025); }
.service--index { grid-template-columns: 70px 1fr; padding: 30px 0; }
.service__num { font-family: var(--font-display); font-size: 13px; color: var(--taupe); }
.service__title { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -.02em; }
.service__body { margin: 0; font-size: 15px; line-height: 1.7; color: var(--body); }

/* ── Project cards ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.card { display: block; color: var(--ink); }
.card:hover { color: var(--ink); }
.card__media { overflow: hidden; background: var(--placeholder); aspect-ratio: 4 / 3; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.6,.2,1); }
.card:hover .card__media img { transform: scale(1.045); }
.card__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 16px 0 4px; border-bottom: 1px solid var(--hairline);
}
.card__title { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 19px; letter-spacing: -.01em; }
.card__tag { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--taupe); white-space: nowrap; }

/* ── Testimonial ── */
.testimonials { max-width: 1020px; margin: 0 auto; text-align: center; }
.testimonials__eyebrow { margin-bottom: 28px; }
.quotes { display: grid; }
.quote { grid-area: 1 / 1; opacity: 0; visibility: hidden; transition: opacity .5s ease, visibility .5s ease; }
.quote.is-active { opacity: 1; visibility: visible; }
.quote__text {
  margin: 0;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(24px, 3.2vw, 42px); line-height: 1.22; letter-spacing: -.02em;
  text-wrap: balance;
}
.quote__attr { margin: 30px 0 0; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); }
.pager { display: flex; justify-content: center; gap: 10px; margin-top: 44px; }
.pager__bar { width: 34px; height: 14px; padding: 6px 0; background: none; border: none; cursor: pointer; }
.pager__bar::before { content: ""; display: block; width: 34px; height: 2px; background: var(--placeholder); transition: background-color .3s ease; }
.pager__bar.is-active::before { background: var(--ink); }

/* ── CTA band (dark punch) ── */
.next-cta { background: var(--ink-deep); color: var(--cream); padding: clamp(72px, 9vw, 130px) var(--pad-x); }
.next-cta__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 32px;
}
.next-cta__title, .cta-band__title {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(34px, 4.6vw, 64px); letter-spacing: -.03em;
  color: var(--cream); max-width: 16ch; text-wrap: balance;
}
.cta-band__sub { margin: 18px 0 0; font-size: 16px; line-height: 1.7; color: var(--warm-grey); max-width: 50ch; }
.next-cta .btn { background: var(--cream); color: var(--ink); }
.next-cta .btn:hover { background: #fff; }

/* ── Page headers ── */
.page-head { max-width: var(--container); margin: 0 auto; padding: 180px var(--pad-x) clamp(48px, 6vw, 90px); }
.page-head__title {
  margin: 0;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(48px, 8vw, 120px); letter-spacing: -.035em; line-height: .98;
  text-wrap: balance;
}
.page-head__title--who { font-size: clamp(40px, 5.4vw, 84px); max-width: 18ch; line-height: 1.02; }
.page-head__intro { margin: 26px 0 0; font-size: 16.5px; line-height: 1.75; color: var(--body); max-width: 60ch; }

/* ── Case studies ── */
.case { padding: 0 var(--pad-x) clamp(80px, 10vw, 140px); }
.case__inner { max-width: var(--container); margin: 0 auto; }
.collage { display: grid; grid-template-columns: 2fr 1fr; gap: 26px; min-height: 320px; }
.collage--mirror { grid-template-columns: 1fr 2fr; }
.collage__main { overflow: hidden; background: var(--placeholder); }
.collage__main img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
.collage__stack { display: grid; grid-template-rows: 1fr 1fr; gap: 26px; }
.collage__cell { overflow: hidden; background: var(--placeholder); }
.collage__cell img { width: 100%; height: 100%; object-fit: cover; }
.case__strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 26px; }
.case__strip .collage__cell img { aspect-ratio: 4 / 3; }
@media (max-width: 700px) { .case__strip { grid-template-columns: 1fr; } }
.case__meta {
  display: grid; grid-template-columns: minmax(260px, 1.2fr) minmax(260px, 1fr);
  gap: clamp(28px, 4vw, 90px); padding-top: 36px;
}
.case__title-row { display: flex; flex-wrap: wrap; gap: 10px 26px; align-items: baseline; }
.case__title { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3vw, 44px); letter-spacing: -.025em; }
.case__location { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); }
.case__body { margin: 18px 0 0; font-size: 15.5px; line-height: 1.8; color: var(--body); }
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.pill { font-size: 12px; letter-spacing: .06em; color: var(--body); border: 1px solid var(--hairline); padding: 7px 14px; border-radius: 999px; }
.case__quote { margin: 0; border-left: 2px solid var(--taupe); padding-left: 26px; align-self: start; }
.case__quote p { margin: 0; font-family: var(--font-display); font-size: 18px; line-height: 1.5; color: var(--ink); }
.case__quote footer { margin-top: 14px; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); }

/* ── Values grid ── */
.values { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.value { border: 1px solid var(--hairline); padding: 32px 32px 36px; background: var(--panel); }
.value__title { margin: 0 0 12px; font-family: var(--font-display); font-weight: 500; font-size: 19px; }
.value__body { margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--body); }

/* ── Founder ── */
.founder {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.3fr);
  gap: clamp(36px, 5vw, 100px); align-items: center;
}
.founder__photo { overflow: hidden; background: var(--placeholder); }
.founder__photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; }
.founder__quote { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(28px, 3.2vw, 46px); letter-spacing: -.025em; line-height: 1.1; }
.founder__body { margin: 24px 0 0; font-size: 16px; line-height: 1.8; color: var(--body); }
.founder__body + .founder__body { margin-top: 18px; }
.founder__signoff { margin: 28px 0 0; font-family: var(--font-display); font-size: 16px; font-weight: 500; }

/* ── Credentials (dark band) ── */
.credentials { background: var(--ink-deep); padding: clamp(56px, 7vw, 90px) var(--pad-x); }
.credentials .eyebrow { color: var(--warm-grey); }
.credentials__inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px;
}
.credentials__badges { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(28px, 4vw, 56px); }
.credentials__badges img { height: 56px; }
.credentials .arrow-link { color: var(--cream); }
.credentials .arrow-link:hover { color: var(--warm-grey); }

/* ── Contact ── */
.contact-grid {
  max-width: var(--container); margin: 0 auto;
  padding: 180px var(--pad-x) clamp(80px, 10vw, 140px);
  display: grid; grid-template-columns: minmax(280px, 1.1fr) minmax(300px, 1fr);
  gap: clamp(40px, 6vw, 120px);
}
.contact-grid .page-head__title { font-size: clamp(52px, 8vw, 120px); line-height: .98; }
.contact-grid__intro { margin: 26px 0 0; font-size: 16.5px; line-height: 1.75; color: var(--body); max-width: 44ch; }
.contact-rows { display: flex; flex-direction: column; gap: 2px; margin-top: 48px; border-top: 1px solid var(--hairline); }
.contact-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--hairline); color: var(--ink);
}
a.contact-row:hover { color: var(--muted); }
.contact-row__label { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--taupe); }
.contact-row__value { font-family: var(--font-display); font-size: clamp(16px, 1.8vw, 21px); font-weight: 500; }
.contact-row__socials { display: flex; gap: 22px; }
.contact-row__socials a { font-family: var(--font-display); font-size: 16px; font-weight: 500; }

/* Enquiry form card */
.form-card { background: var(--ink-deep); color: var(--cream); padding: clamp(30px, 3.5vw, 52px); align-self: start; }
.form-card__title { margin: 0 0 6px; font-family: var(--font-display); font-weight: 500; font-size: 24px; letter-spacing: -.01em; }
.form-card__sub { margin: 0 0 30px; font-size: 14px; line-height: 1.6; color: var(--warm-grey); }
.form-fields { display: flex; flex-direction: column; gap: 18px; }
.form-fields label {
  display: flex; flex-direction: column; gap: 7px;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--warm-grey);
}
.form-fields input, .form-fields textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--cream);
  background: transparent; border: none; border-bottom: 1px solid rgba(241,231,219,.35);
  padding: 10px 0; outline: none; border-radius: 0;
  transition: border-color .25s ease;
}
.form-fields input:focus, .form-fields textarea:focus { border-bottom-color: var(--cream); }
.form-fields textarea { resize: vertical; }
.form-fields .field--invalid input, .form-fields .field--invalid textarea { border-bottom-color: #C4685A; }
.form-card .btn--dark { margin-top: 10px; background: var(--cream); color: var(--ink); }
.form-card .btn--dark:hover { background: #fff; }
.form-note { margin: 14px 0 0; font-size: 13px; line-height: 1.6; color: var(--warm-grey); }
.form-note--error { color: #C4685A; }
.form-note--error a { color: inherit; }
.form-success__title { margin: 0 0 10px; font-family: var(--font-display); font-weight: 500; font-size: 24px; color: var(--cream); }
.form-success__body { margin: 0; font-size: 15px; line-height: 1.7; color: var(--warm-grey); }
.form-success__body a { color: inherit; }
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ── Footer ── */
.footer { background: var(--ink-deep); color: var(--cream); border-top: 1px solid var(--hairline-dark); padding: clamp(48px, 6vw, 80px) var(--pad-x) 36px; }
.footer a { color: var(--warm-grey); }
.footer a:hover { color: var(--cream); }
.footer__inner { max-width: var(--container); margin: 0 auto; }
.footer__grid {
  display: grid; grid-template-columns: minmax(240px, 1.4fr) minmax(150px, .7fr) minmax(200px, 1fr);
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 44px; border-bottom: 1px solid var(--hairline-dark);
}
.footer__logo { height: 26px; margin-bottom: 20px; }
.footer__blurb { margin: 0; font-size: 14px; line-height: 1.7; color: #8A8375; max-width: 44ch; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col-head { font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--taupe); margin-bottom: 4px; }
.footer__col a { font-size: 14px; }
.footer__socials { display: flex; gap: 18px; margin-top: 6px; }
.footer__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 16px; padding-top: 26px;
}
.footer__copyright { margin: 0; font-size: 12.5px; color: #6E6759; }
.footer__badges { display: flex; align-items: center; gap: 28px; }
.footer__badges img { height: 38px; opacity: .85; }

/* ── Marquee (signature band) ── */
.marquee { overflow: hidden; padding: clamp(26px, 3vw, 44px) 0; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.marquee__track { display: flex; align-items: baseline; gap: clamp(32px, 4vw, 64px); width: max-content; animation: marquee 42s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ── Stat row (intro) ── */
.stats-row {
  max-width: var(--container); margin: clamp(48px, 6vw, 80px) auto 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid var(--hairline);
}
.stats-row .stat { padding: 26px 28px 0 0; }
.stat__value { font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 38px); font-weight: 500; letter-spacing: -.02em; }
.stat__label { margin-top: 6px; font-size: 12.5px; letter-spacing: .05em; color: var(--muted); }
.marquee__track span {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(40px, 6vw, 88px); letter-spacing: -.03em;
  color: var(--ink); white-space: nowrap;
}
.marquee__track .marquee__dot { color: var(--taupe); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Scroll reveal ── */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .6, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ── Animation ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    transition-duration: .01ms !important;
  }
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .intro-grid, .case__meta, .founder, .contact-grid, .footer__grid { grid-template-columns: 1fr; }
  .founder { align-items: start; }
  .contact-grid { gap: 56px; }
  .collage, .collage--mirror { grid-template-columns: 1fr; min-height: 0; }
  .collage__stack { grid-template-rows: none; grid-template-columns: 1fr 1fr; }
  .collage__cell img { aspect-ratio: 4 / 3; }
  .collage--mirror .collage__stack { order: 2; }
  .collage--mirror .collage__main { order: 1; }
}
@media (max-width: 700px) {
  .service { grid-template-columns: 48px 1fr; grid-template-areas: "num title" ". body"; row-gap: 10px; }
  .service--index { grid-template-columns: 44px 1fr; grid-template-areas: "num title"; }
  .service__num { grid-area: num; }
  .service__title { grid-area: title; }
  .service__body { grid-area: body; }
  .collage__stack { grid-template-columns: 1fr; }
  .hero__content { padding-top: 120px; }
}

/* ── Full sweep: TCH × Graya × WhiteFox polish ─────────────── */
/* Round buttons, soft radii on media & panels, ruled eyebrows,
   wider tracking, hover lift. */
.btn, .nav__cta { border-radius: 999px; }
.btn { transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .3s cubic-bezier(.2,.6,.2,1), box-shadow .3s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(22, 20, 15, .16); }
.nav__cta { padding: 12px 26px; }

.card__media, .collage__main, .collage__cell, .founder__photo { border-radius: 16px; }
.value { border-radius: 16px; }
.form-card { border-radius: 18px; }
.hero__caption { letter-spacing: .3em; }

.eyebrow { display: flex; align-items: center; gap: 12px; letter-spacing: .34em; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--taupe); flex: 0 0 auto; }
.testimonials .eyebrow { justify-content: center; }
.hero__eyebrow { letter-spacing: .34em; }
.nav__links a { letter-spacing: .26em; }

.quote__attr, .case__location, .contact-row__label, .footer__col-head { letter-spacing: .3em; }
.pill { border-radius: 999px; background: rgba(22, 20, 15, .03); }

/* ── Projects build-out ── */
.case__num { font-family: var(--font-display); font-size: 13px; color: var(--taupe); letter-spacing: .2em; display: block; width: 100%; margin-bottom: 8px; }
.case__cta { margin-top: clamp(28px, 4vw, 44px); }
.case { scroll-margin-top: 110px; }
.case__quote { background: var(--panel); border: 1px solid var(--hairline-soft); border-left: 2px solid var(--taupe); border-radius: 0 16px 16px 0; padding: 26px 28px; }

/* ── Mobile & motion polish ── */
.hero__video, .marquee__track { will-change: transform; backface-visibility: hidden; transform: translateZ(0); }
.hero__video { animation: fadeIn 1.6s ease .1s forwards, heroDrift 30s ease-in-out .1s infinite alternate; }
.reveal { transition: opacity .9s cubic-bezier(.25, .46, .45, .94), transform .9s cubic-bezier(.22, .61, .36, 1); }
@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stats-row .stat { padding-right: 16px; }
  .hero__title { font-size: clamp(44px, 12vw, 64px); }
  .hero__actions .btn { padding: 15px 26px; font-size: 14px; }
  .marquee__track span { font-size: clamp(34px, 9vw, 48px); }
  .page-head__title, .contact-grid .page-head__title { font-size: clamp(44px, 13vw, 76px); }
  .hero__content--video { padding-bottom: 48px; }
}

/* ── Testimonial blurb row ── */
.quotes-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(26px, 4vw, 48px); margin-top: clamp(28px, 4vw, 44px); }
.quote-card { margin: 0; border-top: 1px solid var(--taupe); padding-top: 22px; }
.quote-card blockquote { margin: 0; font-family: var(--font-display); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.5; letter-spacing: -.01em; color: var(--ink); }
.quote-card figcaption { margin-top: 14px; font-size: 11px; letter-spacing: .24em; text-transform: uppercase; color: var(--taupe); }
