/* =====================================================
   SEE DIFFERENT — v4 "Gallery" redesign
   Editorial · deep blue used structurally · ≠ as system
   Type: Inter Tight (display) + Inter (body) + Cormorant (serif accent)
   Dark default · light optional · bilingual MN/EN
   ===================================================== */

/* ---------- TOKENS ---------- */
:root,
:root[data-theme="dark"] {
  --bg:           #08080A;
  --bg-2:         #0C0C0F;
  --surface:      #101014;
  --surface-2:    #16161B;
  --text:         #F4F5F7;
  --text-dim:     rgba(244, 245, 247, 0.64);
  --text-faint:   rgba(244, 245, 247, 0.38);
  --line:         rgba(244, 245, 247, 0.09);
  --line-strong:  rgba(244, 245, 247, 0.22);

  --blue:         #0943A7;   /* brand deep blue */
  --blue-hover:   #0B51C9;
  --blue-text:    #7DA2EC;   /* readable blue accent on dark */
  --silver:       #C7CDD7;

  /* aliases kept for legacy inline styles on subpages */
  --accent:       var(--blue);
  --accent-2:     var(--blue-text);

  --btn-bg:       var(--blue);
  --btn-bg-hover: var(--blue-hover);
  --btn-fg:       #FFFFFF;

  --shadow-modal: 0 32px 80px rgba(0, 0, 0, 0.7);
}

:root[data-theme="light"] {
  --bg:           #FFFFFF;
  --bg-2:         #F5F6F8;
  --surface:      #F7F8FA;
  --surface-2:    #EFF1F4;
  --text:         #0B0B0D;
  --text-dim:     rgba(11, 11, 13, 0.62);
  --text-faint:   rgba(11, 11, 13, 0.38);
  --line:         rgba(11, 11, 13, 0.1);
  --line-strong:  rgba(11, 11, 13, 0.24);

  --blue:         #0943A7;
  --blue-hover:   #072F75;
  --blue-text:    #0943A7;
  --silver:       #6B7280;

  --accent:       var(--blue);
  --accent-2:     var(--blue-text);

  --btn-bg:       var(--blue);
  --btn-bg-hover: var(--blue-hover);
  --btn-fg:       #FFFFFF;

  --shadow-modal: 0 32px 80px rgba(0, 0, 0, 0.16);
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

::selection { background: var(--blue); color: #fff; }

img, svg, video { max-width: 100%; display: block; }
[hidden] { display: none !important; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1); }
a:hover { opacity: 0.65; }

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

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .container { padding: 0 56px; } }

/* Display type helper — sharp uppercase grotesque */
.section-title,
.page-title,
.hero-title {
  font-family: 'Inter Tight', 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--text);
}

.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(30px, 5.4vw, 64px);
  max-width: 880px;
  margin-bottom: 24px;
}

/* Scroll reveals — only when JS present and motion allowed */
@media (prefers-reduced-motion: no-preference) {
  html.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  html.js [data-reveal].in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- LOADER (≠ drawn in type) ---------- */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  display: grid; place-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-neq {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1;
  color: var(--text);
  animation: neq-pulse 1.1s ease-in-out infinite;
}
@keyframes neq-pulse {
  0%, 100% { opacity: 1; transform: scaleX(1); }
  50%      { opacity: 0.4; transform: scaleX(0.9); }
}
.loader-logo {
  width: 120px;
  height: auto;
}
/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
  z-index: 100;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, background 0.3s ease;
}
.nav.is-scrolled { padding: 10px 24px; background: color-mix(in srgb, var(--bg) 92%, transparent); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-brand img.logo-mark { height: 26px; width: auto; }
:root[data-theme="light"] .nav-brand img.logo-mark { filter: invert(1); }

.nav-links { display: none; gap: 32px; }
.nav-links a {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim);
}
.nav-links a:hover { color: var(--text); opacity: 1; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-actions .nav-cta { display: none; }

.theme-toggle {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--text-dim);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.theme-toggle:hover { color: var(--text); border-color: var(--text); }
.theme-toggle svg { width: 15px; height: 15px; }

.lang-toggle {
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em;
  color: var(--text-dim); padding: 6px 0;
  display: inline-flex; align-items: center; gap: 4px;
}
.lang-toggle:hover .lang-inactive { color: var(--text); }
.lang-active { color: var(--text); }
.lang-divider { color: var(--text-faint); }
.lang-inactive { color: var(--text-faint); transition: color 0.3s ease; }

/* Cart button */
.cart-btn {
  position: relative;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: color 0.3s ease;
}
.cart-btn:hover { color: var(--text); }
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute;
  top: -4px; right: -8px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-variant-numeric: tabular-nums;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.5, 1.5, 0.5, 1);
}
.cart-btn.has-items .cart-count { transform: scale(1); }

/* Burger (mobile) */
.menu-btn {
  width: 32px; height: 32px;
  display: inline-flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
}
.menu-btn span {
  display: block; width: 18px; height: 1.5px;
  background: var(--text);
  transition: transform 0.3s ease;
}
.menu-btn.is-open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.menu-btn.is-open span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

@media (min-width: 900px) {
  .nav { padding: 16px 48px; }
  .nav.is-scrolled { padding: 10px 48px; }
  .nav-links { display: flex; }
  .nav-actions .nav-cta { display: inline-flex; }
  .menu-btn { display: none; }
}

/* ---------- MENU OVERLAY (mobile) ---------- */
.menu {
  position: fixed; inset: 0;
  z-index: 90;
  visibility: hidden;
  pointer-events: none;
}
.menu.is-open { visibility: visible; pointer-events: auto; }
.menu-backdrop {
  position: absolute; inset: 0;
  background: var(--bg);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.menu.is-open .menu-backdrop { opacity: 1; }
.menu-panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  padding: 96px 28px 48px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}
.menu.is-open .menu-panel { opacity: 1; transform: none; }
.menu-link {
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 8.5vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}
.menu-link .neq { font-size: 0.55em; color: var(--text-faint); transition: color 0.3s ease; }
.menu-link:hover { opacity: 1; }
.menu-link:hover .neq { color: var(--blue-text); }
.menu-foot {
  margin-top: 40px;
  display: flex; gap: 28px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px;
  border-radius: 0;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-sm { padding: 8px 14px; font-size: 11px; }
.btn-lg { padding: 17px 34px; font-size: 13px; }

.btn-primary { background: var(--btn-bg); color: var(--btn-fg); }
.btn-primary:hover { background: var(--btn-bg-hover); opacity: 1; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover {
  background: color-mix(in srgb, var(--text) 5%, transparent);
  border-color: var(--text);
  opacity: 1;
}

/* On the blue manifesto band */
.btn-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn-light:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; opacity: 1; }

.btn-arrow { transition: transform 0.3s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 110px 24px 72px;
  overflow: hidden;
  background: #000;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  opacity: 0.4;
  filter: brightness(0.6) saturate(0.7) contrast(1.05);
  pointer-events: none;
  animation: hero-video-fade 1.6s ease-out 0.2s both;
}
@keyframes hero-video-fade { from { opacity: 0; } to { opacity: 0.4; } }
:root[data-theme="light"] .hero-video {
  opacity: 0.14;
  filter: grayscale(0.55) brightness(1.25) contrast(0.85) saturate(0.4);
}
.hero-video-overlay {
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.92) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 30%, transparent 65%, rgba(0, 0, 0, 0.7) 100%);
}
:root[data-theme="light"] .hero-video-overlay {
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0.97) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.3) 65%, rgba(255, 255, 255, 0.7) 100%);
}
:root[data-theme="light"] .hero { background: #fff; }

.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 980px; width: 100%;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 40px;
  font-weight: 600;
}
.hero-title {
  font-size: clamp(54px, 12.5vw, 164px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
}
.hero-title-row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.hero-title-row:last-child { justify-content: center; }
.hero-title .neq {
  color: var(--blue-text);
  font-size: 0.62em;
  transform: translateY(-0.08em);
}
.hero-tag {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(18px, 2.6vw, 27px);
  color: var(--text-dim);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.45;
}

/* Countdown — dormant unless a future drop date is set */
.countdown {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(16px, 4vw, 48px);
  margin-bottom: 48px;
}
.countdown-block { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 60px; }
.countdown-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-faint);
  font-weight: 500;
}

.hero-cta {
  display: flex; flex-direction: column; gap: 12px;
  justify-content: center; align-items: center;
  margin-bottom: 48px;
}
@media (min-width: 600px) { .hero-cta { flex-direction: row; } }
.hero-foot {
  font-size: 11px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text-faint);
  font-weight: 500;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.hero-scroll-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--text), transparent);
  background-size: 100% 200%;
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { background-position: 0% -100%; }
  100% { background-position: 0% 200%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line { animation: none; }
}

.hero-sound {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  z-index: 4;
  opacity: 0.4;
  transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-sound:hover { opacity: 1; background: rgba(0, 0, 0, 0.6); border-color: rgba(255, 255, 255, 0.5); }
.hero-sound svg { width: 16px; height: 16px; }
:root[data-theme="light"] .hero-sound { background: rgba(255, 255, 255, 0.6); border-color: rgba(0, 0, 0, 0.18); color: #0B0B0D; }
:root[data-theme="light"] .hero-sound:hover { background: rgba(255, 255, 255, 0.9); border-color: rgba(0, 0, 0, 0.5); }
@media (min-width: 768px) { .hero-sound { bottom: 32px; right: 32px; } }

/* ---------- MARQUEE STRIP ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: var(--bg);
}
.marquee-track {
  display: flex; gap: 56px;
  width: max-content;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
  animation: marquee 32s linear infinite;
}
.marquee-track span { display: flex; gap: 56px; white-space: nowrap; }
.marquee-track .neq { font-style: normal; color: var(--blue-text); padding: 0 4px; }
@keyframes marquee { to { transform: translateX(calc(-50% - 28px)); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- SECTIONS ---------- */
section { padding: 128px 0; position: relative; }
@media (max-width: 768px) { section { padding: 88px 0; } }

/* ≠ divider — the mark used structurally between sections */
.neq-divider {
  display: flex; align-items: center; gap: 24px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .neq-divider { padding: 0 56px; } }
.neq-divider::before,
.neq-divider::after {
  content: ""; flex: 1; height: 1px;
  background: var(--line);
}
.neq-divider span {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--text-faint);
}

/* ---------- FEATURED RAIL ---------- */
.featured { padding-bottom: 96px; }
.rail-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; margin-bottom: 40px;
}
.rail-link { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.rail-link:hover { color: var(--text); opacity: 1; }
.rail {
  display: flex; gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.rail::-webkit-scrollbar { height: 4px; }
.rail::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 2px; }

.rail-card {
  flex: 0 0 min(76vw, 360px);
  scroll-snap-align: start;
  text-align: left;
  padding: 0;
  animation: card-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.rail-info {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px; padding: 14px 2px 2px;
}
.rail-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700; font-size: 15px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
}
.rail-price { font-size: 13px; color: var(--text); font-variant-numeric: tabular-nums; }
.rail-sub { font-size: 11px; color: var(--text-faint); letter-spacing: 0.04em; padding: 0 2px; }

/* ---------- SHARED PRODUCT VISUAL (cards + rail) ---------- */
.visual {
  position: relative;
  aspect-ratio: 1.2 / 1;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid; place-items: center;
}
.visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.45s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.visual .visual-b { opacity: 0; }
/* mirror-sheen sweep — the reflection motif */
.visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.09) 50%, transparent 58%);
  transform: translateX(-130%);
  pointer-events: none;
}
.ph-neq {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: var(--text-faint);
  user-select: none;
}

@media (hover: hover) {
  .rail-card:hover .visual img,
  .frame-card:hover .visual img { transform: scale(1.045); }
  .rail-card:hover .visual .visual-b,
  .frame-card:hover .visual .visual-b { opacity: 1; }
  .rail-card:hover .visual::after,
  .frame-card:hover .visual::after { transform: translateX(130%); transition: transform 0.9s ease; }
  .rail-card:hover .visual,
  .frame-card:hover .visual { border-color: var(--line-strong); }
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rail-card, .frame-card { animation: none !important; }
}

/* ---------- MANIFESTO BAND (deep blue, structural) ---------- */
.manifesto {
  background: var(--blue);
  color: #fff;
  overflow: hidden;
}
.manifesto .neq-bg {
  position: absolute;
  right: -4%; top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  font-size: min(52vw, 560px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}
.manifesto .container { position: relative; }
.manifesto .section-eyebrow { color: rgba(255, 255, 255, 0.6); }
.manifesto-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 5.2vw, 60px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  max-width: 860px;
  margin-bottom: 24px;
  color: #fff;
}
.manifesto-lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.manifesto ::selection { background: #fff; color: var(--blue); }

/* ---------- THREE LINES ---------- */
.lines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 24px;
}
@media (min-width: 768px) { .lines-grid { grid-template-columns: repeat(3, 1fr); } }
.line-card {
  display: block;
  background: var(--bg);
  padding: 44px 32px;
  position: relative;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.line-card:hover { background: color-mix(in srgb, var(--blue) 5%, var(--bg)); opacity: 1; }
.line-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--blue-text);
  margin-bottom: 28px;
}
.line-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--text);
}
.line-desc {
  font-size: 13px; line-height: 1.65;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.line-meta {
  display: flex; gap: 8px;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--text-faint); text-transform: uppercase;
}
.line-arrow {
  position: absolute; top: 36px; right: 32px;
  font-size: 18px; color: var(--text-faint);
  transition: transform 0.3s ease, color 0.3s ease;
}
.line-card:hover .line-arrow { transform: translateX(4px); color: var(--blue-text); }

/* ---------- COLLECTION ---------- */
.collection-intro {
  font-size: 16px; color: var(--text-dim);
  max-width: 580px; margin-bottom: 48px;
  line-height: 1.7;
}
.filter-bar {
  display: flex; gap: 28px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 8px 0;
  font-size: 12px; font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}
.filter-btn:hover { color: var(--text); }
.filter-btn.is-active { color: var(--text); }
.filter-btn.is-active::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -17px; height: 2px;
  background: var(--blue);
}

.frame-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 16px;
}
@media (min-width: 900px)  { .frame-grid { grid-template-columns: repeat(3, 1fr); gap: 56px 24px; } }

.frame-card {
  text-align: left;
  width: 100%;
  display: flex; flex-direction: column;
  padding: 0;
  position: relative;
  cursor: pointer;
  animation: card-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.frame-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; gap: 6px; z-index: 2;
}
.frame-badge {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 8px;
  background: var(--text);
  color: var(--bg);
}
.frame-badge-best,
.frame-badge-limited,
.frame-badge-blue-light { background: var(--blue); color: #fff; }

.frame-info { display: flex; flex-direction: column; gap: 3px; padding: 13px 2px 0; }
.frame-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.frame-name {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text);
}
.frame-price { font-size: 13px; color: var(--text); font-variant-numeric: tabular-nums; }
.frame-sub { font-size: 11px; color: var(--text-faint); letter-spacing: 0.04em; line-height: 1.5; }

/* ---------- HOW TO ORDER ---------- */
.steps { padding-top: 96px; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 24px;
}
@media (min-width: 820px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--bg); padding: 36px 30px; }
.step-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--blue-text);
  margin-bottom: 18px;
}
.step h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 16px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  color: var(--text);
}
.step p { font-size: 14px; color: var(--text-dim); line-height: 1.7; }

/* ---------- SOCIAL PROOF ---------- */
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 24px 0 40px;
}
@media (min-width: 820px) { .proof-grid { grid-template-columns: repeat(3, 1fr); } }
.proof-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  background: var(--surface);
}
.proof-stars {
  display: inline-block;
  letter-spacing: 0.3em;
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.proof-text { font-size: 14px; color: var(--text-dim); line-height: 1.7; margin-bottom: 16px; }
.proof-name { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }

/* ---------- THE LIST (newsletter) ---------- */
.waitlist { text-align: center; border-top: 1px solid var(--line); }
.waitlist .container { max-width: 760px; }
.waitlist-title { margin: 0 auto 24px; }
.waitlist-desc {
  font-size: 16px; color: var(--text-dim);
  max-width: 540px; margin: 0 auto 40px;
  line-height: 1.7;
}
.waitlist-form {
  display: flex; gap: 8px;
  max-width: 480px; margin: 0 auto 24px;
  flex-direction: column;
}
@media (min-width: 600px) { .waitlist-form { flex-direction: row; } }
.waitlist-form input[type="email"] {
  flex: 1; padding: 16px 20px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  color: var(--text);
  font-size: 14px; font-family: inherit;
  transition: border-color 0.3s ease;
}
.waitlist-form input[type="email"]:focus { outline: none; border-color: var(--blue-text); }
.waitlist-form input::placeholder { color: var(--text-faint); }
.waitlist-form .btn { padding: 16px 28px; }
.waitlist-success {
  text-align: center;
  padding: 36px 32px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  max-width: 480px; margin: 0 auto 24px;
  animation: pop-in 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pop-in {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}
.waitlist-success-symbol {
  font-family: 'Inter Tight', sans-serif;
  font-size: 44px; font-weight: 800;
  color: var(--blue-text);
  margin-bottom: 12px;
  line-height: 1;
}
.waitlist-success h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 20px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.waitlist-success p { color: var(--text-dim); font-size: 14px; }
.waitlist-trust {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: 12px;
  font-size: 11px; color: var(--text-faint);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 72px 0 40px;
  background: var(--bg-2);
  overflow: hidden;
}
.footer-mark {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(38px, 9.5vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: color-mix(in srgb, var(--text) 10%, transparent);
  margin-bottom: 64px;
  white-space: nowrap;
  user-select: none;
}
.footer-mark .neq { color: color-mix(in srgb, var(--blue) 65%, transparent); }
.footer-top {
  display: flex; flex-direction: column;
  gap: 48px; margin-bottom: 48px;
}
@media (min-width: 900px) {
  .footer-top { flex-direction: row; justify-content: space-between; gap: 64px; }
}
.footer-brand { max-width: 360px; }
.footer-brand img.logo-mark { height: 30px; width: auto; margin-bottom: 16px; }
:root[data-theme="light"] .footer-brand img.logo-mark { filter: invert(1); }
.footer-brand p { font-size: 13px; color: var(--text-dim); line-height: 1.7; }
.footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
@media (min-width: 600px) { .footer-cols { grid-template-columns: repeat(3, 1fr); } }
.footer-col h4 {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600; margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 13px; color: var(--text-dim); padding: 4px 0; }
.footer-col a:hover { color: var(--text); opacity: 1; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-size: 11px; color: var(--text-faint);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ---------- PRODUCT VIEW (modal) ---------- */
.modal {
  position: fixed; inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: color-mix(in srgb, var(--bg) 86%, black);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.modal-content {
  position: relative;
  width: 100%; height: 100%;
  max-width: 1320px;
  margin: 0 auto;
  background: var(--bg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-modal);
  transform: translateY(40px);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.05s;
}
.modal.is-open .modal-content { transform: translateY(0); opacity: 1; }
@media (min-width: 768px) {
  .modal-content {
    width: calc(100% - 64px); height: calc(100% - 64px);
    margin: 32px auto;
  }
}
.modal-close {
  position: sticky; top: 16px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 16px;
  color: var(--text);
  z-index: 10;
  margin: 16px 16px 0 auto;
  transition: all 0.3s ease;
}
.modal-close:hover { background: var(--text); color: var(--bg); }

/* PDP layout */
.pdp {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 8px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .pdp {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    padding: 8px 48px 120px;
  }
}

/* Gallery: mobile = swipe rail · desktop = stacked editorial column */
.pdp-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pdp-gallery::-webkit-scrollbar { display: none; }
.pdp-shot {
  flex: 0 0 86%;
  scroll-snap-align: center;
  aspect-ratio: 1.2 / 1;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: grid; place-items: center;
  position: relative;
}
.pdp-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pdp-shot .ph-neq { font-size: 72px; }
.pdp-shot-note {
  position: absolute; bottom: 14px; left: 0; right: 0;
  text-align: center;
  font-size: 12px; color: var(--text-dim);
}
@media (min-width: 900px) {
  .pdp-gallery { flex-direction: column; overflow: visible; }
  .pdp-shot { flex: none; width: 100%; }
}

/* Info column */
.pdp-info { display: flex; flex-direction: column; padding-bottom: 40px; }
@media (min-width: 900px) {
  .pdp-info { position: sticky; top: 8px; align-self: start; }
}
.pdp-tier {
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--blue-text);
  font-weight: 600;
  margin-bottom: 12px;
}
.pdp-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 6px;
}
.pdp-code { font-size: 12px; color: var(--text-faint); letter-spacing: 0.08em; margin-bottom: 16px; }
.pdp-price {
  font-family: 'Inter Tight', sans-serif;
  font-size: 22px; font-weight: 600;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  margin-bottom: 20px;
}
.pdp-desc {
  font-size: 15px; color: var(--text-dim); line-height: 1.7;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

/* Colorway switcher */
.pdp-swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.pdp-swatches:empty { display: none; }
.pdp-swatch {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 9px;
  border: 1px solid var(--line-strong);
  background: transparent;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
  transition: all 0.25s ease;
}
.pdp-swatch:hover { border-color: var(--text); color: var(--text); }
.pdp-swatch.is-active { border-color: var(--blue-text); color: var(--text); background: color-mix(in srgb, var(--blue) 8%, transparent); }
.pdp-swatch-dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  flex-shrink: 0;
}
.pdp-swatch img {
  width: 28px; height: 28px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Size & fit */
.pdp-fit { margin-bottom: 24px; }
.pdp-fit h4 {
  font-size: 10px; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--text);
  font-weight: 600; margin-bottom: 14px;
}
.pdp-fit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pdp-fit-cell {
  background: var(--bg);
  padding: 12px 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.pdp-fit-label { font-size: 9px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); }
.pdp-fit-val {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 600; color: var(--text);
  font-variant-numeric: tabular-nums;
}
.pdp-fit-note { font-size: 11px; color: var(--text-faint); margin-top: 8px; }

/* Social proof slot */
.pdp-proof {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; color: var(--text-dim);
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  margin-bottom: 28px;
}
.pdp-proof .proof-stars { margin-bottom: 0; }

/* PDP CTAs */
.pdp-cta { display: flex; flex-direction: column; gap: 10px; }
.pdp-cta .btn { width: 100%; }
.pdp-order-note {
  font-size: 12px; color: var(--blue-text);
  margin-top: 12px;
  letter-spacing: 0.02em;
}
.pdp-foot {
  font-size: 11px; color: var(--text-faint);
  letter-spacing: 0.06em;
  margin-top: 16px;
}

/* Mobile sticky order bar */
.pdp-bar {
  position: sticky; bottom: 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  z-index: 5;
}
.pdp-bar-price {
  font-family: 'Inter Tight', sans-serif;
  font-size: 17px; font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}
@media (min-width: 900px) { .pdp-bar { display: none; } }

/* ---------- CART DRAWER ---------- */
.cart {
  position: fixed; inset: 0;
  z-index: 1100;
  visibility: hidden;
  pointer-events: none;
}
.cart.is-open { visibility: visible; pointer-events: auto; }
.cart-backdrop {
  position: absolute; inset: 0;
  background: color-mix(in srgb, var(--bg) 70%, black);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart.is-open .cart-backdrop { opacity: 1; }
.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 480px;
  background: var(--bg);
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-modal);
}
.cart.is-open .cart-panel { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.cart-title {
  font-size: 12px; letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.cart-title-count { color: var(--text-dim); font-weight: 400; }
.cart-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 14px; color: var(--text);
  transition: all 0.3s ease;
}
.cart-close:hover { background: var(--text); color: var(--bg); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 24px 24px;
}

/* Empty state */
.cart-empty { text-align: center; padding: 64px 24px; color: var(--text-dim); }
.cart-empty-symbol {
  font-family: 'Inter Tight', sans-serif;
  font-size: 52px; font-weight: 800;
  color: var(--text-faint);
  margin-bottom: 14px;
  line-height: 1;
}
.cart-empty-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 18px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 8px;
}
.cart-empty-sub { font-size: 13px; color: var(--text-dim); margin-bottom: 24px; }

/* Items */
.cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item-thumb {
  width: 88px; height: 88px;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-thumb .ph-neq { font-size: 28px; }
.cart-item-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.cart-item-name {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1.2;
}
.cart-item-meta { font-size: 11px; color: var(--text-dim); letter-spacing: 0.04em; }
.cart-item-color {
  font-size: 11px; color: var(--text-dim);
  letter-spacing: 0.1em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
}
.cart-item-color::before {
  content: ""; width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--swatch, var(--text-faint));
  border: 1px solid var(--line-strong);
}
.cart-item-qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line-strong);
  margin-top: 8px;
  width: fit-content;
}
.cart-item-qty button {
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text-dim);
  transition: color 0.2s;
}
.cart-item-qty button:hover { color: var(--text); }
.cart-item-qty span {
  min-width: 30px;
  text-align: center;
  font-size: 12px; font-weight: 500;
  font-variant-numeric: tabular-nums;
  border-left: 1px solid var(--line-strong);
  border-right: 1px solid var(--line-strong);
  padding: 0 8px;
  display: flex; align-items: center; justify-content: center;
}
.cart-item-side {
  display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between;
  text-align: right;
}
.cart-item-price { font-size: 14px; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; }
.cart-item-remove {
  font-size: 11px; color: var(--text-faint);
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--text); }

/* Footer */
.cart-foot {
  border-top: 1px solid var(--line);
  padding: 24px;
  background: var(--bg);
  flex-shrink: 0;
}
.cart-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.cart-subtotal {
  font-family: 'Inter Tight', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--text);
  text-transform: none;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.cart-note {
  font-size: 11px; line-height: 1.6;
  color: var(--text-dim);
  margin: 10px 0 16px;
  letter-spacing: 0.02em;
}
.cart-checkout { width: 100%; }

/* Order-message panel */
.cart-order { margin-top: 4px; animation: pop-in 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.cart-order-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 10px;
}
.cart-order textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  color: var(--text);
  font-family: inherit;
  font-size: 13px;
  line-height: 1.6;
  resize: none;
  margin-bottom: 10px;
}
.cart-order textarea:focus { outline: none; border-color: var(--blue-text); }
.cart-order-actions { display: flex; gap: 8px; }
.cart-order-actions .btn { flex: 1; }
.cart-order-note { font-size: 11px; line-height: 1.6; color: var(--text-dim); margin-top: 12px; }

/* ---------- STORY / LINES PAGES ---------- */
.page {
  padding-top: 150px;
  padding-bottom: 120px;
  min-height: 100vh;
}
.page .container { max-width: 920px; }
.page-eyebrow {
  font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--text-dim);
  font-weight: 600; margin-bottom: 24px;
}
.page-title {
  font-size: clamp(36px, 6.4vw, 84px);
  line-height: 1;
  margin-bottom: 56px;
}
.page .lead,
.page-section p.lead {
  font-size: 20px; line-height: 1.6;
  color: var(--text);
}
.page-section {
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.page-section:first-of-type { border-top: none; padding-top: 0; }
.page-section h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--text);
}
.page-section h3 {
  font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-text);
  font-weight: 600;
  margin: 28px 0 10px;
}
.page-section p {
  font-size: 16px; line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 720px;
}
.page-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.page-back:hover { color: var(--text); opacity: 1; }
.page-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.3;
  color: var(--text);
  border-left: 2px solid var(--blue);
  padding: 8px 0 8px 24px;
  margin: 32px 0;
}
.page-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px; margin: 32px 0;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 600px) { .page-stat-grid { grid-template-columns: repeat(3, 1fr); } }
.page-stat { padding: 28px 24px; background: var(--bg); }
.page-stat-num {
  font-family: 'Inter Tight', sans-serif;
  font-size: 44px; font-weight: 800;
  color: var(--text); line-height: 1;
}
.page-stat-label {
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim); margin-top: 12px;
  font-weight: 500;
}

/* Inline ≠ image in body text (story page) */
.inline-symbol {
  display: inline-block;
  height: 0.85em;
  width: auto;
  vertical-align: -0.08em;
  margin: 0 0.1em;
}
:root[data-theme="light"] .inline-symbol { filter: invert(1); }
