:root {
  --bg: #151414;
  --bg-alt: #151414;
  --dark: #151414;
  --on-dark: #fcf8ef;
  --ink: #fcf8ef;
  --ink-dim: rgba(252,248,239,0.62);
  --line: rgba(252,248,239, 0.10);
  --divider: rgba(252,248,239, 0.20);
  --accent: #fcf8ef;
  --accent-ink: #fcf8ef;
  --display: 'Neue Haas Grotesk Display Pro', 'Archivo', Arial, sans-serif;
  --body: 'Alexandria', Arial, sans-serif;
  --ease: cubic-bezier(.16,.84,.44,1);        /* entrances: long, decelerating */
  --ease-out: cubic-bezier(.2,.7,.3,1);       /* micro-interactions: quick settle */
  --t-fast: 180ms;                            /* hover / focus / toggles */
  --t-mid: 280ms;                             /* larger hover moves, panels */
  --t-slow: 900ms;                            /* scroll entrances */
  --ls-label: 0.16em;                         /* every uppercase micro-label */
  /* Two heading sizes, two body sizes, one button size — nothing else. */
  --fs-display: min(10vw, 184px);
  --fs-heading: clamp(28px, 3.6vw, 52px);
  --fs-body: clamp(15px, 1.1vw, 17px);
  --fs-micro: 12px;
  --gutter: clamp(22px, 4vw, 40px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  color-scheme: dark;
  -webkit-text-size-adjust: 100%; text-size-adjust: 100%;
}
a, button, input, textarea, label, select, summary, [role="button"] {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(252,248,239,0.12);
}
button, input, textarea, select { font-size: inherit; font-family: inherit; }
/* smooth scroll physics handled by Lenis (script.js); native scroll-behavior stays default */
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Loader: a held breath before the site arrives ---- */
.loader {
  position: fixed; inset: 0; z-index: 900; background: var(--bg); color: var(--ink);
  clip-path: inset(0 0 0 0);
}
.loader.is-done { pointer-events: none; }
body.is-loading { overflow: hidden; }
/* Mark holds the top-left corner; the count anchors the opposite one */
.loader-mark {
  position: absolute; top: clamp(26px, 4vh, 48px); left: var(--gutter);
  height: clamp(44px, 5vw, 68px); width: auto; opacity: 0;
}
.loader-count {
  position: absolute; right: var(--gutter); bottom: clamp(14px, 3vh, 40px);
  margin: 0; font-family: var(--display); font-weight: 900;
  font-size: clamp(88px, 21vw, 300px); line-height: 0.78; letter-spacing: -0.045em;
  color: var(--ink); font-variant-numeric: tabular-nums; opacity: 0;
}
@media (max-width: 720px) {
  /* Portrait mirrors the reference: mark centred at the top, count in the bottom-left */
  .loader-mark { left: 50%; transform: translateX(-50%); top: clamp(30px, 6vh, 64px); }
  .loader-count { left: var(--gutter); right: auto; font-size: clamp(72px, 27vw, 190px); }
}
@media (prefers-reduced-motion: reduce) { .loader { display: none; } body.is-loading { overflow: visible; } }

/* ---- Reading progress: a hairline that fills as the page is consumed ---- */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 1px; z-index: 420; pointer-events: none; }
.scroll-progress span {
  display: block; height: 100%; width: 100%; background: var(--ink);
  transform-origin: 0 50%; transform: scaleX(0);
}

/* ---- Cursor: a cream disc that inverts whatever it passes over ---- */
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 950; pointer-events: none;
  width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%;
  background: var(--ink); mix-blend-mode: difference;
  opacity: 0; will-change: transform;
  transition: opacity 260ms var(--ease-out);
}
.cursor-dot.is-on { opacity: 1; }

@media (hover: hover) and (pointer: fine) {
  body, a, button, .work-tile, .work-slider-viewport, input, textarea, label { cursor: none; }
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) { .cursor-dot { display: none; } }

/* ---- Grain texture ---- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 400;
  opacity: 0.045; mix-blend-mode: overlay;
  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='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Reveal-on-scroll: premium staggered fade + rise ---- */
.reveal { opacity: 0; }
/* If GSAP fails to load, script.js sets .anim-fallback and everything shows immediately. */
body.anim-fallback .reveal,
body.anim-fallback .hero-headline .word,
body.anim-fallback .statement.is-active { opacity: 1 !important; transform: none !important; }
body.anim-fallback .tile-media,
body.anim-fallback .work-category-title,
body.anim-fallback .section-title,
body.anim-fallback .about-statement { clip-path: none !important; }
body.anim-fallback .hero-media { transform: none !important; border-radius: 0 !important; }

/* ---- Cursor: default browser pointer; hand cursor on interactive tiles ---- */
.work-tile { cursor: pointer; }

/* ---- Header ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 310;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 40px;
  padding-left: max(40px, env(safe-area-inset-left));
  padding-right: max(40px, env(safe-area-inset-right));
  background: linear-gradient(to bottom, rgba(21,20,20,0.8) 0%, rgba(21,20,20,0.45) 55%, transparent 100%);
}
.logo img { display: block; height: 46px; width: auto; transition: opacity var(--t-fast) var(--ease-out); }
.logo:hover img { opacity: 0.75; }

/* ---- Nav toggle: two lines that animate into an X, doubling as the menu close control ---- */
.nav-toggle {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin: -12px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle-line {
  position: absolute; left: 50%; top: 21px; width: 22px; height: 2px; background: #fcf8ef; border-radius: 2px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.35);
  transition: transform var(--t-mid) var(--ease-out);
}
.nav-toggle-line:first-child { transform: translateX(-50%) translateY(-7px); }
.nav-toggle-line:last-child { transform: translateX(-50%) translateY(7px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:first-child { transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-line:last-child { transform: translateX(-50%) rotate(-45deg); }

/* ---- Full-screen menu overlay: always dark, regardless of page theme ---- */
.mobile-nav {
  position: fixed; inset: 0; z-index: 300;
  background: var(--dark); overscroll-behavior: contain;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; pointer-events: none;
}
body.motion-ready .mobile-nav { transition: opacity 420ms var(--ease-out); }
.mobile-nav.open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-nav.is-closing { visibility: visible; pointer-events: none; }
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.mobile-nav-links a {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: var(--fs-heading); letter-spacing: -0.01em; line-height: 1.1; color: var(--on-dark);
  opacity: 0;
  transition: color var(--t-fast) var(--ease-out);
}
.mobile-nav-links a:hover { color: var(--accent); }
.mobile-nav-foot { opacity: 0; }
body.anim-fallback .mobile-nav-links a,
body.anim-fallback .mobile-nav-foot { opacity: 1; }
.mobile-nav-foot {
  position: absolute; left: 40px; right: 40px; bottom: 34px;
  display: flex; justify-content: space-between;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); letter-spacing: 1px; text-transform: uppercase; color: rgba(252,248,239,0.55);
}
.mobile-nav-foot a { color: rgba(252,248,239,0.55); }
.mobile-nav-foot a:hover { color: var(--accent); }

/* ---- Hero ---- */
.hero {
  position: sticky; top: 0; height: 100vh; height: 100lvh; overflow: hidden;
  display: flex; align-items: center; justify-content: center; background: var(--bg);
}
.hero-stage { position: relative; height: 320vh; }
/* Background reel: fills the header, sits behind everything, never moves */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-bg video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block; background: #151414;
}
/* Keeps the headline at full contrast over whatever the footage is doing */
.hero-bg-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,20,20,0.55) 0%, rgba(21,20,20,0.38) 45%, rgba(21,20,20,0.62) 100%);
}
/* Showcase reel: rises over the background, still passes under the title */
.hero-media {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden; border-radius: 150px;
  transform: translateY(110%) scale(0.12);
  will-change: transform;
}
.hero-body { will-change: transform, opacity; }
.hero-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; background: #151414; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,20,20,0.42) 0%, rgba(21,20,20,0.1) 45%, rgba(21,20,20,0.55) 100%);
}
.hero-body {
  position: relative; z-index: 2; padding: 0 40px;
  display: flex; flex-direction: column; align-items: center; text-align: center; color: #fcf8ef;
}
/* the actions sit low in the frame rather than tucked under the title */
.hero-actions { margin-top: clamp(20px, 5vh, 56px); }
.hero-title { position: relative; margin-bottom: 46px; }
.hero-headline {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: var(--fs-display); line-height: 0.9; letter-spacing: -0.035em;
  margin: 0; text-align: center;
}
.hero-line { display: block; overflow: hidden; padding-bottom: 0.05em; white-space: nowrap; }
/* once the mask reveal is done the line stops clipping, so words can be thrown out of it */
.hero-headline.is-live .hero-line { overflow: visible; }
.hero-headline .word { display: inline-block; opacity: 0; will-change: transform, opacity; }
.hero-headline.is-live .word { will-change: transform; }
.hero-headline .word:nth-of-type(1) { transition-delay: .05s; }
.hero-headline .word:nth-of-type(2) { transition-delay: .12s; }
.hero-headline .word:nth-of-type(3) { transition-delay: .19s; }
.hero-headline .word:nth-of-type(4) { transition-delay: .28s; }
.hero-headline .word:nth-of-type(5) { transition-delay: .35s; }
.hero-headline .word:nth-of-type(6) { transition-delay: .42s; }
.hero-headline .word:nth-of-type(7) { transition-delay: .49s; }
.hero-headline .word:nth-of-type(8) { transition-delay: .56s; }
.hero-sub {
  font-family: var(--body); font-size: var(--fs-body); font-weight: 300; line-height: 1.6; color: rgba(252,248,239,0.85);
  max-width: 560px; margin: 0 0 30px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 0; }
.hero-cta { margin: 0; }
.hero-sub, .hero-location { display: none; }
.hero-location { font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); color: rgba(252,248,239,0.6); letter-spacing: 1px; text-transform: uppercase; }



/* ---- Logo marquee ---- */
.marquee-section {
  overflow: hidden; background: var(--bg);
  padding: clamp(26px, 3.5vw, 48px) 0;
}
.marquee-track { display: flex; width: max-content; animation: marqueeScroll 40s linear infinite; }
.marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.marquee-track img {
  height: clamp(32px, 4vw, 53px); width: auto; margin-right: clamp(46px, 7vw, 104px);
  object-fit: contain; opacity: 0.72;
  transition: opacity var(--t-mid) var(--ease-out);
}
.marquee-track img:hover { opacity: 1; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---- Let's talk marquee ---- */
.talk-marquee { overflow: hidden; background: var(--bg); padding: 36px 0; border-top: 1px solid var(--divider); }
.talk-marquee-track { display: flex; width: max-content; animation: marqueeScroll 26s linear infinite; }
.talk-marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.talk-marquee-track span {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: var(--fs-display); line-height: 1; letter-spacing: -0.02em;
  color: var(--ink); margin-right: clamp(48px, 7vw, 110px);
}
@media (prefers-reduced-motion: reduce) { .talk-marquee-track { animation: none; } }

/* ---- Section framework ---- */
.section {
  position: relative; overflow: hidden; max-width: 1440px; margin: 0 auto;
  padding: clamp(90px, 11vw, 150px) var(--gutter);
  border-top: 1px solid var(--divider); scroll-margin-top: 96px;
}
#about { padding-top: clamp(70px, 8vw, 110px); }
#work { border-top: none; padding-top: clamp(70px, 8vw, 110px); overflow: visible; }
#services, #contact { scroll-margin-top: 96px; }
/* ---- Sticky work stack: each frame pins full-screen, the next slides up over it ---- */
.work-stack { position: relative; width: 100vw; margin-left: calc(50% - 50vw); margin-bottom: 90px; }
/* in-flow runway: extends the sticky containing block's CONTENT box so the last frame gets a hold */
.work-stack::after { content: ''; display: block; height: 95svh; }
.work-stack-slide {
  position: sticky; top: 0; height: 100vh; height: 100svh; margin: 0 0 95vh; overflow: hidden;
  background: var(--bg); box-shadow: 0 -30px 60px rgba(0,0,0,0.45);
  transform-origin: 50% 0%; will-change: transform;
}
.work-stack-slide img,
.work-stack-slide video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  will-change: transform;
}
.stack-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: var(--bg); opacity: 0; will-change: opacity;
}
.work-stack-slide figcaption {
  position: absolute; z-index: 2; left: 40px; bottom: 40px; display: flex; align-items: baseline; gap: 14px;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-body); letter-spacing: 0;
  text-transform: uppercase; color: var(--ink); text-shadow: 0 2px 18px rgba(0,0,0,0.6);
}
.work-stack-slide:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .work-stack::after { height: 82svh; }
  .work-stack-slide { height: 100svh; margin-bottom: 82svh; }
  .work-stack-intro { height: auto; margin-bottom: 0; padding-block: clamp(72px, 14vh, 130px); }
  .work-stack-slide figcaption {
    left: max(22px, env(safe-area-inset-left));
    bottom: max(26px, env(safe-area-inset-bottom));
  }
}
.section-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 70px; flex-wrap: wrap; }
.section-title {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: var(--fs-heading); letter-spacing: -0.02em; text-wrap: balance;
}
.about-statement, .work-statement, .statement p, .contact-headline { text-wrap: pretty; }
.accordion-panel-inner p, .work-proof-line { text-wrap: pretty; }
.col-label {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent-ink); margin-bottom: 16px;
}

/* ---- Work intro: the first pinned panel of the stack ---- */
.work-stack-intro {
  position: static; height: auto; margin-bottom: 0; overflow: visible;
  display: flex; align-items: flex-start;
  padding: clamp(96px, 16vh, 180px) var(--gutter) clamp(96px, 16vh, 180px);
  box-shadow: none;
}
.work-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: clamp(24px, 5vw, 70px);
  width: 100%; max-width: 1440px; margin: 0 auto; flex-wrap: wrap;
}
.work-kicker { font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent-ink); }
.work-statement {
  font-family: var(--display); font-weight: 900; text-transform: uppercase; text-align: right;
  font-size: var(--fs-heading); line-height: 1.02; letter-spacing: -0.01em; max-width: 20ch;
}


.work-proof-line {
  font-family: var(--body); font-weight: 300; font-size: calc(var(--fs-heading) * 0.56);
  line-height: 1.62; letter-spacing: -0.008em; color: var(--ink);
  text-align: center; max-width: min(980px, 92%); margin: 0 auto 28px;
}

/* ---- Work sliders: one per category, colour-coded, drag/swipe + autoplay ---- */
.work-category { margin-bottom: 64px; }
.work-category:last-child { margin-bottom: 0; }
.work-category-title {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: var(--fs-micro); letter-spacing: var(--ls-label); color: var(--accent-ink);
  color: var(--ink);
}

.work-slider { position: relative; }
.slider-progress { height: 1px; background: var(--line); margin-top: 22px; overflow: hidden; }
.slider-progress-bar { opacity: 0.8; }
.slider-progress-bar {
  display: block; height: 100%; width: 22%; background: var(--ink);
  transition: margin-left 620ms var(--ease), width 620ms var(--ease);
}
.work-slider-viewport:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.work-slider-viewport { position: relative; overflow: hidden; cursor: grab; border-radius: 0; touch-action: pan-y; }
.work-slider-viewport:active { cursor: grabbing; }
.work-slider-track {
  display: flex; gap: 16px; will-change: transform;
  transition: transform 620ms var(--ease);
}
.work-slider-track .work-tile { flex: 0 0 calc((100% - 16px) / 2); }
.work-slider-viewport img, .work-slider-viewport video { -webkit-user-drag: none; user-select: none; }

.work-category-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.work-arrows { display: flex; gap: 10px; flex: 0 0 auto; }
.work-arrow {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: transparent;
  color: var(--ink); font-size: var(--fs-body); line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out),
              border-color var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.work-arrow:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.work-arrow--prev:active { transform: translateX(-2px); }
.work-arrow--next:active { transform: translateX(2px); }

.work-tile { position: relative; }
@media (hover: none) { .work-tile { cursor: pointer; } }

.tile-media {
  position: relative; overflow: hidden; background: #151414;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  clip-path: inset(14% 0 0 0);
}
.tile-media img, .tile-media video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--ease), opacity var(--t-mid) var(--ease-out);
}
.tile-media video { opacity: 0; }
/* this tile runs its film continuously rather than waiting for hover */
.work-tile.is-live .tile-media video { opacity: 1; }
.work-tile:hover .tile-media img,
.work-tile:hover .tile-media video { transform: scale(1.02); }
.work-tile:hover .tile-media video { opacity: 1; }
.work-tile:hover .tile-media img[src] ~ video { opacity: 1; }

.tile-info {
  display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
  padding: 18px 2px 0; border-top: 1px solid var(--line); margin-top: 16px;
}
.tile-info h4 { font-family: var(--display); font-weight: 700; font-size: var(--fs-body); letter-spacing: 0; text-transform: uppercase; }
.tile-meta { font-family: var(--body); font-weight: 400; font-size: var(--fs-micro); color: var(--ink); letter-spacing: 0.5px; text-transform: uppercase; text-align: right; }


/* ---- Interlude label (reused by Highlight Reel + Testimonials) ---- */
.interlude-label {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--accent-ink); margin-bottom: 40px; display: flex; align-items: center; gap: 12px;
}

/* ---- About ---- */
.about-band {
  max-width: none; width: 100%;
  background: var(--ink); color: var(--bg);
  border-bottom: 1px solid rgba(21,20,20,0.18);
  padding-block: clamp(80px, 10vw, 140px);
}
.about-band-inner { max-width: 1440px; margin: 0 auto; }
.about-band .col-label { color: rgba(21,20,20,0.78); margin-bottom: 22px; }
.about-statement {
  font-family: var(--body); font-weight: 300; font-size: calc(var(--fs-heading) * 0.56);
  max-width: min(980px, 92%); line-height: 1.62; letter-spacing: -0.008em;
  margin-bottom: 0; color: var(--bg);
}

/* ---- Services ---- */
#services { position: relative; }
.services-layout { display: block; }
.pill-cta {
  display: inline-flex; align-items: center; justify-content: center; line-height: 1.6;
  background: var(--dark); color: var(--on-dark); border: 1px solid rgba(252,248,239,0.14); border-radius: 999px;
  padding: 15px 28px; font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  text-transform: uppercase; letter-spacing: 1px; text-decoration: none;
  position: relative; overflow: hidden; isolation: isolate;
  transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
/* the accent wipes up from the bottom edge on hover */
.pill-cta::before {
  content: ''; position: absolute; inset: 0; z-index: -1; background: var(--accent);
  transform: translateY(101%);
  transition: transform 340ms var(--ease);
}
.pill-cta:hover::before, .pill-cta:focus-visible::before { transform: translateY(0); }
.pill-cta:hover, .pill-cta:focus-visible { color: var(--dark); border-color: var(--accent); }
.pill-cta:active { transform: translateY(1px); }
/* secondary CTA: same pill geometry, outlined instead of filled — used on the dark hero */
.pill-cta--ghost { background: transparent; color: #fcf8ef; border: 1px solid rgba(252,248,239,0.45); }
.pill-cta--ghost:hover { background: var(--dark); color: var(--on-dark); border-color: var(--dark); }

.accordion-list { border-top: 1px solid var(--line); }
.accordion-heading { margin: 0; font: inherit; letter-spacing: inherit; }
.accordion-row { border-bottom: 1px solid var(--line); transition: border-color var(--t-fast) var(--ease-out); }
.accordion-row:hover { border-color: var(--accent); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 0; text-align: left; background: none; border: none; cursor: pointer; color: inherit; font-family: var(--body);
}
.accordion-name {
  font-family: var(--display); font-weight: 900; text-transform: uppercase; letter-spacing: -0.005em;
  font-size: var(--fs-heading); color: var(--ink);
  transition: transform 340ms var(--ease-out), color var(--t-fast) var(--ease-out);
}
.accordion-trigger:hover .accordion-name { color: var(--ink-dim); }
/* Sized in em off the service name so the strokes carry the same weight as the letterforms */
.accordion-icon {
  position: relative; display: block; flex: 0 0 auto;
  font-size: var(--fs-heading); width: 0.5em; height: 0.5em;
}
.accordion-icon::before, .accordion-icon::after {
  content: ''; position: absolute; top: 50%; left: 50%; background: var(--ink);
  transform: translate(-50%, -50%);
}
/* 0.2125em is the measured stem width of the 900-weight display face */
.accordion-icon::before { width: 0.5em; height: 0.2125em; }
.accordion-icon::after { width: 0.2125em; height: 0.5em; transition: transform var(--t-mid) var(--ease-out); }
.accordion-row.is-open .accordion-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 380ms var(--ease); }
.accordion-row.is-open .accordion-panel { grid-template-rows: 1fr; }
/* panel body fades in behind the height change so text does not appear pre-squashed */
.accordion-panel-inner > * { opacity: 0; transition: opacity 260ms var(--ease-out); }
.accordion-row.is-open .accordion-panel-inner > * { opacity: 1; transition-delay: 140ms; }
.accordion-panel-inner { overflow: hidden; min-height: 0; }
.accordion-panel-inner .inner-pad { padding: 0 0 28px; max-width: min(980px, 92%); }
.accordion-panel-inner p { font-size: var(--fs-body); line-height: 1.65; color: var(--ink-dim); }
/* lead copy in each panel reads at the same scale as the About statement */
.accordion-panel-inner .inner-pad > p {
  font-family: var(--body); font-weight: 300; font-size: calc(var(--fs-heading) * 0.56);
  line-height: 1.45; letter-spacing: -0.012em; color: var(--ink);
}
.panel-link {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 18px;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--ink);
  border-bottom: 1px solid var(--line); padding-bottom: 6px;
  transition: border-color var(--t-fast) var(--ease-out), gap var(--t-fast) var(--ease-out);
}
.panel-link:hover { border-color: var(--ink); gap: 16px; }
.panel-cta { margin-top: 22px; }

.paid-media-mini { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 30px; margin-top: 14px; }
.paid-media-mini h4 { font-family: var(--display); font-weight: 700; font-size: var(--fs-body); text-transform: uppercase; margin-bottom: 6px; color: var(--ink); }
.paid-media-mini p { font-size: var(--fs-body); line-height: 1.6; color: var(--ink-dim); }

/* ---- Statement / studio voice ---- */
/* Inverted band: cream ground, dark ink — a deliberate break in the run of dark sections */
.statement-section {
  padding: clamp(60px, 7vw, 88px) var(--gutter); background: var(--ink); color: var(--bg);
  border-top: none;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.statement-label { justify-content: center; margin-bottom: 22px; color: rgba(21,20,20,0.68); }
.statement-track { display: grid; max-width: 720px; width: 100%; }
.statement {
  grid-area: 1 / 1;
  opacity: 0; visibility: hidden; pointer-events: none;
}
.statement.is-active {
  visibility: visible; pointer-events: auto;
}
.statement p {
  font-family: var(--body); font-weight: 300; font-size: calc(var(--fs-heading) * 0.56);
  line-height: 1.62; letter-spacing: -0.008em; margin-bottom: 22px; color: var(--bg);
}
.statement cite { font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); letter-spacing: var(--ls-label); text-transform: uppercase; color: rgba(21,20,20,0.68); font-style: normal; }
.statement-dots { display: flex; gap: 4px; margin-top: 50px; }
.statement-dots button {
  width: 44px; height: 44px; padding: 0; border: none; background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; margin: -10px;
}
.statement-dots button::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: rgba(21,20,20,0.22);
  transition: background var(--t-fast) var(--ease-out), transform var(--t-mid) var(--ease-out);
}
.statement-dots button:hover::before { background: rgba(21,20,20,0.5); }
.statement-dots button.active::before { background: var(--bg); transform: scale(1.5); }

/* ---- Contact ---- */
.mark-watermark {
  position: absolute; left: -60px; bottom: -80px; z-index: -1; pointer-events: none;
  width: clamp(260px, 34vw, 520px); height: auto;
  opacity: 0.05;
}
.contact-section .col-label { margin-bottom: 22px; }
.contact-headline {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: var(--fs-heading); line-height: 1; letter-spacing: -0.01em;
  margin-bottom: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(32px, 4vw, 52px); border-bottom: 1px solid var(--divider);
}
/* details column is intentionally narrow — the form is the point of the section */
.contact-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: clamp(36px, 5vw, 76px); align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; max-width: 520px; }
.contact-form input, .contact-form textarea {
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 12px 2px; color: var(--ink); font-family: var(--body); font-size: var(--fs-body); resize: vertical;
}
.contact-form input:focus-visible, .contact-form textarea:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 3px; border-color: var(--ink);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ink); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--ink-dim); }
.opt-in {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  line-height: 1.5; color: var(--ink-dim);
}
.opt-in input { margin-top: 1px; flex-shrink: 0; }
.opt-in a { text-decoration: underline; text-underline-offset: 2px; transition: color var(--t-fast) var(--ease-out); }
.opt-in a:hover { color: var(--accent-ink); }
.contact-form .pill-cta {
  align-self: flex-start; margin-top: 10px; cursor: pointer;
  background: var(--ink); color: var(--bg); border: 1px solid var(--ink);
}
.contact-form .pill-cta:hover { background: rgba(252,248,239,0.82); border-color: rgba(252,248,239,0.82); }
.form-note { font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); line-height: 1.6; color: var(--ink-dim); }
.form-reply {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  letter-spacing: var(--ls-label); text-transform: uppercase;
  color: rgba(252,248,239,0.62); margin-top: -2px;
}
.form-note--success { color: var(--accent-ink); }
.form-note--error { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
.contact-form button[disabled] { opacity: 0.6; cursor: default; }
.contact-details { display: flex; flex-direction: column; }
.detail-row {
  display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 18px; align-items: baseline;
  padding: 15px 0; border-top: 1px solid var(--line);
}
.detail-row:last-child { border-bottom: 1px solid var(--line); align-items: center; }
.detail-row .col-label { margin: 0; color: var(--ink-dim); }
.contact-details p { color: var(--ink); margin: 0; font-size: var(--fs-body); line-height: 1.5; }
.contact-details a { color: var(--ink); transition: opacity var(--t-fast) var(--ease-out); }
.contact-details a:hover { opacity: 0.6; }
.socials { display: flex; gap: 10px; }
.social-icon {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--ink-dim);
  transition: border-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), transform var(--t-mid) var(--ease-out);
}
.social-icon svg { width: 18px; height: 18px; }
.social-icon:hover { border-color: var(--accent-ink); color: var(--accent-ink); transform: translateY(-3px); }

/* ---- Lightbox: always a dark overlay regardless of page theme ---- */
.lightbox {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(21,20,20,0.96); overscroll-behavior: contain;
  display: flex; align-items: center; justify-content: center;
  padding: 60px 40px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--t-mid) var(--ease-out), visibility 0s linear var(--t-mid);
}
.lightbox.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity var(--t-mid) var(--ease-out), visibility 0s linear 0s;
}
.lightbox-inner {
  max-width: 920px; width: 100%;
  display: flex; flex-direction: column; gap: 22px; align-items: center;
  transform: translateY(20px) scale(0.985); transition: transform 420ms var(--ease), opacity 420ms var(--ease-out);
  opacity: 0;
}
.lightbox.open .lightbox-inner { transform: none; opacity: 1; transition-delay: 60ms; }
.lightbox-media {
  width: 100%; max-height: 76vh;
  display: flex; align-items: center; justify-content: center; background: #151414;
}
.lightbox-media img, .lightbox-media video {
  max-width: 100%; max-height: 76vh; width: auto; height: auto; margin: 0 auto;
}
.lightbox-info { text-align: center; }
.lightbox-info h3 {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: var(--fs-heading); letter-spacing: -0.01em; margin-bottom: 8px; color: #fcf8ef;
}
.lightbox-info p { font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); color: rgba(252,248,239,0.6); letter-spacing: var(--ls-label); text-transform: uppercase; }
.lightbox-close {
  position: fixed; top: 28px; right: 36px; z-index: 601;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid rgba(252,248,239,0.3); border-radius: 50%; color: #fcf8ef;
  font-family: var(--body); font-size: var(--fs-body); line-height: 1; cursor: pointer;
  transition: border-color var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out);
}
.lightbox-close:active { transform: scale(0.92); }
.lightbox-close:hover { border-color: var(--accent); color: var(--accent); }

/* ---- Legal pages (Privacy Policy) ---- */
.legal-page { padding-top: 180px; max-width: 820px; }
.legal-title {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: var(--fs-heading); letter-spacing: -0.02em; margin-bottom: 14px;
}
.legal-updated { font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); color: var(--ink-dim); letter-spacing: 0.5px; margin-bottom: 60px; }
.legal-body p, .legal-body ul { color: var(--ink-dim); font-size: var(--fs-body); line-height: 1.8; margin-bottom: 26px; max-width: 720px; }
.legal-body h2 {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-body); text-transform: uppercase;
  letter-spacing: -0.01em; color: var(--ink); margin: 48px 0 16px;
}
.legal-body h3 {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--accent-ink); margin: 28px 0 12px;
}
.legal-body strong { color: var(--ink); font-weight: 500; }
.legal-body a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
.legal-list { padding-left: 20px; }
.legal-list li { list-style: disc; margin-bottom: 8px; }

@media (max-width: 720px) {
  .legal-page { padding-top: 130px; }
}

/* ---- Footer: deliberately dark, regardless of page theme — newsletter + link columns ---- */
.site-footer {
  background: var(--dark); color: rgba(252,248,239,0.6);
  padding: clamp(48px, 6vw, 72px) var(--gutter) 0; max-width: none; margin: 0;
  border-top: 1px solid rgba(252,248,239,0.12);
}
.footer-grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.6fr));
  gap: clamp(30px, 4vw, 60px); align-items: start;
  max-width: 1440px; margin: 0 auto;
  padding-bottom: clamp(36px, 4vw, 52px);
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; max-width: 420px; }
.footer-newsletter { max-width: 380px; }
.site-footer .footer-newsletter-label {
  font-family: var(--body); font-weight: 300; font-size: var(--fs-body);
  line-height: 1.55; color: rgba(252,248,239,0.78); margin: 0; text-wrap: pretty;
}
.newsletter-form { display: flex; gap: 8px; width: 100%; }
.newsletter-form input {
  flex: 1; background: rgba(252,248,239,0.06); border: 1px solid rgba(252,248,239,0.2); border-radius: 999px;
  padding: 12px 18px; color: #fcf8ef; font-family: var(--body); font-size: var(--fs-body);
}
.newsletter-form input::placeholder { color: rgba(252,248,239,0.55); }
.newsletter-form input:focus-visible { outline: 2px solid #fcf8ef; outline-offset: 2px; }
.newsletter-form input:focus { border-color: #fcf8ef; }
.newsletter-form button {
  display: inline-flex; align-items: center; justify-content: center; line-height: 1.6;
  background: #fcf8ef; color: var(--dark); border: none; border-radius: 999px; padding: 15px 28px;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); text-transform: uppercase; letter-spacing: 1px; cursor: pointer;
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.newsletter-form button:hover { background: var(--accent); color: var(--dark); }
.footer-note { font-size: var(--fs-micro); margin-top: 10px; color: rgba(252,248,239,0.68); }
.footer-col { display: flex; flex-direction: column; gap: 9px; }
.footer-col-label { font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); letter-spacing: var(--ls-label); text-transform: uppercase; color: rgba(252,248,239,0.62); margin-bottom: 6px; }
.footer-col a { font-size: var(--fs-body); color: rgba(252,248,239,0.75); transition: color var(--t-fast) var(--ease-out); }
.footer-col a:hover { color: var(--accent); }
.site-footer p, .footer-link { font-family: var(--display); font-weight: 700; color: rgba(252,248,239,0.62); font-size: var(--fs-micro); }
.footer-link { color: rgba(252,248,239,0.75); }
.footer-link:hover { color: var(--accent); }
.footer-logo img { height: 34px; width: auto; opacity: 0.9; }
.footer-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 26px;
  max-width: 1440px; margin: 0 auto;
  padding: 20px 0 calc(20px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(252,248,239,0.12);
}
.footer-meta p { margin: 0; }
.footer-meta .footer-link { margin-left: auto; }


/* ---- Call-to-actions ---- */
.header-actions { display: flex; align-items: center; gap: 20px; }

.section-cta { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 0 40px 110px; }
.section-cta-line {
  font-family: var(--body); font-weight: 300; font-size: calc(var(--fs-heading) * 0.56);
  line-height: 1.62; letter-spacing: -0.008em; color: var(--ink);
  max-width: min(980px, 92%); text-align: center;
}

.mobile-nav-cta { margin-top: 46px; }

/* screen-reader-only text for the LET'S TALK link */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.talk-marquee-link { display: block; text-decoration: none; color: inherit; }
.talk-marquee-link .talk-marquee-track { display: flex; }
.talk-marquee-link .talk-marquee-group { display: flex; align-items: center; flex-shrink: 0; }
.talk-marquee-link span span { transition: color var(--t-mid) var(--ease-out); }
.talk-marquee-link:hover span span { color: var(--accent); }

/* ---- Responsive ---- */
@media (max-width: 1000px) {
  .work-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .work-slider-track .work-tile { flex: 0 0 100%; }
  .work-category { margin-bottom: 40px; }
  .work-statement { text-align: left; max-width: none; }
  .paid-media-mini { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .contact-form { max-width: none; }
  .detail-row { grid-template-columns: 76px minmax(0, 1fr); gap: 14px; }
  /* footer steps down to two columns here: brand across the top, link lists paired */
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px clamp(30px, 5vw, 60px); }
  .footer-brand { grid-column: 1 / -1; max-width: 520px; }
  /* 1-up slider: fix the media height so a whole piece of work fits on one screen.
     aspect-ratio must be dropped here — with an auto width it would resolve the WIDTH
     from the capped height and shrink the image into a narrow strip. */
  .tile-media { aspect-ratio: 1 / 1; height: auto; }
}
@media (max-width: 720px) {
  /* Mobile reads at arm's length, not at desktop distance: type up, gutters and
     section rhythm in, so the page feels denser rather than zoomed out. */
  :root {
    --fs-display: min(11.2vw, 184px);
    --fs-heading: clamp(30px, 7.6vw, 52px);
    --fs-body: 16.5px;
    --fs-micro: 13px;
    --gutter: 20px;
  }
  .section { padding: clamp(66px, 12vw, 96px) var(--gutter); }
  .ed-open { padding-left: var(--gutter); padding-right: var(--gutter); }
  .ed-section { padding-bottom: clamp(52px, 11vw, 84px); }
  .ed-cluster { padding-bottom: clamp(46px, 10vw, 80px); }
  .ed-quote { padding: clamp(56px, 13vw, 96px) var(--gutter); margin-bottom: clamp(52px, 11vw, 84px); }
  .ed-measure p, .ed-standfirst { line-height: 1.7; }
  .accordion-trigger { padding: 22px 0; }
  /* iOS zooms the page when a focused input is under 16px — keep them at 16 */
  .contact-form input, .contact-form textarea, .newsletter-form input { font-size: 16px; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form button { width: 100%; }
  .site-header {
    padding: 20px 22px;
    padding-left: max(22px, env(safe-area-inset-left));
    padding-right: max(22px, env(safe-area-inset-right));
  }
  .work-stack-intro { align-items: flex-start; }
  .work-head { flex-direction: column; gap: 18px; }
  .work-statement { text-align: left; max-width: 100%; }
  .about-statement { max-width: 100%; }
  .slider-progress { margin-top: 16px; }
  .header-cta { display: none; }
  .section-cta { padding: 0 22px 80px; }
  .site-footer { padding: clamp(40px, 8vw, 56px) var(--gutter) 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-brand { grid-column: auto; max-width: none; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
  .footer-meta .footer-link { margin-left: 0; }
  .mobile-nav-foot {
    left: max(22px, env(safe-area-inset-left));
    right: max(22px, env(safe-area-inset-right));
    bottom: max(26px, env(safe-area-inset-bottom));
  }
  .lightbox { padding: 80px 20px 30px; }
  .lightbox-close { top: 18px; right: 18px; width: 38px; height: 38px; font-size: var(--fs-body); }
  .work-proof-line { max-width: 100%; margin-bottom: 22px; }
  .work-arrow { width: 44px; height: 44px; font-size: var(--fs-body); }
  .hero-body { padding: 0 var(--gutter); }
  .hero-headline { margin-bottom: 26px; }
  .hero-actions { margin-top: clamp(28px, 9vh, 80px); }
  .ed-cta-actions { width: 100%; flex-direction: column; }
  .ed-cta-actions .pill-cta { width: 100%; }
  .statement-section { padding: 56px 22px; }
  /* thumb-friendly hit areas without changing how any of this looks on desktop */
  .opt-in input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; }
  .contact-details p a { display: inline-block; padding: 10px 0; }
  .footer-col a { display: inline-flex; align-items: center; min-height: 44px; }
  .panel-link { min-height: 44px; padding-bottom: 14px; }
  .carousel-pause { min-height: 44px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero-headline .word { opacity: 1; }
  .mobile-nav-links a, .mobile-nav-foot { opacity: 1 !important; transform: none !important; transition: none; }
  .pill-cta::before { display: none; }
  .accordion-panel-inner > * { opacity: 1 !important; transition: none; }
  .lightbox-inner { opacity: 1 !important; transform: none !important; }
  .statement-dots button.active::before { transform: none; }
  .work-tile .tile-media img, .work-tile .tile-media video,
  .accordion-panel, .accordion-name, .accordion-icon::after { transition-duration: .01ms !important; }
  .work-stack-slide:not(.work-stack-intro) {
    position: static; height: auto; aspect-ratio: 16 / 9;
    margin-bottom: clamp(16px, 2.5vw, 30px); transform: none !important;
  }
  .work-stack-slide:not(.work-stack-intro) img,
  .work-stack-slide:not(.work-stack-intro) video { height: 100%; }
  .work-stack::after { display: none; }
  .stack-scrim { display: none; }
}


/* ============================================================
   Accessibility + robustness pass
   ============================================================ */

/* Keyboard focus: the site had no visible focus state anywhere */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}
/* ---- Scroll story: each section header wipes up from a mask, so sections arrive rather than slide ---- */
.work-category-title, .section-title, .about-statement { clip-path: inset(0 0 105% 0); }

@media (prefers-reduced-motion: reduce) {
  .work-category-title, .section-title, .about-statement,
  .work-tile .tile-media { clip-path: none !important; transition: none; }
  .hero-stage { height: auto; }
  .hero { position: relative; height: auto; min-height: 78svh; }
  .hero-media { transform: none !important; border-radius: 0 !important; }
  .hero-body { transform: none !important; opacity: 1 !important; }
}

.work-tile:focus-visible { outline-offset: 6px; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 700;
  transform: translateY(-160%);
  background: var(--ink); color: var(--bg);
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  letter-spacing: 1px; text-transform: uppercase;
  padding: 14px 22px; border-radius: 999px;
  transition: transform var(--t-mid) var(--ease-out);
}
.skip-link:focus-visible { transform: translateY(0); }

/* ---- Media pause controls: hero one sits on dark video, testimonial one sits on light section ---- */
.carousel-pause {
  display: inline-flex; align-items: center; justify-content: center; line-height: 1.6;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); letter-spacing: var(--ls-label); text-transform: uppercase;
  border-radius: 999px; padding: 15px 28px; cursor: pointer;
  transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.carousel-pause { color: var(--ink-dim); background: transparent; border: 1px solid var(--line); }
.carousel-pause:hover { color: var(--ink); border-color: var(--accent); }

.statement-controls { display: flex; align-items: center; gap: 22px; margin-top: 26px; }
.statement-section .carousel-pause { color: rgba(21,20,20,0.6); border-color: rgba(21,20,20,0.22); }
.statement-section .carousel-pause:hover { color: var(--bg); border-color: rgba(21,20,20,0.55); }
.statement-dots { margin-top: 0; }

/* Marquees stop for anyone who hovers or tabs into them */
.marquee-section:hover .marquee-track,
.marquee-section:focus-within .marquee-track,
.talk-marquee:hover .talk-marquee-track,
.talk-marquee:focus-within .talk-marquee-track { animation-play-state: paused; }


/* Contact form labels */
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form label {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro); letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ink-dim);
}
.contact-form label span { opacity: 0.6; }
.contact-form .field input, .contact-form .field textarea { width: 100%; }

/* ---- Service pages: editorial spread on the same off-black ground as the homepage ---- */
.ed-open {
  padding: clamp(140px, 20vh, 220px) var(--gutter) clamp(40px, 6vw, 72px);
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.ed-kicker {
  font-family: var(--body); font-weight: 300; font-style: italic;
  font-size: var(--fs-body); color: rgba(252,248,239,0.6); margin-bottom: 26px;
}
.ed-title {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: var(--fs-display); line-height: 0.88; letter-spacing: -0.035em;
  color: var(--ink); text-wrap: balance;
}
.ed-title--small { font-size: var(--fs-heading); line-height: 1; }
.ed-standfirst {
  font-size: var(--fs-body); line-height: 1.8; color: rgba(252,248,239,0.72);
  max-width: 56ch; margin: clamp(28px, 4vw, 46px) auto 0; text-wrap: pretty;
}

/* Asymmetric cluster: one large plate, two small satellites at different depths */
.ed-cluster {
  display: grid; grid-template-columns: 1fr minmax(0, 2.1fr) 1fr;
  align-items: start; gap: clamp(14px, 2.4vw, 34px);
  max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter) clamp(60px, 8vw, 110px);
}
.ed-cluster img { width: 100%; display: block; object-fit: cover; }
.ed-cluster-main img { aspect-ratio: 4 / 3; }
.ed-cluster-small img { aspect-ratio: 3 / 4; }
.ed-cluster-small--left { margin-top: clamp(30px, 6vw, 90px); }
.ed-cluster-small--right { margin-top: clamp(80px, 14vw, 210px); }
.ed-cluster figcaption, .ed-wide figcaption {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  letter-spacing: var(--ls-label); text-transform: uppercase;
  color: rgba(252,248,239,0.62); padding-top: 14px;
}

.ed-section { max-width: 1320px; margin: 0 auto; padding: 0 var(--gutter) clamp(64px, 9vw, 120px); }
.ed-section--centre { text-align: center; }
.ed-section--left { text-align: left; }
.ed-measure { max-width: 58ch; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.ed-measure p { font-size: var(--fs-body); line-height: 1.9; color: rgba(252,248,239,0.78); text-wrap: pretty; }
.ed-label {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent-ink);
}
.ed-label::before { content: '// '; }
.ed-label--centre { margin-bottom: 34px; }

.ed-split { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: clamp(24px, 5vw, 70px); align-items: start; }
.ed-steps { display: flex; flex-direction: column; }
.ed-steps li {
  list-style: none; display: grid; grid-template-columns: 74px minmax(0, 1fr); gap: 20px;
  padding: 28px 0; border-top: 1px solid rgba(252,248,239,0.14);
}
.ed-steps li:last-child { border-bottom: 1px solid rgba(252,248,239,0.14); }
.ed-step-no {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  letter-spacing: var(--ls-label); color: rgba(252,248,239,0.68); padding-top: 4px;
}
.ed-steps h2 {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: var(--fs-heading); line-height: 1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 12px;
}
.ed-steps p { font-size: var(--fs-body); line-height: 1.75; color: rgba(252,248,239,0.7); max-width: 52ch; text-wrap: pretty; }

.ed-wide { width: 100vw; margin-left: calc(50% - 50vw); padding-bottom: clamp(64px, 9vw, 120px); }
.ed-wide img { width: 100%; height: clamp(340px, 70svh, 720px); object-fit: cover; display: block; }
.ed-wide figcaption { max-width: 1320px; margin: 0 auto; padding: 14px var(--gutter) 0; }

.ed-included { display: flex; flex-direction: column; max-width: 760px; margin: 0 auto; }
.ed-included li {
  list-style: none; padding: 20px 0; border-top: 1px solid rgba(252,248,239,0.14);
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: var(--fs-micro); letter-spacing: var(--ls-label); color: var(--ink);
}
.ed-included li:last-child { border-bottom: 1px solid rgba(252,248,239,0.14); }

.ed-quote {
  background: var(--ink); color: var(--bg);
  padding: clamp(72px, 10vw, 130px) var(--gutter); text-align: center;
  margin-bottom: clamp(64px, 9vw, 120px);
}
.ed-quote blockquote { max-width: 46ch; margin: 0 auto; }
.ed-quote p { font-size: calc(var(--fs-heading) * 0.56); line-height: 1.62; letter-spacing: -0.008em; text-wrap: pretty; }
.ed-quote cite {
  display: block; margin-top: 30px; font-style: normal;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  letter-spacing: var(--ls-label); text-transform: uppercase; color: rgba(21,20,20,0.68);
}

.ed-related { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 30px); margin-top: 30px; }
.ed-related-tile { color: inherit; }
.ed-related-media { overflow: hidden; }
.ed-related-media img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block;
  filter: grayscale(0.9) contrast(1.05);
  transition: filter 520ms var(--ease-out), transform 700ms var(--ease);
}
.ed-related-tile:hover .ed-related-media img { filter: grayscale(0); transform: scale(1.04); }
.ed-related-tile h2 {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-body);
  text-transform: uppercase; letter-spacing: 0; color: var(--ink); margin: 16px 0 4px;
}
.ed-related-tile p {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--ink);
}

.ed-cta { padding-bottom: clamp(80px, 11vw, 150px); }
.ed-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.pill-cta--ink { background: var(--ink); color: var(--bg); border-color: transparent; }
.pill-cta--ink:hover { background: rgba(252,248,239,0.82); }
.pill-cta--outline { background: transparent; color: var(--ink); border: 1px solid rgba(252,248,239,0.3); }
.pill-cta--outline:hover { border-color: var(--ink); }
.ed-next { margin-top: 46px; padding-top: 26px; border-top: 1px solid rgba(252,248,239,0.14); }
.ed-next a {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--ink);
  transition: gap var(--t-fast) var(--ease-out);
}
.ed-next a:hover { gap: 18px; }


@media (max-width: 900px) {
  .ed-cluster { grid-template-columns: 1fr; gap: 18px; }
  .ed-cluster-small--left, .ed-cluster-small--right { margin-top: 0; max-width: 62%; }
  .ed-cluster-small--right { margin-left: auto; }
  .ed-cluster-main img { aspect-ratio: 3 / 2; }
  .ed-split { grid-template-columns: 1fr; gap: 22px; }
  .ed-related { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .ed-open { padding-top: clamp(120px, 18vh, 170px); }
  .ed-steps li { grid-template-columns: 52px minmax(0, 1fr); gap: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .ed-related-media img { transition: none; }
}

/* Cluster rhythms: each service page gets a different plate arrangement */
.ed-cluster--b { grid-template-columns: 1.15fr minmax(0, 1.8fr) 0.85fr; }
.ed-cluster--b .ed-cluster-main img { aspect-ratio: 3 / 2; }
.ed-cluster--b .ed-cluster-small--left { margin-top: clamp(70px, 12vw, 180px); }
.ed-cluster--b .ed-cluster-small--right { margin-top: clamp(20px, 4vw, 56px); }
.ed-cluster--c { grid-template-columns: 0.8fr minmax(0, 2.4fr) 1fr; }
.ed-cluster--c .ed-cluster-main img { aspect-ratio: 16 / 9; }
.ed-cluster--c .ed-cluster-small--left { margin-top: clamp(96px, 16vw, 240px); }
.ed-cluster--c .ed-cluster-small--right { margin-top: clamp(48px, 8vw, 130px); }

/* Platform / fact grid — used where a list of equals beats a numbered process */
.ed-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px; background: rgba(252,248,239,0.14); border: 1px solid rgba(252,248,239,0.14); margin-top: 30px;
}
.ed-grid > div { background: var(--bg); padding: clamp(24px, 3vw, 38px); }
.ed-grid h2 {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: var(--fs-heading); line-height: 1; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 14px;
}
.ed-grid p { font-size: var(--fs-body); line-height: 1.7; color: rgba(252,248,239,0.7); text-wrap: pretty; }

/* Two-up plate pair */
.ed-pair { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2.4vw, 30px); }
.ed-pair img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; }
.ed-pair figcaption {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  letter-spacing: var(--ls-label); text-transform: uppercase; color: rgba(252,248,239,0.62); padding-top: 14px;
}
@media (max-width: 900px) { .ed-pair { grid-template-columns: 1fr; } }

/* ---- Service page: breadcrumb, body head, FAQ ---- */
.ed-crumb {
  max-width: 1320px; margin: 0 auto;
  padding: clamp(120px, 16vh, 170px) var(--gutter) 0;
}
.ed-crumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.ed-crumb li {
  list-style: none; display: flex; align-items: center; gap: 8px;
  font-family: var(--display); font-weight: 700; font-size: var(--fs-micro);
  letter-spacing: var(--ls-label); text-transform: uppercase; color: rgba(252,248,239,0.68);
}
.ed-crumb li + li::before { content: "/"; color: rgba(252,248,239,0.3); }
.ed-crumb a { color: rgba(252,248,239,0.78); transition: color var(--t-fast) var(--ease-out); }
.ed-crumb a:hover { color: var(--ink); }
.ed-crumb li[aria-current] { color: var(--ink); }
.ed-crumb + .ed-open { padding-top: clamp(40px, 6vh, 70px); }

.ed-subhead {
  font-family: var(--display); font-weight: 900; text-transform: uppercase;
  font-size: var(--fs-heading); line-height: 1.04; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 8px; text-wrap: balance;
}

.ed-faq-list { margin-top: 26px; border-top: 1px solid rgba(252,248,239,0.14); }
.ed-faq-list details { border-bottom: 1px solid rgba(252,248,239,0.14); }
.ed-faq-list summary {
  display: flex; align-items: baseline; justify-content: space-between; gap: 24px;
  padding: 22px 0; cursor: pointer; list-style: none;
}
.ed-faq-list summary::-webkit-details-marker { display: none; }
.ed-faq-list summary h2 {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-body);
  text-transform: uppercase; letter-spacing: 0;
  line-height: 1.35; color: var(--ink); text-wrap: pretty;
}
.ed-faq-mark {
  flex-shrink: 0; font-family: var(--display); font-weight: 700; font-size: var(--fs-body);
  line-height: 1; color: rgba(252,248,239,0.68);
  transition: transform var(--t-mid) var(--ease-out), color var(--t-fast) var(--ease-out);
}
.ed-faq-list summary:hover .ed-faq-mark { color: var(--ink); }
.ed-faq-list details[open] .ed-faq-mark { transform: rotate(45deg); color: var(--ink); }
.ed-faq-list details p {
  padding: 0 0 26px; max-width: 62ch;
  font-size: var(--fs-body); line-height: 1.8; color: rgba(252,248,239,0.72); text-wrap: pretty;
}
.ed-cta .ed-standfirst { margin-top: 26px; }
@media (prefers-reduced-motion: reduce) {
  .ed-faq-mark { transition: none; }
}
@media (max-width: 720px) {
  .ed-crumb { padding-top: clamp(100px, 14vh, 140px); }
  .ed-faq-list summary { padding: 18px 0; gap: 16px; min-height: 44px; }
}
