/* =====================================================================
   funnel.css — Architech
   The persuasion layer: architectural-detail primitives, hero depth,
   the "selected work" showcase, and the support classes for the
   "alive" interaction layer (js/interactions.js).

   Design law (inherited from animations.css):
   elements SETTLE into place — they never perform. Every motion here
   is small, precise, and reduced-motion safe. Think drafting table,
   not demo reel.
   ===================================================================== */

:root {
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, Consolas, monospace;
  --gold-faint: rgba(201, 169, 110, 0.10);
  --rule-soft: rgba(201, 169, 110, 0.22);
}

/* ─────────────────────────────────────────────────────────────────────
   1. ARCHITECTURAL DETAIL PRIMITIVES  (reusable on every page/section)
   ───────────────────────────────────────────────────────────────────── */

/* Monospace technical annotation — coordinates, specs, file refs */
.data-label {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.72);
  font-weight: 400;
}
.data-label--dim { color: rgba(240, 237, 232, 0.34); }

/* Section index marker — "§ 01 — SELECTED WORK" with a setting-out tick */
.draft-marker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.draft-marker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.draft-marker .draft-marker-no {
  color: rgba(240, 237, 232, 0.4);
  font-variant-numeric: tabular-nums;
}
[dir="rtl"] .draft-marker::before {
  background: linear-gradient(270deg, transparent, var(--gold));
}

/* Dimension line  ├─────────────┤  — a measured span under a heading */
.dim-line {
  position: relative;
  height: 1px;
  background: var(--rule-soft);
  margin: 0;
}
.dim-line::before,
.dim-line::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 1px;
  height: 7px;
  background: var(--gold);
  opacity: 0.7;
}
.dim-line::before { left: 0; }
.dim-line::after { right: 0; }

/* Registration crosshair — corner marks that frame a region (à la the 404) */
.crosshair {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
  opacity: 0.5;
  z-index: 3;
}
.crosshair::before,
.crosshair::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.crosshair::before { top: 0; left: 0; width: 14px; height: 1px; }
.crosshair::after { top: 0; left: 0; width: 1px; height: 14px; }
.crosshair--tr { right: 0; transform: scaleX(-1); }
.crosshair--bl { bottom: 0; transform: scaleY(-1); }
.crosshair--br { right: 0; bottom: 0; transform: scale(-1, -1); }

/* Technical spec strip — "V-RAY · 5400×3600 · CYPRUS" */
.spec-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.38);
}
.spec-strip .spec-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────────────
   2. HERO DEPTH  (overlay layers — never touches the existing hero copy)
   The base hero lives in hero.css; we only ADD measured-drawing overlays
   and parallax hooks so its tuned responsive layout stays intact.
   ───────────────────────────────────────────────────────────────────── */

/* Parallax wrapper — interactions.js writes --px / --py (clamped, tiny) */
.hero-bg,
.hero-bg-lines,
.hero-number {
  --px: 0;
  --py: 0;
}
.hero-bg-lines {
  transform: perspective(800px) rotateX(15deg) scale(1.2)
             translate3d(calc(var(--px) * 14px), calc(var(--py) * 14px), 0);
}
.hero-number {
  transform: translateY(-50%) translate3d(calc(var(--px) * -22px), calc(var(--py) * -10px), 0);
}

/* Drawing-sheet frame around the hero — a thin inset gold rule + corner ticks */
.hero-frame {
  position: absolute;
  inset: clamp(14px, 2.4vw, 30px);
  border: 1px solid rgba(201, 169, 110, 0.12);
  pointer-events: none;
  z-index: 2;
}

/* In-flow "setting-out" line beneath the hero CTAs — live coords + clock.
   Sits in normal flow (no absolute positioning) so it never collides with
   the bottom-pinned stats / trust-bar / scroll cue. */
.hero-meta {
  justify-content: center;
  margin-top: clamp(22px, 3vw, 32px);
  opacity: 0;
  animation: heroMetaIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 1.15s forwards;
}
@keyframes heroMetaIn { to { opacity: 1; } }
.hero-meta [data-clock],
.hero-meta [data-coords] {
  color: rgba(201, 169, 110, 0.62);
  font-variant-numeric: tabular-nums;
}

/* Live "setting-out" stamp — bottom-left drawing-sheet annotation */
.hero-stamp {
  position: absolute;
  left: clamp(24px, 5vw, 60px);
  bottom: 120px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
}
.hero-stamp .hero-stamp-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.42);
}
.hero-stamp .hero-stamp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.5);
  animation: stampPulse 2.8s ease-out infinite;
}
@keyframes stampPulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.45); }
  70%, 100% { box-shadow: 0 0 0 7px rgba(201, 169, 110, 0); }
}
[dir="rtl"] .hero-stamp { left: auto; right: clamp(24px, 5vw, 60px); }

@media (max-width: 900px) {
  .hero-stamp { display: none; }
  .hero-frame { inset: 10px; }
}

/* ─────────────────────────────────────────────────────────────────────
   3. SELECTED-WORK SHOWCASE  — "show the work immediately"
   Sits directly under the hero. Cinematic asymmetric proof band.
   ───────────────────────────────────────────────────────────────────── */
.showcase {
  position: relative;
  padding: clamp(64px, 9vw, 130px) 0 clamp(56px, 7vw, 104px);
  background: linear-gradient(180deg, var(--black) 0%, var(--off-black) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  margin-bottom: clamp(30px, 4vw, 52px);
}
.showcase-head h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(30px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-top: 16px;
  text-wrap: balance;
}
.showcase-head h2 em { font-style: italic; color: var(--gold); }
.showcase-head-aside {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  padding-bottom: 6px;
}
.showcase-head-aside p {
  max-width: 280px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}
[dir="rtl"] .showcase-head-aside { text-align: left; align-items: flex-start; }

/* Asymmetric proof grid: 1 hero tile + a 2×2 cluster */
.showcase-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: clamp(10px, 1.4vw, 18px);
  height: clamp(420px, 56vw, 660px);
}
.showcase-tile {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--border);
  cursor: pointer;
}
.showcase-tile--feature { grid-row: 1 / span 2; }
.showcase-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.04) brightness(0.92);
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.6s ease;
  will-change: transform;
}
.showcase-tile:hover img {
  transform: scale(1.07);
  filter: contrast(1.06) saturate(1.08) brightness(1);
}
/* Gradient scrim so labels read on any image */
.showcase-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.05) 30%, rgba(8, 8, 8, 0.78) 100%);
  opacity: 0.85;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.showcase-tile:hover::after { opacity: 1; }

.showcase-tile-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(16px, 2vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 7px;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.showcase-tile:hover .showcase-tile-meta,
.showcase-tile:focus-visible .showcase-tile-meta { opacity: 1; transform: translateY(0); }
.showcase-tile-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.showcase-tile-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
}
/* Always-visible corner index on each tile */
.showcase-tile-no {
  position: absolute;
  top: clamp(12px, 1.6vw, 20px);
  left: clamp(12px, 1.6vw, 20px);
  z-index: 2;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: rgba(240, 237, 232, 0.55);
  font-variant-numeric: tabular-nums;
}
[dir="rtl"] .showcase-tile-no { left: auto; right: clamp(12px, 1.6vw, 20px); }
/* Setting-out line that draws across a tile on hover */
.showcase-tile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--gold);
  z-index: 3;
  transition: right 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.showcase-tile:hover::before { right: 0; }

.showcase-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(26px, 3.5vw, 44px);
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.showcase-foot .spec-strip { flex: 1 1 auto; }

@media (max-width: 860px) {
  .showcase-head { grid-template-columns: 1fr; align-items: start; }
  .showcase-head-aside { text-align: left; align-items: flex-start; }
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, minmax(120px, 1fr));
    height: auto;
  }
  .showcase-tile--feature { grid-column: 1 / span 2; grid-row: auto; aspect-ratio: 16 / 10; }
  .showcase-tile { aspect-ratio: 4 / 3; }
  .showcase-tile-meta { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────────────────────────────
   4. INTERACTION SUPPORT — magnetic CTAs, tilt, count-up
   The JS adds inline transforms / vars; CSS just primes will-change
   and ensures graceful, reduced-motion-safe defaults.
   ───────────────────────────────────────────────────────────────────── */
.magnetic { will-change: transform; }
.tilt { transform-style: preserve-3d; will-change: transform; }

/* Count-up number — neutral until JS counts it, no layout shift */
[data-count] { font-variant-numeric: tabular-nums; }

/* ─────────────────────────────────────────────────────────────────────
   5. SECTION-ENTER for drafting reveals on new blocks
   A measured "draw-in" used by .reveal-draft (observed by nav.js IO via
   the .reveal class it also carries). The gold rule wipes left→right.
   ───────────────────────────────────────────────────────────────────── */
.reveal-draft .dim-line { transform: scaleX(0); transform-origin: left center; }
.reveal-draft.visible .dim-line {
  transform: scaleX(1);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}
[dir="rtl"] .reveal-draft .dim-line { transform-origin: right center; }

/* ─────────────────────────────────────────────────────────────────────
   6. REDUCED MOTION
   ───────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-lines {
    transform: perspective(800px) rotateX(15deg) scale(1.2) !important;
  }
  .hero-number { transform: translateY(-50%) !important; }
  .hero-stamp-dot { animation: none !important; }
  .hero-meta { opacity: 1 !important; animation: none !important; }
  .showcase-tile img { transform: none !important; transition: none !important; }
  .showcase-tile::before { transition: none !important; }
  .showcase-tile-meta { opacity: 1 !important; transform: none !important; }
  .reveal-draft .dim-line { transform: none !important; transition: none !important; }
  .magnetic, .tilt { transform: none !important; }
}

/* ─────────────────────────────────────────────────────────────────────
   7. DEEP-PAGE PRIMITIVES  — shared shell for /services, /about,
   /process, /faq, /portfolio. Compact page header (replaces the full
   homepage hero), breadcrumb, section marker, service-detail rows and
   the closing CTA band. Built only from the brand tokens + the
   primitives above so every deep page feels cut from the same sheet.
   ───────────────────────────────────────────────────────────────────── */

/* Compact page header */
.page-head {
  position: relative;
  padding: clamp(116px, 16vh, 196px) 0 clamp(46px, 7vw, 92px);
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(201, 169, 110, 0.06), transparent 60%),
    var(--black);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-head-frame {
  position: absolute;
  inset: clamp(14px, 2.4vw, 30px);
  border: 1px solid rgba(201, 169, 110, 0.10);
  pointer-events: none;
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1.display { margin: 16px 0 0; text-wrap: balance; }
.page-lede {
  max-width: 60ch;
  margin: clamp(18px, 2.4vw, 26px) 0 clamp(20px, 3vw, 28px);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
  color: var(--muted);
}

/* Breadcrumb
   NOTE: when this class is applied to a <nav> element it inherits the
   site-wide bare `nav { position:fixed; top:0; ... }` rule (utilities.css)
   plus `nav { animation:heroGlow }` (animations.css). The resets below
   (class beats element on specificity) neutralise all of that so the
   breadcrumb sits inline inside .page-head on every deep page. */
.crumb {
  position: static;
  inset: auto;
  z-index: auto;
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  animation: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240, 237, 232, 0.4);
  margin-bottom: clamp(16px, 2.2vw, 24px);
}
.crumb a { color: rgba(240, 237, 232, 0.55); text-decoration: none; transition: color 0.25s ease; }
.crumb a:hover { color: var(--gold); }
.crumb [aria-current="page"] { color: var(--gold); }
.crumb-sep { color: rgba(240, 237, 232, 0.25); }

/* Section index marker — "§ What we do" */
.page-marker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.page-marker::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
[dir="rtl"] .page-marker::before { background: linear-gradient(270deg, transparent, var(--gold)); }

/* Nav active state (deep pages mark their own link) */
.nav-links a.is-current { color: var(--gold); }

/* ── Service-detail rows ── index | body | visual, alternating ── */
.svc-detail-wrap { background: var(--black); }
.svc-detail {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 4vw, 60px);
  padding: clamp(40px, 6vw, 82px) 0;
  border-bottom: 1px solid var(--border);
}
.svc-detail:last-child { border-bottom: 0; }
.svc-detail-index {
  align-self: start;
  padding-top: 6px;
  font-family: var(--mono);
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  font-weight: 300;
  color: var(--rule-soft);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.svc-detail-kicker {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 13px;
}
.svc-detail-h {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.55rem, 3.4vw, 2.5rem);
  line-height: 1.08;
  color: var(--white);
  text-wrap: balance;
}
.svc-detail-body > p {
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.8;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
}
.svc-detail-list {
  list-style: none;
  margin: 22px 0 26px;
  padding: 0;
  display: grid;
  gap: 11px;
}
.svc-detail-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(240, 237, 232, 0.8);
}
.svc-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.75;
}
[dir="rtl"] .svc-detail-list li { padding-left: 0; padding-right: 22px; }
[dir="rtl"] .svc-detail-list li::before { left: auto; right: 0; }
.svc-detail-cta { margin-top: 4px; }

.svc-detail-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--border);
}
.svc-detail-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.04) brightness(0.92);
  transform: scale(1.02);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
}
.svc-detail:hover .svc-detail-visual img {
  transform: scale(1.06);
  filter: contrast(1.06) saturate(1.08) brightness(1);
}
.svc-detail-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 8, 0.4));
  pointer-events: none;
}
/* Alternating rows: index | visual | body */
.svc-detail--alt .svc-detail-index { order: 1; }
.svc-detail--alt .svc-detail-visual { order: 2; }
.svc-detail--alt .svc-detail-body { order: 3; }

/* Closing CTA band */
.cta-band {
  position: relative;
  padding: clamp(62px, 10vw, 136px) 0;
  background: linear-gradient(180deg, var(--off-black), var(--black));
  border-top: 1px solid var(--border);
  overflow: hidden;
  text-align: center;
}
.cta-band-frame {
  position: absolute;
  inset: clamp(14px, 2.4vw, 30px);
  border: 1px solid rgba(201, 169, 110, 0.10);
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-band-inner h2.display { margin: 6px 0 0; max-width: 18ch; text-wrap: balance; }
.cta-band-inner .section-desc { max-width: 56ch; }
.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 10px;
}
.cta-band-spec { justify-content: center; margin-top: 14px; }
.cta-band-spec a { color: rgba(201, 169, 110, 0.72); text-decoration: none; }
.cta-band-spec a:hover { color: var(--gold); }

@media (max-width: 860px) {
  .svc-detail,
  .svc-detail--alt { grid-template-columns: 40px minmax(0, 1fr); }
  .svc-detail-index { order: 1 !important; }
  .svc-detail-body { order: 2 !important; }
  .svc-detail-visual {
    order: 3 !important;
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
    margin-top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-detail-visual img { transform: none !important; transition: none !important; }
}

/* ═════════════════════════════════════════════════════════════════════
   8. INDEX — IMMERSIVE FUNNEL SECTIONS
   Award-tier home-page beats: a kinetic services ticker, a dark-psychology
   manifesto, a count-up authority band, and an "elite close" carrying
   selectivity + risk-reversal. Self-contained — nothing here depends on a
   per-section component stylesheet, so it is safe to evolve in isolation.
   ═════════════════════════════════════════════════════════════════════ */

/* ── 8.1 Kinetic marquee — services ticker (lang.js fills .marquee-track) ── */
.kinetic-marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2.4vw, 26px) 0;
  background: linear-gradient(180deg, var(--off-black) 0%, var(--black) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 11%, #000 89%, transparent);
}
/* The injected separator carries a "•" glyph we don't want; keep the gold
   diamond from marquee.css, drop the character. */
.kinetic-marquee .marquee-sep { font-size: 0; line-height: 0; }
/* Scroll-reactive shear — interactions.js writes --mq-skew from scroll
   velocity; the row leans, then settles. Additive to the CSS translateX
   loop on .marquee-track (the items' own transform is independent). */
.kinetic-marquee .marquee-item {
  transform: skewX(var(--mq-skew, 0deg));
  transition: transform 120ms linear;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .kinetic-marquee .marquee-track { animation: none; }
  .kinetic-marquee .marquee-item { transform: none !important; }
}

/* ── 8.1b WORK — horizontal film gallery (the work reel) ───────────────
   Base layout is an accessible vertical stack (no-JS / reduced-motion).
   interactions.js adds .gallery--pinned to upgrade it to a sticky-pinned
   horizontal scroller that pans as the section is scrolled; the section's
   height is set by JS (= 100vh + horizontal travel) so vertical scroll
   maps ~1:1 to horizontal pan. Page-level horizontal overflow stays zero —
   only .gallery-stage clips. Logical props keep RTL automatic. ── */
.gallery {
  position: relative;
  background: var(--black);
  padding: clamp(72px, 11vh, 150px) 0;
}
.gallery-track {
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 7vh, 90px);
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(20px, 6vw, 80px);
}
.gallery-panel { width: 100%; max-width: 46ch; }
.gallery-lead-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 5.6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 16px 0 0;
  max-width: 14ch;
}
.gallery-lead-title em { font-style: italic; color: var(--gold); }
.gallery-lead-sub {
  margin: clamp(18px, 2.4vw, 28px) 0 0;
  max-width: 42ch;
  font-size: clamp(0.98rem, 1.3vw, 1.16rem);
  line-height: 1.66;
  color: rgba(240, 237, 232, 0.74);
}
.gallery-lead-hint {
  margin-top: clamp(24px, 3.2vw, 38px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-lead-arrow { animation: galleryHintNudge 1.9s ease-in-out infinite; }
@keyframes galleryHintNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }
[dir="rtl"] .gallery-lead-arrow { transform: scaleX(-1); animation: none; }

.gallery-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--dark);
  border: 1px solid var(--border);
}
.gallery-frame-media { position: absolute; inset: -6%; overflow: hidden; will-change: transform, filter; }
/* keep swipe/drag-to-pan clean — no text selection or native image dragging */
.gallery-stage { -webkit-user-select: none; user-select: none; }
.gallery-frame img { -webkit-user-drag: none; -webkit-touch-callout: none; }
.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(1.04) brightness(0.9);
  transform: scale(1.06);
  transition: transform 1.1s var(--ease-out), filter 0.6s ease;
  will-change: transform;
}
.gallery-frame:hover img,
.gallery-frame:focus-visible img { transform: scale(1.12); filter: contrast(1.06) saturate(1.08) brightness(1); }
.gallery-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.05) 28%, rgba(8, 8, 8, 0.82) 100%);
  pointer-events: none;
}
.gallery-frame-no {
  position: absolute;
  top: clamp(14px, 1.8vw, 24px);
  inset-inline-start: clamp(16px, 2vw, 28px);
  z-index: 2;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1;
  color: rgba(240, 237, 232, 0.92);
}
.gallery-frame-meta {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(18px, 2.4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery-frame-tag {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.gallery-frame-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.06;
  color: var(--white);
}
.gallery-frame::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  z-index: 3;
  transition: width 0.6s var(--ease-out);
}
.gallery-frame:hover::before,
.gallery-frame:focus-visible::before { width: 100%; }

.gallery-outro-no {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.gallery-outro-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.07;
  letter-spacing: -0.018em;
  color: var(--off-white);
  margin: 14px 0 0;
  max-width: 16ch;
}
.gallery-outro-title em { font-style: italic; color: var(--gold); }
.gallery-outro-actions { margin: clamp(22px, 3vw, 36px) 0 clamp(16px, 2vw, 22px); }
.gallery-outro-spec { color: var(--muted); }

.gallery-rail { display: none; }

/* enhanced: sticky-pinned horizontal pan (interactions.js adds .gallery--pinned) */
.gallery--pinned { padding: 0; }
.gallery--pinned .gallery-stage {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--black);
}
@supports not (height: 100svh) { .gallery--pinned .gallery-stage { height: 100vh; } }
.gallery--pinned .gallery-track {
  flex-direction: row;
  align-items: stretch;
  width: -webkit-max-content;
  width: max-content;
  max-width: none;
  height: min(74vh, 700px);
  margin: 0;
  gap: clamp(14px, 1.8vw, 30px);
  padding: 0 clamp(20px, 8vw, 160px);
  will-change: transform;
}
.gallery--pinned .gallery-panel {
  flex: 0 0 auto;
  width: clamp(260px, 80vw, 540px);
  max-width: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery--pinned .gallery-frame {
  flex: 0 0 auto;
  width: clamp(260px, 66vw, 540px);
  height: 100%;
  aspect-ratio: auto;
}
.gallery--pinned .gallery-rail {
  display: block;
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 2px;
  background: rgba(240, 237, 232, 0.07);
  z-index: 4;
}
.gallery-rail-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light, #dfc08a));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}
[dir="rtl"] .gallery-rail-bar { transform-origin: right center; }

@media (prefers-reduced-motion: reduce) {
  .gallery-frame img { transform: none !important; transition: none !important; }
  .gallery-frame-media { inset: 0 !important; transform: none !important; filter: none !important; }
  .gallery-frame::before { transition: none !important; }
  .gallery-lead-arrow { animation: none !important; }
}

/* ── 8.2 Manifesto — the dark-psychology statement beat ── */
.manifesto {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 17vh, 220px) 0;
  background:
    radial-gradient(120% 80% at 82% 2%, rgba(201, 169, 110, 0.06), transparent 60%),
    var(--black);
  border-bottom: 1px solid var(--border);
}
.manifesto .container { position: relative; z-index: 1; max-width: 1120px; }
.manifesto-ghost {
  position: absolute;
  right: clamp(-40px, -1vw, 40px);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(180px, 34vw, 560px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.05);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}
[dir="rtl"] .manifesto-ghost { right: auto; left: clamp(-40px, -1vw, 40px); }
.manifesto-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: clamp(26px, 3.4vw, 44px);
}
.manifesto-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
[dir="rtl"] .manifesto-kicker::before { background: linear-gradient(270deg, transparent, var(--gold)); }
.manifesto h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(33px, 6.2vw, 92px);
  line-height: 1.06;
  letter-spacing: -0.012em;
  color: var(--off-white);
  max-width: 20ch;
  text-wrap: balance;
}
.manifesto h2 em { font-style: italic; color: var(--gold); }
.manifesto-sub {
  margin: clamp(26px, 3.4vw, 44px) 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.85;
  font-weight: 300;
}
.manifesto-sub strong { color: var(--off-white); font-weight: 500; }
.manifesto-foot {
  margin-top: clamp(34px, 4vw, 52px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

/* ── 8.3 Authority metric band — count-up proof ── */
.metric-band {
  position: relative;
  padding: clamp(58px, 8vw, 104px) 0;
  background: var(--off-black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.metric-band-head { text-align: center; margin-bottom: clamp(34px, 5vw, 60px); }
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.metric {
  background: var(--off-black);
  padding: clamp(28px, 4vw, 50px) clamp(14px, 2vw, 28px);
  text-align: center;
}
.metric-num {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  color: var(--white);
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  direction: ltr; /* numerals + prefix/suffix always read LTR, even in RTL locales */
}
.metric-num .prefix,
.metric-num .suffix { color: var(--gold); }
.metric-label {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 760px) {
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 8.4 Elite close — selectivity + risk-reversal + final CTA ── */
.close-band {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 13vw, 184px) 0;
  background:
    radial-gradient(80% 130% at 50% 124%, rgba(201, 169, 110, 0.09), transparent 60%),
    linear-gradient(180deg, var(--black), var(--off-black));
  border-top: 1px solid var(--border);
  text-align: center;
}
.close-band-frame {
  position: absolute;
  inset: clamp(14px, 2.4vw, 30px);
  border: 1px solid rgba(201, 169, 110, 0.10);
  pointer-events: none;
}
.close-band .container { position: relative; z-index: 1; }
.close-kicker {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
}
.close-band h2 {
  margin: 0 auto;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 5.6vw, 78px);
  line-height: 1.07;
  letter-spacing: -0.01em;
  color: var(--off-white);
  max-width: 17ch;
  text-wrap: balance;
}
.close-band h2 em { font-style: italic; color: var(--gold); }
.close-sub {
  margin: clamp(20px, 2.6vw, 30px) auto 0;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
}
.close-assure {
  list-style: none;
  margin: clamp(30px, 4vw, 46px) auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 36px);
  max-width: 780px;
}
.close-assure li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(240, 237, 232, 0.82);
}
.close-assure li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.8;
  flex-shrink: 0;
}
.close-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: clamp(32px, 4vw, 46px);
}
.close-spec { justify-content: center; margin-top: 22px; }
.close-spec a { color: rgba(201, 169, 110, 0.72); text-decoration: none; }
.close-spec a:hover { color: var(--gold); }

/* ═════════════════════════════════════════════════════════════════════
   8.6  CONTEXTUAL CURSOR  — the award-tier "VIEW" magnifier
   Extends the base ring (utilities.css) on fine-pointer devices only.
   cursor.js injects .cursor-ring-label and toggles .labeled when the
   pointer is over a work tile (showcase / portfolio) or any element
   carrying a custom data-cursor label. The ring blooms into a filled
   gold disc that reads "View" — the signature interaction that tells a
   visitor "this is clickable, and there's more behind it."
   ═════════════════════════════════════════════════════════════════════ */
@media (hover: hover) and (pointer: fine) {
  .cursor-ring {
    display: none; /* custom cursor disabled — native mouse is used everywhere */
    align-items: center;
    justify-content: center;
    transition:
      opacity 160ms ease,
      width 260ms var(--ease-out),
      height 260ms var(--ease-out),
      background-color 200ms ease,
      border-color 180ms ease,
      transform 200ms var(--ease-out);
  }
  .cursor-ring-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    white-space: nowrap;
    opacity: 0;
    transform: scale(0.55);
    transition: opacity 160ms ease, transform 240ms var(--ease-out);
  }
  .cursor-ring.labeled {
    width: 90px;
    height: 90px;
    background: var(--gold);
    border-color: var(--gold);
    opacity: 1;
  }
  .cursor-ring.labeled .cursor-ring-label {
    opacity: 1;
    transform: scale(1);
  }
  /* subtle press feedback while a labeled tile is being clicked */
  .cursor-ring.labeled.clicking {
    transform: translate(-50%, -50%) scale(0.9);
  }
}

/* Reduced motion: keep the contextual label (it conveys meaning, not
   motion) but drop the easing so it appears instantly. */
@media (prefers-reduced-motion: reduce) {
  .cursor-ring,
  .cursor-ring-label { transition: none !important; }
}

/* ═════════════════════════════════════════════════════════════════════
   8.7  CINEMA  — full-bleed emotional interstitial (the visceral proof)
   A single real render bleeds edge-to-edge behind an oversized
   dark-psychology statement that wipes in like an inked drafting line.
   The image drifts on scroll (interactions.js → --cinema-shift); the
   headline reveals via clip-path. Both fully disabled under reduced
   motion. An architectural corner frame + live drafting stamp supply the
   micro-detail. No section number — this is a pure cinematic beat.
   ═════════════════════════════════════════════════════════════════════ */
.cinema {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 100svh;
  padding: clamp(96px, 15vh, 210px) 0 clamp(56px, 8vh, 96px);
  overflow: hidden;
  background: var(--black);
  isolation: isolate;
}
@supports not (min-height: 100svh) { .cinema { min-height: 100vh; } }

.cinema-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.cinema-media img {
  position: absolute;
  top: -11%;
  left: 50%;
  width: 100%;
  height: 122%;
  object-fit: cover;
  object-position: center 42%;
  transform: translate3d(-50%, var(--cinema-shift, 0px), 0) scale(1.05);
  will-change: transform;
}
.cinema-scrim {
  position: absolute;
  inset: 0;
  /* --scrim-x follows the text side so the radial legibility boost sits
     under the headline; it flips for RTL below. */
  background:
    linear-gradient(180deg,
      rgba(5, 5, 7, 0.64) 0%,
      rgba(5, 5, 7, 0.30) 26%,
      rgba(5, 5, 7, 0.34) 54%,
      rgba(5, 5, 7, 0.88) 100%),
    radial-gradient(125% 92% at var(--scrim-x, 16%) 90%,
      rgba(5, 5, 7, 0.66) 0%,
      rgba(5, 5, 7, 0) 58%);
}
[dir="rtl"] .cinema-scrim { --scrim-x: 84%; }

/* architectural corner frame */
.cinema-frame {
  position: absolute;
  inset: clamp(16px, 2.4vw, 36px);
  z-index: -1;
  pointer-events: none;
}
.cinema-corner {
  position: absolute;
  width: clamp(18px, 2.4vw, 30px);
  height: clamp(18px, 2.4vw, 30px);
  border: 1px solid rgba(240, 237, 232, 0.32);
}
.cinema-corner--tl { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.cinema-corner--tr { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.cinema-corner--bl { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.cinema-corner--br { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.cinema-inner {
  position: relative;
  width: 100%;
}
.cinema-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(18px, 2.6vw, 30px);
}
.cinema-eyebrow-rule {
  display: block;
  width: clamp(34px, 6vw, 76px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201, 169, 110, 0));
}
.cinema-title {
  margin: 0;
  max-width: 17ch;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 7.2vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--off-white);
}
.cinema-title em { font-style: italic; color: var(--gold); }
.cinema-sub {
  margin: clamp(22px, 3vw, 34px) 0 0;
  max-width: 46ch;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  color: rgba(240, 237, 232, 0.82);
}
.cinema-actions { margin-top: clamp(30px, 4vw, 48px); }

/* live drafting stamp — top-right micro-detail (fed by interactions.js initStamp) */
.cinema-stamp {
  position: absolute;
  top: clamp(78px, 12vh, 132px);
  right: clamp(26px, 3.4vw, 60px);
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-align: right;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: rgba(240, 237, 232, 0.46);
  direction: ltr;
}
.cinema-stamp-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  white-space: nowrap;
}
.cinema-stamp-k { color: rgba(201, 169, 110, 0.66); }

/* ── clip "drawn-in" reveal for the headline ──────────────────────────
   The clip lives on the inner <h2>; the OBSERVED reveal element is the
   un-clipped .cinema-title-wrap. A fully-clipped element reports a zero
   IntersectionObserver ratio, so it would never receive .visible and
   would stay hidden forever — wrapping sidesteps that deadlock. */
.cinema-title-wrap.reveal { opacity: 1; transform: none; transition: none; }
.cinema-title {
  clip-path: inset(-6% 102% -12% -2%);
  transition: clip-path 1150ms var(--ease-out);
}
.cinema-title-wrap.visible .cinema-title { clip-path: inset(-6% -2% -12% -2%); }
[dir="rtl"] .cinema-title { clip-path: inset(-6% -2% -12% 102%); }
[dir="rtl"] .cinema-title-wrap.visible .cinema-title { clip-path: inset(-6% -2% -12% -2%); }

@media (prefers-reduced-motion: reduce) {
  .cinema-media img { transform: translate3d(-50%, 0, 0) scale(1.05); }
  .cinema-title { clip-path: none !important; transition: none !important; }
}

@media (max-width: 640px) {
  .cinema-stamp { display: none; }
  .cinema-title { max-width: 18ch; }
}

/* ── 8.7b  CINEMA — alt-aligned variant ───────────────────────────────
   The second cinematic beat mirrors to the opposite side so two full-bleed
   panels alternate (the zuru.tech cadence) instead of stacking identically.
   Content, eyebrow, actions and stamp flip right; the scrim's legibility
   radial follows; the headline wipe originates from the right edge. */
.cinema--alt .cinema-inner { text-align: right; }
.cinema--alt .cinema-eyebrow { justify-content: flex-end; }
.cinema--alt .cinema-title,
.cinema--alt .cinema-sub { margin-left: auto; }
.cinema--alt .cinema-scrim { --scrim-x: 84%; }
.cinema--alt .cinema-stamp {
  left: clamp(26px, 3.4vw, 60px);
  right: auto;
  text-align: left;
}
.cinema--alt .cinema-stamp-row { justify-content: flex-start; }
.cinema--alt .cinema-title { clip-path: inset(-6% -2% -12% 102%); }
.cinema--alt .cinema-title-wrap.visible .cinema-title { clip-path: inset(-6% -2% -12% -2%); }
@media (prefers-reduced-motion: reduce) {
  .cinema--alt .cinema-title { clip-path: none !important; }
}

/* ── 8.8  COVER bridges — full-site link + relocated Google proof ──────
   The homepage is now a curated cover; the full funnel lives at full.html.
   A distinguished outlined nav pill routes there, and the Google rating
   banner (lifted from the old testimonials section) sits as social proof
   under the authority metrics. */
.nav-links a.nav-fullsite {
  padding: 7px 15px;
  border: 1px solid rgba(201, 169, 110, 0.45);
  border-radius: 2px;
  color: var(--gold);
  transition: color .3s, background .3s, border-color .3s;
}
.nav-links a.nav-fullsite::after { display: none; }
.nav-links a.nav-fullsite:hover {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}
a.mobile-menu-fullsite { color: var(--gold); }

.metric-proof-rating {
  margin-top: clamp(44px, 6vw, 72px);
  display: flex;
  justify-content: center;
}
.metric-proof-rating .google-rating-banner {
  margin-top: 0;
  width: 100%;
  max-width: 680px;
}

/* ── 8.9  COVER HERO (index only) — zuru-style minimal cinematic opener ──
   The homepage hero is reduced to a single full-bleed render, one editorial
   headline and one button — declarative, not busy. Scoped to .hero--cover so
   full.html keeps its richer multi-element hero untouched. Specificity is
   deliberately .hero.hero--cover (two classes) so it wins over the many
   language-scoped `.hero h1` / `.hero-content` overrides in responsive.css. */
.hero.hero--cover .hero-bg { background: #050507; }
.hero.hero--cover .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  --px: 0;
  --py: 0;
  transform: scale(1.08) translate3d(calc(var(--px) * -16px), calc(var(--py) * -10px), 0);
  will-change: transform;
}
/* Centre-weighted scrim — keeps white type crisp over any photograph the
   studio later drops in, while letting the render breathe at the edges. */
.hero.hero--cover .hero-gradient {
  background:
    radial-gradient(115% 85% at 50% 52%, rgba(5,5,7,0.05) 0%, rgba(5,5,7,0.30) 50%, rgba(5,5,7,0.62) 100%),
    linear-gradient(to top, rgba(5,5,7,0.85) 0%, rgba(5,5,7,0.22) 42%, rgba(5,5,7,0.40) 100%);
}
.hero.hero--cover .hero-content {
  padding: 0 clamp(24px, 5vw, 48px);
  max-width: 1180px;
  align-items: center;
  text-align: center;
  gap: clamp(30px, 4vw, 46px);
}
/* Title + sub travel together as one centred copy group; the
   hero-content gap above then spaces that group from the button. */
.hero.hero--cover .hero-cover-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
}
.hero.hero--cover .hero-cover-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 7.8vw, 6.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0;
  max-width: 15ch;
  text-wrap: balance;
}
.hero.hero--cover .hero-cover-title em { font-style: italic; color: var(--gold); }
/* Supporting line — the marketing bridge from the emotional headline to the
   certainty benefit. Quiet sans, generous measure, never competes with the title. */
.hero.hero--cover .hero-cover-sub {
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.55;
  letter-spacing: 0.005em;
  color: rgba(240, 237, 232, 0.82);
  margin: 0;
  max-width: 50ch;
  text-wrap: balance;
}
.hero.hero--cover .hero-cover-actions { display: flex; justify-content: center; }
/* The cover button carries the whole call — give it a touch more presence. */
.hero.hero--cover .hero-cover-btn {
  padding: clamp(15px, 1.8vw, 18px) clamp(30px, 3.4vw, 44px);
  font-size: 0.8rem;
}
@media (max-width: 600px) {
  .hero.hero--cover .hero-cover-title { font-size: clamp(2.3rem, 11vw, 3.4rem); max-width: 13ch; }
  .hero.hero--cover .hero-cover-sub { font-size: 0.98rem; max-width: 36ch; }
}

/* ═════════════════════════════════════════════════════════════════════
   8.10  FULL-SCREEN SCENES — Services + Proof (index only)
   Lifts the services grid and the metric band into full-viewport
   cinematic "chapters" to match the hero / gallery / cinema cadence.
   Scoped to .scene-services / .scene-proof (added only on index sections)
   so full.html's shared #services / .metric-band stay untouched. The
   premium service-card grid (services.css) is left intact — only the
   framing, header scale and proof numerals are elevated here. Appended
   last so source order wins for equal-specificity overrides. ── */
.scene-services {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(84px, 13vh, 168px) 0;
  background:
    radial-gradient(120% 70% at 50% -8%, rgba(201, 169, 110, 0.06), transparent 56%),
    linear-gradient(180deg, var(--black) 0%, var(--off-black) 100%);
  border-top: 1px solid var(--border);
  isolation: isolate;
}
@supports not (min-height: 100svh) { .scene-services { min-height: 100vh; } }
.scene-services > .container { width: 100%; }
.scene-services .label { color: var(--gold); }
.scene-services .display {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 6.4vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--off-white);
  max-width: 18ch;
}
.scene-services .display em { font-style: italic; color: var(--gold); }
.scene-services .section-desc {
  max-width: 56ch;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  color: rgba(240, 237, 232, 0.74);
}
.scene-services .services-grid { margin-top: clamp(40px, 6vh, 72px); }

.scene-proof {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(80px, 12vh, 150px) 0;
  background:
    radial-gradient(90% 120% at 50% 122%, rgba(201, 169, 110, 0.07), transparent 58%),
    var(--black);
}
@supports not (min-height: 100svh) { .scene-proof { min-height: 100vh; } }
.scene-proof > .container { width: 100%; }
.scene-proof .metric-band-head { margin-bottom: clamp(44px, 7vh, 80px); }
.scene-proof .display {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--off-white);
  max-width: 20ch;
  margin-inline: auto;
}
.scene-proof .display em { font-style: italic; color: var(--gold); }
.scene-proof .metric-num { font-size: clamp(3rem, 8.5vw, 7rem); }
.scene-proof .metric-label { margin-top: 16px; }

@media (max-width: 760px) {
  .scene-services,
  .scene-proof { min-height: auto; }
}

/* ── 8.11  Lenis momentum-scroll support (interactions.js initSmoothScroll)
   Required helper rules: keep document height natural, neutralise native
   smooth-scroll while Lenis drives, and let opt-out regions ([data-lenis-
   prevent]) scroll on their own. Inert if Lenis never initialises. ── */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* ── 8.12  Chapter rail — minimal scene-progress indicator (index only) ──
   A column of dots at the viewport edge; interactions.js marks the active
   one as each scene crosses centre. Decorative (aria-hidden) and non-
   interactive (pointer-events:none) — the main nav carries real navigation,
   so there are no focus/i18n concerns. Hidden ≤1200px so it never collides
   with the alternating cinema text. ── */
.chapter-rail {
  position: fixed;
  top: 50%;
  right: clamp(12px, 1.4vw, 22px);
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  pointer-events: none;
}
[dir="rtl"] .chapter-rail { right: auto; left: clamp(12px, 1.4vw, 22px); }
.chapter-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(240, 237, 232, 0.22);
  transition: background 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}
.chapter-dot.is-active {
  background: var(--gold);
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.12);
}
@media (max-width: 1200px) { .chapter-rail { display: none; } }
@media (prefers-reduced-motion: reduce) { .chapter-dot { transition: none; } }

/* ── 8.13  Cover hero entrance — one calm, staggered settle (index only) ──
   The headline previously inherited the generic `.hero h1` land while the
   sub-line, button and stamp just appeared. This gives the whole cover group
   a single cohesive entrance (title → sub → button → stamp) plus a gentle
   render fade. The fade animates OPACITY only on the bg image, so the pointer
   parallax transform (--px/--py) is never overwritten. ── */
@keyframes coverRise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes coverFade { from { opacity: 0; } to { opacity: 1; } }
.hero.hero--cover .hero-cover-title   { animation: coverRise 1s   cubic-bezier(0.16,1,0.3,1) 0.15s both; }
.hero.hero--cover .hero-cover-sub     { animation: coverRise 0.9s cubic-bezier(0.16,1,0.3,1) 0.42s both; }
.hero.hero--cover .hero-cover-actions { animation: coverRise 0.9s cubic-bezier(0.16,1,0.3,1) 0.60s both; }
.hero.hero--cover .hero-stamp         { animation: coverRise 1.1s cubic-bezier(0.16,1,0.3,1) 0.95s both; }
.hero.hero--cover .hero-bg-img        { animation: coverFade 1.1s ease both; }
@media (prefers-reduced-motion: reduce) {
  .hero.hero--cover .hero-cover-title,
  .hero.hero--cover .hero-cover-sub,
  .hero.hero--cover .hero-cover-actions,
  .hero.hero--cover .hero-stamp,
  .hero.hero--cover .hero-bg-img { animation: none !important; }
}
