/* ==========================================================================
   FIRSTPEAK STUDIO — V2 "THE HIGH GROUND FOLIO"
   Experimental rebuild. Production styles live in styles.css (untouched).
   Doctrine: content visible by default — JS only ever *adds* motion.
   One easing family, small amplitudes, gold appears as response (--accent
   warms slate->gold with scroll via the --sun scalar set from JS).
   ========================================================================== */

:root {
  --granite: #22262d;
  --granite-deep: #1a1d22;
  --slate: #5c6470;
  --bone: #f2eee6;
  --gold: #d89a45;
  --gold-bright: #e6ad5e;
  --pine: #2e3d34;

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Inter Tight", var(--font-sans);
  --font-serif: "Source Serif 4", Georgia, "Times New Roman", serif;

  /* --sun: 0 (pre-dawn slate) -> 1 (golden hour). Set from JS on scroll. */
  --sun: 0;
  /* Accents derived from --sun; JS writes the resolved colors. Two ramps so
     contrast holds on both paper stocks across the whole arc:
       on granite: #8A93A1 (4.9:1) -> #D89A45 (6.3:1)
       on bone:    #5C6470 (5.0:1) -> #8C5E1F (4.9:1)  */
  --accent-dark: #8a93a1;
  --accent-light: #5c6470;
  --gold-deep: #8c5e1f; /* static gold-family accent that passes on bone */

  --hairline-dark: rgba(242, 238, 230, 0.16);
  --hairline-light: rgba(34, 38, 45, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 200ms;
  --t-med: 420ms;

  --container: 1120px;
  --container-wide: 1280px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.has-lenis { scroll-behavior: auto; } /* Lenis takes over */

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--bone);
  background-color: var(--granite);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol, dl, dd { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); line-height: 1.08; }
p { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background-color: var(--pine); color: var(--bone); }

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

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.container-wide { width: 100%; max-width: var(--container-wide); margin-inline: auto; padding-inline: var(--pad); }

.skip-link {
  position: fixed; top: 0.75rem; left: 0.75rem; z-index: 4000;
  transform: translateY(-150%);
  padding: 0.7rem 1.1rem; border-radius: 6px;
  background: var(--gold); color: var(--granite);
  font-family: var(--font-display); font-weight: 600; font-size: 0.8125rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  transition: transform var(--t-fast) var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---- Type utilities -------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--accent-light);
  transition: color 400ms linear;
}
/* eyebrows on granite sections use the dark-bg ramp */
.centerfold .eyebrow, .letter .eyebrow, .screening .eyebrow,
.colophon .eyebrow, .cover .eyebrow { color: var(--accent-dark); }
.eyebrow--gold { color: var(--gold); }

.serif-lead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.625rem, 1.4vw + 1.25rem, 2.125rem);
  line-height: 1.42;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.06em;
  line-height: 1; padding: 0.95rem 2rem; border-radius: 7px;
  transition: background-position var(--t-med) var(--ease), color var(--t-fast), transform var(--t-fast) var(--ease), box-shadow var(--t-med) var(--ease);
}
.btn--gold {
  color: var(--granite);
  background-image: linear-gradient(100deg, var(--gold) 0%, var(--gold) 48%, var(--gold-bright) 52%, var(--gold-bright) 100%);
  background-size: 220% 100%;
  background-position: 0% 0;
}
.btn--gold:hover { background-position: 100% 0; }
.btn:active { transform: scale(0.97); }

/* ==========================================================================
   MASTHEAD NAV
   ========================================================================== */
.masthead {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: transparent;
  transition: box-shadow var(--t-med) var(--ease);
}
/* Glass layer lives on ::before, NOT the masthead itself — a filter on the
   masthead would make it the containing block for the fixed mobile menu. */
.masthead::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: rgba(26, 29, 34, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  opacity: 0; transition: opacity var(--t-med) var(--ease);
}
.masthead.is-scrolled::before { opacity: 1; }
.masthead.is-scrolled { box-shadow: 0 1px 0 var(--hairline-dark); }
/* Content pages (no hero behind the bar): solid from the top, and the first
   section clears the fixed bar. */
.masthead--solid::before { opacity: 1; }
.masthead--solid { box-shadow: 0 1px 0 var(--hairline-dark); }
.masthead--solid + main { padding-top: 4.25rem; }
.masthead__nav {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding-top: 1.1rem; padding-bottom: 1.1rem;
}
.masthead__brand { display: inline-flex; align-items: center; gap: 0.8rem; }
.masthead__mark { width: 38px; height: 27px; overflow: visible; }
.masthead__mark-base { fill: none; stroke: var(--slate); stroke-width: 1.6; stroke-linejoin: round; }
.masthead__mark-gold { fill: var(--gold); stroke: var(--gold); stroke-width: 1; stroke-linejoin: round; }
.masthead__wordmark {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--bone);
}
.masthead__wordmark em { font-style: normal; color: var(--accent-dark); transition: color 400ms linear; }

.masthead__menu { display: flex; align-items: center; gap: 2.25rem; }
.masthead__links { display: flex; align-items: center; gap: 2rem; }
.masthead__links a {
  position: relative; white-space: nowrap;
  font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--bone); transition: color var(--t-fast);
  padding-bottom: 4px;
}
.masthead__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--accent-dark); transform: scaleX(0); transform-origin: left center;
  transition: transform var(--t-med) var(--ease);
}
.masthead__links a:hover, .masthead__links a.is-active { color: var(--gold); }
.masthead__links a:hover::after, .masthead__links a.is-active::after { transform: scaleX(1); }

.masthead__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; padding: 10px; }
.masthead__toggle span { display: block; height: 2px; width: 100%; background: var(--bone); }
.masthead__close { display: none; }

/* ==========================================================================
   HERO · THE MASTHEAD
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; overflow: hidden;
  display: flex; align-items: center;
  background:
    radial-gradient(120% 90% at 50% 110%, rgba(46, 61, 52, 0.35) 0%, rgba(34, 38, 45, 0) 55%),
    var(--granite);
}
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero__contours-fallback {
  display: none;
  position: absolute; inset: auto 0 0 0; width: 100%; height: 60%;
  z-index: 0; opacity: 0.5;
}
.hero__contours-fallback path { stroke: var(--slate); opacity: 0.45; }
.hero__contours-fallback path:nth-child(5) { stroke: var(--gold); opacity: 0.8; }
html.no-webgl .hero__contours-fallback { display: block; }
html.no-webgl .hero__canvas { display: none; }

.hero__inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-top: 5.4rem; padding-bottom: 4.2rem;
}
.hero__logo {
  width: clamp(198px, 23vw, 312px);
  height: auto;
  margin-bottom: clamp(0.7rem, 1.6vh, 1.1rem);
  filter: drop-shadow(0 2px 14px rgba(26, 29, 34, 0.55));
}
.hero__issue {
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.3em;
  color: rgba(242, 238, 230, 0.82); margin-bottom: clamp(1rem, 2.4vh, 1.9rem);
  text-shadow: 0 1px 10px rgba(26, 29, 34, 0.85);
}
.hero__tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.25rem, 1.75vw, 1.62rem);
  color: var(--bone); margin-bottom: 1.1rem;
  text-shadow: 0 1px 12px rgba(26, 29, 34, 0.6);
}
.hero__tagline em { font-style: italic; color: var(--gold); }
.hero__headline {
  font-weight: 800; letter-spacing: -0.022em;
  font-size: clamp(2.5rem, 6.6vw, 6rem);
  line-height: 1.02; color: var(--bone);
  max-width: 14ch; margin-bottom: clamp(1.5rem, 3.4vh, 2.5rem);
}

.hero__plate { position: relative; width: min(48vw, 760px); margin: 0; }
.hero__plate-media {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  background: #000; border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  outline: 1px solid rgba(216, 154, 69, 0.28); outline-offset: -1px;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__plate-caption {
  margin-top: 0.95rem;
  font-family: var(--font-serif); font-size: 0.92rem; line-height: 1.55;
  color: rgba(242, 238, 230, 0.78);
}
.hero__plate-sub { display: block; }
.hero__plate-endorse {
  display: block; margin-top: 0.3rem;
  font-family: var(--font-sans); font-size: 0.66rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: rgba(242, 238, 230, 0.62);
}

/* The errata slip */
.hero__errata {
  display: inline-block; margin-top: 1.9rem;
  padding: 0.55rem 1rem;
  font-size: 0.8rem; font-weight: 500; color: var(--bone);
  background: rgba(26, 29, 34, 0.6);
  border: 1px solid rgba(216, 154, 69, 0.55);
  border-left-width: 3px; border-radius: 2px;
  transform: rotate(-1.2deg);
  transition: transform var(--t-med) var(--ease), background-color var(--t-fast);
}
.hero__errata em { font-style: normal; color: var(--gold); }
.hero__errata:hover { transform: rotate(0deg); background: rgba(26, 29, 34, 0.85); }

.hero__scrollcue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  width: 1px; height: 44px; overflow: hidden; z-index: 2;
  background: rgba(242, 238, 230, 0.12);
}
.hero__scrollcue span {
  position: absolute; left: 0; top: -50%; width: 100%; height: 50%;
  background: var(--gold);
  animation: cue-drop 2.4s var(--ease) infinite;
}
@keyframes cue-drop { 0% { top: -50%; } 60% { top: 100%; } 100% { top: 100%; } }

/* ==========================================================================
   PLATES (shared section chrome)
   ========================================================================== */
.plate { position: relative; }
.plate__inner { padding-top: clamp(5rem, 11vh, 8.5rem); padding-bottom: clamp(5rem, 11vh, 8.5rem); }

.plate__head {
  position: relative; display: flex; align-items: baseline; gap: 1.1rem;
  margin-bottom: clamp(1.6rem, 3.5vh, 2.6rem);
}
.plate__head::after {
  content: ""; flex: 1; height: 1px; background: var(--hairline-light);
  transform: scaleX(0); transform-origin: left center;
}

/* ==========================================================================
   FAQ — "Common Questions" plate, native <details> accordion (no JS)
   ========================================================================== */
.faq__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.12; color: var(--bone);
  max-width: 20ch; margin-bottom: clamp(1.4rem, 3.4vh, 2.4rem);
}
.faq__list { border-top: 1px solid var(--hairline-light); }
.faq__item { border-bottom: 1px solid var(--hairline-light); }
.faq__q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.25rem 0;
  font-family: var(--font-sans); font-weight: 600;
  font-size: clamp(1rem, 1.35vw, 1.18rem); color: var(--bone);
  transition: color var(--t-fast) var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: "+"; flex: none; line-height: 1;
  font-family: var(--font-sans); font-weight: 400; font-size: 1.5rem;
  color: var(--gold); transition: transform var(--t-med) var(--ease);
}
.faq__item[open] > .faq__q::after { transform: rotate(45deg); }
.faq__q:hover, .faq__item[open] > .faq__q { color: var(--gold); }
.faq__a {
  padding: 0 0 1.4rem; max-width: 64ch;
  font-family: var(--font-serif);
  font-size: 1rem; line-height: 1.65;
  color: rgba(242, 238, 230, 0.78);
}
.faq__a em { font-style: italic; color: rgba(242, 238, 230, 0.92); }
.faq__a a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
@media (prefers-reduced-motion: reduce) {
  .faq__q::after { transition: none; }
}
.plate__head--dark::after { background: var(--hairline-dark); }
.plate__head--center { justify-content: center; }
.plate__head--center::after { display: none; }
.v2-anim .plate__head.head-drawn::after { transition: transform 1s var(--ease); transform: scaleX(1); }
html:not(.v2-anim) .plate__head::after { transform: scaleX(1); }

.plate__no {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 5vw, 4rem); line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--accent-light);
  opacity: 0.65;
  transition: -webkit-text-stroke-color 400ms linear;
}
.plate__head--dark .plate__no { -webkit-text-stroke-color: var(--accent-dark); }

.plate__heading {
  font-weight: 700; font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  letter-spacing: -0.01em; margin-bottom: 0.9rem;
}
.plate__subhead { font-size: 1rem; color: var(--slate); max-width: 560px; margin-bottom: clamp(2.6rem, 6vh, 4.2rem); }

/* Light (bone) plates */
.plate--opportunity, .plate--services, .plate--work, .plate--print { background: var(--bone); color: var(--granite); }

/* ==========================================================================
   SERVICES PAGE — clean-loop video hero
   ========================================================================== */
.svc-hero {
  position: relative; overflow: hidden;
  min-height: clamp(440px, 84vh, 800px);
  display: flex; align-items: flex-end;
  background: var(--granite); color: var(--bone);
}
.svc-hero__video {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.svc-hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg,
    rgba(26, 29, 34, 0.58) 0%,
    rgba(26, 29, 34, 0.12) 32%,
    rgba(26, 29, 34, 0.30) 62%,
    rgba(26, 29, 34, 0.88) 100%);
}
.svc-hero__inner {
  position: relative; z-index: 2; width: 100%;
  padding-top: clamp(6rem, 13vh, 9.5rem);
  padding-bottom: clamp(3rem, 8vh, 6rem);
}
.svc-hero__heading {
  font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(2.4rem, 6.2vw, 5.2rem); line-height: 1.0;
  max-width: 15ch; margin: 0.7rem 0 0;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}
.svc-hero__sub {
  font-family: var(--font-serif); font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.55; color: rgba(242, 238, 230, 0.88); max-width: 46ch; margin-top: 1.1rem;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
}
.svc-hero .hero__scrollcue { z-index: 2; }

/* ---- Plate 01 · Opportunity ---- */
.opportunity__lead { max-width: 880px; color: var(--granite); }
.goldline { position: relative; font-style: italic; color: var(--gold-deep); white-space: nowrap; }
.goldline::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold); opacity: 0.65;
  transform: scaleX(0); transform-origin: left center;
}
.v2-anim .goldline.is-drawn::after { transition: transform 900ms var(--ease) 150ms; transform: scaleX(1); }
html:not(.v2-anim) .goldline::after { transform: scaleX(1); }

.opportunity__body {
  max-width: 620px; margin-top: 2.4rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.opportunity__body p { font-size: 1rem; line-height: 1.75; color: var(--granite); }

/* ---- Divider ---- */
.divider {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 0 var(--pad); max-width: var(--container-wide); margin-inline: auto;
  background: transparent;
}
.divider__rule { flex: 1; height: 1px; background: var(--hairline-dark); transform: scaleX(0); }
.divider__rule:first-child { transform-origin: right center; }
.divider__rule:last-child { transform-origin: left center; }
.divider svg { width: 26px; height: 18px; flex: 0 0 auto; }
.divider svg path { fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linejoin: round; stroke-dasharray: 60; stroke-dashoffset: 60; }
.v2-anim .divider.is-drawn .divider__rule { transition: transform 1.1s var(--ease); transform: scaleX(1); }
.v2-anim .divider.is-drawn svg path { transition: stroke-dashoffset 1s var(--ease) 0.25s; stroke-dashoffset: 0; }
html:not(.v2-anim) .divider__rule { transform: scaleX(1); }
html:not(.v2-anim) .divider svg path { stroke-dashoffset: 0; }

.divider { position: relative; z-index: 5; margin-top: -1px; padding-top: 2.4rem; padding-bottom: 2.4rem; }
.divider--on-bone { background: var(--bone); }
.divider--on-bone .divider__rule { background: var(--hairline-light); }

/* ==========================================================================
   PLATE 02 · CENTERFOLD (How We Work)
   ========================================================================== */
.centerfold { background: var(--granite); color: var(--bone); overflow: hidden; }
.centerfold__intro { padding-top: clamp(5rem, 11vh, 8.5rem); }
.centerfold__heading { font-weight: 700; font-size: clamp(1.9rem, 3.2vw, 2.7rem); max-width: 18ch; }
.centerfold__deck {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.18rem); line-height: 1.6;
  color: rgba(242, 238, 230, 0.72); max-width: 48ch; margin-top: 1.1rem;
}

/* HOW WE WORK — situation router (contents-page tabs / mobile accordion) */
.router {
  margin-top: clamp(2.6rem, 6vh, 4.4rem);
  display: grid;
  grid-template-columns: minmax(0, 33%) minmax(0, 1fr);
  column-gap: clamp(2rem, 4.5vw, 4.5rem);
}
.router__rail { grid-column: 1; grid-row: 1; list-style: none; margin: 0; padding: 0; }
.router__stage { grid-column: 2; grid-row: 1 / span 2; }
.router__hint { grid-column: 1; grid-row: 2; align-self: start; margin-top: 1.4rem; font-size: 0.85rem; line-height: 1.55; color: rgba(242, 238, 230, 0.5); }
.router__hint a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.router__tab {
  display: flex; align-items: baseline; gap: 0.85rem;
  width: 100%; text-align: left; cursor: pointer;
  padding: 0.95rem 0.3rem;
  background: transparent; border: 0; border-top: 1px solid var(--hairline-dark);
  color: rgba(242, 238, 230, 0.62);
  transition: color var(--t-fast);
}
.router__rail li:last-child .router__tab { border-bottom: 1px solid var(--hairline-dark); }
.router__num { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--accent-dark); transition: color var(--t-fast); }
.router__label { font-family: var(--font-display); font-weight: 600; font-size: clamp(0.95rem, 1.25vw, 1.08rem); line-height: 1.25; }
.router__tab:hover { color: var(--bone); }
.router__tab.is-active { color: var(--gold); }
.router__tab.is-active .router__num { color: var(--gold); }
.router__tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.router__panel { max-width: 56ch; }
.router__lead { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.18rem, 1.9vw, 1.55rem); line-height: 1.35; color: var(--bone); margin: 0 0 1rem; }
.router__body { font-size: 0.98rem; line-height: 1.7; color: rgba(242, 238, 230, 0.78); margin: 0 0 1.4rem; }
.router__services { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: 0.55rem; }
.router__services li { position: relative; padding-left: 1.1rem; font-size: 0.92rem; color: rgba(242, 238, 230, 0.88); }
.router__services li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.router__after { font-family: var(--font-serif); font-style: italic; font-size: 0.92rem; color: rgba(242, 238, 230, 0.55); margin: 0 0 1.6rem; }
.router__cta { display: inline-block; }
.router__detail {
  display: inline-block; margin-top: 0.95rem;
  font-size: 0.85rem; color: rgba(242, 238, 230, 0.62);
  text-decoration: underline; text-underline-offset: 3px;
  transition: color var(--t-fast);
}
.router__detail:hover { color: var(--gold); }

@media (max-width: 768px) {
  .router { grid-template-columns: 1fr; }
  .router__rail, .router__stage, .router__hint { grid-column: 1; grid-row: auto; }
  .router__stage { margin-top: 1.8rem; }
  .router__hint { margin-top: 1.6rem; }
}

.centerfold { padding-bottom: clamp(5rem, 11vh, 8rem); }

/* ==========================================================================
   PLATE 03 · SERVICES (bands)
   ========================================================================== */
/* Outcome groups (Get Found / Get Chosen / Look the Part / Respond) */
.svc-groups { display: flex; flex-direction: column; gap: clamp(4.5rem, 10vh, 8rem); }
.svc-group__head {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  margin-bottom: clamp(2rem, 4.5vh, 3.2rem);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--hairline-light);
}
.svc-group__label {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.15rem, 2vw, 1.55rem); letter-spacing: -0.01em;
  color: var(--granite);
}
.svc-group__sub { font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; color: var(--slate); }
/* Brief flash when an outcome group is deep-linked from the home router */
@keyframes svcTargetFlash {
  0%, 14% { background-color: rgba(216, 154, 69, 0.20); }
  100% { background-color: transparent; }
}
.svc-group.is-targeted .svc-group__head { animation: svcTargetFlash 2s var(--ease); }

.bands { display: flex; flex-direction: column; gap: clamp(4rem, 9vh, 7rem); }
.band {
  display: grid; grid-template-columns: 5fr 7fr; gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.band--alt { grid-template-columns: 7fr 5fr; }
.band--alt .band__label { order: 2; }
.band--alt .band__media { order: 1; }

.band__eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 0.6875rem;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent-light);
  margin-bottom: 0.7rem; transition: color 400ms linear;
}
.band--feature .band__eyebrow { color: var(--gold-deep); }
.band__title { font-weight: 700; font-size: clamp(1.4rem, 2.2vw, 1.85rem); margin-bottom: 0.65rem; letter-spacing: -0.01em; }
.band__desc { font-size: 0.95rem; line-height: 1.65; color: var(--slate); max-width: 52ch; }

.band--feature .band__label { position: relative; padding-top: 1.2rem; }
.band--feature .band__label::before {
  content: ""; position: absolute; top: 0; left: 0; width: 64px; height: 2px;
  background: var(--gold);
}

.band__media { margin: 0; }
.band__frame { overflow: hidden; border-radius: 6px; box-shadow: 0 14px 44px rgba(34, 38, 45, 0.16); }
.band__img { width: 100%; cursor: pointer; transition: transform 1.2s var(--ease); }
.band__frame:hover .band__img { transform: scale(1.025); }
/* The feature image is GSAP-scrubbed (Ken Burns) — a CSS transition would
   rubber-band against the scrub, and inline transforms own its hover. */
.band--feature .band__img { transition: none; }
.band__caption { margin-top: 0.7rem; font-size: 0.6875rem; color: var(--slate); }

/* Showpiece bands — full-width 16:9 images that carry their own baked copy */
.band--showpiece { display: block; }
.band--showpiece .band__media { margin: 0; }
.band--showpiece .band__frame { border-radius: 8px; }
.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;
}
@media (max-width: 768px) {
  /* On phones the baked-in image text is too small to read, so reveal the
     showpiece's copy as real text above the full-width image. */
  .band--showpiece .band__label.sr-only {
    position: static; width: auto; height: auto; clip: auto; margin: 0 0 1.1rem;
    overflow: visible; white-space: normal;
  }
}

/* Visual-pending placeholder (new service lines awaiting art) */
.band__frame--placeholder {
  aspect-ratio: 3 / 2; box-shadow: none;
  display: flex; align-items: center; justify-content: center;
  background: rgba(140, 94, 31, 0.05);
  border: 1px dashed var(--accent-dark);
}
.band__frame--placeholder span {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-light);
}

/* ==========================================================================
   PLATE 04 · SELECTED WORK (contact sheet)
   ========================================================================== */
.sheet {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(2rem, 4vw, 3.4rem) clamp(1.2rem, 2.4vw, 2rem);
  align-items: start;
}
.sheet__item:nth-child(12n + 1) { grid-column: span 5; }
.sheet__item:nth-child(12n + 2) { grid-column: span 4; margin-top: 3.5rem; }
.sheet__item:nth-child(12n + 3) { grid-column: span 3; margin-top: 7rem; }
.sheet__item:nth-child(12n + 4) { grid-column: span 3; }
.sheet__item:nth-child(12n + 5) { grid-column: span 5; margin-top: 2.5rem; }
.sheet__item:nth-child(12n + 6) { grid-column: span 4; margin-top: 5.5rem; }
.sheet__item:nth-child(12n + 7) { grid-column: span 4; }
.sheet__item:nth-child(12n + 8) { grid-column: span 5; margin-top: 3rem; }
.sheet__item:nth-child(12n + 9) { grid-column: span 3; margin-top: 6.5rem; }
.sheet__item:nth-child(12n + 10) { grid-column: span 4; }
.sheet__item:nth-child(12n + 11) { grid-column: span 5; margin-top: 3.5rem; }
.sheet__item:nth-child(12n + 12) { grid-column: span 3; margin-top: 6rem; }

.exhibit { margin: 0; cursor: pointer; }
.exhibit__media {
  overflow: hidden; border-radius: 4px; aspect-ratio: 1 / 1;
  box-shadow: 0 10px 28px rgba(34, 38, 45, 0.13);
}
.exhibit__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.82) contrast(0.99);
  transition: filter 700ms var(--ease), transform 700ms var(--ease);
}
.exhibit:hover .exhibit__media img { filter: saturate(1) contrast(1); transform: scale(1.02); }
.exhibit { transition: transform var(--t-med) var(--ease); }
.exhibit:hover { transform: translateY(-4px); }

.exhibit__label {
  display: flex; align-items: baseline; gap: 0.55rem;
  margin-top: 0.8rem; padding-top: 0.6rem;
  border-top: 1px solid var(--hairline-light);
}
.exhibit__label i {
  font-style: normal; font-family: var(--font-display); font-weight: 700;
  font-size: 0.625rem; letter-spacing: 0.1em; color: var(--gold-deep);
}
.exhibit__label b { font-family: var(--font-display); font-weight: 600; font-size: 0.8125rem; color: var(--granite); }
.exhibit__label em { font-family: var(--font-serif); font-style: italic; font-size: 0.78rem; color: var(--slate); margin-left: auto; transition: color var(--t-fast); }
.exhibit:hover .exhibit__label em { color: var(--gold-deep); }

/* ==========================================================================
   PLATE 05 · PRINT (paper physics)
   ========================================================================== */
.print__thesis {
  font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(3rem, 11vw, 10rem);
  line-height: 0.95; color: var(--granite);
  margin-bottom: 1.4rem;
}
.showcase { column-count: 3; column-gap: 28px; }
.paper { margin: 0 0 34px; break-inside: avoid; perspective: 900px; }
.paper.is-hidden { display: none; }

/* Showcase filter chips */
.showcase__filters {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin: 0 0 clamp(1.8rem, 3.6vh, 2.7rem);
}
.chip {
  font-family: var(--font-display); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.04em;
  padding: 0.5rem 1.1rem; border-radius: 999px;
  border: 1px solid var(--hairline-light);
  background: transparent; color: var(--slate);
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.chip:hover { color: var(--granite); border-color: var(--slate); }
.chip.is-active { color: var(--bone); background: var(--granite); border-color: var(--granite); }
.chip:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.paper__tilt {
  position: relative; overflow: hidden; border-radius: 3px;
  transform-style: preserve-3d;
  box-shadow: 0 12px 30px rgba(34, 38, 45, 0.16);
  transition: box-shadow var(--t-med) var(--ease);
  cursor: pointer;
  --shx: 50%; --shy: 50%;
}
.paper__tilt img { width: 100%; height: auto; display: block; }
.paper__sheen {
  position: absolute; inset: -20%;
  background: radial-gradient(38% 32% at var(--shx) var(--shy), rgba(255, 245, 224, 0.32) 0%, rgba(255, 245, 224, 0) 70%);
  opacity: 0; transition: opacity var(--t-med);
  pointer-events: none; mix-blend-mode: soft-light;
}
.paper__tilt:hover .paper__sheen { opacity: 1; }
.paper__tilt:hover { box-shadow: 0 22px 48px rgba(34, 38, 45, 0.24); }

/* ==========================================================================
   SCREENING ROOM (In Motion)
   ========================================================================== */
.screening { background: var(--granite-deep); color: var(--bone); }
.screening__inner { padding-top: clamp(5rem, 11vh, 8rem); padding-bottom: clamp(5rem, 11vh, 8rem); text-align: center; }
.screening__heading { font-weight: 700; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 0.7rem; }
.screening__subhead { font-size: 0.95rem; color: rgba(242, 238, 230, 0.62); margin-bottom: clamp(2.4rem, 5vh, 3.6rem); }

.screening__reels {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 22px;
  max-width: 1120px; margin-inline: auto;
}
.reel { flex: 0 1 332px; transition: opacity 600ms var(--ease); }
.screening.is-screening .reel:not(.is-playing) { opacity: 0.22; }
.reel__frame {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: 6px; background: #000;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  outline: 1px solid var(--hairline-dark); outline-offset: -1px;
}
.reel__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel__play {
  position: absolute; inset: 0; margin: auto;
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--granite);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
  transition: transform var(--t-fast) var(--ease), background-color var(--t-fast);
}
.reel__play:hover { transform: scale(1.06); background: var(--gold-bright); }
.reel__play svg { width: 28px; height: 28px; margin-left: 3px; fill: currentColor; }
.reel.is-playing .reel__play { display: none; }
.reel__caption {
  margin-top: 0.85rem; font-size: 0.6875rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: rgba(242, 238, 230, 0.62);
}
.reel__caption--serif {
  font-family: var(--font-serif); font-style: italic; text-transform: none;
  letter-spacing: 0; font-size: 0.92rem; color: rgba(242, 238, 230, 0.7);
}

/* ==========================================================================
   PLATE 06 · THE SIGNED LETTER (Why FirstPeak)
   ========================================================================== */
.letter { background: var(--granite); color: var(--bone); }
.letter__inner { padding-top: clamp(5rem, 11vh, 8.5rem); padding-bottom: clamp(5rem, 11vh, 8.5rem); }
.letter__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.letter__heading { font-weight: 700; font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: 1.1rem; }
.letter__lead { font-family: var(--font-serif); font-size: 1.08rem; line-height: 1.72; color: rgba(242, 238, 230, 0.85); margin-bottom: 1.9rem; }

.letter__seal { margin-bottom: 2rem; }
.letter__seal-label {
  font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.22em;
  color: rgba(242, 238, 230, 0.6); margin-bottom: 0.55rem;
}
.letter__seal-link { display: inline-block; opacity: 0.85; transition: opacity var(--t-fast); }
.letter__seal-link:hover { opacity: 1; }
.letter__seal-link img { width: 280px; }

.index { display: flex; flex-direction: column; }
.index__row {
  display: flex; gap: 0.9rem; align-items: baseline;
  padding: 0.95rem 0; border-top: 1px solid var(--hairline-dark);
}
.index__row:last-child { border-bottom: 1px solid var(--hairline-dark); }
.index__mark { font-size: 0.6rem; color: var(--slate); transition: color 600ms var(--ease); flex: 0 0 auto; }
.index__row.is-lit .index__mark { color: var(--gold); }
.index__row h3 { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.25rem; }
.index__row p { font-size: 0.83rem; line-height: 1.6; color: rgba(242, 238, 230, 0.68); }

.letter__media { margin: 0; }
.letter__media-frame {
  overflow: hidden; border-radius: 8px;
  outline: 1px solid rgba(216, 154, 69, 0.3); outline-offset: -1px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.38);
}
.letter__media-frame img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.letter__media-caption {
  margin-top: 0.8rem; font-family: var(--font-serif); font-style: italic;
  font-size: 0.92rem; color: rgba(242, 238, 230, 0.66);
}

.portrait { margin-top: clamp(3.5rem, 7vh, 5.5rem); display: flex; justify-content: center; }
.reel--portrait { width: min(640px, 100%); }
.reel--portrait .reel__frame { outline-color: rgba(216, 154, 69, 0.3); }
.reel--portrait .reel__caption { text-align: center; }

/* ==========================================================================
   BACK COVER · CTA
   ========================================================================== */
.cover { position: relative; overflow: hidden; isolation: isolate; text-align: center; }
.cover__video { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; }
.cover__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 70% at center, rgba(26, 29, 34, 0.7) 0%, rgba(26, 29, 34, 0.35) 70%),
    linear-gradient(rgba(26, 29, 34, 0.45), rgba(26, 29, 34, 0.45));
}
.cover__inner { padding-top: clamp(7rem, 16vh, 11rem); padding-bottom: clamp(7rem, 16vh, 11rem); }
.cover__heading {
  font-weight: 800; letter-spacing: -0.015em;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  margin: 1.1rem 0 1.3rem; color: var(--bone);
  text-shadow: 0 2px 16px rgba(26, 29, 34, 0.7);
}
.cover__subhead {
  font-size: 1.08rem; line-height: 1.7; color: rgba(242, 238, 230, 0.9);
  max-width: 540px; margin-inline: auto;
  text-shadow: 0 2px 12px rgba(26, 29, 34, 0.7);
}
.cover__btn { margin-top: 2.3rem; }
.cover__secondary { margin-top: 1.4rem; font-size: 0.875rem; color: rgba(242, 238, 230, 0.75); }
.cover__secondary a { color: var(--gold); border-bottom: 1px solid rgba(216, 154, 69, 0.4); }
.cover__secondary a:hover { color: var(--gold-bright); }

/* ==========================================================================
   COLOPHON · CONTACT
   ========================================================================== */
.colophon { background: var(--granite-deep); color: var(--bone); }
.colophon__inner {
  display: grid; grid-template-columns: 5fr 6fr; gap: clamp(3rem, 6vw, 6rem);
  padding-top: clamp(5rem, 11vh, 8rem); padding-bottom: clamp(5rem, 11vh, 8rem);
}
.colophon__heading { font-weight: 700; font-size: clamp(1.9rem, 3vw, 2.5rem); margin: 0.7rem 0 1.1rem; }
.colophon__text { font-size: 1rem; line-height: 1.7; color: rgba(242, 238, 230, 0.85); margin-bottom: 2.2rem; max-width: 44ch; }
.colophon__details { display: flex; flex-direction: column; gap: 1.3rem; }
.colophon__details dt {
  font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--accent-dark); margin-bottom: 0.25rem; transition: color 400ms linear;
}
.colophon__details dd { font-size: 0.95rem; color: rgba(242, 238, 230, 0.88); }
.colophon__details a { border-bottom: 1px solid rgba(216, 154, 69, 0.4); transition: color var(--t-fast), border-color var(--t-fast); }
.colophon__details a:hover { color: var(--gold); border-color: var(--gold); }

.colophon__form .field { margin-bottom: 1.7rem; }
.colophon__form label {
  display: block; font-size: 0.6875rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(242, 238, 230, 0.65); margin-bottom: 0.45rem;
}
.field__opt {
  font-weight: 400; text-transform: none; letter-spacing: 0.02em;
  color: rgba(242, 238, 230, 0.4); margin-left: 0.35em;
}
.colophon__form input, .colophon__form textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1.02rem;
  color: var(--bone); background: transparent;
  border: 0; border-bottom: 1px solid rgba(242, 238, 230, 0.25);
  border-radius: 0; padding: 0.45rem 0 0.6rem;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat; background-position: left bottom;
  background-size: 0% 1px;
  transition: background-size var(--t-med) var(--ease);
}
.colophon__form input:focus, .colophon__form textarea:focus {
  outline: none; background-size: 100% 1px;
}
.colophon__form textarea { resize: vertical; min-height: 84px; }
.colophon__form select {
  width: 100%; font-family: var(--font-sans); font-size: 1.02rem;
  color: var(--bone); background-color: transparent;
  border: 0; border-bottom: 1px solid rgba(242, 238, 230, 0.25);
  border-radius: 0; padding: 0.45rem 1.6rem 0.6rem 0;
  -webkit-appearance: none; -moz-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D89A45' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center; background-size: 15px;
}
.colophon__form select:focus { outline: none; border-bottom-color: var(--gold); }
.colophon__form select option { color: #1a1d22; }
.colophon__submit { margin-top: 0.4rem; }
.colophon__note {
  display: flex; align-items: center; gap: 0.6rem; margin-top: 1.1rem;
  font-family: var(--font-serif); font-style: italic; font-size: 0.95rem; color: var(--gold);
}
.colophon__note-mark { width: 22px; height: 15px; flex: 0 0 auto; }
.colophon__note-mark path {
  fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linejoin: round;
  stroke-dasharray: 60; stroke-dashoffset: 60;
}
.colophon__note.is-shown .colophon__note-mark path { transition: stroke-dashoffset 1.1s var(--ease); stroke-dashoffset: 0; }

/* ==========================================================================
   IMPRINT · FOOTER
   ========================================================================== */
.imprint { background: var(--granite-deep); border-top: 1px solid var(--hairline-dark); }
.imprint__inner { padding-top: 3.4rem; padding-bottom: 1.8rem; }
.imprint__mark { width: 44px; height: 31px; margin: 0 auto 2.6rem; }
.imprint__mark path {
  fill: none; stroke: var(--gold); stroke-width: 1.4; stroke-linejoin: round;
  stroke-dasharray: 130; stroke-dashoffset: 130;
}
.imprint__mark.is-drawn path { transition: stroke-dashoffset 1.5s var(--ease); stroke-dashoffset: 0; }
html:not(.v2-anim) .imprint__mark path { stroke-dashoffset: 0; }

.imprint__top { display: grid; grid-template-columns: 2fr 1.2fr 1.6fr; gap: 3rem; }
.imprint__logo { width: 230px; margin-bottom: 1.1rem; }
.imprint__tagline { font-size: 0.8125rem; line-height: 1.6; color: rgba(242, 238, 230, 0.7); max-width: 300px; margin-bottom: 1.1rem; }
.imprint__endorse {
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(242, 238, 230, 0.6); transition: color var(--t-fast);
}
.imprint__endorse:hover { color: var(--gold); }
.imprint__col h2 {
  font-size: 0.6875rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold); margin-bottom: 1.1rem;
}
.imprint__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.imprint__col a { font-size: 0.875rem; color: rgba(242, 238, 230, 0.8); transition: color var(--t-fast); }
.imprint__col a:hover { color: var(--gold); }

.imprint__bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 2.8rem; padding-top: 1.4rem; border-top: 1px solid rgba(242, 238, 230, 0.12);
}
.imprint__bottom p, .imprint__bottom a { font-size: 0.75rem; color: rgba(242, 238, 230, 0.55); }
.imprint__bottom ul { display: flex; gap: 1.5rem; }
.imprint__bottom a:hover { color: var(--gold); }

/* ==========================================================================
   PLATE VIEWER (lightbox)
   ========================================================================== */
.viewer {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 4rem 1.5rem;
  background: rgba(20, 22, 27, 0.94);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.viewer.is-open { opacity: 1; visibility: visible; }
.viewer__figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 1rem; max-width: 90vw; max-height: 90vh; }
.viewer__img {
  max-width: 90vw; max-height: 78vh; width: auto; height: auto;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.96);
  transition: transform 0.25s ease;
}
.viewer.is-open .viewer__img { transform: scale(1); }
.viewer__caption { text-align: center; }
.viewer__caption b { display: block; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--bone); }
.viewer__caption em { font-family: var(--font-serif); font-style: italic; font-size: 0.82rem; color: var(--gold); }
.viewer__counter {
  position: absolute; top: 1.55rem; left: 1.6rem;
  font-family: var(--font-serif); font-style: italic;
  font-size: 0.9rem; color: rgba(242, 238, 230, 0.7);
}
.viewer__close {
  position: absolute; top: 1.1rem; right: 1.2rem;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  color: var(--bone); font-size: 2rem; line-height: 1; transition: color var(--t-fast);
}
.viewer__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  color: var(--bone); font-size: 2.75rem; line-height: 1; transition: color var(--t-fast);
}
.viewer__nav--prev { left: 0.5rem; }
.viewer__nav--next { right: 0.5rem; }
.viewer__close:hover, .viewer__nav:hover { color: var(--gold); }
body.viewer-open { overflow: hidden; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .showcase { column-count: 2; }
  .band, .band--alt { grid-template-columns: 1fr; gap: 1.6rem; }
  .band--alt .band__label { order: 1; }
  .band--alt .band__media { order: 2; }
  .letter__grid { grid-template-columns: 1fr; }
  .colophon__inner { grid-template-columns: 1fr; gap: 3rem; }
  .imprint__top { grid-template-columns: 1fr; gap: 2.4rem; }
  .imprint__bottom { flex-direction: column; text-align: center; }
  .screening__reels { max-width: 640px; margin-inline: auto; }
  .screening__reels .reel { flex-basis: 100%; }
}

@media (max-width: 768px) {
  .masthead__toggle { display: flex; }
  .masthead__menu {
    position: fixed; inset: 0; z-index: 1100;
    flex-direction: column; justify-content: center; gap: 2.4rem;
    background: var(--granite);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  .masthead.is-open .masthead__menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .masthead__close {
    display: block; position: absolute; top: 1.6rem; right: 1.6rem;
    width: 44px; height: 44px; color: var(--bone); font-size: 2rem; line-height: 1;
  }
  .masthead__links { flex-direction: column; gap: 1.9rem; text-align: center; }
  .masthead__links a { font-family: var(--font-display); font-size: 1.35rem; text-transform: none; letter-spacing: 0.02em; }
  .masthead__links a::after { display: none; }
  body.nav-open { overflow: hidden; }

  .hero__inner { padding-top: 5.5rem; }
  .hero__plate { width: 100%; }
  .hero__video { object-position: center; }
  .hero__headline { font-size: clamp(2.5rem, 10.5vw, 3.6rem); }

  .sheet { display: flex; flex-direction: column; gap: 2.6rem; }
  .sheet__item { margin-top: 0 !important; }

  .showcase { column-count: 1; }
  .print__thesis { font-size: clamp(2.7rem, 13vw, 4.5rem); }

  .cover__heading { font-size: clamp(2.1rem, 9vw, 3rem); }

  .plate__no { font-size: 2.1rem; }
}

/* ==========================================================================
   REDUCED MOTION — everything visible, nothing moves
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__scrollcue { display: none; }
  .plate__head::after, .divider__rule { transform: scaleX(1) !important; }
  .divider svg path, .imprint__mark path { stroke-dashoffset: 0 !important; }
  .goldline::after { transform: scaleX(1) !important; }
}
