@import url("colors_and_type.css");

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; min-height: 100%; }
html {
  background: #1F0B14;
  scrollbar-color: #1F0B14 #1F0B14;
}
body {
  background: #1F0B14;  /* dark base; sections set their own bg */
  color: var(--lv-ink);
  overflow-x: hidden;
}
/* Each below-gate section paints cream explicitly to avoid dark bleed */
.about-anchor, .wisdom, .ticker, .triad, .zones, .featured, .editorial, .manifesto, .newsletter, .footer, .score-banner {
  background-color: var(--lv-cream);
}
.wisdom { background-color: var(--lv-cream-warm); }

/* ============================================================
   NAV — logo LEFT · signup + hamburger RIGHT
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--lv-cream);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-5);
  padding: 14px clamp(20px, 4vw, 56px);
  max-width: 1560px;
  margin: 0 auto;
}
/* RTL: flex-start = right side; we use flex-direction: row — in RTL document, flex-start is RIGHT */
/* Logo is first in HTML → should appear on LEFT. Override with order */
.nav-logo { order: 2; display: block; }
.nav-actions { order: 1; display: inline-flex; align-items: center; gap: 10px; }
.nav-logo img {
  display: block;
  height: 140px;
  width: auto;
}
.nav-cta,
.nav-burger {
  color: var(--lv-ink);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  transition: color var(--dur-1) var(--ease), opacity var(--dur-1) var(--ease);
  cursor: pointer;
  padding: 0;
  opacity: 0.8;
}
.nav-cta:hover, .nav-burger:hover { color: var(--lv-maroon); opacity: 1; }

/* ============================================================
   MENU OVERLAY (fullscreen when hamburger clicked)
   ============================================================ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: var(--lv-cream);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease);
  overflow-y: auto;
}
.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.menu-close {
  position: absolute;
  top: 20px;
  left: 24px;
  background: transparent;
  border: 1px solid var(--lv-ink);
  border-radius: 999px;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--lv-ink);
  transition: all var(--dur-1) var(--ease);
}
.menu-close:hover {
  background: var(--lv-maroon);
  color: var(--lv-cream);
  border-color: var(--lv-maroon);
}
.menu-nav {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 56px) 80px;
  display: flex;
  flex-direction: column;
}
.menu-eyebrow {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--lv-brass);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.menu-item {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(36px, 5.6vw, 56px);
  line-height: 1.05;
  color: var(--lv-maroon);
  text-decoration: none;
  padding: 12px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px solid transparent;
  transition: color 160ms var(--ease);
}
.menu-item:hover {
  color: var(--lv-maroon-deep);
}
.menu-item .menu-num {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--lv-ink-40);
  letter-spacing: .1em;
  min-width: 36px;
  flex-shrink: 0;
}
.menu-item em {
  font-family: var(--ff-citation);
  font-style: italic;
  font-size: 15px;
  color: var(--lv-ink-60);
  font-weight: 400;
  margin-right: auto;
  padding-right: 20px;
  direction: ltr;
  text-align: left;
}
.menu-divider {
  height: 1px; background: var(--rule);
  margin: 32px 0 24px;
}
.menu-meta {
  font-family: var(--ff-ui);
  font-size: 14px; letter-spacing: .08em;
  color: var(--lv-ink);
  text-decoration: none;
  padding: 6px 0;
  transition: color 160ms var(--ease);
}
.menu-meta:hover { color: var(--lv-maroon); }

/* ============================================================
   GATE — 4 atmospheric slides · quote + signature + color tone
   ============================================================ */
.gate {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  color: var(--lv-cream);
  isolation: isolate;
  margin-top: -96px;  /* pull gate up behind the sticky/transparent nav */
  padding-top: 96px;  /* compensate so content doesn't sit under nav */
}
.gate-stage {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1400ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  display: grid;
  place-items: center;
  padding: 0 clamp(20px, 5vw, 80px);
  overflow: hidden;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.slide-img {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 12000ms cubic-bezier(.3,0,.4,1);
  will-change: transform;
}
/* Distinct framing per slide — same Leonardo, different emphasis */
.slide[data-tone="maroon"]  .slide-img { transform: translate(-50%, -50%) scale(1.02); object-position: center 42%; }
.slide[data-tone="maroon"].active .slide-img { transform: translate(-50%, -50%) scale(1.08); }
.slide[data-tone="indigo"]  .slide-img { transform: translate(-50%, -48%) scale(1.6); object-position: center 20%; }
.slide[data-tone="indigo"].active .slide-img { transform: translate(-50%, -48%) scale(1.7); }
.slide[data-tone="ochre"]   .slide-img { transform: translate(-52%, -50%) scale(1.3); object-position: 30% 50%; }
.slide[data-tone="ochre"].active .slide-img { transform: translate(-52%, -50%) scale(1.4); }
.slide[data-tone="forest"]  .slide-img { transform: translate(-50%, -55%) scale(1.4); object-position: center 75%; }
.slide[data-tone="forest"].active .slide-img { transform: translate(-50%, -55%) scale(1.5); }
/* Tone variations — clean sepia washes, NOT heavy filters */
.slide[data-tone="maroon"]        { background: #1F0B14; }
.slide[data-tone="maroon"]  .slide-img { filter: sepia(.35) contrast(1.05) brightness(.78) saturate(.9); }
.slide[data-tone="indigo"]        { background: #0F1528; }
.slide[data-tone="indigo"]  .slide-img { filter: sepia(.25) contrast(1.05) brightness(.72) hue-rotate(200deg) saturate(.6); }
.slide[data-tone="ochre"]         { background: #2A1A0A; }
.slide[data-tone="ochre"]   .slide-img { filter: sepia(.55) contrast(1.05) brightness(.85) saturate(.95); }
.slide[data-tone="forest"]        { background: #0F1A12; }
.slide[data-tone="forest"]  .slide-img { filter: sepia(.35) contrast(1.05) brightness(.75) hue-rotate(75deg) saturate(.55); }

/* Softer overlay — just vignette, keeps image clear in center */
.slide::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,0,0,.12) 0%, rgba(0,0,0,.5) 70%, rgba(0,0,0,.8) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 30%, transparent 70%, rgba(0,0,0,.5) 100%);
}
.slide-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  width: 100%;
  transform: translateY(14px);
  opacity: 0;
  transition: opacity 1100ms cubic-bezier(.4,0,.2,1) 280ms, transform 1100ms cubic-bezier(.4,0,.2,1) 280ms;
}
.slide.active .slide-inner {
  transform: translateY(0);
  opacity: 1;
}
.slide-kicker {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--lv-brass);
  margin-bottom: clamp(28px, 4vh, 56px);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.slide-kicker::before,
.slide-kicker::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--lv-brass);
  opacity: 0.45;
}
.slide-quote {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 108px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--lv-cream);
  margin: 0 auto;
  max-width: 960px;
  text-wrap: balance;
}
.slide-quote em {
  font-style: italic;
  font-weight: 400;
  color: var(--lv-brass);
}
.slide-sig {
  margin-top: clamp(36px, 5vh, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.sig-name {
  font-family: 'Caveat', var(--ff-editorial);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 44px);
  color: var(--lv-cream);
  line-height: 1;
  letter-spacing: 0;
  opacity: 0.92;
}
.sig-meta {
  font-family: var(--ff-citation);
  font-style: italic;
  font-size: 13px;
  color: var(--lv-ink-40);
  color: rgba(245,240,232,.55);
  letter-spacing: .06em;
}

/* dots */
.gate-dots {
  position: absolute;
  bottom: clamp(80px, 10vh, 120px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}
.dot {
  width: 28px;
  height: 3px;
  border: 0;
  background: rgba(245,240,232,.25);
  padding: 0;
  cursor: pointer;
  transition: background 320ms var(--ease), width 320ms var(--ease);
}
.dot.active {
  background: var(--lv-brass);
  width: 44px;
}

.gate-scroll {
  position: absolute;
  bottom: clamp(24px, 3.5vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  color: var(--lv-cream);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 240ms var(--ease);
}
.gate-scroll:hover { opacity: 1; }
.gate-arrow {
  font-size: 22px;
  animation: gate-bounce 2.6s ease-in-out infinite;
  line-height: 1;
}
@keyframes gate-bounce {
  0%, 100% { transform: translateY(0); opacity: .5; }
  50%      { transform: translateY(6px); opacity: 1; }
}

/* Left/right slide arrows */
.gate-arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: transparent;
  border: 0;
  color: var(--lv-cream);
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}
.gate-arrow-btn:hover { opacity: 1; }
.gate-arrow-prev { left: clamp(16px, 3vw, 48px); }
.gate-arrow-next { right: clamp(16px, 3vw, 48px); }
.gate-arrow-prev:hover { transform: translateY(-50%) translateX(-3px); }
.gate-arrow-next:hover { transform: translateY(-50%) translateX(3px); }

/* ============================================================
   NAV adaptive — transparent on gate, cream after scroll
   ============================================================ */
.nav.on-gate {
  background: transparent;
  border-bottom-color: transparent;
}
.nav.on-gate .nav-logo img {
  filter: brightness(0) invert(1);
  opacity: .92;
}
.nav.on-gate .nav-cta,
.nav.on-gate .nav-burger {
  color: var(--lv-cream);
  opacity: 0.85;
}
.nav.on-gate .nav-cta:hover,
.nav.on-gate .nav-burger:hover {
  color: var(--lv-brass);
  opacity: 1;
}
.btn {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  padding: 18px 30px;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
  border: 1px solid var(--lv-maroon);
  cursor: pointer;
  transition: all var(--dur-2) var(--ease);
  background: var(--lv-maroon); color: var(--lv-cream);
}
.btn:hover { background: var(--lv-maroon-deep); border-color: var(--lv-maroon-deep); }
.btn-ghost {
  background: transparent; color: var(--lv-maroon);
  border-color: var(--lv-maroon);
}
.btn-ghost:hover { background: var(--lv-maroon); color: var(--lv-cream); }
.btn-text {
  font-family: var(--ff-ui); font-weight: 500;
  font-size: 13px; letter-spacing: .1em;
  color: var(--lv-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.btn-text:hover { color: var(--lv-maroon); text-decoration-thickness: 2px; }

.hero-issue-meta {
  position: absolute;
  bottom: 30px; right: clamp(24px, 5vw, 80px);
  display: flex; gap: 32px; align-items: baseline;
  font-family: var(--ff-ui);
  font-size: 11px; color: var(--lv-ink-60);
  letter-spacing: .22em; text-transform: uppercase;
}
.hero-issue-meta span { display: inline-flex; gap: 8px; align-items: baseline; }
.hero-issue-meta b { color: var(--lv-ink); font-weight: 700; }

/* ============================================================
   ABOUT ANCHOR — SEO + intro text (brand-word repetition)
   ============================================================ */
.about-anchor {
  background: var(--lv-cream);
  padding: clamp(60px, 10vh, 120px) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--rule);
}
.about-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.about-h1 {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(44px, 6.4vw, 88px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--lv-maroon);
  margin: 0 0 24px;
}
.about-brand { color: var(--lv-maroon); }
.about-brand-lt {
  direction: ltr;
  font-family: 'BBH Sans Bartle', var(--ff-editorial);
  font-size: 0.7em;
  letter-spacing: .02em;
  color: var(--lv-brass);
  font-weight: 700;
}
.about-lede {
  font-family: var(--ff-editorial);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.5;
  color: var(--lv-ink);
  margin: 0 0 20px;
  text-wrap: balance;
}
.about-lede strong { color: var(--lv-maroon); font-weight: 700; }
.about-lede em {
  font-style: italic;
  font-weight: 400;
  color: var(--lv-brass);
}
.about-sub {
  font-family: var(--ff-editorial);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  color: var(--lv-ink-60);
  margin: 0;
}
.about-sub strong {
  color: var(--lv-ink);
  font-weight: 700;
}
.about-sub em {
  font-style: italic;
  color: var(--lv-brass);
}
.about-sub a {
  color: var(--lv-maroon);
  text-decoration: none;
  border-bottom: 1px solid var(--lv-maroon);
}

/* ============================================================
   SCORE BANNER — homepage invitation
   ============================================================ */
.score-banner {
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--rule);
  text-align: center;
  position: relative;
  background:
    radial-gradient(ellipse at center, rgba(107,31,58,0.05) 0%, transparent 70%),
    var(--lv-cream-warm);
}
.sb-inner {
  max-width: 720px;
  margin: 0 auto;
}
.sb-eyebrow {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--lv-brass);
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 14px;
}
.sb-eyebrow::before, .sb-eyebrow::after {
  content: ""; width: 30px; height: 1px; background: var(--lv-brass); opacity: .5;
}
.sb-title {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--lv-maroon);
  margin: 0 0 20px;
}
.sb-title em { font-style: italic; font-weight: 400; color: var(--lv-brass); }
.sb-desc {
  font-family: var(--ff-editorial);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
  color: var(--lv-ink);
  margin: 0 0 32px;
}
.sb-desc strong { color: var(--lv-maroon); font-weight: 700; }

/* ============================================================
   LUVUZONE SCORE — assessment modal
   ============================================================ */
.score-modal {
  position: fixed;
  inset: 0;
  background: var(--lv-cream-warm);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms var(--ease);
  overflow-y: auto;
}
.score-modal.open { opacity: 1; pointer-events: auto; }
.score-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 56px) 80px;
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.score-close {
  position: absolute;
  top: 24px; left: 24px;
  background: transparent;
  border: 1px solid var(--lv-ink);
  border-radius: 999px;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--lv-ink);
}
.score-close:hover { background: var(--lv-maroon); color: var(--lv-cream); border-color: var(--lv-maroon); }

.score-step { display: none; text-align: center; }
.score-step.active { display: block; }

.score-eyebrow {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .4em; text-transform: uppercase;
  color: var(--lv-brass);
  margin-bottom: 28px;
}
.step-intro h2 {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  color: var(--lv-maroon);
  margin: 0 0 24px;
}
.step-intro h2 em { font-style: italic; font-weight: 400; color: var(--lv-brass); }
.score-lede {
  font-family: var(--ff-editorial);
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--lv-ink);
  line-height: 1.55;
  margin: 0 auto 40px;
  max-width: 44ch;
}

/* Questions step */
.score-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto 44px;
}
.score-progress-num {
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--lv-brass);
  letter-spacing: .1em;
  flex-shrink: 0;
}
.score-progress-bar {
  flex: 1;
  height: 2px;
  background: var(--lv-ink-15);
  overflow: hidden;
}
.score-progress-fill {
  height: 100%;
  background: var(--lv-maroon);
  transition: width 400ms var(--ease);
}
.score-axis {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--lv-brass);
  margin-bottom: 12px;
}
.score-component {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--lv-maroon);
  line-height: 1;
  margin-bottom: 24px;
}
.score-question {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.25;
  color: var(--lv-ink);
  margin: 0 auto 28px;
  max-width: 38ch;
  text-wrap: balance;
}

/* ============================================================
   SCORE INPUT AREA — futuristic slider experience (2026-04-26)
   Replaced 11-button row + 3-anchor grid with: live giant number,
   single dynamic anchor label, custom slider, dynamic detail.
   ============================================================ */
.score-input-area {
  max-width: 540px;
  margin: 32px auto 36px;
  padding: 0 8px;
}

/* Giant live number */
.score-value-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 6px;
  direction: ltr;
}
.score-value-num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(112px, 26vw, 180px);
  color: var(--lv-maroon);
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-shadow: 0 0 80px rgba(75, 31, 74, 0.18);
  transition: transform 220ms cubic-bezier(.4,0,.2,1), color 220ms ease;
  font-variant-numeric: tabular-nums;
}
.score-value-display.bumping .score-value-num {
  transform: scale(1.06);
}
.score-value-of {
  font-family: var(--ff-ui);
  font-size: clamp(16px, 2vw, 22px);
  color: var(--lv-ink-40);
  letter-spacing: 0.06em;
  font-weight: 400;
}

/* Dynamic anchor label (updates live: "ממוצע" / "טוב" / "מצוין"...) */
.score-anchor-label {
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lv-maroon);
  text-align: center;
  margin-bottom: 36px;
  min-height: 1.2em;
  transition: opacity 200ms ease;
}

/* Slider wrapper — track + ticks + thumb */
.score-slider-wrap {
  position: relative;
  height: 44px;
  margin-bottom: 14px;
  direction: ltr;
}
.score-slider-track {
  position: absolute;
  top: 50%;
  left: 16px;
  right: 16px;
  transform: translateY(-50%);
  height: 6px;
  background: var(--lv-ink-08);
  border-radius: 999px;
  pointer-events: none;
  overflow: hidden;
}
.score-slider-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, var(--lv-maroon-deep), var(--lv-maroon));
  border-radius: 999px;
  transition: width 280ms cubic-bezier(.4,0,.2,1);
}

/* Ticks — 11 dots along the track */
.score-slider-ticks {
  position: absolute;
  top: 50%;
  left: 16px;
  right: 16px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.score-slider-tick {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lv-ink-15);
  transition: background-color 220ms ease, transform 220ms ease;
}
.score-slider-tick.active {
  background: var(--lv-cream-warm);
  transform: scale(1.3);
}

/* Native range — fully transparent, sits on top */
.score-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
  margin: 0;
  cursor: pointer;
  direction: ltr;
}
/* WebKit thumb */
.score-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lv-cream-warm);
  border: 2.5px solid var(--lv-maroon);
  cursor: grab;
  box-shadow: 0 4px 16px rgba(75, 31, 74, 0.32),
              0 0 0 6px rgba(75, 31, 74, 0.06);
  transition: transform 180ms cubic-bezier(.4,0,.2,1),
              box-shadow 180ms cubic-bezier(.4,0,.2,1);
  margin-top: 0;
}
.score-slider:hover::-webkit-slider-thumb {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(75, 31, 74, 0.4),
              0 0 0 10px rgba(75, 31, 74, 0.10);
}
.score-slider:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.14);
}
.score-slider:focus::-webkit-slider-thumb {
  box-shadow: 0 6px 24px rgba(75, 31, 74, 0.45),
              0 0 0 10px rgba(75, 31, 74, 0.14);
}
/* Firefox thumb */
.score-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lv-cream-warm);
  border: 2.5px solid var(--lv-maroon);
  cursor: grab;
  box-shadow: 0 4px 16px rgba(75, 31, 74, 0.32),
              0 0 0 6px rgba(75, 31, 74, 0.06);
  transition: transform 180ms cubic-bezier(.4,0,.2,1);
}
.score-slider::-moz-range-track {
  background: transparent;
}

/* 0 / 10 endpoints */
.score-slider-endpoints {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--lv-ink-40);
  letter-spacing: 0.06em;
  padding: 0 8px;
  margin-bottom: 22px;
  direction: ltr;
}

/* Dynamic detail line — concrete example for current score */
.score-anchor-detail {
  font-family: var(--ff-editorial);
  font-style: italic;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.55;
  color: var(--lv-ink-60);
  text-align: center;
  margin: 0 auto;
  max-width: 38ch;
  min-height: 4em;
  transition: opacity 200ms ease;
  text-wrap: balance;
}

@media (max-width: 600px) {
  .score-input-area { margin: 24px auto 28px; }
  .score-value-num { font-size: clamp(96px, 30vw, 140px); }
  .score-anchor-label { margin-bottom: 30px; font-size: 11px; }
}
.score-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
}
.score-nav .btn { padding: 14px 28px; }

/* Results step */
.score-total {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 0 0 32px;
}
.score-total-num {
  font-family: var(--ff-display);
  font-size: clamp(80px, 12vw, 160px);
  color: var(--lv-maroon);
  line-height: 1;
  letter-spacing: -0.02em;
}
.score-total-max {
  font-family: var(--ff-editorial);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--lv-ink-40);
}
.score-radar-wrap {
  max-width: 440px;
  margin: 0 auto 40px;
  padding: 20px;
}
.score-radar {
  width: 100%;
  height: auto;
  display: block;
}
.score-gap-wrap {
  background: var(--lv-cream);
  border: 1px solid var(--rule);
  padding: 24px;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.score-gap-label {
  font-family: var(--ff-ui);
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--lv-brass);
  margin-bottom: 8px;
}
.score-gap-component {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: 32px;
  color: var(--lv-maroon);
  line-height: 1;
  margin-bottom: 10px;
}
.score-gap-text {
  font-family: var(--ff-editorial);
  font-size: 15px;
  color: var(--lv-ink-60);
  line-height: 1.5;
}
.score-email {
  max-width: 500px;
  margin: 0 auto 24px;
  text-align: center;
}
.score-email p {
  font-family: var(--ff-editorial);
  font-size: 15px;
  color: var(--lv-ink-60);
  margin: 0 0 12px;
}
.score-email-row {
  display: flex;
  gap: 8px;
}
.score-email-input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--lv-ink-15);
  background: var(--lv-cream);
  font-family: var(--ff-ui);
  font-size: 15px;
  color: var(--lv-ink);
  direction: ltr;
}
.score-email-input:focus { outline: 1px solid var(--lv-maroon); border-color: var(--lv-maroon); }
.score-restart {
  margin: 24px auto 0;
  display: block;
}

@media (max-width: 600px) {
  .score-inner { padding: 72px 16px 56px; }
  .step-intro h2 { font-size: clamp(32px, 8vw, 44px); }
  .score-component { font-size: clamp(24px, 7vw, 36px); }
  .score-question { font-size: clamp(18px, 5vw, 24px); }
  .score-value { font-size: 32px; min-width: 44px; }
  .score-email-row { flex-direction: column; }
  .score-total-num { font-size: clamp(64px, 16vw, 100px); }
}

/* ============================================================
   WISDOM — rotating quotes (cream, serif, editorial)
   ============================================================ */
.wisdom {
  padding: clamp(100px, 16vh, 180px) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--rule);
  background: var(--lv-cream-warm);
  position: relative;
}
.wisdom::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1px; height: 60%;
  background: var(--rule);
  opacity: 0;
  pointer-events: none;
}
.wisdom-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.wisdom-eyebrow {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .36em; text-transform: uppercase;
  color: var(--lv-brass);
  margin-bottom: clamp(40px, 6vh, 68px);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.wisdom-eyebrow::before,
.wisdom-eyebrow::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--lv-brass);
  opacity: 0.5;
}
.wisdom-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 260px;
}
.wisdom-stage .quote {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 1100ms cubic-bezier(.4,0,.2,1), transform 1100ms cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  margin: 0;
  max-width: 900px;
}
.wisdom-stage .quote.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.quote-text {
  font-family: var(--ff-editorial);
  font-weight: 400;
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lv-ink);
  margin: 0 0 28px;
  text-wrap: balance;
}
.quote-text em {
  font-style: italic;
  font-weight: 400;
  color: var(--lv-maroon);
}
.quote-cite {
  font-family: var(--ff-citation);
  font-style: italic;
  font-size: clamp(13px, 1.2vw, 16px);
  color: var(--lv-ink-60);
  letter-spacing: .02em;
}
.quote-cite span {
  color: var(--lv-brass);
  font-style: italic;
  margin-inline-start: 6px;
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  padding: var(--s-10) 0 var(--s-10);
  border-bottom: 1px solid var(--rule);
}
.ticker-head {
  text-align: center;
  padding: 0 var(--gutter) var(--s-8);
}
.ticker-head .eyebrow {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--lv-ink-60);
}
.ticker-head h2 {
  font-family: var(--ff-editorial);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  color: var(--lv-maroon);
  margin: 18px 0 0;
}
.ticker-head p {
  font-family: var(--ff-editorial);
  font-size: 18px; line-height: 1.5;
  margin: var(--s-5) auto 0;
  max-width: 52ch;
  color: var(--lv-ink-60);
}
/* Stage: 1 big card at a time, crossfade */
.ticker-stage {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  min-height: 320px;
  display: grid;
}
.tc {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  pointer-events: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 20px;
}
.tc.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.tc-num {
  font-family: var(--ff-display);
  font-size: clamp(60px, 9vw, 140px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--lv-maroon);
}
.tc-num small {
  font-family: var(--ff-editorial);
  font-style: italic;
  font-weight: 400;
  font-size: 0.32em;
  color: var(--lv-brass);
  letter-spacing: 0;
  margin-inline-start: 8px;
  vertical-align: middle;
}
.tc-find {
  font-family: var(--ff-editorial);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
  color: var(--lv-ink);
  max-width: 52ch;
  margin: 0 auto;
  text-wrap: balance;
}
.tc-src {
  font-family: var(--ff-citation);
  font-style: italic;
  font-size: 14px;
  color: var(--lv-ink-60);
  direction: ltr;
  letter-spacing: .04em;
}

/* Controls */
.ticker-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.tc-arrow {
  background: transparent;
  border: 1px solid var(--lv-ink-15);
  width: 40px; height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--lv-ink);
  cursor: pointer;
  transition: all var(--dur-1) var(--ease);
}
.tc-arrow:hover { border-color: var(--lv-maroon); color: var(--lv-maroon); }
.tc-dots {
  display: flex;
  gap: 8px;
}
.tcd {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--lv-ink-15);
  padding: 0;
  cursor: pointer;
  transition: all var(--dur-1) var(--ease);
}
.tcd:hover { background: var(--lv-ink-40); }
.tcd.active {
  background: var(--lv-maroon);
  transform: scale(1.4);
}

@media (max-width: 600px) {
  .ticker-stage { min-height: 260px; }
  .tc-num { font-size: clamp(56px, 18vw, 96px); }
  .tc-find { font-size: 16px; }
}
.ticker-num {
  font-family: var(--ff-display);
  font-size: clamp(40px, 3.2vw, 56px);
  line-height: 1;
  color: var(--lv-maroon);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  direction: ltr;
  text-align: right;
  margin-bottom: auto;
  padding-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ticker-find {
  font-family: var(--ff-editorial);
  font-size: 17px;
  line-height: 1.5;
  color: var(--lv-ink);
  padding-top: var(--s-4);
  border-top: 1px solid var(--rule);
}
.ticker-src {
  margin-top: var(--s-4);
  font-family: var(--ff-citation);
  font-style: italic;
  font-size: 12px;
  color: var(--lv-ink-60);
  direction: ltr;
  text-align: left;
}
.ticker-hint {
  text-align: center;
  font-family: var(--ff-ui);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lv-ink-40);
  margin-top: var(--s-5);
}

/* ============================================================
   TRIAD — Sovereignty Model (3 axes · 9 components · fractal)
   ============================================================ */
.triad {
  padding: clamp(80px, 12vh, 160px) clamp(24px, 5vw, 80px) clamp(80px, 10vh, 140px);
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.triad-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(24px, 3vh, 40px);
}
.triad-head .eyebrow {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .36em; text-transform: uppercase;
  color: var(--lv-brass);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center; gap: 14px;
}
.triad-head .eyebrow::before,
.triad-head .eyebrow::after {
  content: ""; width: 30px; height: 1px; background: var(--lv-brass); opacity: .5;
}
.triad-head h2 {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--lv-ink);
  margin: 0 0 20px;
  text-wrap: balance;
}
.triad-head h2 em {
  font-style: italic; font-weight: 400; color: var(--lv-maroon);
}
.triad-head p {
  font-family: var(--ff-editorial);
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--lv-ink-60);
  max-width: 52ch;
  margin: 0 auto;
  text-wrap: balance;
}
.triad-head p em {
  font-style: normal;
  font-weight: 700;
  color: var(--lv-ink);
}

/* The fractal SVG */
.triad-viz {
  display: flex;
  justify-content: center;
  margin: 0 auto clamp(40px, 6vh, 64px);
  max-width: 440px;
  color: var(--lv-maroon);
}
.triad-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* 3 columns */
.triad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.triad-col {
  padding: clamp(32px, 5vh, 56px) clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--lv-cream);
  transition: background 240ms var(--ease);
}
.triad-col:hover { background: var(--lv-cream-warm); }
.col-head {
  border-bottom: 1px dashed var(--rule);
  padding-bottom: 20px;
  margin-bottom: 24px;
  position: relative;
}
.col-num {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--lv-brass);
  letter-spacing: .15em;
  display: block;
  margin-bottom: 10px;
}
.col-head h3 {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  color: var(--lv-maroon);
  margin: 0 0 8px;
}
.col-head p {
  font-family: var(--ff-editorial);
  font-size: 14px;
  color: var(--lv-ink-60);
  margin: 0;
  font-style: italic;
}

.components {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comp {
  display: flex;
  gap: 16px;
  padding: 22px 24px 20px;
  background: var(--lv-cream-warm);
  border: 1px solid var(--lv-ink-08);
  border-radius: 4px;
  align-items: flex-start;
}
.comp:last-child { border-bottom: 0; }
.comp-num {
  font-family: var(--ff-display);
  font-size: 13px;
  color: var(--lv-ink-40);
  letter-spacing: .08em;
  flex-shrink: 0;
  padding-top: 2px;
  min-width: 24px;
}
.comp-body { flex: 1; }
.comp-name {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.1;
  color: var(--lv-ink);
  margin: 0 0 6px;
}
.comp-desc {
  font-family: var(--ff-editorial);
  font-size: 14px;
  line-height: 1.45;
  color: var(--lv-ink-60);
  margin: 0 0 10px;
}
.comp-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--ff-ui);
  font-size: 11px;
  color: var(--lv-ink-40);
  letter-spacing: .02em;
}
.comp-meta span::before {
  content: "· ";
  color: var(--lv-brass);
}

.triad-cta {
  display: flex;
  justify-content: center;
  padding-top: clamp(40px, 6vh, 72px);
}

/* ============================================================
   Old Zones (still used for anchors, hidden)
   ============================================================ */
.zones-legacy { display: none; }

/* ============================================================
   ZONES (legacy — kept for CSS consistency but not used)
   ============================================================ */
.zones {
  padding: var(--s-10) clamp(24px, 5vw, 80px);
  max-width: 1560px; margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.zones-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-8);
  align-items: end;
  padding-bottom: var(--s-9);
}
.zones-head h2 {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 84px);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--lv-ink);
  margin: var(--s-4) 0 0;
  text-wrap: balance;
}
.zones-head h2 em {
  font-style: italic; font-weight: 400; color: var(--lv-maroon);
}
.zones-head .eyebrow {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--lv-brass);
}
.zones-head p {
  font-family: var(--ff-editorial);
  font-size: 17px; line-height: 1.65;
  color: var(--lv-ink-60);
  max-width: 42ch;
}
.zones-head p em {
  color: var(--lv-ink); font-style: normal; font-weight: 700;
}

/* asymmetric grid: 7 cells — feature first */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.zone {
  grid-column: span 3;
  border-left: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--s-6) var(--s-6) var(--s-5);
  background: var(--lv-cream);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  position: relative;
  transition: background var(--dur-2) var(--ease);
  cursor: pointer;
}
.zone:not(.disabled):hover { background: var(--lv-cream-warm); }
.zone.disabled { cursor: not-allowed; opacity: .75; }
.zone--feature {
  grid-column: span 6;
  grid-row: span 2;
  background: var(--lv-maroon);
  color: var(--lv-cream);
}
.zone--feature:hover { background: var(--lv-maroon-deep); }
.zone--wide { grid-column: span 6; }
.zone--tall { grid-row: span 2; }

.zone-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: var(--s-4);
}
.zone-num {
  font-family: var(--ff-display);
  font-size: 14px;
  letter-spacing: .08em;
  color: var(--lv-ink-40);
  direction: ltr;
}
.zone--feature .zone-num { color: rgba(245,240,232,.6); }
.zone-status {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--lv-ink-40);
}
.zone.disabled .zone-status { color: var(--lv-ink-40); }
.zone--feature .zone-status {
  color: var(--lv-brass);
  border: 1px solid var(--lv-brass);
  padding: 4px 10px;
}
.zone-body {
  margin-top: auto;
}
.zone-name {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(30px, 3vw, 52px);
  line-height: 1;
  margin: 0;
  letter-spacing: -0.01em;
}
.zone--feature .zone-name {
  font-size: clamp(56px, 6vw, 104px);
  color: var(--lv-cream);
}
.zone-en {
  font-family: var(--ff-citation);
  font-style: italic;
  font-size: 13px;
  color: var(--lv-ink-60);
  direction: ltr;
  margin-top: 4px;
}
.zone--feature .zone-en { color: rgba(245,240,232,.55); }
.zone-desc {
  font-family: var(--ff-editorial);
  font-size: 14px; line-height: 1.55;
  color: var(--lv-ink-60);
  margin: var(--s-3) 0 0;
  max-width: 32ch;
}
.zone--feature .zone-desc {
  font-size: 18px;
  color: rgba(245,240,232,.85);
  max-width: 40ch;
}
.zone-enter {
  margin-top: var(--s-4);
  display: flex; align-items: center; gap: 10px;
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lv-maroon);
  opacity: 0;
  transform: translateX(6px);
  transition: all var(--dur-2) var(--ease);
}
.zone:hover .zone-enter { opacity: 1; transform: translateX(0); }
.zone--feature .zone-enter { opacity: 1; color: var(--lv-cream); }
.zone-mark {
  width: 32px; height: 32px; color: currentColor;
  opacity: .8;
}
.zone--feature .zone-mark { width: 56px; height: 56px; }

/* tiny vitruvian body-part sigil */
.zone-sigil {
  height: 40px;
  display: flex; align-items: flex-end; justify-content: flex-start;
  color: currentColor;
  opacity: .7;
}
.zone-sigil svg { height: 100%; width: auto; }

/* ============================================================
   FEATURED ZONE : נראות
   ============================================================ */
.featured {
  padding: var(--s-10) clamp(24px, 5vw, 80px);
  border-bottom: 1px solid var(--rule);
  max-width: 1560px; margin: 0 auto;
}
.featured-kicker {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--lv-brass);
  display: flex; align-items: center; gap: 14px;
}
.featured-kicker::before {
  content: ""; width: 40px; height: 1px; background: var(--lv-brass);
}
.featured-title {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(48px, 6.4vw, 104px);
  line-height: .98;
  letter-spacing: -0.02em;
  color: var(--lv-ink);
  margin: var(--s-5) 0 var(--s-9);
  max-width: 18ch;
  text-wrap: balance;
}
.featured-title em {
  font-style: italic; font-weight: 400; color: var(--lv-maroon);
}
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.featured-image {
  aspect-ratio: 4/5;
  border: 2px solid var(--lv-maroon);
  background: var(--lv-cream-warm);
  position: relative;
  display: grid; place-items: center;
  overflow: hidden;
}
.featured-image-stripes {
  position: absolute; inset: 16px;
  background:
    repeating-linear-gradient(135deg, rgba(107,31,58,.07) 0 12px, transparent 12px 28px);
}
.featured-image-label {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--lv-maroon);
}
.featured-image-label .num {
  font-family: var(--ff-display);
  font-size: clamp(72px, 8vw, 120px);
  line-height: 1;
  display: block;
}
.featured-image-label .sep {
  width: 48px; height: 1px; background: var(--lv-maroon);
  margin: 16px auto;
}
.featured-image-label .caption {
  font-family: var(--ff-ui); font-weight: 500;
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
}
.featured-image-corners::before,
.featured-image-corners::after,
.featured-image-corners span::before,
.featured-image-corners span::after {
  content: ""; position: absolute; width: 20px; height: 20px;
  border: 2px solid var(--lv-maroon);
}
.featured-image-corners::before { top: -2px; left: -2px; border-right: 0; border-bottom: 0; }
.featured-image-corners::after { top: -2px; right: -2px; border-left: 0; border-bottom: 0; }
.featured-image-corners span::before { bottom: -2px; left: -2px; border-right: 0; border-top: 0; }
.featured-image-corners span::after { bottom: -2px; right: -2px; border-left: 0; border-top: 0; }

.featured-copy { padding-top: 8px; }
.featured-copy .article-eye {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lv-ink-60);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  display: flex; justify-content: space-between;
}
.featured-copy p {
  font-family: var(--ff-editorial);
  font-size: 19px; line-height: 1.75;
  color: var(--lv-ink);
  margin: var(--s-6) 0 0;
  max-width: 52ch;
}
.featured-copy p:first-of-type::first-letter {
  font-family: var(--ff-display);
  color: var(--lv-maroon);
  font-size: 5.2em;
  float: right;
  line-height: .85;
  margin: 4px 0 0 14px;
}
.featured-copy .pullbar {
  border-right: 2px solid var(--lv-ink);
  padding: 8px var(--s-5) 8px 0;
  margin-top: var(--s-6);
  font-family: var(--ff-editorial);
  font-size: 17px; line-height: 1.7;
  color: var(--lv-ink);
  max-width: 52ch;
}
.featured-copy .pullbar b { color: var(--lv-maroon); font-weight: 700; }
.featured-cta { margin-top: var(--s-7); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto {
  padding: var(--s-11) var(--gutter);
  text-align: center;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.manifesto::before, .manifesto::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px; background: var(--lv-maroon);
}
.manifesto::before { top: var(--s-8); }
.manifesto::after { bottom: var(--s-8); }
.manifesto-eyebrow {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: var(--lv-brass);
}
.manifesto-quote {
  font-family: var(--ff-editorial);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: 1.15;
  color: var(--lv-maroon);
  margin: var(--s-6) auto 0;
  max-width: 20ch;
  text-wrap: balance;
  letter-spacing: -0.01em;
}
.manifesto-sub {
  font-family: var(--ff-editorial);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  color: var(--lv-ink);
  margin: var(--s-5) auto 0;
  max-width: 30ch;
}
.manifesto-sub b { color: var(--lv-maroon); font-weight: 700; }

/* ============================================================
   EDITORIAL / ARTICLES
   ============================================================ */
.editorial {
  padding: var(--s-10) clamp(24px, 5vw, 80px) var(--s-11);
  max-width: 1560px; margin: 0 auto;
  border-bottom: 1px solid var(--rule);
}
.editorial-head {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--s-8);
  flex-wrap: wrap; gap: var(--s-5);
}
.editorial-head h2 {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--lv-ink);
  margin: 0;
}
.editorial-head .meta {
  font-family: var(--ff-ui); font-weight: 500;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lv-ink-60);
  display: flex; gap: 20px; align-items: center;
}
.editorial-head .meta a { color: var(--lv-maroon); text-decoration: none; }
.editorial-head .meta a:hover { text-decoration: underline; text-underline-offset: 4px; }
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.article-card {
  padding: var(--s-6) var(--s-6) var(--s-7);
  border-left: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: background var(--dur-2) var(--ease);
  text-decoration: none;
  color: inherit;
}
.article-card:hover { background: var(--lv-cream-warm); }
.article-image {
  aspect-ratio: 4/3;
  background: var(--lv-cream-deep);
  position: relative;
  margin-bottom: var(--s-5);
  overflow: hidden;
  border: 1px solid var(--rule);
}
.article-image-1 {
  background:
    radial-gradient(circle at 50% 55%, rgba(107,31,58,.35) 0, rgba(107,31,58,.2) 30%, transparent 60%),
    radial-gradient(circle at 50% 55%, rgba(107,31,58,.55) 0, transparent 18%),
    var(--lv-cream-warm);
}
.article-image-2 {
  background:
    repeating-linear-gradient(90deg, transparent 0 26px, rgba(107,31,58,.1) 26px 28px),
    var(--lv-cream-warm);
}
.article-image-2::after {
  content: ""; position: absolute; inset: 25% 20%;
  border-radius: 50%;
  border: 2px solid var(--lv-maroon);
  opacity: .7;
}
.article-image-3 {
  background: var(--lv-maroon);
}
.article-image-3::before {
  content: "M"; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--ff-display);
  font-size: 140px;
  color: var(--lv-cream);
  opacity: .2;
}
.article-image-3::after {
  content: ""; position: absolute; inset: 30%;
  border: 1px solid var(--lv-cream);
  transform: rotate(45deg);
  opacity: .35;
}
.article-image-4 {
  background:
    linear-gradient(var(--lv-cream-deep), var(--lv-cream-warm));
}
.article-image-4::before {
  content: ""; position: absolute; inset: 20% 15%;
  background:
    linear-gradient(to right, var(--lv-maroon) 0 1px, transparent 1px) 0 0 / 16.66% 100%,
    linear-gradient(to bottom, var(--lv-ink-15) 0 1px, transparent 1px) 0 0 / 100% 14.28%;
}
.article-image-5 {
  background:
    linear-gradient(135deg, transparent 48%, var(--lv-maroon) 48% 52%, transparent 52%),
    linear-gradient(45deg, transparent 48%, var(--lv-maroon) 48% 52%, transparent 52%),
    var(--lv-cream-warm);
  background-size: 40px 40px, 40px 40px, 100% 100%;
}
.article-image-6 {
  background: var(--lv-cream-warm);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.article-image-6::before {
  content: "";
  grid-column: 1 / -1;
  background:
    linear-gradient(to right,
      transparent 0%, transparent 18%,
      var(--lv-maroon) 18%, var(--lv-maroon) 20%,
      transparent 20%, transparent 38%,
      var(--lv-maroon) 38%, var(--lv-maroon) 40%,
      transparent 40%, transparent 58%,
      var(--lv-maroon) 58%, var(--lv-maroon) 60%,
      transparent 60%, transparent 78%,
      var(--lv-maroon) 78%, var(--lv-maroon) 80%,
      transparent 80%);
  align-self: center;
  height: 60%;
  margin: auto 10%;
}

.article-category {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--lv-maroon);
  margin-bottom: 10px;
}
.article-headline {
  font-family: var(--ff-editorial);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--lv-ink);
  margin: 0;
  text-wrap: balance;
}
.article-excerpt {
  font-family: var(--ff-editorial);
  font-size: 15px;
  line-height: 1.55;
  color: var(--lv-ink-60);
  margin: var(--s-3) 0 0;
  flex: 1;
}
.article-meta {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between;
  font-family: var(--ff-ui);
  font-size: 12px;
  color: var(--lv-ink-60);
}
.article-meta .date { direction: ltr; font-family: var(--ff-citation); font-style: italic; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--lv-maroon);
  color: var(--lv-cream);
  padding: var(--s-11) var(--gutter);
  border-bottom: 1px solid var(--lv-maroon-deep);
  position: relative;
  overflow: hidden;
}
.newsletter-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-9);
  align-items: center;
  position: relative; z-index: 2;
}
.newsletter-vitruvian {
  position: absolute;
  right: 4%; top: 50%;
  transform: translateY(-50%);
  width: 420px; height: 420px;
  opacity: .12;
  color: var(--lv-cream);
  z-index: 1;
  pointer-events: none;
}
.newsletter .eyebrow {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .32em; text-transform: uppercase;
  color: rgba(245,240,232,.65);
}
.newsletter h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 120px);
  line-height: .88;
  color: var(--lv-cream);
  margin: var(--s-4) 0 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.newsletter h2 .small {
  font-family: var(--ff-editorial);
  font-weight: 400;
  font-style: italic;
  font-size: .5em;
  display: block;
  color: rgba(245,240,232,.85);
  text-transform: none;
  margin-top: var(--s-3);
  letter-spacing: 0;
}
.newsletter-lede {
  font-family: var(--ff-editorial);
  font-size: 19px; line-height: 1.55;
  color: rgba(245,240,232,.88);
  margin: var(--s-6) 0 0;
  max-width: 46ch;
}
.newsletter-right { position: relative; z-index: 2; }
.newsletter-form {
  display: flex; flex-direction: column;
  gap: 0;
  border: 1px solid rgba(245,240,232,.35);
  padding: var(--s-6);
  background: rgba(78, 20, 40, 0.35);
}
.newsletter-form label {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(245,240,232,.65);
  margin-bottom: var(--s-4);
}
.newsletter-form .field {
  display: flex; gap: 0;
  border-bottom: 1.5px solid var(--lv-cream);
  padding-bottom: 4px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: 0;
  color: var(--lv-cream);
  font-family: var(--ff-editorial);
  font-size: 18px;
  padding: 12px 4px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(245,240,232,.45); }
.newsletter-form button {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  background: var(--lv-cream); color: var(--lv-maroon);
  border: 0;
  padding: 14px 26px;
  cursor: pointer;
  transition: all var(--dur-2) var(--ease);
}
.newsletter-form button:hover { background: var(--lv-ink); color: var(--lv-cream); }
.newsletter-finep {
  margin-top: var(--s-4);
  font-family: var(--ff-ui);
  font-size: 12px;
  color: rgba(245,240,232,.55);
  display: flex; gap: 12px; align-items: center;
}
.newsletter-ok {
  font-family: var(--ff-editorial);
  font-size: 18px;
  color: var(--lv-cream);
  padding: var(--s-5) 0;
}
.newsletter-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: var(--s-6);
  border-top: 1px solid rgba(245,240,232,.25);
}
.newsletter-stat {
  padding: var(--s-5) var(--s-4) 0;
  border-left: 1px solid rgba(245,240,232,.25);
}
.newsletter-stat:first-child { border-left: 0; padding-right: 0; }
.newsletter-stat .n {
  font-family: var(--ff-display);
  font-size: clamp(28px, 2.6vw, 40px);
  color: var(--lv-cream);
  line-height: 1;
  direction: ltr;
  display: block;
}
.newsletter-stat .l {
  font-family: var(--ff-ui); font-size: 12px;
  color: rgba(245,240,232,.7);
  margin-top: 6px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: var(--s-10) clamp(24px, 5vw, 80px) var(--s-6);
  max-width: 1560px; margin: 0 auto;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  padding-bottom: var(--s-8);
  border-bottom: 1px solid var(--rule);
}
.footer-brand img {
  height: 72px;
  width: auto;
  display: block;
}
.footer-tag {
  font-family: var(--ff-editorial);
  font-size: 16px;
  font-style: italic;
  color: var(--lv-ink-60);
  margin-top: var(--s-5);
  max-width: 30ch;
  line-height: 1.55;
}
.footer-meta {
  font-family: var(--ff-ui);
  font-size: 12px; letter-spacing: .1em;
  color: var(--lv-ink-60);
  margin-top: var(--s-6);
  display: flex; gap: 12px; align-items: center;
}
.footer-meta .dot { width: 3px; height: 3px; background: var(--lv-ink-40); border-radius: 50%; }
.footer h4 {
  font-family: var(--ff-ui); font-weight: 700;
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--lv-brass);
  margin: 0 0 var(--s-4);
}
.footer ul {
  list-style: none; padding: 0; margin: 0;
  font-family: var(--ff-ui);
  font-size: 15px; line-height: 2.1;
}
.footer ul a {
  color: var(--lv-ink); text-decoration: none;
  transition: color var(--dur-1) var(--ease);
}
.footer ul a:hover { color: var(--lv-maroon); }
.footer-bottom {
  padding-top: var(--s-6);
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap; gap: var(--s-4);
  font-family: var(--ff-ui);
  font-size: 12px;
  color: var(--lv-ink-60);
  letter-spacing: .08em;
}
.footer-bottom .lt { direction: ltr; font-family: var(--ff-citation); font-style: italic; }

.footer-sig {
  max-width: 1400px;
  margin: var(--s-5) auto 0;
  padding: var(--s-4) clamp(20px, 4vw, 56px) 0;
  border-top: 1px dashed var(--rule);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Footer triad list items — sub-components on own line */
.footer ul li a {
  display: inline-block;
}
.footer ul li .sub {
  display: block;
  font-size: 11px;
  color: var(--lv-ink-40);
  margin-top: 3px;
  letter-spacing: .02em;
  font-family: var(--ff-editorial);
  font-style: italic;
}
.sig-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity var(--dur-1) var(--ease);
  text-decoration: none;
}
.sig-link:hover { opacity: 0.95; }
.sig-logo {
  height: 22px;
  width: auto;
  display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .zones-head { grid-template-columns: 1fr; align-items: start; }
  .zone, .zone--feature, .zone--wide { grid-column: span 6; }
  .zone--feature { grid-row: auto; }
  .featured-grid { grid-template-columns: 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .editorial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   TABLET — 768px and below
   ============================================================ */
@media (max-width: 768px) {
  :root { --gutter: 20px; }

  .nav-inner { padding: 12px 20px; gap: 10px; }
  .nav-logo img { height: 110px; }
  .nav-cta, .nav-burger { width: 38px; height: 38px; }
  .nav-cta svg { width: 16px; height: 16px; }
  .nav-burger svg { width: 18px; height: 18px; }

  .gate { min-height: 600px; height: 90vh; }
  .gate-title { font-size: clamp(44px, 10vw, 80px); min-height: 2.6em; }
  .gate-kicker { font-size: 10px; letter-spacing: .32em; }
  .gate-kicker::before, .gate-kicker::after { width: 22px; }
  .btn { padding: 14px 22px; font-size: 11px; }

  .wisdom { padding: 72px 20px; }
  .wisdom-eyebrow { font-size: 10px; letter-spacing: .3em; margin-bottom: 40px; }
  .quote-text { font-size: clamp(28px, 6.6vw, 48px); margin-bottom: 22px; }
  .wisdom-stage { min-height: 220px; }

  .ticker { padding: 56px 0 56px; }
  .ticker-head { padding: 0 20px 36px; }
  .ticker-head h2 { font-size: clamp(40px, 12vw, 64px); }
  .ticker-head p { font-size: 15px; margin-top: 14px; }
  .ticker-head .eyebrow { font-size: 10px; }
  .ticker-scroll { padding: 0 20px 16px; gap: 0; }
  .ticker-card {
    flex: 0 0 260px;
    padding: 28px 22px 22px;
    min-height: 260px;
  }
  .ticker-num { font-size: clamp(42px, 11vw, 64px); padding-bottom: 16px; }
  .ticker-find { font-size: 15px; }

  .zones { padding: 56px 20px; }
  .zones-head h2 { font-size: clamp(36px, 10vw, 56px); }
  .zones-head p { font-size: 15px; }
  .zones-grid { grid-auto-rows: auto; }
  .zone, .zone--feature, .zone--wide {
    grid-column: span 12;
    padding: 24px 20px 20px;
    min-height: 180px;
  }
  .zone--feature { grid-row: auto; min-height: 220px; }

  .triad { padding: 56px 20px; }
  .triad-head h2 { font-size: clamp(32px, 9vw, 52px); }
  .triad-head p { font-size: 15px; }
  .triad-viz { max-width: 380px; margin-bottom: 40px; }
  .triad-grid { grid-template-columns: 1fr; }
  .col-head h3 { font-size: 22px; }
  .comp-name { font-size: 20px; }

  .featured { padding: 56px 20px; }
  .featured h2 { font-size: clamp(40px, 11vw, 64px); }
  .featured-grid { gap: 28px; }
  .featured-media { aspect-ratio: 4/3; }
  .featured-copy p { font-size: 16px; }

  .editorial { padding: 56px 20px; }
  .editorial-head h2 { font-size: clamp(32px, 9vw, 48px); }
  .editorial-grid { grid-template-columns: 1fr; gap: 24px; }
  .editorial-card { padding: 0; }
  .editorial-card h3 { font-size: 19px; }

  .manifesto { padding: 80px 20px; }
  .manifesto p.lead { font-size: clamp(32px, 9vw, 48px); }
  .manifesto p.sub { font-size: 16px; }
  .manifesto::before, .manifesto::after { height: 32px; }

  .newsletter { padding: 56px 20px; }
  .newsletter h2 { font-size: clamp(32px, 9vw, 48px); }
  .newsletter-form input { padding: 14px 18px; font-size: 15px; }
  .newsletter-form button { padding: 14px 22px; font-size: 12px; }
  .newsletter-stats { flex-wrap: wrap; gap: 20px; }

  .footer { padding: 56px 20px 36px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    align-items: center;
  }
}

/* ============================================================
   MOBILE — 480px and below
   ============================================================ */
@media (max-width: 480px) {
  :root { --gutter: 16px; }

  .nav-inner { padding: 10px 16px; gap: 8px; }
  .nav-logo img { height: 90px; }
  .nav-cta, .nav-burger { width: 36px; height: 36px; }

  .gate { min-height: 600px; height: 100vh; height: 100dvh; }
  .gate-inner { padding: 0 16px 80px; }
  .gate-title { font-size: clamp(36px, 10vw, 56px); min-height: 3.2em; line-height: 1.14; }
  .gate-kicker { font-size: 10px; letter-spacing: .28em; margin-bottom: 36px; }
  .gate-scroll { font-size: 10px; letter-spacing: .28em; bottom: 36px; }

  .wisdom { padding: 56px 16px; }
  .quote-text { font-size: clamp(26px, 7vw, 40px); line-height: 1.22; }
  .wisdom-stage { min-height: 200px; }

  .ticker { padding: 40px 0; }
  .ticker-head { padding: 0 16px 28px; }
  .ticker-head h2 { font-size: clamp(36px, 12vw, 52px); }
  .ticker-head p { font-size: 14px; }
  .ticker-scroll { padding: 0 16px 12px; }
  .ticker-card {
    flex: 0 0 240px;
    padding: 24px 18px 18px;
    min-height: 240px;
  }
  .ticker-num { font-size: clamp(38px, 12vw, 56px); }
  .ticker-find { font-size: 14px; line-height: 1.45; }
  .ticker-src { font-size: 11px; }

  .zones { padding: 40px 16px; }
  .zones-head h2 { font-size: clamp(32px, 10vw, 48px); }
  .zones-head p { font-size: 14px; }
  .zone, .zone--feature, .zone--wide {
    padding: 22px 16px 18px;
    min-height: 160px;
  }

  .featured { padding: 40px 16px; }
  .featured h2 { font-size: clamp(34px, 11vw, 52px); }
  .featured-grid { gap: 22px; }

  .editorial { padding: 40px 16px; }
  .editorial-head h2 { font-size: clamp(28px, 9vw, 40px); }
  .editorial-grid { gap: 20px; }
  .editorial-card h3 { font-size: 17px; line-height: 1.35; }
  .editorial-card p { font-size: 14px; }

  .manifesto { padding: 60px 16px; }
  .manifesto p.lead { font-size: clamp(28px, 9vw, 40px); line-height: 1.25; }
  .manifesto p.sub { font-size: 15px; }

  .newsletter { padding: 40px 16px; }
  .newsletter h2 { font-size: clamp(28px, 9vw, 40px); line-height: 1.2; }
  .newsletter-form { flex-direction: column; gap: 10px; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; }
  .newsletter-stats { gap: 16px; font-size: 13px; }
  .newsletter-stats strong { font-size: 24px; }

  .footer { padding: 40px 16px 28px; }
  .footer-brand img { height: 42px; }
  .footer h4 { font-size: 12px; }
  .footer a, .footer li { font-size: 14px; }
}

/* ============================================================
   TINY — 360px and below
   ============================================================ */
@media (max-width: 360px) {
  .hero-title { font-size: 36px; }
  .ticker-head h2 { font-size: 36px; }
  .zones-head h2 { font-size: 30px; }
  .featured h2 { font-size: 32px; }
  .manifesto p.lead { font-size: 26px; }
  .newsletter h2 { font-size: 26px; }
  .ticker-card { flex: 0 0 220px; }
}

/* ============================================================
   COMPONENT CARDS — interactive (click to open rubric modal)
   ============================================================ */
.comp {
  cursor: pointer;
  transition: background-color 220ms cubic-bezier(.4,0,.2,1),
              border-color 220ms cubic-bezier(.4,0,.2,1),
              transform 220ms cubic-bezier(.4,0,.2,1),
              box-shadow 220ms cubic-bezier(.4,0,.2,1);
  position: relative;
  padding-left: 44px; /* room for arrow */
}
.comp:hover,
.comp:focus-visible {
  background-color: var(--lv-cream);
  border-color: var(--lv-maroon);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26, 21, 18, 0.08),
              0 2px 4px rgba(26, 21, 18, 0.04);
}
.comp:hover .comp-name,
.comp:focus-visible .comp-name {
  color: var(--lv-maroon);
}
/* small arrow affordance in the corner — not over text */
.comp::after {
  content: "←";
  position: absolute;
  bottom: 16px;
  left: 18px;
  color: var(--lv-maroon);
  opacity: 0.35;
  transition: opacity 220ms ease, transform 220ms ease;
  font-family: var(--ff-ui);
  font-size: 18px;
  font-weight: 700;
  pointer-events: none;
}
.comp:hover::after,
.comp:focus-visible::after {
  opacity: 1;
  transform: translateX(-4px);
}

/* ============================================================
   RUBRIC MODAL — opens on .comp click
   ============================================================ */
.rubric-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(20px, 3vw, 60px) clamp(12px, 2vw, 40px);
  background: rgba(26, 21, 18, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms cubic-bezier(.4,0,.2,1);
  align-items: flex-start;
  overflow-y: auto;
}
.rubric-modal.open {
  opacity: 1;
  pointer-events: auto;
}
/* "page-like" panel — large, generous, paper-feel */
.rubric-panel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  background: var(--lv-cream-warm);
  border-radius: 6px;
  padding: clamp(48px, 6vw, 96px) clamp(28px, 6vw, 88px) clamp(56px, 6vw, 80px);
  margin: auto;
  transform: scale(0.97) translateY(16px);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  box-shadow: 0 40px 120px rgba(26, 21, 18, 0.4),
              0 8px 24px rgba(26, 21, 18, 0.12);
  overflow: hidden;
}
.rubric-modal.open .rubric-panel {
  transform: scale(1) translateY(0);
}
/* Decorative chapter-number watermark in top corner */
.rubric-panel::before {
  content: attr(data-chapter);
  position: absolute;
  top: 8px;
  left: clamp(20px, 4vw, 56px);
  font-family: var(--ff-display);
  font-size: clamp(140px, 22vw, 280px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lv-maroon);
  opacity: 0.06;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.rubric-close {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--lv-ink-15);
  background: var(--lv-cream-warm);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lv-ink);
  transition: all 200ms ease;
  font-size: 0;
  z-index: 10;
}
.rubric-close::before {
  content: "×";
  font-size: 26px;
  line-height: 1;
  font-weight: 300;
}
.rubric-close:hover {
  background: var(--lv-ink);
  color: var(--lv-cream);
  border-color: var(--lv-ink);
}

/* Header — generous, page-feel */
.rubric-header {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.rubric-axis {
  font-family: var(--ff-ui);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--lv-maroon);
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.rubric-title {
  font-family: var(--ff-display);
  font-size: clamp(56px, 9vw, 112px);
  letter-spacing: 0.02em;
  color: var(--lv-maroon);
  line-height: 0.94;
  margin: 0 0 36px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.rubric-intro {
  font-family: var(--ff-editorial);
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.55;
  color: var(--lv-ink);
  margin: 0 0 18px;
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.rubric-intro strong { color: var(--lv-maroon); font-weight: 700; }
.rubric-intro em { font-style: italic; }
.rubric-intro-cite {
  font-family: var(--ff-citation);
  font-style: italic;
  font-size: 14px;
  color: var(--lv-ink-60);
  line-height: 1.55;
  margin: 0;
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.rubric-divider {
  position: relative;
  z-index: 1;
  height: 1px;
  background: var(--lv-ink-15);
  margin: clamp(48px, 6vw, 72px) 0 clamp(24px, 3vw, 36px);
}
.rubric-techniques-label {
  position: relative;
  z-index: 1;
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--lv-ink-60);
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 700;
}

/* List of cards — vertical stack, all visible, scrollable naturally */
.rubric-carousel {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.rubric-cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
}
/* "Futuristic notes" — distinct from the page, stacked vertically */
.rubric-card {
  position: relative;
  background: var(--lv-cream);
  border: 1px solid var(--lv-ink-08);
  border-right: 4px solid var(--lv-maroon);
  border-radius: 6px;
  padding: clamp(28px, 3.5vw, 44px) clamp(28px, 3.5vw, 48px);
  box-shadow: 0 8px 24px rgba(26, 21, 18, 0.06),
              0 2px 4px rgba(26, 21, 18, 0.03);
}
.rubric-card-num {
  font-family: var(--ff-ui);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--lv-ink-40);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.rubric-card-name {
  font-family: var(--ff-ui);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--lv-ink);
  margin: 0 0 14px;
  line-height: 1.2;
}
.rubric-card-name .en {
  font-weight: 400;
  color: var(--lv-ink-60);
  font-size: 0.78em;
  letter-spacing: 0.02em;
}
.rubric-card-body {
  font-family: var(--ff-editorial);
  font-size: 16px;
  line-height: 1.6;
  color: var(--lv-ink);
  margin: 0 0 18px;
}
.rubric-card-body em { font-style: italic; }
.rubric-card-body strong { font-weight: 700; color: var(--lv-maroon); }
.rubric-card-cite {
  font-family: var(--ff-citation);
  font-style: italic;
  font-size: 13px;
  color: var(--lv-ink-60);
  line-height: 1.55;
  border-top: 1px solid var(--lv-ink-08);
  padding-top: 14px;
  margin: 0;
}

.rubric-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 16px;
}
.rubric-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--lv-ink-15);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--lv-ink);
  transition: all 200ms ease;
  flex-shrink: 0;
}
.rubric-arrow:hover {
  background: var(--lv-maroon);
  color: var(--lv-cream);
  border-color: var(--lv-maroon);
}
.rubric-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rubric-dots { display: flex; gap: 8px; }
.rubric-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid var(--lv-maroon);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 220ms ease;
}
.rubric-dot.active {
  background: var(--lv-maroon);
  width: 26px;
}
.rubric-count {
  font-family: var(--ff-ui);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--lv-ink-60);
  direction: ltr;
  unicode-bidi: isolate;
}

.rubric-coming {
  font-family: var(--ff-editorial);
  font-style: italic;
  text-align: center;
  padding: 50px 20px;
  color: var(--lv-ink-60);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .rubric-panel { padding: 36px 20px 24px; max-height: 92vh; }
  .rubric-arrow { width: 40px; height: 40px; }
  .rubric-card-body { font-size: 15px; }
  .rubric-intro { font-size: 15px; }
}
