/* ==========================================================================
   THE Partners Group: Design System v3  "Operator's Editorial"
   --------------------------------------------------------------------------
    1. Tokens                 8. Section rhythm & heads
    2. Reset                  9. Cards, grids, proof components
    3. Typography            10. Service page system
    4. Layout & grid         11. Engagement models
    5. Motion primitives     12. CTA system
    6. Header / nav          13. Forms & intake
    7. Hero system           14. Footer / responsive / motion-off / print
   ========================================================================== */

/* ==========================================================================
   1. TOKENS
   ========================================================================== */
:root {
  /* Brand */
  --olive: #3A4632;
  --olive-deep: #212A1B;
  --olive-mid: #2E3826;
  --olive-soft: #46543C;
  --sage: #7B8E6E;
  --sage-dark: #5C6B4F;
  --gold: #C6B683;
  --gold-bright: #D9CB9E;
  --gold-dark: #A8965F;
  --charcoal: #24262A;
  --slate: #55595F;
  --slate-light: #7C8087;
  --ivory: #F7F5F2;
  --bone: #EFEBE4;
  --linen: #E6E1D8;
  --white: #FFFFFF;

  --line: #E2DDD5;
  --line-strong: #D2CCC1;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-dark-strong: rgba(255, 255, 255, 0.26);

  /* Type */
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --step--2: clamp(0.69rem, 0.68rem + 0.06vw, 0.72rem);
  --step--1: clamp(0.81rem, 0.79rem + 0.11vw, 0.87rem);
  --step-0:  clamp(1rem, 0.97rem + 0.16vw, 1.08rem);
  --step-1:  clamp(1.14rem, 1.09rem + 0.24vw, 1.28rem);
  --step-2:  clamp(1.33rem, 1.24rem + 0.42vw, 1.6rem);
  --step-3:  clamp(1.6rem, 1.46rem + 0.66vw, 2.05rem);
  --step-4:  clamp(1.95rem, 1.74rem + 1.02vw, 2.6rem);
  --step-5:  clamp(2.35rem, 2.04rem + 1.5vw, 3.3rem);
  --step-6:  clamp(2.8rem, 2.35rem + 2.2vw, 4.2rem);
  --display: clamp(2.6rem, 1.3rem + 5.2vw, 5.8rem);
  --display-sm: clamp(2.2rem, 1.45rem + 3.3vw, 4.1rem);

  /* Spacing */
  --s-1: 0.5rem;
  --s-2: 0.75rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 2rem;
  --s-6: 3rem;
  --s-7: 4rem;
  --s-8: 6rem;
  --s-9: 8rem;
  /* Mobile gets its own rhythm: tighter, but never cramped. */
  --section-y: clamp(4rem, 8vh + 1.5rem, 8.5rem);
  --section-y-lg: clamp(5rem, 11vh + 2rem, 11rem);

  /* Structure */
  --container: 1240px;
  --container-wide: 1480px;
  --container-text: 700px;
  --gutter: clamp(1.25rem, 4vw, 3.5rem);
  --header-h: 84px;
  --radius: 2px;
  --tap: 48px; /* minimum touch target */

  /* Elevation: warm, never grey */
  --shadow-1: 0 1px 2px rgba(33, 42, 27, 0.04), 0 2px 8px -4px rgba(33, 42, 27, 0.06);
  --shadow-2: 0 2px 4px rgba(33, 42, 27, 0.04), 0 12px 28px -14px rgba(33, 42, 27, 0.18);
  --shadow-3: 0 4px 8px rgba(33, 42, 27, 0.05), 0 32px 64px -32px rgba(33, 42, 27, 0.32);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 0.28s;
  --dur: 0.6s;
  --dur-slow: 1.1s;

  --py: 0px;
  --px: 0px;
}

/* Paper grain. A single tiled SVG, no image request, invisible until you
   look for it: which is the point. */
.grain::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}

.section--green .grain::before,
.grain--light::before {
  mix-blend-mode: screen;
  opacity: 0.35;
}

/* ==========================================================================
   2. RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  body { overflow-x: hidden; }
}

img, svg, video { max-width: 100%; display: block; }
picture { display: contents; }
a { color: inherit; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; }
::selection { background: var(--gold); color: var(--olive); }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--olive);
  line-height: 1.08;
  letter-spacing: -0.005em;
  text-wrap: balance;
  /* Never break inside a word in a heading. `overflow-wrap: break-word` is what
     allowed a line to begin with a comma. Long words are handled by sizing. */
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 { font-size: var(--display-sm); font-weight: 400; }
h2 { font-size: var(--step-5); line-height: 1.12; font-weight: 400; }
h3 { font-size: var(--step-2); line-height: 1.2; font-weight: 600; }
h4 { font-size: var(--step-1); font-weight: 600; }

.accent { font-style: italic; font-weight: 400; color: var(--gold-dark); }
.section--green .accent, .hero .accent, .cta-section .accent,
.page-hero .accent, .manifesto .accent { color: var(--gold); }

p { max-width: 68ch; text-wrap: pretty; }

.lead {
  font-size: var(--step-1);
  line-height: 1.6;
  color: var(--slate);
  max-width: 56ch;
}

/* Eyebrow: index number + tracked label + hairline */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: var(--s-4);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.55;
}

.eyebrow-num {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold-dark);
  text-transform: none;
}

.section-intro--center .eyebrow { justify-content: center; }

.hero .eyebrow, .page-hero .eyebrow, .section--green .eyebrow,
.cta-section .eyebrow, .the-band .eyebrow, .manifesto .eyebrow { color: var(--gold); }
.section--green .eyebrow-num, .cta-section .eyebrow-num,
.the-band .eyebrow-num, .manifesto .eyebrow-num, .page-hero .eyebrow-num { color: var(--gold-bright); }

.rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  border: 0;
  margin: var(--s-4) 0;
  transform: scaleX(var(--rule-x, 1));
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease-out);
}
.rule--center { margin-inline: auto; transform-origin: center; }

/* Badge: used to label representative work honestly */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  background: var(--white);
}

.badge::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
}

.badge--dark {
  color: var(--gold);
  border-color: var(--line-dark-strong);
  background: transparent;
}

/* Icon language: 24px grid, 1.25 stroke, currentColor, never filled */
.icon {
  width: 30px; height: 30px;
  stroke: currentColor;
  stroke-width: 1.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.section--green .icon, .the-band .icon { color: var(--gold); }

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }
.container--text { max-width: var(--container-text); }

.section { padding-block: var(--section-y); position: relative; }
.section--lg { padding-block: var(--section-y-lg); }
.section--ivory { background: var(--ivory); }
.section--bone { background: var(--bone); }
.section--green { background: var(--olive); color: rgba(255, 255, 255, 0.86); }
.section--deep { background: var(--olive-deep); color: rgba(255, 255, 255, 0.86); }

.section--green h2, .section--green h3, .section--green h4,
.section--deep h2, .section--deep h3, .section--deep h4 { color: var(--white); }
.section--green p, .section--deep p { color: rgba(255, 255, 255, 0.76); }
.section--green .lead, .section--deep .lead { color: rgba(255, 255, 255, 0.8); }

/* Hairline that separates sections without a heavy border */
.section--rule-top { border-top: 1px solid var(--line); }

/* Corner ticks: linework detail on layered surfaces */
.ticks { position: relative; }
.ticks::before, .ticks::after {
  content: "";
  position: absolute;
  width: 10px; height: 10px;
  border: 1px solid var(--gold);
  opacity: 0.6;
  pointer-events: none;
}
.ticks::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.ticks::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

.section-intro { max-width: var(--container-text); margin-bottom: var(--s-7); }
.section-intro--center { margin-inline: auto; text-align: center; }
.section-intro--center p { margin-inline: auto; }
.section-intro p { margin-top: var(--s-3); color: var(--slate); }
.section--green .section-intro p, .section--deep .section-intro p { color: rgba(255, 255, 255, 0.74); }

/* Editorial split with a sticky heading column */
.split { display: grid; gap: var(--s-6); grid-template-columns: 1fr; align-items: start; }
.split-heading h2 { max-width: 15ch; }
.split-body p { color: var(--slate); }
.split-body p + p { margin-top: var(--s-4); }
.section--green .split-body p, .section--deep .split-body p { color: rgba(255, 255, 255, 0.78); }

/* ==========================================================================
   5. MOTION PRIMITIVES  (contract with assets/js/main.js)
   ========================================================================== */
[data-parallax] { transform: translate3d(var(--px), var(--py), 0); }

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

.js [data-reveal-soft] { opacity: 0; transition: opacity 1s var(--ease-out); }
.js [data-reveal-soft].is-in { opacity: 1; }

.js [data-reveal-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
}
.js [data-reveal-stagger].is-in > * { opacity: 1; transform: none; }

.js [data-reveal] .rule { --rule-x: 0; }
.js [data-reveal].is-in .rule { --rule-x: 1; transition-delay: 0.25s; }

/* Animated line accent: draws itself across the section */
.line-accent {
  height: 1px;
  background: var(--line);
  transform: scaleX(var(--line-x, 1));
  transform-origin: left;
  transition: transform 1.4s var(--ease-out);
}
.section--green .line-accent, .section--deep .line-accent { background: var(--line-dark); }
.js [data-line] { --line-x: 0; }
.js [data-line].is-in { --line-x: 1; }

/* Masked image reveal */
.js [data-img-reveal] { clip-path: inset(0 0 100% 0); transition: clip-path 1.25s var(--ease-out); }
.js [data-img-reveal].is-in { clip-path: inset(0 0 0 0); }
.js [data-img-reveal] img { transform: scale(1.26); transition: transform 1.6s var(--ease-out); }
.js [data-img-reveal].is-in img { transform: scale(1); }

/* Split headline */
.w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.12em; margin-bottom: -0.12em; }
.js .w-in {
  display: inline-block;
  transform: translate3d(0, 105%, 0) rotate(2deg);
  transform-origin: left bottom;
  opacity: 0;
  transition: transform 1.05s var(--ease-out), opacity 1.05s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 52ms);
}
.js [data-split].is-in .w-in { transform: none; opacity: 1; }

/* Scroll-fill copy */
.fill-word { color: color-mix(in srgb, var(--fill-on) calc(var(--o, 1) * 100%), var(--fill-off)); transition: color 0.18s linear; }
@supports not (color: color-mix(in srgb, red 50%, blue)) { .fill-word { color: var(--fill-on); } }

.frame { position: relative; overflow: hidden; background: var(--bone); }
.frame img { width: 100%; height: 100%; object-fit: cover; }

.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 300;
  background: var(--gold);
  transform: scaleX(var(--progress, 0));
  transform-origin: left;
  pointer-events: none;
}

.curtain { display: none; position: fixed; inset: 0; z-index: 400; background: var(--olive); pointer-events: none; transform-origin: top; }
.js .curtain { display: block; animation: curtain-lift 0.72s var(--ease-in-out) 0.1s forwards; }
@keyframes curtain-lift { to { transform: translate3d(0, -100%, 0); } }

/* ==========================================================================
   6. HEADER / NAV
   ========================================================================== */
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--olive); color: var(--white); padding: 0.75rem 1.25rem; z-index: 500; text-decoration: none; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* Android Chrome paints a grey box on tap; our own states already show intent. */
a, button, summary, .btn, .capability, .engagement-card {
  -webkit-tap-highlight-color: transparent;
}
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  background: transparent;
  transition: background-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(33, 42, 27, 0.4);
}
.site-header.is-hidden { transform: translate3d(0, -100%, 0); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); min-height: var(--header-h); transition: min-height 0.4s var(--ease-out); }
.is-scrolled .header-inner { min-height: 68px; }

.brand { display: block; position: relative; text-decoration: none; flex-shrink: 0; }
.brand-logo { height: 52px; width: auto; transition: height 0.4s var(--ease-out), opacity 0.4s var(--ease-out); }
.brand-logo--light { position: absolute; inset: 0; opacity: 0; }
.is-scrolled .brand-logo { height: 44px; }
.header-over-hero:not(.is-scrolled) .brand-logo--dark { opacity: 0; }
.header-over-hero:not(.is-scrolled) .brand-logo--light { opacity: 1; }

.site-nav > ul { display: flex; align-items: center; gap: clamp(0.9rem, 1.7vw, 1.9rem); }
.site-nav a {
  position: relative; display: inline-block;
  font-size: 0.88rem; font-weight: 500; color: var(--charcoal);
  text-decoration: none; padding: 0.35rem 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.site-nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.site-nav a:not(.nav-cta):hover::after,
.site-nav a:not(.nav-cta):focus-visible::after,
.site-nav a[aria-current="page"]:not(.nav-cta)::after { transform: scaleX(1); transform-origin: left; }
.site-nav a[aria-current="page"] { color: var(--olive); font-weight: 600; }
.header-over-hero:not(.is-scrolled) .site-nav a { color: rgba(255, 255, 255, 0.9); }
.header-over-hero:not(.is-scrolled) .site-nav a[aria-current="page"] { color: var(--white); }

.site-nav .nav-cta {
  border: 1px solid var(--olive); border-radius: var(--radius);
  padding: 0.62rem 1.25rem; color: var(--olive); font-weight: 600;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  overflow: hidden; isolation: isolate;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.site-nav .nav-cta::before { content: ""; position: absolute; inset: 0; background: var(--olive); transform: translate3d(0, 101%, 0); transition: transform 0.45s var(--ease-out); z-index: -1; }
.site-nav .nav-cta:hover { color: var(--white); }
.site-nav .nav-cta:hover::before { transform: none; }
.header-over-hero:not(.is-scrolled) .nav-cta { border-color: rgba(255, 255, 255, 0.6); color: var(--white); }
.header-over-hero:not(.is-scrolled) .nav-cta::before { background: var(--white); }
.header-over-hero:not(.is-scrolled) .nav-cta:hover { color: var(--olive); border-color: var(--white); }

/* --- Services mega-menu (desktop) --- */
.header-inner { position: relative; }
.has-mega { position: static; }
.has-mega > a { display: inline-flex; align-items: center; gap: 0.4rem; }
.mega-caret {
  width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px); opacity: 0.6;
  transition: transform 0.3s var(--ease-out);
}
.has-mega:hover .mega-caret, .has-mega:focus-within .mega-caret { transform: rotate(225deg) translateY(-2px); }

.mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-3);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.3s var(--ease-out), transform 0.35s var(--ease-out), visibility 0.3s;
  z-index: 5;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; transform: none; }

.mega-inner { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: var(--s-6); padding-block: var(--s-5); }
.mega-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
.mega-head { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: var(--s-2); }
.mega ul { display: block; }
.mega li { width: 100%; }
.mega a { display: flex; gap: 0.7rem; padding: 0.42rem 0; font-size: 0.9rem; color: var(--charcoal); line-height: 1.35; }
.mega a::after { display: none; }
.mega a:hover { color: var(--olive); }
.mega-num { font-family: var(--font-serif); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--linen); }
.mega a:hover .mega-num { color: var(--gold); }
.mega-aside { border-left: 1px solid var(--line); padding-left: var(--s-5); }
.mega-industries { columns: 2; column-gap: var(--s-4); margin-bottom: var(--s-3); }
.mega-industries a { font-size: 0.86rem; }
.header-over-hero:not(.is-scrolled) .mega a { color: var(--charcoal); }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius); cursor: pointer; z-index: 210;
  width: var(--tap); height: var(--tap);
  align-items: center; justify-content: center;
}
.nav-toggle-bars { display: block; width: 22px; height: 1.5px; background: var(--olive); position: relative; transition: background-color 0.2s var(--ease-out); }
.nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; width: 22px; height: 1.5px; background: var(--olive); transition: transform 0.4s var(--ease-out); }
.nav-toggle-bars::before { top: -7px; }
.nav-toggle-bars::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   7. HERO SYSTEM
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;   /* fallback: Chrome for Android < 108 has no svh */
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden; background: var(--olive-deep); color: var(--white);
  isolation: isolate;
}
.hero-media { position: absolute; inset: -12% 0; z-index: -2; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-pos, center); filter: saturate(0.8) contrast(1.04); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(33, 42, 27, 0.96) 0%, rgba(33, 42, 27, 0.66) 46%, rgba(33, 42, 27, 0.42) 100%),
    linear-gradient(100deg, rgba(33, 42, 27, 0.86) 0%, rgba(33, 42, 27, 0.34) 62%, rgba(33, 42, 27, 0.16) 100%);
}
.hero-inner { position: relative; padding-block: calc(var(--header-h) + var(--s-8)) var(--s-8); width: 100%; }
.hero h1 { font-size: var(--display); color: var(--white); font-weight: 400; line-height: 1; letter-spacing: -0.02em; max-width: 13em; }
.hero .lead { margin-top: var(--s-5); color: rgba(255, 255, 255, 0.84); max-width: 50ch; font-size: var(--step-1); }

.hero-meaning { margin-top: var(--s-6); font-size: var(--step--2); font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.hero-meaning .k { color: var(--white); }

/* Audience strip below the hero copy: who this is for, immediately */
.hero-audience {
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.75rem;
  font-size: 0.82rem; letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.62);
  max-width: 60ch;
}
.hero-audience span { display: inline-flex; align-items: center; gap: 0.6rem; }
.hero-audience span::before { content: ""; width: 4px; height: 4px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

.hero-arches { position: absolute; right: -4vw; top: 16%; width: min(44vw, 600px); opacity: 0.15; pointer-events: none; z-index: -1; }

.scroll-cue {
  position: absolute; right: var(--gutter); bottom: 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.85rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6); z-index: 2;
}
.scroll-cue-label { writing-mode: vertical-rl; }
.scroll-cue-line { position: relative; width: 1px; height: 56px; background: rgba(255, 255, 255, 0.24); overflow: hidden; }
.scroll-cue-line::after { content: ""; position: absolute; inset: 0; background: var(--gold); animation: cue-slide 2.1s var(--ease-in-out) infinite; }
@keyframes cue-slide { 0% { transform: translateY(-100%); } 60%, 100% { transform: translateY(100%); } }

/* Interior hero */
.page-hero {
  position: relative; display: flex; align-items: flex-end;
  min-height: clamp(440px, 68vh, 680px);
  min-height: clamp(440px, 68svh, 680px);
  overflow: hidden; background: var(--olive-deep); color: var(--white); isolation: isolate;
}
.page-hero-media { position: absolute; inset: -12% 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: var(--hero-pos, center); filter: saturate(0.8) contrast(1.04); }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(to top, rgba(33, 42, 27, 0.95) 0%, rgba(33, 42, 27, 0.68) 50%, rgba(33, 42, 27, 0.46) 100%),
    linear-gradient(100deg, rgba(33, 42, 27, 0.84) 0%, rgba(33, 42, 27, 0.34) 66%, rgba(33, 42, 27, 0.18) 100%);
}
.page-hero--flat { background: var(--olive); min-height: clamp(400px, 56vh, 560px); min-height: clamp(400px, 56svh, 560px); }
.page-hero--flat::after { background: radial-gradient(120% 90% at 15% 100%, rgba(123, 142, 110, 0.28) 0%, transparent 60%); }
.page-hero--flat .page-hero-arches { opacity: 0.07; right: -8vw; top: 6%; }

.page-hero-inner { position: relative; width: 100%; padding-block: calc(var(--header-h) + var(--s-7)) var(--s-7); max-width: 900px; }
.page-hero h1 { color: var(--white); font-weight: 400; font-size: var(--display-sm); letter-spacing: -0.015em; max-width: 15em; }
.page-hero .lead { margin-top: var(--s-4); color: rgba(255, 255, 255, 0.84); max-width: 54ch; }
.page-hero-arches { position: absolute; right: -3vw; top: 12%; width: min(36vw, 420px); opacity: 0.13; pointer-events: none; z-index: -1; }

.breadcrumbs { font-size: 0.78rem; letter-spacing: 0.05em; margin-bottom: var(--s-4); color: rgba(255, 255, 255, 0.62); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.breadcrumbs li + li::before { content: "/"; margin-right: 0.5rem; color: rgba(255, 255, 255, 0.35); }
.breadcrumbs a { color: rgba(255, 255, 255, 0.75); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); }
.breadcrumbs a:hover { color: var(--gold); }

/* ==========================================================================
   8. SECTION HEADS
   ========================================================================== */
.head-row {
  display: grid; gap: var(--s-4);
  grid-template-columns: 1fr;
  align-items: end;
  margin-bottom: var(--s-7);
}
.head-row .lead { margin: 0; }

/* ==========================================================================
   9. CARDS, GRIDS, PROOF COMPONENTS
   ========================================================================== */

/* --- Buttons --- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 0.7rem;
  min-height: var(--tap);
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; text-align: center;
  padding: 1rem 2rem; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; overflow: hidden; isolation: isolate;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), transform 0.35s var(--ease-out);
}
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; transform: translate3d(0, 101%, 0); transition: transform 0.5s var(--ease-out); }
.btn:hover::before, .btn:focus-visible::before { transform: none; }
.btn-arrow { transition: transform 0.45s var(--ease-out); }
.btn:hover .btn-arrow { transform: translateX(5px); }

.btn--primary { background: var(--gold); color: var(--olive); border-color: var(--gold); }
.btn--primary::before { background: var(--white); }
.btn--primary:hover { color: var(--olive); border-color: var(--white); }

.btn--outline { background: transparent; color: var(--olive); border-color: rgba(58, 70, 50, 0.35); }
.btn--outline::before { background: var(--olive); }
.btn--outline:hover { color: var(--white); border-color: var(--olive); }

.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.45); }
.btn--outline-light::before { background: var(--white); }
.btn--outline-light:hover { color: var(--olive); border-color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }
.cta-section .btn-row, .section-intro--center .btn-row { justify-content: center; }

/* Text link with a travelling underline */
.link-arrow {
  position: relative; display: inline-flex; align-items: center; gap: 0.6rem;
  width: fit-content; min-height: 32px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--olive); text-decoration: none; padding-bottom: 4px;
}
.link-arrow::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--gold); transform-origin: left; transition: transform 0.5s var(--ease-out); }
.link-arrow:hover::after { transform: scaleX(0.35); }
.link-arrow .btn-arrow { transition: transform 0.45s var(--ease-out); }
.link-arrow:hover .btn-arrow { transform: translateX(5px); }
.section--green .link-arrow, .section--deep .link-arrow { color: var(--gold); }

/* --- Ribbon marquee --- */
.ribbon { background: var(--olive); border-block: 1px solid var(--line-dark); padding-block: 1.35rem; overflow: hidden; position: relative; }
.ribbon-track { display: flex; width: max-content; transform: translate3d(var(--marq, 0px), 0, 0); }
.ribbon-group { display: flex; align-items: center; flex-shrink: 0; }
.ribbon-item {
  display: inline-flex; align-items: center; gap: 2.5rem; padding-right: 2.5rem;
  font-family: var(--font-serif); font-size: var(--step-2); font-weight: 500;
  letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.92); white-space: nowrap;
}
.ribbon-item::after { content: ""; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.ribbon-item .muted { font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.42); }

/* --- Moments: the situations clients call about --- */
.moment-grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.moment {
  position: relative;
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line);
  display: grid; gap: var(--s-3);
  grid-template-columns: auto 1fr;
  align-items: start;
  transition: background-color 0.5s var(--ease-out);
}
.moment:hover { background: rgba(247, 245, 242, 0.7); }
.moment-icon { grid-row: span 2; padding-right: var(--s-4); }
.moment h3 { font-size: var(--step-2); font-family: var(--font-serif); font-weight: 500; }
.moment p { color: var(--slate); font-size: 0.97rem; margin: 0; }

/* --- The band: counter-scrolling triptych --- */
.the-band { position: relative; background: var(--olive-deep); color: var(--white); overflow: hidden; }
.the-band-ghost {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  gap: clamp(1rem, 6vw, 6rem);
  font-family: var(--font-serif); font-size: clamp(8rem, 26vw, 24rem); font-weight: 500; line-height: 1;
  color: rgba(255, 255, 255, 0.06); pointer-events: none; user-select: none; z-index: 0;
}
.the-band-inner { position: relative; z-index: 1; padding-block: var(--section-y-lg); }
.the-band-head { max-width: var(--container-text); margin-bottom: var(--s-7); }
.the-band-head h2 { color: var(--white); }
.the-band-head p { margin-top: var(--s-3); color: rgba(255, 255, 255, 0.76); }
.the-band-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.the-band-item { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 5; text-decoration: none; background: var(--olive); }
.the-band-item img { position: absolute; inset: -10% 0; width: 100%; height: 120%; object-fit: cover; filter: saturate(0.85); transition: transform 0.9s var(--ease-out), filter 0.9s var(--ease-out); }
.the-band-item:hover img, .the-band-item:focus-visible img { transform: scale(1.06); filter: saturate(1.05); }
.the-band-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(33, 42, 27, 0.9) 4%, rgba(33, 42, 27, 0.04) 62%); transition: opacity 0.6s var(--ease-out); }
.the-band-item:hover::after { opacity: 0.85; }
.the-band-caption { position: absolute; left: clamp(1.25rem, 2vw, 2rem); right: clamp(1.25rem, 2vw, 2rem); bottom: clamp(1.25rem, 2vw, 2rem); z-index: 1; }
.the-band-label { display: block; color: var(--white); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; }
.the-band-label::before { content: ""; display: block; width: 44px; height: 2px; background: var(--gold); margin-bottom: 0.85rem; }
.the-band-item .the-band-letter { color: var(--gold); }
.the-band-note { display: block; margin-top: 0.6rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.62); max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.6s var(--ease-out), opacity 0.5s var(--ease-out); }
.the-band-item:hover .the-band-note, .the-band-item:focus-visible .the-band-note { max-height: 5rem; opacity: 1; }

/* --- Sticky pillar stack --- */
.stack { display: grid; gap: var(--s-4); }
.stack-card {
  position: relative; background: var(--white);
  border: 1px solid var(--line); border-top: 2px solid var(--gold);
  padding: clamp(2rem, 4vw, 3.5rem);
  display: grid; gap: var(--s-3); overflow: hidden;
  transform-origin: center top;
  box-shadow: var(--shadow-2);
}
.stack-card-num { position: absolute; right: 1.5rem; bottom: -2.5rem; font-family: var(--font-serif); font-size: clamp(7rem, 13vw, 12rem); font-weight: 500; line-height: 1; color: var(--bone); pointer-events: none; user-select: none; z-index: 0; }
.stack-card > *:not(.stack-card-num) { position: relative; z-index: 1; }
.stack-card h3 { font-size: var(--step-4); font-family: var(--font-serif); font-weight: 500; }
.stack-card p { color: var(--slate); max-width: 58ch; }
.stack-card-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: var(--s-2); }
.stack-card-list li { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--slate); border: 1px solid var(--line); padding: 0.35rem 0.8rem; border-radius: 999px; }

/* --- Capability cards (Where we help) ---
   Hairlines are drawn by each card's own ring, not by a background showing
   through 1px gaps. With 10 cards in a 3-column grid the old trick left a
   dead grey cell in the last row; a ring simply has nothing to draw there. */
.capability-grid { display: grid; grid-template-columns: 1fr; gap: 1px; }
.capability {
  position: relative; background: var(--white);
  box-shadow: 0 0 0 1px var(--line);
  padding: clamp(1.75rem, 2.4vw, 2.4rem);
  display: flex; flex-direction: column; gap: var(--s-3);
  text-decoration: none;
  transition: background-color 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  min-height: 100%;
}
.capability::after {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.capability:hover { background: var(--ivory); box-shadow: 0 0 0 1px var(--line-strong), var(--shadow-2); }
.capability:hover::after, .capability:focus-visible::after { transform: scaleX(1); }
.capability-num { font-family: var(--font-serif); font-size: 0.9rem; letter-spacing: 0.2em; color: var(--gold-dark); }
.capability h3 { font-size: var(--step-1); font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.01em; color: var(--olive); }
.capability p { font-size: 0.93rem; color: var(--slate); flex-grow: 1; }
.capability .link-arrow { margin-top: auto; font-size: 0.7rem; }

/* --- Scenario cards: honest, labelled proof --- */
.scenario-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.scenario {
  position: relative; background: var(--white); border: 1px solid var(--line);
  padding: clamp(1.75rem, 2.6vw, 2.5rem);
  display: flex; flex-direction: column; gap: var(--s-3);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}
.scenario:hover { transform: translateY(-5px); box-shadow: var(--shadow-2); }
.scenario-sector { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-dark); }
.scenario h3 { font-size: var(--step-2); font-family: var(--font-serif); font-weight: 500; }
.scenario dl { display: grid; gap: var(--s-3); margin-top: var(--s-2); }
.scenario dt { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.3rem; }
.scenario dd { font-size: 0.94rem; color: var(--slate); }
.scenario dd strong { color: var(--olive); font-weight: 600; }

/* --- Process steps with a connecting line --- */
.process { display: grid; grid-template-columns: 1fr; gap: 0; position: relative; counter-reset: step; }
.process-step { position: relative; padding: var(--s-5) 0 var(--s-5) 3.75rem; border-bottom: 1px solid var(--line); }
.process-step:last-child { border-bottom: 0; }
.process-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: var(--s-5);
  font-family: var(--font-serif); font-size: 0.95rem; letter-spacing: 0.12em; color: var(--gold-dark);
  width: 2.5rem;
}
/* the spine */
.process-step::after { content: ""; position: absolute; left: 1.1rem; top: calc(var(--s-5) + 2.1rem); bottom: -1px; width: 1px; background: var(--line); }
.process-step:last-child::after { display: none; }
.process-step h3 { font-size: var(--step-1); font-family: var(--font-sans); font-weight: 600; margin-bottom: 0.4rem; }
.process-step p { color: var(--slate); font-size: 0.95rem; }
.section--green .process-step, .section--deep .process-step { border-color: var(--line-dark); }
.section--green .process-step::after, .section--deep .process-step::after { background: var(--line-dark); }
.section--green .process-step::before, .section--deep .process-step::before { color: var(--gold); }

/* --- Experience timeline --- */
.timeline { border-top: 1px solid var(--line-dark); }
.timeline-item { display: grid; grid-template-columns: 1fr; gap: 0.35rem; padding: var(--s-4) 0; border-bottom: 1px solid var(--line-dark); }
.timeline-key { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.timeline-item p { color: rgba(255, 255, 255, 0.76); font-size: 0.96rem; margin: 0; }
.timeline-item:last-child { border-bottom: 0; padding-bottom: 0; }

/* --- Stats --- */
.stats { display: grid; grid-template-columns: 1fr; gap: var(--s-5); border-top: 1px solid var(--line-dark); padding-top: var(--s-6); }
.stat-num { font-family: var(--font-serif); font-size: clamp(3.2rem, 6vw, 5.2rem); font-weight: 400; line-height: 1; color: var(--gold); letter-spacing: -0.02em; display: flex; align-items: baseline; }
.stat-suffix { font-size: 0.42em; margin-left: 0.15em; color: rgba(255, 255, 255, 0.5); }
.stat-label { margin-top: var(--s-2); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.62); max-width: 24ch; }

/* --- Manifesto --- */
.manifesto {
  --fill-on: var(--white); --fill-off: rgba(255, 255, 255, 0.16);
  background: var(--olive); color: rgba(255, 255, 255, 0.86);
  padding-block: var(--section-y-lg); position: relative; overflow: hidden;
}
.manifesto-quote { font-family: var(--font-serif); font-size: clamp(1.8rem, 4.2vw, 3.8rem); font-weight: 400; line-height: 1.17; letter-spacing: -0.01em; color: var(--white); max-width: 16em; margin: 0; }
.manifesto-quote p { max-width: none; }
.manifesto-attrib { margin-top: var(--s-6); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.manifesto-mark { position: absolute; right: -6%; bottom: -22%; font-family: var(--font-serif); font-size: clamp(16rem, 40vw, 40rem); line-height: 0.8; color: rgba(255, 255, 255, 0.03); pointer-events: none; user-select: none; }

/* --- Founder block --- */
.founder { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: center; }
/* No fabricated portrait: a linework panel carries the quote and the sectors
   the founder has actually worked in. Swap for a real photograph when one
   exists: see PHOTOGRAPHY.md. */
.founder-panel { padding: clamp(1.75rem, 5vw, 3.25rem); border: 1px solid var(--line-dark); background: rgba(255, 255, 255, 0.02); }
.founder-panel .timeline { margin-top: var(--s-5); }
.founder-portrait { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-top: 2px solid var(--gold); background: var(--olive-mid); }
.founder-portrait img { position: absolute; inset: -12% 0; width: 100%; height: 124%; object-fit: cover; }
.founder-quote { font-family: var(--font-serif); font-size: var(--step-3); line-height: 1.32; font-weight: 400; color: var(--white); max-width: 22ch; }
.founder-body p { color: rgba(255, 255, 255, 0.78); }
.founder-body p + p { margin-top: var(--s-3); }
.founder-attrib { margin-top: var(--s-5); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }

/* --- Media split --- */
.media-split { display: grid; gap: var(--s-6); grid-template-columns: 1fr; align-items: center; }
.media-split-img { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-top: 2px solid var(--gold); }
.media-split-img img { position: absolute; inset: -14% 0; width: 100%; height: 128%; object-fit: cover; }
.media-split-text p { color: var(--slate); }
.media-split-text p + p { margin-top: var(--s-3); }

/* --- Checklist --- */
.check-grid { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.check-grid li { display: flex; align-items: baseline; gap: 1rem; padding: 1.1rem 0.25rem; border-bottom: 1px solid var(--line); font-size: 0.98rem; transition: padding-left 0.45s var(--ease-out), color 0.45s var(--ease-out); }
.check-grid li:hover { padding-left: 0.85rem; color: var(--olive); }
.check-grid li::before { content: ""; flex-shrink: 0; width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg); position: relative; top: -1px; }
.section--green .check-grid, .section--green .check-grid li,
.section--deep .check-grid, .section--deep .check-grid li { border-color: var(--line-dark); }
.section--green .check-grid li:hover, .section--deep .check-grid li:hover { color: var(--white); }

/* --- Chips --- */
.chip-list { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.chip-list li, .chip {
  border: 1px solid var(--line); background: var(--white);
  padding: 0.65rem 1.25rem; font-size: 0.88rem; letter-spacing: 0.03em; color: var(--charcoal);
  border-radius: 999px;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.chip-list a { text-decoration: none; }
.chip-list li:hover { background: var(--olive); border-color: var(--olive); color: var(--white); transform: translateY(-3px); }

/* --- Answer block (GEO direct answer) --- */
.answer-block { background: var(--ivory); border-left: 2px solid var(--gold); padding: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: var(--s-7); }
.answer-block p { font-size: var(--step-1); line-height: 1.58; color: var(--charcoal); max-width: 72ch; }
.answer-block strong { color: var(--olive); font-weight: 600; }

/* --- FAQ --- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem; padding: 1.5rem 0.25rem; font-family: var(--font-serif); font-size: var(--step-2); font-weight: 500; color: var(--olive); transition: color var(--dur-fast) var(--ease-out); }
.faq-item summary:hover { color: var(--sage-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-sans); font-size: 1.2rem; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform 0.35s var(--ease-out); }
.faq-item[open] summary::after { transform: rotate(135deg); }
.faq-answer { padding: 0 0.25rem 1.6rem; }
.faq-answer p { color: var(--slate); font-size: 0.97rem; }
.faq-answer p + p { margin-top: 0.85rem; }

/* ==========================================================================
   10. SERVICE PAGE SYSTEM
   ========================================================================== */
.service-layout { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: start; }

/* Sticky in-page navigation with scrollspy */
.service-nav { display: none; }
.service-nav-title { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-dark); margin-bottom: var(--s-3); }
.service-nav ol { border-left: 1px solid var(--line); }
.service-nav a {
  display: block; position: relative;
  padding: 0.6rem 0 0.6rem 1.1rem;
  font-size: 0.88rem; color: var(--slate); text-decoration: none;
  transition: color 0.4s var(--ease-out);
}
.service-nav a::before {
  content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 2px;
  background: var(--gold); transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease-out);
}
.service-nav a:hover { color: var(--olive); }
.service-nav a[aria-current="true"] { color: var(--olive); font-weight: 600; }
.service-nav a[aria-current="true"]::before { transform: scaleY(1); }

.service-body > section { scroll-margin-top: calc(var(--header-h) + 2rem); }
.service-body > section + section { margin-top: var(--s-8); }

/* Services hub: one block per pillar */
.pillar-block { scroll-margin-top: calc(var(--header-h) + 2rem); }
.pillar-block + .pillar-block { margin-top: var(--s-8); }
.pillar-block:first-of-type { margin-top: var(--s-7); }

/* Industries: nine anchored sections sharing the sticky nav */
.industries-body > section { scroll-margin-top: calc(var(--header-h) + 2rem); }
.industries-body > section + section { margin-top: var(--s-9); }

.industry-detail { display: grid; gap: var(--s-4); margin-top: var(--s-5); }
.industry-context {
  position: relative;
  background: var(--olive); color: rgba(255, 255, 255, 0.82);
  padding: clamp(1.5rem, 2.6vw, 2.2rem);
  border-top: 2px solid var(--gold);
}
.industry-context h3 { color: var(--white); font-size: var(--step-1); font-family: var(--font-sans); font-weight: 600; margin-bottom: var(--s-2); }
.industry-context p { color: rgba(255, 255, 255, 0.78); font-size: 0.96rem; max-width: 78ch; }
.panel--plain { background: var(--white); border-top: 2px solid var(--line-strong); display: flex; flex-direction: column; }
.panel--plain .chip-list { margin-bottom: auto; }
.panel--plain .btn-row { margin-top: var(--s-4); }
.panel--plain .btn { width: 100%; }

/* Links inside the checklist grid (404, how-we-help) */
.check-grid a { text-decoration: none; }
.check-grid a:hover { color: var(--olive); }
.service-body h2 { font-size: var(--step-4); margin-bottom: var(--s-4); }
.service-body p { color: var(--slate); }
.service-body p + p { margin-top: var(--s-3); }

/* Who this is for */
.audience-list { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.audience-list li { padding: 0.9rem 0; border-bottom: 1px solid var(--line); display: flex; gap: 0.9rem; align-items: baseline; font-size: 0.98rem; color: var(--charcoal); }
.audience-list li::before { content: ""; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* When clients call: numbered rows */
.when-list { border-top: 1px solid var(--line); counter-reset: when; }
.when-list li {
  position: relative; counter-increment: when;
  padding: 1.15rem 0 1.15rem 3rem; border-bottom: 1px solid var(--line);
  font-size: 1rem; color: var(--charcoal);
  transition: padding-left 0.45s var(--ease-out);
}
.when-list li:hover { padding-left: 3.5rem; }
.when-list li::before {
  content: counter(when, decimal-leading-zero);
  position: absolute; left: 0; top: 1.2rem;
  font-family: var(--font-serif); font-size: 0.85rem; letter-spacing: 0.1em; color: var(--gold-dark);
}

/* What we do: layered cards */
.approach { display: grid; grid-template-columns: 1fr; gap: var(--s-3); }
.approach-item {
  position: relative; background: var(--white); border: 1px solid var(--line);
  padding: clamp(1.5rem, 2.2vw, 2rem);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}
.approach-item:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-2); }
.approach-item h3 { font-size: var(--step-1); font-family: var(--font-sans); font-weight: 600; margin-bottom: 0.5rem; }
.approach-item p { font-size: 0.95rem; }
.approach-num { position: absolute; top: 1.2rem; right: 1.4rem; font-family: var(--font-serif); font-size: 0.85rem; letter-spacing: 0.12em; color: var(--linen); }

/* Deliverables & outcomes */
.two-col { display: grid; grid-template-columns: 1fr; gap: var(--s-6); }
.panel { background: var(--ivory); border-top: 2px solid var(--gold); padding: clamp(1.5rem, 2.4vw, 2.2rem); }
.panel h3 { font-size: var(--step-1); font-family: var(--font-sans); font-weight: 600; margin-bottom: var(--s-3); }
.panel ul li { padding: 0.65rem 0; border-top: 1px solid var(--line); font-size: 0.94rem; color: var(--slate); display: flex; gap: 0.75rem; align-items: baseline; }
.panel ul li:first-child { border-top: 0; }
.panel ul li::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* Related services */
.related-grid { display: grid; grid-template-columns: 1fr; gap: 1px; }
.related-card { background: var(--white); box-shadow: 0 0 0 1px var(--line); padding: var(--s-4); text-decoration: none; display: flex; flex-direction: column; gap: 0.5rem; transition: background-color 0.4s var(--ease-out); }
.related-card:hover { background: var(--ivory); }
.related-card .rc-eyebrow { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); }
.related-card h3 { font-size: var(--step-1); font-family: var(--font-serif); font-weight: 500; }
.related-card span.rc-go { font-size: 0.8rem; color: var(--slate); display: inline-flex; gap: 0.5rem; align-items: center; }

/* ==========================================================================
   11. ENGAGEMENT MODELS (interactive)
   ========================================================================== */
.engagements { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line-dark); border-block: 1px solid var(--line-dark); }
.engagement-card {
  background: var(--olive); color: rgba(255, 255, 255, 0.8);
  border: 0; text-align: left; width: 100%;
  padding: var(--s-5) var(--s-4);
  display: grid; gap: 0.5rem;
  cursor: pointer;
  transition: background-color 0.5s var(--ease-out);
}
.engagement-card:hover { background: var(--olive-soft); }
.engagement-card[aria-expanded="true"] { background: var(--olive-soft); }
.engagement-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.engagement-card h3 { font-size: var(--step-2); font-family: var(--font-serif); font-weight: 500; color: var(--white); }
.engagement-shape { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.engagement-best { font-size: 0.95rem; color: rgba(255, 255, 255, 0.72); max-width: 60ch; }
.engagement-toggle { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 0.4rem; }
.engagement-toggle::after { content: "+"; font-size: 1rem; font-weight: 300; transition: transform 0.4s var(--ease-out); }
.engagement-card[aria-expanded="true"] .engagement-toggle::after { transform: rotate(135deg); }

.engagement-panel { overflow: hidden; height: 0; transition: height 0.5s var(--ease-out); background: var(--olive-soft); }
.engagement-panel-inner { padding: 0 var(--s-4) var(--s-5); display: grid; gap: var(--s-3); }
.engagement-panel p { color: rgba(255, 255, 255, 0.78); font-size: 0.97rem; max-width: 70ch; }
.engagement-fit { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.engagement-fit li { font-size: 0.75rem; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.7); border: 1px solid var(--line-dark-strong); border-radius: 999px; padding: 0.35rem 0.85rem; }

/* ==========================================================================
   12. CTA SYSTEM
   ========================================================================== */
.cta-section {
  position: relative; background: var(--olive-deep); color: var(--white); text-align: center;
  padding-block: var(--section-y-lg); overflow: hidden; isolation: isolate;
}
.cta-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(90% 120% at 50% 110%, rgba(123, 142, 110, 0.34) 0%, transparent 62%); }
.cta-arches { position: absolute; left: 50%; top: 50%; translate: -50% -50%; width: min(90vw, 900px); opacity: 0.1; z-index: -1; pointer-events: none; }
.cta-section h2 { color: var(--white); font-weight: 400; font-size: var(--step-6); max-width: 20ch; margin-inline: auto; }
.cta-section p { margin: var(--s-4) auto 0; color: rgba(255, 255, 255, 0.78); max-width: 56ch; }

/* Mid-page conversion band: quieter than the closing CTA */
.cta-band { background: var(--ivory); border-block: 1px solid var(--line); padding-block: var(--s-7); }
.cta-band-inner { display: grid; grid-template-columns: 1fr; gap: var(--s-4); align-items: center; }
.cta-band h2 { font-size: var(--step-3); max-width: 20ch; }
.cta-band p { color: var(--slate); font-size: 0.97rem; }
.cta-band .btn-row { margin-top: 0; }

/* ==========================================================================
   13. FORMS & INTAKE
   ========================================================================== */
.intake-layout { display: grid; grid-template-columns: 1fr; gap: var(--s-7); align-items: start; }

.contact-form { display: grid; gap: var(--s-5); }
.form-section { display: grid; gap: var(--s-4); }
.form-section-head { display: flex; align-items: baseline; gap: 0.85rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--line); }
.form-section-num { font-family: var(--font-serif); font-size: 0.9rem; letter-spacing: 0.14em; color: var(--gold-dark); }
.form-section-head h2 { font-size: var(--step-1); font-family: var(--font-sans); font-weight: 600; letter-spacing: 0; }

.form-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
.form-field { display: grid; gap: 0.5rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive); }
.form-field .optional { color: var(--slate-light); font-weight: 500; letter-spacing: 0.06em; text-transform: none; }

.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-sans); font-size: 1rem; color: var(--charcoal);
  background: var(--white); border: 0; border-bottom: 1px solid var(--line-strong);
  border-radius: 0; padding: 0.95rem 0.25rem; width: 100%;
  min-height: var(--tap);
  transition: border-color 0.4s var(--ease-out);
}
.form-field select { -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold-dark) 50%), linear-gradient(135deg, var(--gold-dark) 50%, transparent 50%); background-position: right 12px center, right 6px center; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-bottom-color: var(--gold); }
.form-field input:focus-visible, .form-field select:focus-visible, .form-field textarea:focus-visible { outline: 2px solid var(--sage); outline-offset: 4px; }

/* Validation states: only after the user has tried */
.form-field .field-error { font-size: 0.8rem; color: #9B3B2E; min-height: 0; }
.form-field.is-invalid input, .form-field.is-invalid select, .form-field.is-invalid textarea { border-bottom-color: #9B3B2E; }
.form-note { font-size: 0.85rem; color: var(--slate-light); }
.form-status { font-size: 0.9rem; padding: 0.9rem 1rem; border-left: 2px solid var(--gold); background: var(--ivory); color: var(--olive); }

/* Intake sidebar: what happens next */
.intake-aside { border-top: 2px solid var(--gold); background: var(--ivory); padding: clamp(1.75rem, 3vw, 2.4rem); align-self: start; position: relative; }
.intake-aside h2 { font-size: var(--step-2); }
.intake-aside .process { margin-top: var(--s-4); }
.intake-aside .process-step { padding-block: var(--s-4); }
.intake-direct { margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--line); }
.intake-direct li { padding: 0.6rem 0; font-size: 0.94rem; }
.intake-direct a { color: var(--olive); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold); }
.intake-direct a:hover { color: var(--gold-dark); }

/* Thank-you confirmation */
.confirm { text-align: center; max-width: 46rem; margin-inline: auto; }
.confirm-mark { width: 76px; height: 76px; margin: 0 auto var(--s-5); border: 1px solid var(--gold); border-radius: 50%; display: grid; place-items: center; }
.confirm-mark svg { width: 30px; height: 30px; stroke: var(--gold); stroke-width: 1.2; fill: none; }

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.site-footer { background: var(--olive); color: rgba(255, 255, 255, 0.78); padding: var(--s-8) 0 var(--s-5); font-size: 0.92rem; position: relative; overflow: hidden; }
.footer-top { display: grid; gap: var(--s-6); grid-template-columns: 1fr; padding-bottom: var(--s-6); border-bottom: 1px solid var(--line-dark); }
.footer-logo { height: 56px; width: auto; margin-bottom: var(--s-2); }
.footer-brand p { margin-top: 0.9rem; font-size: 0.86rem; letter-spacing: 0.03em; color: rgba(255, 255, 255, 0.62); }
.footer-brand .footer-meaning { color: var(--gold); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.72rem; }
.footer-col h2 { font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s-3); }
.footer-col ul li { padding: 0.3rem 0; }
.footer-col a { position: relative; color: rgba(255, 255, 255, 0.78); text-decoration: none; transition: color var(--dur-fast) var(--ease-out); font-size: 0.88rem; }
.footer-col a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease-out); }
.footer-col a:hover { color: var(--white); }
.footer-col a:hover::after { transform: scaleX(1); transform-origin: left; }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-3); padding-top: var(--s-5); font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }
.footer-monogram { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border: 1px solid var(--gold); border-radius: 50%; font-family: var(--font-serif); font-size: 0.95rem; font-weight: 600; letter-spacing: 0.06em; color: var(--gold); }

.mt-2 { margin-top: var(--s-5); }
.center { text-align: center; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 700px) {
  .moment-grid { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-6); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .scenario-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
  .check-grid { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-6); }
  .audience-list { grid-template-columns: repeat(2, 1fr); column-gap: var(--s-6); }
  .two-col { grid-template-columns: repeat(2, 1fr); }
  .approach { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .the-band-grid { grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.6vw, 1.75rem); }
  .the-band-item--mid { margin-top: clamp(2rem, 6vw, 5rem); }
  .media-split { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2.5rem, 5vw, 5.5rem); }
  .media-split--reverse .media-split-img { order: 2; }
  .founder { grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); gap: clamp(2.5rem, 5vw, 5rem); }
  .cta-band-inner { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: var(--s-6); }
  .cta-band .btn-row { justify-content: flex-end; }
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .head-row { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: var(--s-6); }
}

@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(3rem, 6vw, 6rem); }
  .split-heading { position: sticky; top: calc(var(--header-h) + var(--s-5)); }
  .stack { gap: var(--s-5); }
  .stack-card { position: sticky; top: calc(var(--header-h) + var(--s-5)); transform: scale(var(--stack-scale, 1)); }
  .cta-section h2 { font-size: clamp(3rem, 4.4vw, 4.4rem); }

  .service-layout { grid-template-columns: minmax(0, 3fr) minmax(0, 9fr); gap: clamp(2.5rem, 5vw, 5rem); }
  .service-nav { display: block; position: sticky; top: calc(var(--header-h) + var(--s-5)); }
  .intake-layout { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(2.5rem, 5vw, 4.5rem); }
  .intake-aside { position: sticky; top: calc(var(--header-h) + var(--s-5)); }
  .capability-grid { grid-template-columns: repeat(3, 1fr); }
  .scenario-grid { grid-template-columns: repeat(3, 1fr); }
  .engagement-card { padding-inline: var(--s-6); }
  .engagement-panel-inner { padding-inline: var(--s-6); }
}

@media (min-width: 1100px) {
  .moment-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Mobile drawer: a direct child of <body>, so no transformed or
       filtered ancestor can capture its position:fixed. --- */
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 450;
  background: var(--olive);
  display: none;
  overscroll-behavior: contain;
}
.mobile-nav.is-open { display: block; }
.mobile-nav-scroll {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: calc(var(--header-h) + 1.25rem) var(--gutter) calc(var(--gutter) + 1.5rem);
  display: flex; flex-direction: column; gap: 0.25rem;
}
.mobile-nav-primary li a,
.mobile-nav-group > summary {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--tap);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.92); text-decoration: none;
  cursor: pointer;
}
.mobile-nav-group > summary { list-style: none; }
.mobile-nav-group > summary::-webkit-details-marker { display: none; }
.mobile-nav-group > summary span::after {
  content: "+"; font-family: var(--font-sans); font-size: 1.4rem; font-weight: 300;
  color: var(--gold); transition: transform 0.3s var(--ease-out); display: inline-block;
}
.mobile-nav-group[open] > summary span::after { transform: rotate(135deg); }
.mobile-nav-group ul { padding: 0.35rem 0 0.9rem; }
.mobile-nav-group ul a {
  display: flex; align-items: center; min-height: 44px;
  padding: 0.35rem 0 0.35rem 1rem;
  font-size: 1rem; color: rgba(255, 255, 255, 0.72); text-decoration: none;
  border-left: 1px solid var(--line-dark);
}
.mobile-nav-group ul a:hover, .mobile-nav-group ul a:focus-visible { color: var(--gold); }
.mobile-nav-cta { margin-top: var(--s-5); width: 100%; }
.mobile-nav-meta { margin-top: var(--s-4); text-align: center; font-size: 0.85rem; }
.mobile-nav-meta a { color: rgba(255, 255, 255, 0.62); text-decoration: none; border-bottom: 1px solid var(--line-dark); }

/* Scroll lock: the body is pinned at the offset JS recorded, so reopening the
   menu mid-page never jumps the reader back to the top. */
body.nav-open { position: fixed; width: 100%; overflow: hidden; }

/* The drawer covers the page, including the header that holds the close
   button. Lift the header above it and strip the surfaces that would paint a
   white bar over the olive. `transform: none` also matters: it would otherwise
   re-establish a containing block. */
body.nav-open .site-header {
  z-index: 500;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
}
body.nav-open .brand-logo--dark { opacity: 0; }
body.nav-open .brand-logo--light { opacity: 1; }
body.nav-open .nav-toggle { border-color: rgba(255, 255, 255, 0.35); background: transparent; }
body.nav-open .nav-toggle-bars,
body.nav-open .nav-toggle-bars::before,
body.nav-open .nav-toggle-bars::after { background: var(--white); }
body.nav-open .nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }

@media (min-width: 900px) { .mobile-nav { display: none !important; } }

/* --- Mobile navigation drawer --- */
@media (max-width: 899px) {
  .nav-toggle { display: inline-flex; }
  .header-over-hero:not(.is-scrolled) .nav-toggle { border-color: rgba(255, 255, 255, 0.4); }
  .header-over-hero:not(.is-scrolled) .nav-toggle-bars,
  .header-over-hero:not(.is-scrolled) .nav-toggle-bars::before,
  .header-over-hero:not(.is-scrolled) .nav-toggle-bars::after { background: var(--white); }
  .header-over-hero:not(.is-scrolled) .nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }

  .site-nav { display: none; }
  .the-band-ghost { font-size: clamp(6rem, 34vw, 13rem); }
  .hero-arches { opacity: 0.1; width: 80vw; right: -20vw; }

  /* --- Mobile header: shorter, calmer, more air at the edges --- */
  :root { --header-h: 66px; }
  .is-scrolled .header-inner { min-height: 58px; }
  .brand-logo, .is-scrolled .brand-logo { height: 36px; }
  .nav-toggle { width: 44px; height: 44px; border-color: rgba(0, 0, 0, 0.12); }
  .nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after { width: 20px; }
  .header-inner { gap: var(--s-4); }
  /* The transparent header sits over a photograph: give the bars a soft
     shadow so they read against a bright sky. */
  .header-over-hero:not(.is-scrolled) .nav-toggle { background: rgba(0, 0, 0, 0.18); backdrop-filter: blur(2px); }

  /* Breadcrumbs are wayfinding for search engines, clutter on a phone hero. */
  .breadcrumbs { display: none; }

  /* Ticker: quieter type, tighter rhythm. */
  .ribbon { padding-block: 0.9rem; }
  .ribbon-item { font-size: 1.05rem; gap: 1.5rem; padding-right: 1.5rem; }
  .ribbon-item .muted { font-size: 0.66rem; letter-spacing: 0.16em; }
}

/* --- Mobile pacing: designed for the phone, not compressed from desktop --- */
@media (max-width: 699px) {
  :root { --section-y: 3.75rem; --section-y-lg: 4.5rem; }
  .hero { min-height: 88vh; min-height: 88svh; min-height: 88dvh; }
  .hero-inner { padding-block: calc(var(--header-h) + var(--s-6)) var(--s-6); }
  .hero h1 { max-width: 100%; font-size: clamp(2.1rem, 8.6vw, 3rem); line-height: 1.06; }
  .hero .lead { font-size: 1.02rem; }
  .page-hero-inner { padding-block: calc(var(--header-h) + var(--s-5)) var(--s-5); }
  /* Interior headlines are set from a longer service name; at the smallest
     widths a single line ("Strategy and growth advisory") reaches the gutter. */
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.7rem); max-width: 100%; }
  .hero-audience { gap: 0.35rem 1.1rem; font-size: 0.76rem; }
  .scroll-cue { display: none; }
  .media-split-img, .founder-portrait { aspect-ratio: 3 / 2; }
  .the-band-item { aspect-ratio: 3 / 2; }
  .manifesto-quote { max-width: 100%; }
  .moment { grid-template-columns: 1fr; gap: var(--s-2); padding: var(--s-4) 0; }
  .moment-icon { grid-row: auto; padding: 0 0 0.25rem; }
  /* Full-width tap targets on the phone */
  .btn { width: 100%; }
  .btn-row { gap: 0.75rem; }
  .cta-band .btn-row .btn { width: 100%; }
  .process-step { padding-left: 3rem; }
  .engagement-head { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .section-intro { margin-bottom: var(--s-6); }
  .service-body > section + section { margin-top: var(--s-7); }
}

@media (max-width: 480px) {
  .brand-logo, .is-scrolled .brand-logo { height: 38px; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .curtain { display: none; }
  .scroll-cue-line::after { animation: none; }
  [data-parallax] { transform: none !important; will-change: auto; }
  .js [data-reveal], .js [data-reveal-soft], .js [data-reveal-stagger] > *, .js .w-in { opacity: 1 !important; transform: none !important; }
  .js [data-reveal] .rule, .js [data-line] { --rule-x: 1; --line-x: 1; }
  .js [data-img-reveal] { clip-path: none !important; }
  .js [data-img-reveal] img { transform: none !important; }
  .fill-word { color: var(--fill-on); }
  .site-nav { transition: none; }
  /* Accordions must still open instantly rather than stay collapsed */
  .engagement-panel { transition: none; }
}

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .site-header, .site-footer, .cta-section, .cta-band, .nav-toggle,
  .scroll-progress, .curtain, .scroll-cue, .ribbon, .service-nav { display: none; }
  .hero, .page-hero { min-height: auto; color: #000; }
  .hero-media, .page-hero-media, .hero::after, .page-hero::after { display: none; }
  .hero h1, .page-hero h1, .hero .lead, .page-hero .lead { color: #000; }
  [data-parallax] { transform: none !important; }
  .js [data-reveal], .js [data-reveal-soft], .js [data-reveal-stagger] > *, .js .w-in { opacity: 1 !important; transform: none !important; }
  .js [data-reveal] .rule, .js [data-line] { --rule-x: 1; --line-x: 1; }
  .js [data-img-reveal] { clip-path: none !important; }
  .engagement-panel { height: auto !important; }
  .fill-word { color: #000; }
}
