/* =============================================================
   Cinematic Coastal — Lowcountry Mobility & Movement
   Photography-led, scroll-driven, soft blues + sand + warm white
   ============================================================= */

:root {
  /* COASTAL PALETTE — soft blues + sand + warm white */
  --bone:        oklch(97.5% 0.010 85);     /* warm white */
  --bone-2:      oklch(94% 0.014 85);       /* warmer cream */
  --sand:        oklch(89% 0.025 75);       /* warm sand */
  --sand-deep:   oklch(78% 0.045 70);       /* sun-warmed sand */
  --tide:        oklch(72% 0.045 220);      /* soft tidewater blue */
  --tide-deep:   oklch(48% 0.060 222);      /* deeper coastal blue */
  --tide-night:  oklch(22% 0.040 230);      /* deep marsh dusk */
  --marsh:       oklch(48% 0.060 145);      /* marsh grass green */
  --marsh-deep:  oklch(28% 0.045 150);
  --ember:       oklch(65% 0.13 50);        /* sunset orange accent */

  --ink:         oklch(16% 0.018 230);      /* near-black with blue cast */
  --ink-2:       oklch(28% 0.020 230);
  --ink-3:       oklch(45% 0.020 230);
  --ink-4:       oklch(62% 0.018 230);

  --rule:        oklch(82% 0.012 220);
  --rule-pale:   oklch(90% 0.010 220);

  /* TYPE — editorial serif display + sans body + mono labels */
  --display: "Fraunces", "Source Serif 4", Georgia, "Times New Roman", serif;
  --body:    "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;
  /* Fraunces optical-size axis: SOFT for display sizes, NORMAL for body */
  --display-opsz: 144;
  --display-feature: "ss01"; /* alternate "g" — calmer */

  --maxw:    1320px;
  --maxw-narrow: 880px;
  --gutter:  clamp(20px, 4vw, 56px);

  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 22px;
}

/* Override shared.css legacy variables so partials match */
:root {
  --type-display: var(--display);
  --type-body: var(--body);
  --type-mono: var(--mono);
  --serif: var(--display);
  --sans: var(--body);
  --bg: var(--bone);
  --sage-deep: var(--tide-deep);
  --sage: var(--tide);
  --sage-pale: var(--sand);
  --focus: var(--ember);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Lock horizontal scrolling completely — applied to both html and body
   for iOS Safari, plus touch-action to block horizontal swipe gestures. */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}
body {
  touch-action: pan-y;
  overscroll-behavior-x: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 96;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}

em, i {
  font-style: italic;
  font-weight: 400;
  color: var(--tide-deep);
  font-family: var(--display);
  font-variation-settings: "opsz" 96, "SOFT" 100;
}
strong, b { font-weight: 600; }
p { margin: 0; text-wrap: pretty; }

/* ──────────────────────────────────────────────
   FIVE-STEP TYPE SCALE — use these classes; don't
   improvise per-section. (Architect's rule.)
   ────────────────────────────────────────────── */
:root {
  --t-eyebrow: 0.72rem;     /* mono labels, 01/02/03 */
  --t-body:    1rem;        /* paragraphs */
  --t-sub:     1.25rem;     /* lede, sub-heads */
  --t-headline: clamp(2rem, 1rem + 2.6vw, 3.4rem);   /* section h2 */
  --t-display: clamp(2.2rem, 0.8rem + 3.6vw, 5rem);  /* hero / pull-quote */
}
.t-eyebrow { font-family: var(--mono); font-size: var(--t-eyebrow); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.t-body    { font-family: var(--body); font-size: var(--t-body); line-height: 1.55; }
.t-sub     { font-family: var(--display); font-size: var(--t-sub); line-height: 1.4; font-weight: 400; }
.t-headline{ font-family: var(--display); font-size: var(--t-headline); line-height: 1.05; font-weight: 400; letter-spacing: -0.018em; font-variation-settings: "opsz" 96; }
.t-display { font-family: var(--display); font-size: var(--t-display); line-height: 1.0;  font-weight: 300; letter-spacing: -0.025em; font-variation-settings: "opsz" 144; }

/* =============================================================
   Reusable: kicker, section-head, button, link-arrow
   ============================================================= */
.cine-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.cine-kicker.pale {
  color: color-mix(in oklab, var(--bone) 80%, transparent);
}

.cine-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.cine-wrap-narrow {
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.cine-section-head {
  max-width: 60ch;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.cine-section-head .cine-kicker { margin-bottom: 24px; }
.cine-section-head h2 {
  font-size: clamp(2.4rem, 1.6rem + 3.2vw, 4.8rem);
  font-weight: 400;
  margin-bottom: 24px;
}
.cine-section-head h2.invert { color: var(--bone); }
.cine-section-lede {
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.3rem);
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 50ch;
}

/* Buttons */
.cine-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 26px;
  min-height: 52px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.cine-btn svg {
  width: 16px; height: 16px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.cine-btn:hover svg { transform: translateX(4px); }

.cine-btn-primary {
  background: var(--ink);
  color: var(--bone);
}
.cine-btn-primary:hover { background: var(--tide-deep); }

.cine-btn-ghost {
  background: transparent;
  color: var(--bone);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--bone) 50%, transparent);
}
.cine-btn-ghost:hover {
  box-shadow: inset 0 0 0 1px var(--bone);
  background: color-mix(in oklab, var(--bone) 8%, transparent);
}

.cine-btn-dark {
  background: var(--ink);
  color: var(--bone);
}
.cine-btn-dark:hover { background: var(--tide-night); }

.cine-btn-pale {
  background: var(--bone);
  color: var(--ink);
}
.cine-btn-pale:hover { background: var(--sand); }

.cine-btn-ghost-pale {
  background: transparent;
  color: var(--bone);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--bone) 35%, transparent);
}
.cine-btn-ghost-pale:hover { box-shadow: inset 0 0 0 1px var(--bone); }

.cine-btn-large {
  padding: 22px 34px;
  font-size: 1.05rem;
  min-height: 60px;
}

/* Override ghost in dark contexts */
.cine-close .cine-btn-ghost {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 35%, transparent);
}
.cine-close .cine-btn-ghost:hover {
  box-shadow: inset 0 0 0 1px var(--ink);
  background: color-mix(in oklab, var(--ink) 6%, transparent);
}

.cine-link-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 35%, transparent);
  transition: border-color .25s, color .25s;
}
.cine-link-arrow svg {
  width: 16px; height: 16px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.cine-link-arrow:hover { border-color: var(--ink); }
.cine-link-arrow:hover svg { transform: translateX(4px); }

/* =============================================================
   HERO — Editorial split layout
   Left: cream panel with all type. Right: contained portrait.
   No overlay, no scrim — type sits on brand color.
   ============================================================= */
.cine-hero {
  position: relative;
  min-height: 720px;
  max-height: 1080px;
  height: 100vh;
  overflow: hidden;
  background: var(--bg-2);
  color: var(--ink);
  margin-top: -1px;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) 1.25fr;
}
@media (max-width: 880px) {
  .cine-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    height: auto;
    max-height: none;
    min-height: 0;
  }
}

/* Nav now sits on the cream panel, dark text — no overlay tricks */
body[data-page="home"] .nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--bg-2) !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  z-index: 10;
  color: var(--ink);
}
body[data-page="home"] .nav.scrolled {
  position: fixed;
  background: color-mix(in oklab, var(--bg-2) 92%, transparent) !important;
  backdrop-filter: saturate(1.1) blur(14px);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  border-bottom: 1px solid var(--rule) !important;
  animation: navIn .35s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes navIn {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

body[data-page="home"] .nav .brand,
body[data-page="home"] .nav .brand-name { color: var(--ink); }
body[data-page="home"] .nav .brand-name small { color: var(--ink-3); }
body[data-page="home"] .nav .nav-links a { color: var(--ink-2); }
body[data-page="home"] .nav .nav-links a.active { color: var(--ink); }
body[data-page="home"] .nav .nav-links a:hover { color: var(--ink); }
body[data-page="home"] .nav .nav-cta { background: var(--ink); color: var(--bg); }
body[data-page="home"] .nav .nav-cta:hover { background: var(--sage-deep); }
body[data-page="home"] .nav .nav-burger { color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
/* No text-shadow needed — sitting on solid color */
body[data-page="home"] .nav:not(.scrolled) .brand-name,
body[data-page="home"] .nav:not(.scrolled) .brand-name small,
body[data-page="home"] .nav:not(.scrolled) .nav-links a { text-shadow: none; }

/* Right column: contained photo */
.cine-hero-media {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  inset: auto;
  overflow: hidden;
  height: 100%;
  width: 100%;
  will-change: transform;
}
@media (max-width: 880px) {
  .cine-hero-media {
    grid-column: 1;
    grid-row: 1;
    aspect-ratio: 4 / 3;
    height: auto;
  }
}
.cine-hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1.0); }
}

/* Vignette is no longer needed — kept defined but hidden so old markup
   still parses, and re-enable easily if you ever go full-bleed again. */
.cine-hero-vignette { display: none; }

/* Photo coming soon — used in the .cine-erin-photo slot until we have a real
   portrait of Erin. Same visual language as shared.css's version. */
.photo-coming-soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  width: 100%; height: 100%;
  min-height: 380px;
  background: var(--sage-tint, oklch(94% 0.018 160));
  border: 1px dashed oklch(45% 0.050 160 / 0.45);
  border-radius: var(--radius-m, 14px);
  color: oklch(32% 0.045 160);
  text-align: center;
  padding: 32px;
}
.photo-coming-soon svg { opacity: 0.55; }
.photo-coming-soon-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: oklch(32% 0.045 160);
  font-weight: 600;
}
.cine-hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.cine-hero-chrome {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  /* Generous horizontal padding — pushes the H1 off the screen edge so it
     reads as centered within the panel instead of pinned. */
  padding: 132px clamp(40px, 5.5vw, 88px) 64px clamp(48px, 6vw, 104px);
  max-width: none;
  margin: 0;
  background: var(--bg-2);
}
@media (max-width: 880px) {
  .cine-hero-chrome {
    grid-column: 1;
    grid-row: 2;
    padding: 56px 24px 56px;
    height: auto;
  }
}

.cine-hero-top {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* Brand mark + wordmark — lives inside the cream panel, above the eyebrow */
.cine-hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--ink);
}
.cine-hero-brand-mark {
  width: 44px; height: 44px;
  flex: 0 0 auto;
}
.cine-hero-brand-name {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 400;
  font-style: italic;            /* editorial masthead treatment */
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 36, "SOFT" 100;
}
.cine-hero-brand-name small {
  display: block;
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 8px;
  font-weight: 600;
  line-height: 1.3;
  font-variation-settings: normal;
  white-space: nowrap;       /* tagline on one line */
}
@media (max-width: 1100px) {
  .cine-hero-brand-name small { font-size: 0.54rem; letter-spacing: 0.14em; }
}
@media (max-width: 880px) {
  .cine-hero-brand-name { font-size: 1.25rem; }
  .cine-hero-brand-name small { font-size: 0.52rem; letter-spacing: 0.12em; white-space: nowrap; }
}

/* Hide the nav brand on the home page — brand now lives in the hero panel */
body[data-page="home"] .nav .brand { visibility: hidden; }
@media (max-width: 880px) {
  /* On mobile the nav still needs the brand for context (hero stacks below the photo) */
  body[data-page="home"] .nav .brand { visibility: visible; }
  body[data-page="home"] .cine-hero-brand { display: none; }
}
.cine-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 16px;
  background: color-mix(in oklab, var(--ink) 5%, transparent);
  border: 1px solid color-mix(in oklab, var(--ink) 12%, transparent);
  border-radius: 999px;
  animation: fadeInUp 1.2s 0.4s cubic-bezier(.2,.8,.2,1) both;
}
.cine-dot {
  width: 7px; height: 7px;
  background: oklch(80% 0.18 145);
  border-radius: 50%;
  box-shadow: 0 0 0 3px oklch(80% 0.18 145 / 0.3);
  animation: heroDotPulse 2.4s ease-in-out infinite;
}
@keyframes heroDotPulse {
  0%, 100% { box-shadow: 0 0 0 3px oklch(80% 0.18 145 / 0.3); }
  50%      { box-shadow: 0 0 0 7px oklch(80% 0.18 145 / 0); }
}

.cine-hero-bottom {
  align-self: end;
}
.cine-hero-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.9rem, 0.4rem + 3.4vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: clamp(28px, 3vw, 44px);
  text-shadow: none;
}
.cine-hero-h .line {
  display: block;
  overflow: hidden;
  /* Each authored line stays on a single line at desktop widths;
     wraps naturally on phones where the clamped font is smaller. */
  white-space: nowrap;
}
@media (max-width: 700px) {
  .cine-hero-h .line {
    white-space: normal !important;
    overflow: visible !important;
  }
}
.cine-hero-h .line-1 { animation: heroLineUp 1.2s 0.6s cubic-bezier(.2,.8,.2,1) both; }
.cine-hero-h .line-2 {
  font-style: italic;
  font-weight: 300;
  color: var(--sage-deep);
  animation: heroLineUp 1.2s 0.9s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes heroLineUp {
  from { transform: translateY(60%); opacity: 0; clip-path: inset(0 0 100% 0); }
  to   { transform: translateY(0); opacity: 1; clip-path: inset(0 0 0 0); }
}
@keyframes fadeInUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.cine-hero-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  animation: fadeInUp 1.2s 1.2s cubic-bezier(.2,.8,.2,1) both;
}

.cine-hero-lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1rem, 0.85rem + 0.4vw, 1.2rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 42ch;
  letter-spacing: -0.005em;
  text-shadow: none;
}

.cine-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-self: start;
}

/* Ghost button variant — re-skinned for the cream panel */
.cine-hero .cine-btn-ghost {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--ink) 22%, transparent);
}
.cine-hero .cine-btn-ghost:hover {
  box-shadow: inset 0 0 0 1px var(--ink);
  background: color-mix(in oklab, var(--ink) 5%, transparent);
}

/* Scroll cue belongs to the full-bleed treatment — hide on the split layout */
.cine-hero .cine-scroll-cue { display: none; }

.cine-scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--bone) 70%, transparent);
  z-index: 3;
  animation: fadeInUp 1.5s 1.8s cubic-bezier(.2,.8,.2,1) both;
}
.cine-scroll-cue .cue-line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--bone) 65%, transparent) 0%,
    transparent 100%);
  animation: cueScroll 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes cueScroll {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================================
   INTRO — Quiet typographic pause
   ============================================================= */
.cine-intro {
  background: var(--bone);
  padding: clamp(120px, 18vw, 240px) 0;
  position: relative;
}
.cine-intro .cine-kicker { margin-bottom: 48px; }
.cine-statement {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 1.2rem + 3.2vw, 4.6rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 24ch;
  font-variation-settings: "opsz" 144;
}
.cine-statement span {
  display: block;
}
.cine-statement .muted {
  color: var(--ink-3);
  font-weight: 300;
  font-style: italic;
}
/* Drop cap on the very first character of the statement — editorial texture */
.cine-statement span:first-child::first-letter {
  font-family: var(--display);
  font-weight: 300;
  font-style: normal;
  float: left;
  font-size: 4.2em;
  line-height: 0.85;
  margin: 0.05em 0.10em -0.05em -0.04em;
  color: var(--tide-deep);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* =============================================================
   PILLARS — Editorial four-card list
   ============================================================= */
.cine-pillars {
  background: var(--bone);
  padding-block: clamp(80px, 12vw, 180px);
  position: relative;
}

/* Paper grain — applied to all cream sections via a single utility ::before.
   3% opacity, multiply blend, mono noise. Editorial texture without
   muddying the page. */
.cine-intro,
.cine-pillars,
.cine-quote {
  position: relative;
  isolation: isolate;
}
.cine-intro::before,
.cine-pillars::before,
.cine-quote::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' stitchTiles='stitch' seed='3'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.85 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
}
.cine-intro > *,
.cine-pillars > *,
.cine-quote > * { position: relative; z-index: 1; }
.cine-pillars::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--rule-pale);
}

.cine-pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-pale);
}
@media (max-width: 880px) {
  .cine-pillar-list { grid-template-columns: 1fr; }
}

.cine-pillar {
  /* Generous vertical air; numerals get a column of their own */
  padding: clamp(56px, 6.5vw, 96px) clamp(28px, 3.2vw, 64px);
  border-bottom: 1px solid var(--rule-pale);
  border-right: 1px solid var(--rule-pale);
  display: grid;
  grid-template-columns: clamp(72px, 8vw, 120px) 1fr;
  column-gap: clamp(20px, 2.5vw, 40px);
  row-gap: 16px;
  align-content: start;
  position: relative;
  transition: background .35s;
}
.cine-pillar:nth-child(2n) { border-right: none; }
@media (max-width: 880px) {
  .cine-pillar {
    border-right: none;
    grid-template-columns: 1fr;
    padding: 48px 24px;
  }
}
.cine-pillar:hover {
  background: color-mix(in oklab, var(--sand) 35%, var(--bone));
}

/* Big mono numeral — its OWN row in column 1, doesn't wrap into other content */
.cine-pillar-num {
  grid-column: 1;
  grid-row: 1 / span 3;
  font-family: var(--mono);
  font-size: clamp(2.4rem, 1.6rem + 1.2vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: color-mix(in oklab, var(--ink) 30%, transparent);
  line-height: 1;
  align-self: start;
  white-space: nowrap;       /* numerals never wrap */
  display: block;
}
@media (max-width: 880px) {
  .cine-pillar-num {
    grid-column: 1;
    grid-row: auto;
    font-size: 1.8rem;
    margin-bottom: 4px;
  }
}

/* Small mono label sits as an eyebrow above the headline */
.cine-pillar-label {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tide-deep, var(--sage-deep));
  margin: 6px 0 0;
}
@media (max-width: 880px) {
  .cine-pillar-label { grid-column: 1; grid-row: auto; margin-top: 0; }
}

.cine-pillar h3 {
  grid-column: 2;
  grid-row: 2;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.2rem);
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 96;
  line-height: 1.15;
  max-width: 22ch;
  margin: 8px 0 14px;
}
@media (max-width: 880px) { .cine-pillar h3 { grid-column: 1; grid-row: auto; } }

.cine-pillar p {
  grid-column: 2;
  grid-row: 3;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 42ch;
  margin: 0;
}
@media (max-width: 880px) { .cine-pillar p { grid-column: 1; grid-row: auto; } }

/* Hairline above the very first pillar to give the section a clear top edge */
.cine-pillar-list { border-top: 1px solid var(--rule); }

.cine-pillars > .cine-wrap > .cine-link-arrow {
  margin-top: 56px;
}

/* =============================================================
   CINEMATIC PHOTO BAND
   ============================================================= */
.cine-photo-band {
  position: relative;
  overflow: hidden;
  background: var(--bone);
}
.cine-photo-frame {
  margin: 0;
  position: relative;
  height: clamp(420px, 70vh, 760px);
  overflow: hidden;
}
.cine-photo-frame img {
  width: 100%; height: 110%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}
.cine-photo-cap {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  left: clamp(24px, 5vw, 64px);
  max-width: 320px;
  background: color-mix(in oklab, var(--bone) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 22px;
  border-radius: 14px;
  display: grid;
  gap: 6px;
  border: 1px solid color-mix(in oklab, var(--bone) 50%, transparent);
}
.cine-photo-cap-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.cine-photo-cap-text {
  font-family: var(--display);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
}

/* =============================================================
   PROMISE — Dark sage band
   ============================================================= */
.cine-promise {
  background: var(--tide-night);
  color: var(--bone);
  padding-block: clamp(100px, 14vw, 180px);
  position: relative;
  overflow: hidden;
}
.cine-promise::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--tide-deep) 0%, transparent 60%);
  opacity: 0.4;
  pointer-events: none;
}

.cine-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid color-mix(in oklab, var(--bone) 18%, transparent);
}
@media (max-width: 880px) {
  .cine-promise-grid { grid-template-columns: 1fr; }
}

.cine-promise-card {
  padding: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 48px);
  border-right: 1px solid color-mix(in oklab, var(--bone) 18%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--bone) 18%, transparent);
  display: grid;
  gap: 18px;
  align-content: start;
  position: relative;
}
.cine-promise-card:last-child { border-right: none; }
@media (max-width: 880px) {
  .cine-promise-card { border-right: none; }
}

.cine-promise-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--sand);
}
.cine-promise-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.4rem, 1.2rem + 0.8vw, 1.9rem);
  color: var(--bone);
  letter-spacing: -0.02em;
}
.cine-promise-card p {
  color: color-mix(in oklab, var(--bone) 78%, transparent);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 38ch;
}

/* =============================================================
   QUOTE — Editorial pull
   ============================================================= */
.cine-quote {
  background: var(--bone-2);
  padding-block: clamp(120px, 16vw, 220px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cine-quote .cine-wrap-narrow {
  position: relative;
  text-align: left;
}

.cine-quote-mark {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(8rem, 16vw, 18rem);
  line-height: 0.7;
  color: var(--sand-deep);
  opacity: 0.55;
  margin-bottom: -40px;
  margin-left: -8px;
  pointer-events: none;
}

.cine-quote-text {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 40px 0;
  max-width: 28ch;
}
.cine-quote-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--tide-deep);
}

.cine-quote-attrib {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 24px;
}
.cine-quote-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 500;
  flex-shrink: 0;
}
.cine-quote-attrib strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.cine-quote-attrib span {
  font-size: 0.9rem;
  color: var(--ink-3);
}

.cine-quote-note {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-4);
  font-style: italic;
}

/* =============================================================
   ERIN — Photo + copy split
   ============================================================= */
.cine-erin {
  background: var(--bone);
  padding-block: clamp(100px, 14vw, 180px);
  overflow: hidden;
}
.cine-erin-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 960px) {
  .cine-erin-grid { grid-template-columns: 1fr; gap: 40px; }
}

.cine-erin-copy { max-width: 52ch; }
.cine-erin-copy .cine-kicker { margin-bottom: 24px; }
.cine-erin-copy h2 {
  font-size: clamp(2.2rem, 1.6rem + 2.4vw, 4rem);
  font-weight: 400;
  margin-bottom: 28px;
  letter-spacing: -0.025em;
}
.cine-erin-copy > p {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 36px;
}

.cine-erin-creds {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule-pale);
}
.cine-erin-creds li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-pale);
  font-size: 0.98rem;
  color: var(--ink-2);
}
.cine-erin-creds li span {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--ink-4);
  font-weight: 500;
}

.cine-erin-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 1px 2px oklch(20% 0.02 230 / 0.06),
    0 30px 80px -32px oklch(20% 0.02 230 / 0.4);
}
.cine-erin-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.cine-erin-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: color-mix(in oklab, var(--bone) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 18px;
  border-radius: 12px;
  display: grid;
  gap: 4px;
  border: 1px solid color-mix(in oklab, var(--bone) 50%, transparent);
}
.cine-erin-tag span:nth-child(2) {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

/* =============================================================
   FIRST VISIT — Numbered timeline
   ============================================================= */
.cine-visit {
  background: var(--bone-2);
  padding-block: clamp(100px, 14vw, 180px);
}
.cine-timeline {
  list-style: none;
  padding: 0;
  margin: 0 0 64px;
  border-top: 1px solid var(--rule);
}
.cine-timeline-step {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: clamp(20px, 3vw, 48px);
  align-items: baseline;
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--rule);
  transition: padding-left .35s;
}
.cine-timeline-step:hover { padding-left: 12px; }
@media (max-width: 720px) {
  .cine-timeline-step { grid-template-columns: 48px 1fr; }
  .cine-tl-time { grid-column: 2; opacity: 0.7; }
}

.cine-tl-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: 2rem;
  color: var(--tide-deep);
  line-height: 1;
}
.cine-timeline-step h4 {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.cine-timeline-step p {
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 50ch;
}
.cine-tl-time {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* =============================================================
   GROUPS — Dark band w/ photo
   ============================================================= */
.cine-groups {
  background: var(--ink);
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.cine-groups-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 640px;
}
@media (max-width: 960px) {
  .cine-groups-grid { grid-template-columns: 1fr; }
}

.cine-groups-copy {
  padding: clamp(72px, 10vw, 130px) clamp(32px, 5vw, 88px);
  display: grid;
  align-content: center;
  gap: 28px;
}
.cine-groups-copy h2 {
  font-size: clamp(2.4rem, 1.6rem + 2.8vw, 4.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.cine-groups-copy h2.invert em { color: var(--sand); }
.cine-groups-copy p {
  color: color-mix(in oklab, var(--bone) 78%, transparent);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 50ch;
}
.cine-groups-venues {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px 24px;
}
.cine-groups-venues li {
  font-family: var(--display);
  font-size: 0.95rem;
  color: color-mix(in oklab, var(--bone) 85%, transparent);
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--bone) 14%, transparent);
  display: flex; align-items: center; gap: 10px;
}
.cine-groups-venues li::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--sand);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .cine-groups-venues { grid-template-columns: 1fr; }
}

.cine-groups-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cine-groups-photo {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.cine-groups-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.cine-groups-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, oklch(16% 0.018 230 / 0.6) 0%, transparent 25%);
  pointer-events: none;
}

/* =============================================================
   CLOSE — Final ask, sand gradient
   ============================================================= */
.cine-close {
  background:
    radial-gradient(ellipse at 50% 0%, oklch(94% 0.030 70) 0%, transparent 60%),
    linear-gradient(180deg, var(--bone-2) 0%, var(--sand) 100%);
  padding-block: clamp(140px, 18vw, 240px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cine-close .cine-kicker { margin-bottom: 32px; justify-content: center; display: inline-flex; }
.cine-close-h {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2.8rem, 1.6rem + 5vw, 7.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 auto;
  max-width: 18ch;
}
.cine-close-h span { display: block; }
.cine-close-h em {
  font-style: italic;
  font-weight: 300;
  color: var(--tide-deep);
}
.cine-close-lede {
  margin: 32px auto 0;
  max-width: 50ch;
  font-size: 1.1rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.cine-close-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 56px;
}

/* =============================================================
   Reveal animation — JS-controlled via IntersectionObserver
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s cubic-bezier(.2,.8,.2,1),
    transform 1.1s cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children of certain reveal containers */
.cine-pillar-list .cine-pillar.in:nth-child(1) { transition-delay: 0s; }
.cine-pillar-list .cine-pillar.in:nth-child(2) { transition-delay: 0.1s; }
.cine-pillar-list .cine-pillar.in:nth-child(3) { transition-delay: 0.2s; }
.cine-pillar-list .cine-pillar.in:nth-child(4) { transition-delay: 0.3s; }
.cine-promise-grid .cine-promise-card.in:nth-child(1) { transition-delay: 0s; }
.cine-promise-grid .cine-promise-card.in:nth-child(2) { transition-delay: 0.12s; }
.cine-promise-grid .cine-promise-card.in:nth-child(3) { transition-delay: 0.24s; }
.cine-statement.in span { animation: statementUp 1.1s cubic-bezier(.2,.8,.2,1) both; }
.cine-statement.in span:nth-child(1) { animation-delay: 0s; }
.cine-statement.in span:nth-child(2) { animation-delay: 0.12s; }
.cine-statement.in span:nth-child(3) { animation-delay: 0.24s; }
.cine-statement.in span:nth-child(4) { animation-delay: 0.5s; }
.cine-statement.in span:nth-child(5) { animation-delay: 0.62s; }
.cine-statement { opacity: 1; transform: none; }
.cine-statement span { opacity: 0; transform: translateY(20px); }
@keyframes statementUp {
  to { opacity: 1; transform: translateY(0); }
}
.cine-timeline-step.reveal.in:nth-child(1) { transition-delay: 0s; }
.cine-timeline-step.reveal.in:nth-child(2) { transition-delay: 0.1s; }
.cine-timeline-step.reveal.in:nth-child(3) { transition-delay: 0.2s; }
.cine-timeline-step.reveal.in:nth-child(4) { transition-delay: 0.3s; }

/* Reduced motion respects */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { opacity: 1 !important; transform: none !important; }
  .cine-statement span { opacity: 1 !important; transform: none !important; animation: none !important; }
  .cine-hero-img { animation: none !important; transform: none !important; }
  .cine-hero-h .line { animation: none !important; opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .cine-eyebrow, .cine-hero-meta, .cine-scroll-cue { animation: none !important; opacity: 1 !important; transform: none !important; }
  .cine-dot, .cue-line { animation: none !important; }
}
html[data-motion="reduced"] .reveal,
html[data-motion="reduced"] .reveal.in { opacity: 1 !important; transform: none !important; }
html[data-motion="reduced"] .cine-statement span { opacity: 1 !important; transform: none !important; animation: none !important; }
html[data-motion="reduced"] .cine-hero-img { animation: none !important; transform: none !important; }
html[data-motion="reduced"] .cine-hero-h .line { animation: none !important; opacity: 1 !important; transform: none !important; clip-path: none !important; }
html[data-motion="reduced"] .cine-eyebrow,
html[data-motion="reduced"] .cine-hero-meta,
html[data-motion="reduced"] .cine-scroll-cue { animation: none !important; opacity: 1 !important; transform: none !important; }
html[data-motion="reduced"] .cine-dot,
html[data-motion="reduced"] .cue-line { animation: none !important; }

/* =============================================================
   Footer override (inherit from shared.css partial styles via partials.js)
   ============================================================= */
.footer {
  background: var(--ink);
  color: color-mix(in oklab, var(--bone) 85%, transparent);
  padding-block: 100px 48px;
  margin-top: 0;
  font-family: var(--body);
}
.footer h4 {
  color: var(--bone);
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.footer-grid {
  max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter);
  display: grid; grid-template-columns: 1.6fr 0.9fr 1.1fr 1fr; gap: 56px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 0.95rem; }
.footer a { transition: color .25s; }
.footer a:hover { color: var(--sand); }
.footer .brand-name { color: var(--bone); }
.footer .brand-name small { color: color-mix(in oklab, var(--bone) 60%, transparent); }
.footer-bottom {
  max-width: var(--maxw); margin: 64px auto 0; padding: 24px var(--gutter) 0;
  border-top: 1px solid color-mix(in oklab, var(--bone) 14%, transparent);
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 0.85rem;
  color: color-mix(in oklab, var(--bone) 55%, transparent);
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* Skip link override */
.skip-link {
  position: absolute;
  top: -100px; left: 12px;
  background: var(--ink);
  color: var(--bone);
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 200;
  transition: top .2s;
  text-decoration: none;
}
.skip-link:focus { top: 12px; outline: 3px solid var(--ember); outline-offset: 2px; }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   Inherit nav structure from shared.css but partials.js writes
   without a stylesheet for cinematic. Re-declare critical styles.
   ============================================================= */
.nav { position: sticky; top: 0; z-index: 50; }
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px var(--gutter);
  display: flex; align-items: center;
  gap: clamp(20px, 2.6vw, 36px);
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-name { line-height: 1.05; }
.brand-name small {
  display: block;
  font-family: var(--body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 4px;
  font-weight: 500;
}
@media (max-width: 1100px) { .brand-name small { display: none; } }
.nav-links {
  display: flex; gap: clamp(16px, 2vw, 28px); margin-left: auto;
  font-size: 0.95rem;
  color: var(--ink-2);
  font-weight: 500;
}
.nav-links a {
  transition: color .25s; position: relative;
  padding: 10px 4px;
  min-height: 44px;
  display: inline-flex; align-items: center;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); font-weight: 600; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  min-height: 44px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bone);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: transform .2s, background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--tide-deep); transform: translateY(-1px); }
.nav-cta .arrow { display: inline-flex; align-items: center; }
.nav-cta .arrow svg { width: 14px; height: 14px; }
.nav-burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border-radius: 999px;
  align-items: center; justify-content: center;
  background: transparent;
  box-shadow: inset 0 0 0 1.5px var(--ink);
  color: var(--ink);
  cursor: pointer;
}
.nav-burger svg { width: 22px; height: 22px; }
.nav-mobile {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--bone);
  border-bottom: 1px solid var(--rule-pale);
  padding: 12px var(--gutter) 20px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile a {
  padding: 14px 6px;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px solid color-mix(in oklab, var(--rule-pale) 50%, transparent);
}
.nav-mobile a.active { color: var(--ink); font-weight: 600; }
.nav.open .nav-mobile { display: flex; }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
}

/* Lucide arrow inheritance from partials */
.arrow,
.lucide-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: -0.15em;
  line-height: 1;
}
.arrow svg, .lucide-arrow svg { width: 1em; height: 1em; display: block; }

/* a11y toolbar + skip link visual restyle for coastal */
.a11y-toolbar {
  position: fixed;
  bottom: 20px; left: 20px;
  z-index: 100;
  display: flex; align-items: center; gap: 4px;
  padding: 6px;
  background: var(--bone);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 0 18px 40px -16px oklch(20% 0.02 230 / 0.25);
  font-family: var(--body);
}
.a11y-toolbar .a11y-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 0 10px 0 12px;
  border-right: 1px solid var(--rule-pale);
  margin-right: 4px;
  font-weight: 600;
}
.a11y-toolbar button {
  padding: 10px 14px;
  min-height: 44px;
  min-width: 44px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background .2s, color .2s;
}
.a11y-toolbar button:hover { background: var(--bone-2); }
.a11y-toolbar button.active { background: var(--ink); color: var(--bone); }
@media (max-width: 560px) {
  .a11y-toolbar .a11y-label { display: none; }
  .a11y-toolbar { bottom: 12px; left: 12px; padding: 4px; }
}
