/* =====================================================================
   Fig Garden Media — "The Established Name"
   FirstPeak Studio · heritage / editorial design system
   Palette + type are unique to this build (see brief §4). Do not port
   this DNA to another site. The System (structure, tokens, motion) is
   shared; the surface is Fig Garden's alone.
   ===================================================================== */

:root{
  /* Color — heritage / established */
  --canvas:      #F3EDE0; /* Heritage Cream — warm paper, never pure white */
  --canvas-2:    #ECE4D3; /* deeper cream for alternating sections */
  --ink:         #22261F; /* warm near-black, primary text */
  --brand:       #2C3F31; /* Canopy — deep warm green, primary brand */
  --brand-deep:  #1A241C; /* Deep Canopy — dark sections, footer */
  --accent:      #A64B2A; /* Brick — single accent for CTAs and highlights */
  --accent-deep: #8C3D21; /* Brick pressed */
  --muted:       #565B4E; /* Sage-ink — secondary text (darkened for WCAG AA on cream + canvas-2) */
  --line:        #C9C0AC; /* hairline rules on cream */
  --line-dark:   #33463A; /* hairline rules on dark */

  /* Text-on-dark tones (for canopy grounds) */
  --on-dark:      #F3EDE0;
  --on-dark-soft: #C8CDBE;

  /* Type — classic American editorial pairing */
  --font-display: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --font-serif:   "Libre Caslon Text", Georgia, "Times New Roman", serif;
  --font-body:    "Libre Franklin", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Fluid type scale */
  --step--1: clamp(0.83rem, 0.8rem + 0.2vw, 0.95rem);
  --step-0:  clamp(1rem, 0.96rem + 0.25vw, 1.15rem);
  --step-1:  clamp(1.35rem, 1.2rem + 0.7vw, 1.7rem);
  --step-2:  clamp(1.9rem, 1.6rem + 1.4vw, 2.6rem);
  --step-3:  clamp(2.6rem, 2.0rem + 2.6vw, 4rem);
  --step-4:  clamp(3.2rem, 2.3rem + 4vw, 5.4rem);
  --step-small: 0.82rem;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6.5rem;
  --section-y: clamp(3.75rem, 2.5rem + 5vw, 7rem);

  /* Feel */
  --radius:  3px;
  --radius-lg: 5px;
  --shadow:  0 1px 2px rgba(26,36,28,.06), 0 8px 30px rgba(26,36,28,.08);
  --shadow-lg: 0 2px 8px rgba(26,36,28,.10), 0 24px 60px rgba(26,36,28,.16);
  --ease:    cubic-bezier(.2,.7,.2,1);
  --measure: 66ch;
  --wrap: 1160px;
  --header-h: 74px;
}

/* ---------------- Reset / base ------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior: auto; } }

body{
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 400; line-height: 1.06; letter-spacing: -0.01em; margin: 0; color: var(--ink); text-wrap: balance; }
h1{ font-size: var(--step-4); }
h2{ font-size: var(--step-3); }
h3{ font-size: var(--step-2); }
h4{ font-size: var(--step-1); }
p{ margin: 0 0 var(--space-3); }
a{ color: inherit; }
img{ max-width: 100%; height: auto; display: block; }
strong{ font-weight: 600; }
:focus-visible{ outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.skip-link{
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--brand); color: var(--on-dark); padding: .7rem 1.1rem;
  border-radius: 0 0 var(--radius) 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus{ left: 0; }

/* ---------------- Layout helpers ----------------------------------- */
.wrap{ width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }
.wrap--narrow{ width: min(760px, 100% - 2.5rem); }
.measure{ max-width: var(--measure); }
.center{ text-align: center; }
.section{ padding-block: var(--section-y); }
.section--tight{ padding-block: clamp(2.5rem, 2rem + 3vw, 4rem); }
.section--alt{ background: var(--canvas-2); }
.section--canopy{ background: var(--brand-deep); color: var(--on-dark); }
.section--canopy h1,.section--canopy h2,.section--canopy h3,.section--canopy h4{ color: var(--on-dark); }
.rule{ height: 1px; background: var(--line); border: 0; margin: 0; }
.section--canopy .rule{ background: var(--line-dark); }

/* ---------------- Type utilities ----------------------------------- */
.eyebrow{
  font-family: var(--font-body);
  font-size: var(--step-small);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 var(--space-3);
}
.section--canopy .eyebrow{ color: var(--on-dark-soft); }
/* Brick on the dark canopy ground fails contrast; use the lighter brick tint (AA) */
.section--canopy .folio, .section--canopy .step__num{ color: #E8A57E; }
.section--canopy .step{ border-top-color: #E8A57E; }
.folio{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 1.6rem + 2.4vw, 3.4rem);
  line-height: 1;
  color: var(--accent);
  opacity: .9;
  display: block;
  margin-bottom: var(--space-2);
  font-variant-numeric: lining-nums;
}
.lead{
  font-size: var(--step-1);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
}
.section--canopy .lead{ color: var(--on-dark-soft); }
.muted{ color: var(--muted); }
.section--canopy .muted{ color: var(--on-dark-soft); }
.pull{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--step-1);
  line-height: 1.4;
  color: var(--brand);
}
.section--canopy .pull{ color: var(--on-dark); }
.accent-word{ color: var(--accent); }
.underline-accent{ box-shadow: inset 0 -0.12em 0 rgba(166,75,42,.35); }

/* ---------------- Buttons ------------------------------------------ */
.btn{
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: var(--step-0);
  line-height: 1; text-decoration: none; cursor: pointer;
  padding: .95rem 1.5rem; border-radius: var(--radius);
  border: 1.5px solid transparent; transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease);
}
.btn--primary{ background: var(--accent); color: #FBF4E9; border-color: var(--accent); }
.btn--primary:hover{ background: var(--accent-deep); border-color: var(--accent-deep); }
.btn--secondary{ background: transparent; color: var(--brand); border-color: var(--brand); }
.btn--secondary:hover{ background: var(--brand); color: var(--on-dark); }
.section--canopy .btn--secondary{ color: var(--on-dark); border-color: rgba(243,237,224,.5); }
.section--canopy .btn--secondary:hover{ background: var(--on-dark); color: var(--brand-deep); border-color: var(--on-dark); }
.btn--ghost{ background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover{ border-color: var(--ink); }
.btn--lg{ padding: 1.1rem 1.8rem; font-size: var(--step-0); }
.btn--block{ display: flex; width: 100%; }
.btn svg{ width: 1.05em; height: 1.05em; flex: none; }

.link{
  color: var(--brand); text-decoration: none; font-weight: 600;
  border-bottom: 1.5px solid rgba(166,75,42,.4); padding-bottom: 1px;
  transition: border-color .18s var(--ease);
}
.link:hover{ border-color: var(--accent); }
.call-link{
  display: inline-flex; align-items: center; gap: .5rem; color: var(--ink);
  text-decoration: none; font-weight: 500;
}
.call-link svg{ width: 1.05em; height: 1.05em; color: var(--accent); }
.call-link:hover{ color: var(--accent); }

/* ---------------- Masthead / nav ----------------------------------- */
.masthead{
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.masthead__inner{
  width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto;
  min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
/* transparent over the hero, solidify on scroll */
.masthead.is-scrolled,
.masthead--solid{
  background: rgba(243,237,224,.94);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 0 rgba(26,36,28,.03);
}
/* No-JS: the header never solidifies via scroll (that is JS-driven), so keep it
   solid + legible. The transparent-over-hero styling below is gated on .js, so
   without JS the base dark nav/logo styles apply on this solid header. */
.no-js .masthead{ background: rgba(243,237,224,.96); border-bottom-color: var(--line); }
/* Legibility backing so the transparent nav stays readable over the brighter parts of the
   hero at the very top of the page. Only in the transparent (JS, not-scrolled) state. */
.js .masthead:not(.is-scrolled):not(.masthead--solid)::before{
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 190%;
  background: linear-gradient(180deg, rgba(20,28,20,.82) 0%, rgba(20,28,20,.44) 48%, rgba(20,28,20,0) 100%);
  pointer-events: none; z-index: -1;
}
.js .masthead:not(.is-scrolled):not(.masthead--solid) .nav__link,
.js .masthead:not(.is-scrolled):not(.masthead--solid) .brand__suffix{ text-shadow: 0 1px 3px rgba(20,28,20,.55); }
.brand{ display: inline-flex; align-items: center; gap: .55rem; text-decoration: none; }
.brand__logo{ height: 30px; width: auto; }
.brand__suffix{ font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); border-left: 1px solid var(--line); padding-left: .55rem; align-self: center; }
.js .masthead:not(.is-scrolled):not(.masthead--solid) .brand__suffix{ color: rgba(243,237,224,.85); border-color: rgba(243,237,224,.4); }
/* transparent-header state (JS enhancement): logo sits on the dark hero → invert to cream */
.js .masthead:not(.is-scrolled):not(.masthead--solid) .brand__logo{ filter: brightness(0) invert(1); }
.brand__est{
  font-family: var(--font-body); font-size: .62rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); border-left: 1px solid var(--line); padding-left: .6rem;
}
.js .masthead:not(.is-scrolled):not(.masthead--solid) .brand__est{ color: rgba(243,237,224,.85); border-color: rgba(243,237,224,.4); }

.nav{ display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__links{ display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.9rem); list-style: none; margin: 0; padding: 0; }
.nav__link{
  text-decoration: none; font-size: .95rem; font-weight: 500; color: var(--ink);
  padding: .35rem 0; position: relative; transition: color .18s var(--ease);
}
.nav__link::after{ content:""; position:absolute; left:0; right:100%; bottom: -2px; height: 1.5px; background: var(--accent); transition: right .22s var(--ease); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after{ right: 0; }
.js .masthead:not(.is-scrolled):not(.masthead--solid) .nav__link{ color: var(--on-dark); }
.nav__cta{ }
.nav-toggle{ display: none; }

/* ---------------- Hero: "The Established Street" ------------------- */
.hero{ position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; background: var(--brand-deep); }
.hero__media{
  position: absolute; inset: -6% 0 0 0; z-index: 0;
  background-image: url("/assets/hero-established-street.jpg");
  background-size: cover; background-position: 62% center;
  will-change: transform;
}
@media (max-width: 720px){ .hero__media{ background-image: url("/assets/hero-established-street-mobile.jpg"); background-position: 76% 50%; inset: 0; } }
/* Legibility scrim, weighted to the left where the headline sits */
.hero__scrim{
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(20,28,20,.86) 0%, rgba(20,28,20,.62) 34%, rgba(20,28,20,.12) 62%, rgba(20,28,20,0) 82%),
    linear-gradient(0deg, rgba(20,28,20,.72) 0%, rgba(20,28,20,.12) 30%, rgba(20,28,20,0) 55%);
}
/* Dappled-light drift (canopy light), disabled for reduced-motion */
.hero__dapple{
  position: absolute; inset: -20%; z-index: 2; pointer-events: none; opacity: .5;
  mix-blend-mode: soft-light;
  background:
    radial-gradient(22% 18% at 20% 30%, rgba(255,244,214,.9), transparent 60%),
    radial-gradient(20% 16% at 42% 55%, rgba(255,244,214,.7), transparent 60%),
    radial-gradient(24% 20% at 12% 68%, rgba(255,244,214,.6), transparent 60%),
    radial-gradient(18% 15% at 55% 22%, rgba(255,244,214,.6), transparent 60%);
  animation: dapple 22s ease-in-out infinite alternate;
}
@keyframes dapple{
  0%{ transform: translate3d(0,0,0) scale(1); opacity: .42; }
  50%{ transform: translate3d(1.5%,-1.2%,0) scale(1.04); opacity: .55; }
  100%{ transform: translate3d(-1.2%,1%,0) scale(1.02); opacity: .46; }
}
.hero__inner{
  position: relative; z-index: 3; width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto;
  padding-block: clamp(2.5rem, 2rem + 8vh, 7rem) clamp(3rem, 2rem + 6vh, 6rem);
  color: var(--on-dark);
}
.hero__content{ max-width: 44ch; }
.hero .eyebrow{ color: rgba(243,237,224,.9); }
.hero h1{ color: var(--on-dark); font-size: clamp(2.9rem, 2rem + 3.4vw, 4.9rem); letter-spacing: -0.015em; text-shadow: 0 2px 16px rgba(20,28,20,.38); }
.hero__line{ display: block; } /* each sentence balances as its own block for clean, even wrapping */
.hero__sub{ color: rgba(243,237,224,.92); font-size: var(--step-0); line-height: 1.6; margin-top: var(--space-4); max-width: 46ch; }
.hero__actions{ display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-4); margin-top: var(--space-5); }
.hero__actions .call-link{ color: var(--on-dark); }
.hero__actions .call-link svg{ color: #E8A57E; }
.hero__seal{
  position: absolute; z-index: 3; top: calc(var(--header-h) + clamp(1rem, 3vh, 2.5rem)); right: max(1.25rem, calc((100vw - var(--wrap))/2 + 0.5rem));
  width: clamp(74px, 9vw, 104px); height: clamp(74px, 9vw, 104px); border-radius: 50%;
  border: 1px solid rgba(243,237,224,.55); color: var(--on-dark);
  display: grid; place-content: center; text-align: center; gap: 1px;
  background: rgba(26,36,28,.28); -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.hero__seal .s1{ font-family: var(--font-body); font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; }
.hero__seal .s2{ font-family: var(--font-display); font-size: 1.4rem; line-height: 1; }
.hero__seal .s3{ font-family: var(--font-body); font-size: .5rem; letter-spacing: .28em; text-transform: uppercase; color: rgba(243,237,224,.8); }
@media (max-width: 560px){ .hero__seal{ display: none; } }
.hero__scroll{ position: absolute; z-index: 3; bottom: 1.4rem; left: 50%; transform: translateX(-50%); color: rgba(243,237,224,.7); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; display: inline-flex; flex-direction: column; align-items: center; gap: .4rem; }
.hero__scroll span{ width: 1px; height: 26px; background: rgba(243,237,224,.5); animation: scrollpulse 2.4s ease-in-out infinite; }
@keyframes scrollpulse{ 0%,100%{ transform: scaleY(.4); opacity: .4; transform-origin: top; } 50%{ transform: scaleY(1); opacity: 1; transform-origin: top; } }

/* ---------------- Page hero (inner pages) -------------------------- */
.page-hero{ padding-top: calc(var(--header-h) + clamp(2rem, 4vw, 3.5rem)); padding-bottom: clamp(1.5rem, 3vw, 2.5rem); background: var(--canvas-2); border-bottom: 1px solid var(--line); }
.crumbs{ font-size: var(--step-small); color: var(--muted); margin-bottom: var(--space-3); }
.crumbs a{ color: var(--muted); text-decoration: none; border-bottom: 1px solid transparent; }
.crumbs a:hover{ border-color: var(--muted); }

/* ---------------- Generic section head ----------------------------- */
.s-head{ max-width: 42ch; }
.s-head--wide{ max-width: 56ch; }
.s-head p.lead{ margin-top: var(--space-4); }

/* ---------------- Grids -------------------------------------------- */
.grid{ display: grid; gap: var(--space-5); }
.grid--2{ grid-template-columns: repeat(2, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }
.grid--services{ grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
@media (max-width: 780px){ .grid--2, .grid--3{ grid-template-columns: 1fr; } }

.split{ display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split--reverse .split__media{ order: -1; }
@media (max-width: 860px){ .split{ grid-template-columns: 1fr; } .split--reverse .split__media{ order: 0; } }

/* ---------------- Cards -------------------------------------------- */
.card{
  background: var(--canvas); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.4rem, 1rem + 1.5vw, 2rem); box-shadow: var(--shadow);
}
.section--alt .card{ background: #F6F1E6; }
.card--flat{ box-shadow: none; }
.service{ display: flex; flex-direction: column; gap: var(--space-2); }
.service__label{ display: inline-flex; align-items: center; gap: .5rem; }
.service__num{ font-family: var(--font-display); color: var(--accent); font-size: 1.1rem; }
.service h3{ font-size: var(--step-1); }
.service__anchor{ display: inline-block; font-size: var(--step-small); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--brand); margin-top: auto; padding-top: var(--space-2); }
.card.service--flagship{ background: var(--brand-deep); color: var(--on-dark); border-color: var(--brand-deep); }
.section--alt .card.service--flagship{ background: var(--brand-deep); }
.card.service--flagship h3{ color: var(--on-dark); }
.card.service--flagship .service__num, .card.service--flagship .service__anchor{ color: #E8A57E; }
.card.service--flagship .muted{ color: var(--on-dark-soft); }
.card.service--flagship .service__tag{ color: #E8A57E; }

/* ---------------- Figures + captions ------------------------------- */
.figure{ margin: 0; }
.figure img{ width: 100%; height: auto; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(26,36,28,.06); background: var(--canvas); }
.figure__cap{ font-family: var(--font-serif); font-style: italic; font-size: var(--step-small); color: var(--muted); margin-top: var(--space-3); }
.section--canopy .figure__cap{ color: var(--on-dark-soft); }
.figure--wide{ max-width: 1000px; margin-inline: auto; }
.feature__img{ width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid rgba(26,36,28,.06); }

/* ---------------- Stat band ---------------------------------------- */
.stats{ display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-4); }
@media (max-width: 900px){ .stats{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px){ .stats{ grid-template-columns: 1fr; } }
.stat{ padding: var(--space-4) 0; border-top: 1px solid var(--line-dark); }
.stat__num{ font-family: var(--font-display); font-size: clamp(2.2rem, 1.6rem + 2.2vw, 3.1rem); line-height: 1; color: var(--on-dark); }
.stat__num .suffix{ color: #E8A57E; }
.stat__label{ font-size: var(--step-small); color: var(--on-dark-soft); margin-top: var(--space-2); line-height: 1.4; }
.stat__src{ display: block; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(200,205,190,.7); margin-top: .35rem; }
.stat-note{ font-size: var(--step-small); color: var(--on-dark-soft); margin-top: var(--space-5); max-width: 72ch; }

/* ---------------- Cover display (flagship) ------------------------- */
.covers{ position: relative; }
.covers__row{ display: flex; gap: var(--space-4); overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.covers__track{ display: flex; gap: var(--space-4); flex: none; animation: coverdrift 60s linear infinite; }
.covers:hover .covers__track, .covers__track:focus-within{ animation-play-state: paused; }
@keyframes coverdrift{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
.cover{ flex: none; width: clamp(150px, 20vw, 200px); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(26,36,28,.08); background: #fff; }
.cover img{ width: 100%; height: auto; display: block; }
.covers__static{ display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--space-4); }
.covers__static .cover{ width: auto; }

/* ---------------- Steps -------------------------------------------- */
.steps{ counter-reset: step; display: grid; gap: var(--space-5); }
.steps--3{ grid-template-columns: repeat(3, 1fr); }
@media (max-width: 780px){ .steps--3{ grid-template-columns: 1fr; } }
.step{ position: relative; padding-top: var(--space-5); border-top: 2px solid var(--accent); }
.step__num{ font-family: var(--font-display); font-size: 1.5rem; color: var(--accent); }
.step h3{ font-size: var(--step-1); margin-top: var(--space-2); }

/* ---------------- Why columns -------------------------------------- */
.why{ display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.6rem, 4vw, 3rem); }
@media (max-width: 780px){ .why{ grid-template-columns: 1fr; } }
.why__item h3{ font-size: var(--step-1); margin-bottom: var(--space-2); }
.why__rule{ width: 40px; height: 2px; background: var(--accent); margin-bottom: var(--space-3); }

/* ---------------- The human ---------------------------------------- */
.human__media{ position: relative; }
.human__photo{ border-radius: var(--radius); box-shadow: var(--shadow-lg); background: var(--canvas-2); width: 100%; }
.human__frame{ position: absolute; inset: 14px -14px -14px 14px; border: 1px solid var(--line-dark); border-radius: var(--radius); z-index: -1; }
.section--canopy .human__frame{ border-color: rgba(200,205,190,.35); }
.sig{ font-family: var(--font-serif); font-style: italic; font-size: var(--step-1); color: var(--accent); margin-top: var(--space-4); }

/* ---------------- FAQ ---------------------------------------------- */
.faq{ border-top: 1px solid var(--line); }
.faq__item{ border-bottom: 1px solid var(--line); }
.faq__q{
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: var(--space-4) 2.5rem var(--space-4) 0; position: relative;
  font-family: var(--font-display); font-size: var(--step-1); color: var(--ink); line-height: 1.2;
}
.faq__q::after{ content:"+"; position: absolute; right: .25rem; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: 1.6rem; color: var(--accent); transition: transform .2s var(--ease); font-weight: 300; }
.faq__item.is-open .faq__q::after{ content:"–"; }
.faq__a{ overflow: hidden; max-height: 0; transition: max-height .3s var(--ease); }
.faq__item.is-open .faq__a{ max-height: 600px; }
.faq__a-inner{ padding: 0 2.5rem var(--space-5) 0; color: var(--muted); max-width: var(--measure); }
.no-js .faq__a{ max-height: none; } /* readable without JS */
.no-js .faq__q::after{ display: none; }

/* ---------------- Callout / final band ----------------------------- */
.callout{ text-align: center; }
.callout h2{ max-width: 20ch; margin-inline: auto; }
.callout .lead{ max-width: 52ch; margin-inline: auto; margin-top: var(--space-4); }
.callout__actions{ display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; align-items: center; margin-top: var(--space-5); }

/* ---------------- Category / scarcity ------------------------------ */
.seat{ display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (max-width: 860px){ .seat{ grid-template-columns: 1fr; } }

/* ---------------- Forms (get-started) ------------------------------ */
.start-grid{ display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
@media (max-width: 900px){ .start-grid{ grid-template-columns: 1fr; } }
.form{ display: grid; gap: var(--space-4); margin-top: var(--space-5); }
.field{ display: grid; gap: .4rem; }
.field label{ font-size: var(--step-small); font-weight: 600; letter-spacing: .04em; color: var(--ink); }
.field .req{ color: var(--accent); }
.field .opt{ color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea{
  font-family: var(--font-body); font-size: var(--step-0); color: var(--ink);
  background: var(--canvas); border: 1.5px solid var(--line); border-radius: var(--radius);
  padding: .8rem .9rem; width: 100%; transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(44,63,49,.12); }
.field textarea{ min-height: 120px; resize: vertical; }
.hp{ position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.consent__label{ display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; font-size: .8rem; line-height: 1.5; color: var(--muted); }
.consent__label input{ margin-top: .25rem; width: 1.05rem; height: 1.05rem; accent-color: var(--brand); }
.consent__label a{ color: var(--brand); }
.form__status{ border-radius: var(--radius); padding: .85rem 1rem; font-size: .92rem; font-weight: 500; }
.form__status[data-state="success"]{ background: rgba(44,63,49,.1); color: var(--brand); border: 1px solid rgba(44,63,49,.25); }
.form__status[data-state="error"]{ background: rgba(166,75,42,.1); color: var(--accent-deep); border: 1px solid rgba(166,75,42,.3); }
.cta-micro{ font-size: var(--step-small); color: var(--muted); margin: 0; }
.booking-embed{ min-height: 620px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--canvas); overflow: hidden; }
.booking-embed iframe{ width: 100%; min-height: 620px; border: 0; display: block; }
.embed-placeholder{ display: grid; place-content: center; text-align: center; gap: var(--space-2); min-height: 320px; padding: var(--space-5); color: var(--muted); }

/* ---------------- Check list --------------------------------------- */
.check-list{ list-style: none; margin: var(--space-3) 0 0; padding: 0; display: grid; gap: var(--space-2); }
.check-list li{ position: relative; padding-left: 1.7rem; }
.check-list li::before{ content:""; position: absolute; left: 0; top: .5em; width: .7rem; height: .4rem; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }

/* ---------------- Footer ------------------------------------------- */
.footer{ background: var(--brand-deep); color: var(--on-dark-soft); padding-block: var(--space-7) var(--space-5); }
.footer a{ color: var(--on-dark-soft); text-decoration: none; }
.footer a:hover{ color: var(--on-dark); }
.footer__top{ display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); padding-bottom: var(--space-6); border-bottom: 1px solid var(--line-dark); }
@media (max-width: 780px){ .footer__top{ grid-template-columns: 1fr; } }
.footer__logo{ height: 30px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.footer__brand-row{ display: flex; align-items: center; gap: .7rem; }
.footer__est{ font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark-soft); border-left: 1px solid var(--line-dark); padding-left: .6rem; }
.footer__tag{ font-family: var(--font-serif); font-style: italic; font-size: var(--step-1); color: var(--on-dark); margin: var(--space-3) 0 var(--space-3); }
.footer h4{ font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark); margin-bottom: var(--space-3); font-weight: 600; }
.footer__nav{ display: grid; gap: .55rem; }
.footer__contact p{ margin: 0 0 .5rem; }
.footer__endorse{ font-size: var(--step-small); color: var(--on-dark-soft); margin-top: var(--space-4); max-width: 60ch; }
.footer__bottom{ display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5); justify-content: space-between; align-items: center; padding-top: var(--space-5); font-size: var(--step-small); }
/* Registered legal name + address: present + readable for A2P, but understated fine print */
.footer__legal{ font-size: .72rem; color: var(--on-dark-soft); opacity: .82; max-width: 62ch; }
.footer__bottom a{ margin-left: var(--space-4); }
.socials{ display: inline-flex; gap: .8rem; margin-top: var(--space-4); }
.socials a{ width: 34px; height: 34px; border: 1px solid var(--line-dark); border-radius: 50%; display: grid; place-content: center; }
.socials a:hover{ border-color: var(--on-dark-soft); }
.socials svg{ width: 16px; height: 16px; }

/* ---------------- Sticky mobile action bar ------------------------- */
.mobile-bar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); transform: translateY(110%); transition: transform .3s var(--ease);
  box-shadow: 0 -4px 20px rgba(26,36,28,.12);
}
.mobile-bar.is-visible{ transform: translateY(0); }
.mobile-bar a{ display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: 1rem; font-weight: 600; text-decoration: none; font-size: .95rem; }
.mb-book{ background: var(--accent); color: #FBF4E9; }
.mb-call{ background: var(--brand-deep); color: var(--on-dark); }
.mobile-bar svg{ width: 1.1em; height: 1.1em; }
@media (max-width: 760px){ .mobile-bar{ display: grid; } body{ padding-bottom: 0; } }

/* ---------------- Reveal animation --------------------------------- */
.reveal{ opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-ready .reveal.is-in, .reveal.is-in{ opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
.reveal[data-delay="4"]{ transition-delay: .32s; }
.no-js .reveal{ opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__dapple, .covers__track, .hero__scroll span{ animation: none !important; }
  .hero__media{ transform: none !important; }
  /* No marquee: make the cover reel scrollable so every cover stays reachable */
  .covers__row{ overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  *{ scroll-behavior: auto !important; }
}

/* ---------------- Mobile nav --------------------------------------- */
@media (max-width: 860px){
  .nav-toggle{
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 10px;
    z-index: 120; position: relative;
  }
  .nav-toggle span, .nav-toggle::before, .nav-toggle::after{ content:""; display: block; height: 2px; width: 24px; background: var(--ink); transition: transform .25s var(--ease), opacity .25s var(--ease); }
  .js .masthead:not(.is-scrolled):not(.masthead--solid) .nav-toggle span,
  .js .masthead:not(.is-scrolled):not(.masthead--solid) .nav-toggle::before,
  .js .masthead:not(.is-scrolled):not(.masthead--solid) .nav-toggle::after{ background: var(--on-dark); }
  .nav__links{
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 340px);
    background: var(--brand-deep); color: var(--on-dark);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem;
    padding: 2rem 2.2rem; transform: translateX(100%); transition: transform .3s var(--ease), visibility .3s var(--ease);
    box-shadow: -20px 0 60px rgba(26,36,28,.3);
    visibility: hidden; /* keep off-canvas links out of tab order when closed */
  }
  .nav.is-open .nav__links{ transform: translateX(0); visibility: visible; }
  .nav__links .nav__link{ color: var(--on-dark); font-size: 1.3rem; font-family: var(--font-display); }
  .nav__links .nav__link::after{ display: none; }
  .nav.is-open .nav-toggle span{ opacity: 0; }
  .nav.is-open .nav-toggle::before{ transform: translateY(7px) rotate(45deg); }
  .nav.is-open .nav-toggle::after{ transform: translateY(-7px) rotate(-45deg); }
  .nav__cta.btn{ display: none; }
  .nav__links .nav__cta-mobile{ display: inline-flex; }
}
@media (min-width: 861px){ .nav__cta-mobile{ display: none; } }

/* ---------------- Legal pages -------------------------------------- */
.legal{ max-width: 74ch; }
.legal h2{ font-size: var(--step-1); margin: var(--space-6) 0 var(--space-3); }
.legal h2:first-of-type{ margin-top: 0; }
.legal h3{ font-family: var(--font-body); font-weight: 700; font-size: var(--step-0); margin: var(--space-4) 0 var(--space-2); letter-spacing: 0; }
.legal p, .legal li{ color: var(--ink); }
.legal ul{ padding-left: 1.2rem; margin: 0 0 var(--space-3); display: grid; gap: .35rem; }
.legal .note{ font-size: var(--step-small); color: var(--muted); border-left: 2px solid var(--line); padding: var(--space-2) var(--space-4); background: var(--canvas-2); border-radius: 0 var(--radius) var(--radius) 0; }
.legal .strong-clause{ background: rgba(44,63,49,.07); border: 1px solid rgba(44,63,49,.2); border-radius: var(--radius); padding: var(--space-3) var(--space-4); font-weight: 500; }
.legal a{ color: var(--brand); border-bottom: 1px solid rgba(44,63,49,.3); text-decoration: none; }
.legal a:hover{ border-color: var(--brand); }
.legal__meta{ font-size: var(--step-small); color: var(--muted); margin-bottom: var(--space-5); }

/* ---------------- Small utilities ---------------------------------- */
.mt-3{ margin-top: var(--space-3); }
.mt-4{ margin-top: var(--space-4); }
.mt-5{ margin-top: var(--space-5); }
.mt-6{ margin-top: var(--space-6); }
.mt-7{ margin-top: var(--space-7); }
.tag{ display: inline-block; font-size: var(--step-small); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.hidden{ display: none !important; }
