
:root {
  --paper: #f2eee5;
  --paper-deep: #e6dfd2;
  --ink: #171715;
  --muted: #6f6a61;

  /* Brand gold, taken from the Ginger PR logo.
     --ginger      solid fills, and accents sitting on the dark ink bands
     --ginger-deep large display accents on cream (3.5:1)
     --ginger-ink  small accent text on either cream (4.7:1+)
     --on-ginger   text sitting on a gold fill (7.7:1) */
  --ginger: #d8a126;
  --ginger-deep: #a1761a;
  --ginger-ink: #7d5a14;
  --on-ginger: #171715;
  --line: rgba(23, 23, 21, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;

  /* Fluid spacing scale. Every gap on the page comes from this ladder, so
     the rhythm stays proportional from a 320px phone to a 1920px monitor. */
  --space-2xs: clamp(6px, 0.5vw, 9px);
  --space-xs: clamp(11px, 1vw, 16px);
  --space-sm: clamp(17px, 1.5vw, 25px);
  --space-md: clamp(26px, 2.4vw, 38px);
  --space-lg: clamp(38px, 3.6vw, 58px);
  --space-xl: clamp(54px, 5.2vw, 82px);
  --space-2xl: clamp(74px, 7.2vw, 112px);
  --space-3xl: clamp(92px, 9.4vw, 150px);

  /* Vertical padding inside a section. Two adjacent sections EACH apply this,
     so the space you actually see at a boundary is roughly double the value
     plus any padding on the last card. Kept generous, not cavernous. */
  --section-y: clamp(46px, 4.4vw, 72px);

  /* page gutter — never below 26px, so text is never flush to a phone edge */
  --gutter: max(26px, 6vw);

  /* comfortable reading measure — over-long lines are the main thing that
     makes body copy feel unprofessional on a wide monitor */
  --measure: 66ch;

  /* Display leading. Georgia's ascenders and descenders together span about
     0.9em, so anything under ~0.95 lets a 'g' on one line touch an 'h' on
     the next. These values keep the tight editorial look without collisions. */
  --lead-display: 0.98;
  --lead-title: 1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible {
  outline: 3px solid var(--ginger-ink);
  outline-offset: 5px;
}

.site-header {
  align-items: center;
  background: rgba(242, 238, 229, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 84px;
  left: 0;
  padding: 0 4vw;
  position: sticky;
  right: 0;
  top: 0;
  z-index: 50;
}

.brand {
  align-items: center;
  display: inline-flex;
  justify-self: start;
}

.brand-logo {
  display: block;
  height: 46px;
  width: auto;
}

.site-header nav {
  display: flex;
  gap: clamp(18px, 2.3vw, 44px);
}

.site-header nav a,
.header-cta {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-header nav a {
  color: #4f4b45;
  position: relative;
}

/* invisible padding so each link clears the 44px touch minimum */
.site-header nav a::before {
  content: "";
  inset: -15px 0;
  position: absolute;
}

.site-header nav a::after {
  background: var(--ginger-ink);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  align-items: center;
  display: inline-flex;
  justify-self: end;
  min-height: 44px;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: calc(100vh - 84px);
  overflow: hidden;
}

.hero-copy {
  align-self: center;
  padding: 11vh 5vw 12vh 8vw;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: var(--space-xs);
  letter-spacing: 0.18em;
  margin: 0 0 34px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--ginger-ink);
  content: "";
  height: 8px;
  width: 8px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(68px, 8vw, 138px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: var(--lead-display);
  margin: 0;
  max-width: 950px;
}

.hero h1 span {
  color: var(--ginger-deep);
  display: block;
  font-style: italic;
  margin-left: 0.42em;
  white-space: nowrap;
}

.hero-intro {
  color: #4c4943;
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.55;
  margin: 54px 0 0 11.5%;
  max-width: 620px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 42px 0 0 11.5%;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 18px;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 54px;
  padding: 0 25px;
  text-transform: uppercase;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-dark:hover {
  background: var(--ginger);
  color: var(--on-ginger);
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding-bottom: 5px;
  position: relative;
}

.text-link::before {
  content: "";
  inset: -13px 0;
  position: absolute;
}

.text-link span {
  color: var(--ginger-ink);
  margin-left: 7px;
}

.hero-editorial {
  align-items: center;
  background:
    linear-gradient(rgba(23, 23, 21, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 21, 0.05) 1px, transparent 1px),
    var(--ginger);
  background-size: 26px 26px;
  display: flex;
  justify-content: center;
  min-height: 620px;
  padding: 8vh 6vw;
  position: relative;
}

.paper {
  box-shadow: 0 25px 70px rgba(68, 46, 6, 0.3);
  color: var(--ink);
  position: absolute;
}

.paper-back {
  background: var(--ink);
  color: var(--paper);
  height: 56%;
  left: 12%;
  padding: 26px;
  top: 22%;
  transform: rotate(-10deg);
  width: 56%;
}

.paper-back span,
.paper-back small {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.paper-back strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(100px, 12vw, 190px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.1em;
  line-height: 0.78;
  margin: 12% 0 8%;
}

.paper-front {
  background: #f7f2e8;
  min-height: 530px;
  padding: 26px 28px 32px;
  right: 10%;
  transform: rotate(3.5deg);
  width: min(72%, 520px);
}

.paper-mast {
  align-items: center;
  border-bottom: 3px double var(--ink);
  border-top: 1px solid var(--ink);
  display: flex;
  font-size: 8px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.14em;
  padding: 8px 0;
}

.paper-kicker {
  color: var(--ginger-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 28px 0 12px;
  text-transform: uppercase;
}

.paper-front h2 {
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1.06;
  margin: 0;
}

.paper-rule {
  background: var(--ink);
  height: 1px;
  margin: 28px 0 18px;
}

.paper-columns {
  display: grid;
  font-size: 8px;
  font-weight: 800;
  grid-template-columns: repeat(3, 1fr);
  letter-spacing: 0.12em;
  line-height: 1.6;
}

.ginger-seal {
  align-items: center;
  background: var(--ginger);
  border-radius: 50%;
  bottom: 28px;
  color: var(--on-ginger);
  display: flex;
  flex-direction: column;
  height: 110px;
  justify-content: center;
  position: absolute;
  right: 32px;
  transform: rotate(-9deg);
  width: 110px;
}

.ginger-seal span {
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.ginger-seal b {
  font-family: var(--serif);
  font-size: 38px;
  font-style: italic;
  line-height: 1;
}

.proof-strip {
  background: var(--ink);
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 4vw;
}

.proof-strip div {
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 18px;
  min-height: 104px;
  padding: 18px 2vw;
}

.proof-strip div:last-child {
  border: 0;
}

.proof-strip strong {
  color: var(--ginger);
  font-family: var(--serif);
  font-size: 37px;
  font-style: italic;
  font-weight: 400;
}

.proof-strip span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-shell {
  margin: 0 auto;
  max-width: 1600px;
  padding: var(--section-y) var(--gutter);
}

.section-label {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 90px 1fr;
  margin-bottom: var(--space-xl);
  padding-top: var(--space-xs);
}

.section-label span,
.section-label p {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin: 0;
  text-transform: uppercase;
}

.section-label span {
  color: var(--ginger-ink);
}

.section-label-light span {
  color: var(--ginger);
}

.statement {
  display: grid;
  gap: clamp(26px, 3.4vw, 60px);
  grid-template-columns: 1.15fr 0.85fr;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(38px, 4.3vw, 72px);
  letter-spacing: -0.055em;
  line-height: 1.14;
  margin: 0;
}

em {
  color: var(--ginger-deep);
  font-weight: 400;
}

/* on the dark bands the full-strength gold is the readable one */
.work-section em,
.network-band em,
.contact-section em {
  color: var(--ginger);
}

.statement-aside {
  color: #535049;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  max-width: 560px;
  padding-top: 10px;
}

.statement-aside p {
  margin: 0 0 20px;
}

.capability-grid {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 92px;
}

.capability-card {
  border-left: 1px solid var(--line);
  min-height: 0;
  padding: var(--space-sm) var(--space-md) var(--space-lg);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.capability-card:last-child {
  border-right: 1px solid var(--line);
}

.capability-card:hover {
  background: var(--paper-deep);
  transform: translateY(-5px);
}

.capability-top {
  color: var(--ginger-ink);
  display: flex;
  font-size: 10px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.12em;
}

.capability-card h3 {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.14;
  margin: var(--space-xl) 0 var(--space-sm);
}

.capability-card p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.work-section {
  background: var(--ink);
  color: var(--paper);
}

.section-label-light {
  border-color: rgba(255, 255, 255, 0.2);
}

.work-heading {
  align-items: end;
  display: grid;
  gap: clamp(26px, 3.4vw, 60px);
  grid-template-columns: 1fr 0.65fr;
}

.work-heading h2,
.approach-heading h2,
.engagement-layout h2 {
  font-family: var(--serif);
  font-size: clamp(52px, 6.8vw, 105px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: var(--lead-title);
  margin: 0;
}

.work-heading p,
.approach-heading > p {
  color: #b5b0a7;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  max-width: 570px;
}

.credit-list {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: 86px;
}

.credit-row {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 18px;
  grid-template-columns: 50px 1.1fr 1fr 70px;
  min-height: 112px;
}

.credit-index {
  color: var(--ginger);
  font-size: 10px;
  font-weight: 800;
}

.credit-title {
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 45px);
  letter-spacing: -0.04em;
}

.credit-type {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.credit-type small {
  color: #aaa59b;
  display: block;
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 8px;
  text-transform: none;
}

.credit-year {
  color: #aaa59b;
  font-family: var(--serif);
  font-size: 18px;
}

.approach-grid {
  display: grid;
  gap: clamp(26px, 3.6vw, 64px);
  grid-template-columns: 0.9fr 1.1fr;
}

.approach-heading h2 {
  font-size: clamp(49px, 5.8vw, 90px);
}

.approach-heading > p {
  color: var(--muted);
  margin-top: 42px;
}

.proof-method {
  border-top: 1px solid var(--line);
  list-style: none;
  margin: 0;
  padding: 0;
}

.proof-method li {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 25px;
  grid-template-columns: 108px 1fr;
  padding: 30px 0 35px;
}

.proof-method > li > span {
  color: var(--ginger-ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-top: 7px;
  text-transform: uppercase;
}

.proof-method h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.035em;
  margin: 0 0 11px;
}

.proof-method p {
  max-width: var(--measure);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

.founder-section {
  background: var(--ginger);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  min-height: 780px;
}

.founder-monogram {
  align-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, rgba(23, 23, 21, 0.08), transparent);
  border-right: 1px solid rgba(23, 23, 21, 0.2);
  color: rgba(23, 23, 21, 0.92);
  display: flex;
  font-family: var(--serif);
  font-size: clamp(160px, 22vw, 360px);
  font-style: italic;
  justify-content: center;
  letter-spacing: -0.16em;
  line-height: 0.7;
  overflow: hidden;
  padding-right: 0.14em;
  text-shadow: 12px 14px 0 rgba(255, 255, 255, 0.08);
}

.founder-copy {
  align-self: center;
  max-width: 900px;
  padding: 90px 8vw;
}

.founder-copy .eyebrow::before {
  background: var(--ink);
}

/* the accent arrow would vanish against the gold founder panel */
.founder-copy .text-link span {
  color: var(--ink);
}

.founder-copy h2 {
  font-family: var(--serif);
  font-size: clamp(68px, 8vw, 126px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: var(--lead-display);
  margin: 0;
}

.founder-lead {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -0.035em;
  line-height: 1.22;
  margin: var(--space-lg) 0;
  max-width: 760px;
}

.founder-columns {
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 35px;
}

.founder-columns p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.engagement-layout {
  display: grid;
  gap: clamp(26px, 3.4vw, 60px);
  grid-template-columns: 0.92fr 1.08fr;
}

.engagement-layout h2 {
  font-size: clamp(48px, 5.3vw, 84px);
}

.steps {
  border-top: 1px solid var(--line);
}

.steps article {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 50px 0.8fr 1.2fr;
  padding: 28px 0;
}

.steps article > span {
  color: var(--ginger-ink);
  font-size: 9px;
  font-weight: 800;
}

.steps h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin: 0;
}

.steps p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.contact-section {
  align-items: center;
  background: var(--ink);
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  padding: var(--section-y) var(--gutter);
  position: relative;
  text-align: center;
}

.contact-section .eyebrow::before,
.network-band .eyebrow::before {
  background: var(--ginger);
}

.contact-section .eyebrow {
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.contact-section h2 {
  font-family: var(--serif);
  font-size: clamp(70px, 9vw, 145px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: var(--lead-display);
  margin: 0;
  position: relative;
  z-index: 2;
}

.contact-section > p:not(.eyebrow) {
  color: #b4afa7;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.55;
  margin: 48px auto 32px;
  max-width: 620px;
  position: relative;
  z-index: 2;
}

.button-light {
  background: var(--ginger);
  color: var(--on-ginger);
  position: relative;
  z-index: 2;
}

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

.contact-section small {
  color: #77736d;
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-top: 18px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}

.contact-mark {
  color: rgba(216, 161, 38, 0.12);
  font-family: var(--serif);
  font-size: min(70vw, 960px);
  font-style: italic;
  left: 50%;
  line-height: 0.8;
  position: absolute;
  top: 42%;
  transform: translate(-53%, -50%);
  user-select: none;
}

footer {
  align-items: center;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #8d8880;
  display: grid;
  font-size: 9px;
  grid-template-columns: 1fr auto 1fr;
  letter-spacing: 0.1em;
  min-height: 115px;
  padding: 0 4vw;
  text-transform: uppercase;
}

.brand-footer {
  color: white;
}

footer p:last-child {
  justify-self: end;
}

/* ==================================================================
   02 — Services
   ================================================================== */

.services-section {
  background: var(--paper-deep);
}

.service-list {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: var(--space-2xl);
}

.service-item {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: 46px 1fr;
  padding: var(--space-md) 3vw var(--space-lg) 0;
}

.service-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-item:nth-child(even) {
  padding-left: 3vw;
  padding-right: 0;
}

.service-number {
  color: var(--ginger-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding-top: 8px;
}

.service-body h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.16;
  margin: 0 0 var(--space-xs);
}

.service-body p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.service-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.service-sub li {
  border: 1px solid var(--line);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 7px 11px;
  text-transform: uppercase;
}

/* ==================================================================
   03 — Marathi film credits (inside the dark work band)
   ================================================================== */

.film-block {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
}

.film-heading {
  align-items: end;
  display: grid;
  gap: clamp(24px, 3.4vw, 60px);
  grid-template-columns: 1fr 0.65fr;
  margin-bottom: var(--space-xl);
}

.film-heading h3 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0;
}

.film-heading p {
  color: #b5b0a7;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 470px;
}

.film-grid {
  column-gap: clamp(18px, 2vw, 34px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.film-grid li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: -0.02em;
  padding: var(--space-sm) 0;
}

/* ==================================================================
   04 — Clients & institutions
   ================================================================== */

.clients-heading,
.team-heading {
  align-items: end;
  display: grid;
  gap: clamp(24px, 3.4vw, 60px);
  grid-template-columns: 1fr 0.65fr;
  margin-bottom: var(--space-2xl);
}

.clients-heading h2,
.team-heading h2 {
  font-family: var(--serif);
  font-size: clamp(48px, 5.6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: var(--lead-title);
  margin: 0;
}

.clients-heading p,
.team-heading p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
  max-width: 500px;
}

.client-groups {
  border-top: 1px solid var(--line);
}

.client-group {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(16px, 2.2vw, 36px);
  grid-template-columns: 220px 1fr;
  padding: var(--space-lg) 0;
}

.client-group h3 {
  color: var(--ginger-ink);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin: 0;
  padding-top: 7px;
  text-transform: uppercase;
}

.client-group ul {
  display: grid;
  gap: 0 clamp(18px, 2.2vw, 38px);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.client-group li {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
  padding: var(--space-2xs) 0;
}

/* ==================================================================
   06 — The team
   ================================================================== */

.advisor {
  background: var(--paper-deep);
  display: grid;
  gap: clamp(22px, 3vw, 48px);
  grid-template-columns: 0.6fr 1.4fr;
  padding: var(--space-xl) clamp(24px, 4vw, 64px);
}

.advisor-label span {
  color: var(--ginger-ink);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.advisor-label h3 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  margin: 0;
}

.advisor-body p {
  color: #4c4943;
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 var(--space-sm);
  max-width: var(--measure);
}

.advisor-body p:last-child {
  margin-bottom: 0;
}

.team-grid {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: var(--space-xl);
}

.team-card {
  border-left: 1px solid var(--line);
  min-height: 0;
  padding: var(--space-sm) var(--space-md) var(--space-lg);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.team-card:last-child {
  border-right: 1px solid var(--line);
}

.team-card:hover {
  background: var(--paper-deep);
  transform: translateY(-5px);
}

.team-role {
  color: var(--ginger-ink);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.14;
  margin: var(--space-xl) 0 var(--space-sm);
}

.team-card p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ==================================================================
   National associate network
   ================================================================== */

.network-band {
  background: var(--ink);
  color: var(--paper);
}

.network-inner {
  display: grid;
  gap: clamp(38px, 7vw, 110px);
  grid-template-columns: 0.85fr 1.15fr;
  margin: 0 auto;
  max-width: 1600px;
  padding: var(--section-y) var(--gutter);
}

.network-intro h2 {
  font-family: var(--serif);
  font-size: clamp(44px, 4.6vw, 74px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.02;
  margin: 0 0 30px;
}

.network-intro > p:not(.eyebrow) {
  color: #b5b0a7;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  margin: 0;
  max-width: 470px;
}

.network-list {
  align-content: start;
  column-gap: clamp(18px, 2vw, 34px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.network-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--serif);
  font-size: 18px;
  padding: var(--space-sm) 0;
}

/* ==================================================================
   Contact details
   ================================================================== */

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: var(--space-md) clamp(26px, 3.2vw, 56px);
  grid-template-columns: repeat(3, auto);
  justify-content: center;
  margin: 40px auto 46px;
  max-width: 1000px;
  padding-top: 40px;
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 2;
}

.contact-detail > span {
  color: var(--ginger);
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
}

.contact-detail address,
.contact-detail p {
  color: #d5d0c7;
  font-family: var(--serif);
  font-size: 16px;
  font-style: normal;
  line-height: 1.65;
  margin: 0;
}

.contact-detail a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  display: inline-block;
  padding: 6px 0 4px;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.contact-detail a:hover {
  border-color: var(--ginger);
  color: var(--ginger);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

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

footer .brand-logo {
  height: 38px;
}


/* long display words must never be able to burst the viewport */
h1,
h2,
h3,
.lead {
  overflow-wrap: break-word;
}

/* keep full-bleed bands from stretching on very wide screens */
.proof-strip,
footer {
  padding-left: max(4vw, calc((100vw - 1600px) / 2));
  padding-right: max(4vw, calc((100vw - 1600px) / 2));
}

/* ------------------------------------------------------------------
   Mobile navigation
   ------------------------------------------------------------------ */

.nav-toggle {
  align-items: center;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 4px;
  height: 44px;
  justify-content: center;
  justify-self: end;
  padding: 0;
  width: 44px;
}

.nav-toggle span {
  background: var(--ink);
  display: block;
  height: 1.5px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  width: 18px;
}

.site-header[data-nav="open"] .nav-toggle span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.site-header[data-nav="open"] .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header[data-nav="open"] .nav-toggle span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.nav-cta {
  display: none;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header nav {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 40px rgba(23, 23, 21, 0.09);
    display: grid;
    gap: 0;
    left: 0;
    max-height: calc(100vh - 84px);
    max-height: calc(100dvh - 84px);
    opacity: 0;
    overflow-y: auto;
    padding: 4px 4vw 20px;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
    visibility: hidden;
  }

  .site-header[data-nav="open"] nav {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .site-header nav a {
    align-items: center;
    border-bottom: 1px solid var(--line);
    display: flex;
    font-family: var(--serif);
    font-size: 21px;
    font-weight: 400;
    letter-spacing: -0.03em;
    min-height: 56px;
    text-transform: none;
  }

  .site-header nav a::after,
  .site-header nav a::before {
    display: none;
  }

  .site-header nav .nav-cta {
    border-bottom: 0;
    color: var(--ginger-ink);
    display: flex;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-top: 10px;
    text-transform: uppercase;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    min-height: 670px;
    padding: var(--space-2xl) var(--gutter);
  }

  .hero-intro,
  .hero-actions {
    margin-left: 0;
  }

  .hero-editorial {
    min-height: 720px;
  }

  .paper-front {
    max-width: 520px;
  }

  .proof-strip {
    grid-template-columns: 1fr 1fr;
  }

  .proof-strip div:nth-child(2) {
    border-right: 0;
  }

  .proof-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .capability-card:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .capability-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .founder-section {
    grid-template-columns: 1fr;
  }

  .founder-monogram {
    border-bottom: 1px solid rgba(23, 23, 21, 0.2);
    border-right: 0;
    min-height: 450px;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
    padding: 0 var(--gutter);
  }

  .site-header nav {
    max-height: calc(100vh - 70px);
    max-height: calc(100dvh - 70px);
    padding: 4px 20px 20px;
  }

  .hero {
    min-height: calc(100vh - 70px);
  }

  .brand-name {
    font-size: 19px;
  }

  .brand-mark {
    font-size: 20px;
    height: 34px;
    width: 34px;
  }

  .header-cta {
    font-size: 9px;
    text-align: right;
  }

  .hero-copy {
    min-height: 620px;
    padding: var(--space-2xl) var(--gutter);
  }

  .hero-copy,
  .hero-editorial {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 90px);
    line-height: var(--lead-display);
  }

  .hero h1 span {
    margin-left: 0.13em;
    white-space: normal;
  }

  .hero-intro {
    font-size: 18px;
    margin-top: var(--space-lg);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-editorial {
    min-height: 610px;
    padding: var(--space-xl) var(--gutter);
  }

  .paper-back {
    height: 51%;
    left: 3%;
    top: 25%;
    width: 65%;
  }

  .paper-front {
    min-height: 460px;
    padding: 21px;
    right: 5%;
    width: 82%;
  }

  .paper-front h2 {
    font-size: 38px;
  }

  .ginger-seal {
    height: 90px;
    right: 22px;
    width: 90px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    padding: 0 var(--gutter);
  }

  .proof-strip div,
  .proof-strip div:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
  }

  .section-shell {
    padding: var(--section-y) var(--gutter);
  }

  .section-label {
    grid-template-columns: 50px 1fr;
    margin-bottom: var(--space-2xl);
  }

  .statement,
  .work-heading,
  .approach-grid,
  .engagement-layout {
    gap: var(--space-lg);
    grid-template-columns: 1fr;
  }

  .lead {
    font-size: 40px;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    margin-top: var(--space-xl);
  }

  .capability-card,
  .capability-card:nth-child(2),
  .capability-card:last-child {
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    min-height: 0;
  }

  .capability-card h3 {
    margin-top: var(--space-2xl);
  }

  .work-heading h2,
  .approach-heading h2,
  .engagement-layout h2 {
    font-size: 52px;
  }

  .credit-row {
    gap: 10px;
    grid-template-columns: 26px 1fr 48px;
    padding: 22px 0;
  }

  .credit-title {
    font-size: 29px;
  }

  .credit-type {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .credit-year {
    font-size: 14px;
  }

  .proof-method li {
    grid-template-columns: 85px 1fr;
  }

  .founder-monogram {
    font-size: 58vw;
    min-height: 0;
  }

  .founder-copy {
    padding: var(--space-2xl) var(--gutter);
  }

  .founder-copy h2 {
    font-size: 68px;
  }

  .founder-columns {
    grid-template-columns: 1fr;
  }

  .steps article {
    grid-template-columns: 36px 1fr;
  }

  .steps article p {
    grid-column: 2;
  }

  .contact-section {
    min-height: 0;
    padding: var(--section-y) var(--gutter);
  }

  .contact-section h2 {
    font-size: clamp(34px, 14.5vw, 95px);
  }

  footer {
    gap: var(--space-sm);
    grid-template-columns: 1fr 1fr;
    padding: var(--space-md) var(--space-md);
  }

  footer > p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 1100px) {
  .service-list {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item:nth-child(odd),
  .service-item:nth-child(even) {
    border-right: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .film-heading,
  .clients-heading,
  .team-heading {
    gap: var(--space-lg);
    grid-template-columns: 1fr;
  }

  .film-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-group {
    gap: var(--space-sm);
    grid-template-columns: 1fr;
  }

  .advisor {
    gap: var(--space-md);
    grid-template-columns: 1fr;
    padding: var(--space-xl) var(--space-md);
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
  }

  .team-card:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .team-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .network-inner {
    gap: var(--space-lg);
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .brand-logo {
    height: 36px;
  }

  .service-body h3 {
    font-size: 23px;
  }

  .film-block {
    margin-top: 68px;
    padding-top: 40px;
  }

  .film-heading h3 {
    font-size: 32px;
  }

  .film-grid,
  .client-group ul {
    grid-template-columns: 1fr;
  }

  .clients-heading h2,
  .team-heading h2 {
    font-size: 46px;
  }

  .advisor {
    padding: var(--space-lg) var(--space-md);
  }

  .advisor-label h3 {
    font-size: 34px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card,
  .team-card:nth-child(2),
  .team-card:last-child {
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    min-height: 0;
  }

  .team-card h3 {
    margin-top: var(--space-lg);
  }

  .network-inner {
    padding: var(--space-2xl) var(--gutter);
  }

  .network-intro h2 {
    font-size: 44px;
  }

  .network-list {
    grid-template-columns: 1fr 1fr;
  }

  .contact-details {
    gap: 26px;
    grid-template-columns: 1fr;
    justify-content: stretch;
    text-align: center;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  footer .brand-logo {
    height: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
