:root {
  --color-primary: #0b1f33;
  --color-secondary: #16324a;
  --color-accent: #c4a35a;
  --color-accent-hot: #9d1c16;
  --color-brand-blue: #2b6cb0;
  --color-dark: #070b10;
  --color-asphalt: #10161d;
  --color-light: #f3efe6;
  --color-paper: #faf7f0;
  --color-text: #141a1f;
  --color-muted: #5e6870;
  --color-border: #d6d0c4;
  --color-white: #ffffff;
  --color-success: #2f6b4f;
  --shadow-soft: 0 18px 50px rgba(7, 11, 16, 0.12);
  --shadow-deep: 0 30px 80px rgba(7, 11, 16, 0.28);
  --radius: 4px;
  --nav-h: 84px;
  --container: 1360px;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --font-label: "Barlow Condensed", "Montserrat", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html, body { max-width: 100%; overflow-x: hidden; }

body {
  margin: 0;
  color: var(--color-text);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 600; line-height: 0.95; letter-spacing: -0.02em; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container-wide { width: min(calc(100% - 40px), 1500px); margin-inline: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.92;
}

.muted { color: var(--color-muted); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

::selection {
  background: rgba(196, 163, 90, 0.28);
  color: var(--color-primary);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 240;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.btn {
  --btn-bg: var(--color-primary);
  --btn-fg: var(--color-white);
  --btn-bd: var(--color-primary);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid var(--btn-bd);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.35s var(--ease), background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255,255,255,.2) 48%, transparent 72%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
  mix-blend-mode: soft-light;
}

.btn:hover::after { transform: translateX(130%); }

.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11, 31, 51, 0.18); }
.btn:active { transform: translateY(0); }
.btn[disabled], .btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.btn-accent { --btn-bg: var(--color-accent); --btn-fg: #1a1408; --btn-bd: var(--color-accent); }
.btn-amazon {
  --btn-bg: #1c2a36;
  --btn-fg: #f4efe6;
  --btn-bd: #c4a35a;
  padding-inline: 18px 22px;
}
.btn-amazon-logo {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.btn-ghost { --btn-bg: transparent; --btn-fg: var(--color-white); --btn-bd: rgba(255,255,255,.42); }
.btn-ghost:hover { --btn-bg: var(--color-white); --btn-fg: var(--color-dark); }
.btn-line { --btn-bg: transparent; --btn-fg: var(--color-primary); --btn-bd: var(--color-primary); }
.btn-line:hover { --btn-bg: var(--color-primary); --btn-fg: var(--color-white); }
.btn-light { --btn-bg: var(--color-white); --btn-fg: var(--color-primary); --btn-bd: var(--color-white); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, transform 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-hidden { transform: translateY(-110%); }

.site-header.is-solid,
.site-header.is-inner {
  background: rgba(250, 247, 240, 0.94);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(11, 31, 51, 0.08);
  box-shadow: 0 8px 30px rgba(7, 11, 16, 0.06);
}

.nav-bar {
  height: var(--nav-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  height: 46px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  transition: filter 0.35s ease;
}

.site-header:not(.is-solid):not(.is-inner) .brand img { filter: invert(1) brightness(1.15); }

.brand-mark {
  display: none;
  flex-direction: column;
  line-height: 1;
}

.brand-mark strong {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.03em;
}

.brand-mark span {
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.86;
  position: relative;
}

.site-header.is-solid .nav-links a,
.site-header.is-inner .nav-links a,
.site-header.is-solid .nav-books a,
.site-header.is-inner .nav-books a,
.site-header.is-solid .nav-tools,
.site-header.is-inner .nav-tools { color: var(--color-primary); }

.site-header:not(.is-solid):not(.is-inner) .nav-tools,
.site-header:not(.is-solid):not(.is-inner) .nav-books a,
.site-header:not(.is-solid):not(.is-inner) .nav-links a { color: var(--color-white); }

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: relative;
  color: inherit;
  transition: background 0.25s ease, transform 0.25s ease;
}

.icon-btn:hover { background: rgba(196, 163, 90, 0.16); }
.icon-btn svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 99px;
  background: var(--color-accent);
  color: #1a1408;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.nav-cta { margin-left: 8px; }
.nav-cta.btn-accent { color: #1a1408; }
.menu-toggle { display: none; place-items: center; }

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--color-white);
  overflow: hidden;
  background: var(--color-dark);
}

.hero-split {
  align-items: stretch;
  grid-template-columns: minmax(360px, 0.92fr) 1.08fr;
  grid-template-rows: 1fr;
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 56px) clamp(28px, 4.2vw, 72px) 176px;
  background:
    radial-gradient(ellipse at 12% 118%, rgba(196,163,90,.16), transparent 46%),
    var(--color-primary);
}

.hero-panel::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--nav-h) + 64px);
  width: 3px;
  height: 92px;
  background: var(--color-accent);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media video,
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.hero-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.hero-photo img {
  position: absolute;
  inset: 0;
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,31,51,.42) 0%, transparent 32%),
    linear-gradient(180deg, rgba(7,11,16,.16) 0%, transparent 28%, rgba(7,11,16,.38) 100%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,11,16,.28) 0%, rgba(7,11,16,.18) 34%, rgba(7,11,16,.78) 100%),
    linear-gradient(90deg, rgba(7,11,16,.55) 0%, rgba(7,11,16,.05) 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 92px;
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.hero h1 {
  max-width: 14ch;
  margin: 18px 0 22px;
  font-size: clamp(52px, 6.6vw, 98px);
  color: var(--color-white);
}

.hero-copy {
  max-width: 46ch;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-meta,
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stats {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: end;
  width: 100%;
  background: rgba(7, 11, 16, 0.8);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(196, 163, 90, 0.3);
}

.hero-stats > div,
.hero-meta > div {
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}

.hero-stats > div:last-child,
.hero-meta > div:last-child { border-right: 0; }

.hero-meta {
  gap: 0;
  margin-top: 42px;
  padding-top: 0;
  border-top: 1px solid rgba(255,255,255,.16);
}

.hero-meta strong,
.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--color-white);
}

.hero-meta span,
.hero-stats span {
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.68;
}

.scroll-hint {
  position: absolute;
  right: 28px;
  bottom: 124px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.72);
  font-family: var(--font-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
}

.scroll-hint i {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, var(--color-accent), transparent);
  display: block;
  animation: pulse-line 1.8s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { transform: scaleY(0.55); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.ticker {
  background: var(--color-primary);
  color: var(--color-light);
  overflow: hidden;
  border-bottom: 1px solid rgba(196,163,90,.25);
}

.ticker-track {
  display: flex;
  gap: 48px;
  width: max-content;
  padding: 16px 0;
  animation: ticker 32s linear infinite;
  font-family: var(--font-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
}

.ticker span { white-space: nowrap; opacity: 0.82; }
.ticker b { color: var(--color-accent); font-weight: 600; }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 120px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2,
.section-title { font-size: clamp(42px, 5.4vw, 74px); margin: 12px 0 18px; }
.lede { font-size: 18px; color: var(--color-muted); max-width: 56ch; }

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  max-width: none;
}

.section-head-row .lede { margin-bottom: 0; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-accent);
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.text-link::after { content: "→"; color: var(--color-accent); }

.intro-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 80px;
  align-items: start;
}

.intro-copy { position: sticky; top: calc(var(--nav-h) + 28px); }

.category-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.category-tile em {
  font-family: var(--font-label);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}

.category-tile.is-lead {
  grid-column: 1 / -1;
  min-height: 188px;
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.category-tile.is-lead span { color: rgba(243,239,230,.7); }

.featured {
  background: var(--color-paper);
  position: relative;
}

.featured-editorial {
  background:
    radial-gradient(ellipse at 88% 0%, rgba(196,163,90,.12), transparent 42%),
    var(--color-primary);
  color: var(--color-light);
}

.featured-editorial .section-title,
.featured-editorial h2,
.featured-editorial .price { color: var(--color-white); }

.featured-editorial .muted { color: rgba(243,239,230,.62); }

.featured-editorial .feature-list li { border-color: rgba(255,255,255,.1); }

.featured-editorial .feature-list strong { color: rgba(243,239,230,.55); }

.featured-editorial .badge {
  border-color: rgba(255,255,255,.22);
  color: var(--color-white);
}

.featured-editorial .qty {
  background: transparent;
  border-color: rgba(255,255,255,.2);
  color: var(--color-white);
}

.featured-editorial .audio-player {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
}

.featured-editorial .float-chip {
  left: auto;
  right: -12px;
  background: var(--color-accent);
  color: #1a1408;
}

.featured-editorial .btn-line,
.featured-editorial .btn:not(.btn-accent):not(.btn-ghost) {
  --btn-bg: transparent;
  --btn-fg: var(--color-white);
  --btn-bd: rgba(255,255,255,.38);
}

.featured-editorial .btn-line:hover,
.featured-editorial .btn:not(.btn-accent):not(.btn-ghost):hover {
  --btn-bg: var(--color-white);
  --btn-fg: var(--color-primary);
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: center;
}

.featured-visual {
  position: relative;
}

.featured-frame {
  position: relative;
  background: #ebe4d4;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-deep);
}

.featured-editorial .featured-frame {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.featured-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.featured-visual:hover .featured-frame img { transform: scale(1.05); }

.featured-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.featured-thumbs button {
  width: 76px;
  height: 76px;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0.7;
}

.featured-thumbs button.is-active,
.featured-thumbs button:hover { opacity: 1; border-color: var(--color-accent); }
.featured-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.float-chip {
  position: absolute;
  left: -18px;
  bottom: 36px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 18px;
  min-width: 150px;
  box-shadow: var(--shadow-deep);
}

.float-chip b { display: block; font-family: var(--font-display); font-size: 26px; }
.float-chip span { font-family: var(--font-label); letter-spacing: 0.14em; text-transform: uppercase; font-size: 11px; opacity: 0.7; }

.price-row { display: flex; align-items: baseline; gap: 12px; margin: 18px 0 10px; }
.price { font-family: var(--font-display); font-size: 42px; }
.price-was { color: var(--color-muted); text-decoration: line-through; font-size: 20px; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

.badge-gold { background: rgba(196,163,90,.14); border-color: rgba(196,163,90,.4); color: #7a5d1e; }
.badge-dark { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); }

.feature-list { list-style: none; padding: 0; margin: 24px 0 28px; }
.feature-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--color-border);
  font-size: 14px;
}

.feature-list strong {
  font-family: var(--font-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 600;
}

.buy-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  height: 52px;
}

.qty button { width: 44px; height: 52px; font-size: 18px; }
.qty input {
  width: 48px;
  border: 0;
  text-align: center;
  background: transparent;
}

.why { background: var(--color-primary); color: var(--color-light); }
.why .section-title,
.why h2 { color: var(--color-white); }
.why .lede { color: rgba(243,239,230,.72); }

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.why-copy { max-width: 58ch; }

.why-points { display: grid; gap: 22px; }
.why-point { padding-bottom: 22px; border-bottom: 1px solid rgba(255,255,255,.1); }
.why-point h3 { font-size: 32px; margin-bottom: 8px; color: var(--color-white); }
.why-visual { position: relative; padding: 0 0 28px 28px; }
.why-visual::before {
  content: "";
  position: absolute;
  inset: 28px 0 0 28px;
  border: 1px solid var(--color-accent);
}
.why-visual img {
  position: relative;
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.why-stat {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--color-accent);
  color: #1a1408;
  padding: 18px 20px;
  min-width: 160px;
}
.why-stat b { display: block; font-family: var(--font-display); font-size: 34px; }

.benefits { background: var(--color-paper); }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.benefit {
  padding: 32px 26px;
  background: #fffdf8;
  border: 1px solid var(--color-border);
  min-height: 240px;
}

.benefit-index {
  font-family: var(--font-label);
  letter-spacing: 0.16em;
  color: var(--color-accent);
  font-size: 13px;
}

.benefit h3 { font-size: 30px; margin: 18px 0 12px; }

.industry {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  color: white;
  overflow: hidden;
}

.industry img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,11,16,.15), rgba(7,11,16,.78));
}

.industry-copy { position: relative; z-index: 2; padding: 80px 0; max-width: 680px; }
.industry-copy h2 { font-size: clamp(46px, 6vw, 84px); margin: 12px 0 16px; }

.collection { background: var(--color-light); }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: transparent;
  border: 0;
  transition: transform 0.45s var(--ease);
}

.product-card:hover { transform: none; }
.page-shop .product-grid { gap: 40px 32px; }

.product-card-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #e8e0d2;
}

.product-card-media a {
  display: block;
  height: 100%;
  position: relative;
}

.card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  transition: transform 0.9s var(--ease);
}

.product-card:hover .product-card-media img { transform: scale(1.06); }

.card-actions {
  position: absolute;
  inset: auto 16px 16px 16px;
  display: flex;
  gap: 8px;
  transform: translateY(12px);
  opacity: 0;
  transition: 0.35s var(--ease);
}

.product-card:hover .card-actions,
.product-card:focus-within .card-actions { opacity: 1; transform: none; }

.card-body { padding: 22px 2px 4px; }
.card-body h3 { font-size: 28px; margin-bottom: 8px; }
.card-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-top: 14px; }

.trust { background: var(--color-paper); }
.trust-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
.quote-grid { display: grid; gap: 16px; }
.quote {
  padding: 28px;
  background: #fffdf8;
  border: 1px solid var(--color-border);
}
.quote p { font-family: var(--font-display); font-size: 26px; line-height: 1.25; }
.quote-note {
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--color-accent-hot);
}

.story { background: var(--color-asphalt); color: var(--color-light); }
.story-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; }
.story h2, .story h3 { color: white; }
.story-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.story-photos img,
.story-photos-offset img { height: 420px; width: 100%; object-fit: cover; }
.story-photos-offset { align-items: start; }
.story-photos-offset figure { margin: 0; }
.story-photos-offset figure:first-child { margin-top: 56px; }

.faq { background: var(--color-paper); }
.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: start;
}
.faq-layout .section-head { margin-bottom: 0; position: sticky; top: calc(var(--nav-h) + 24px); }
.faq-list { display: grid; grid-template-columns: 1fr; gap: 0; }
details.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 18px 0;
}
details.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; font-family: var(--font-body); font-size: 22px; color: var(--color-accent); }
details.faq-item[open] summary::after { content: "–"; }
details.faq-item p { margin: 12px 0 0; color: var(--color-muted); }

.cta-band {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-band .shade { position: absolute; inset: 0; background: rgba(7,11,16,.62); }
.cta-band .inner { position: relative; z-index: 2; padding: 80px 20px; }
.cta-band h2 { font-size: clamp(46px, 6vw, 86px); margin: 10px 0 18px; }

.newsletter { background: var(--color-primary); color: var(--color-light); }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.news-form, .contact-mini { display: grid; gap: 10px; }
.field {
  display: grid;
  gap: 6px;
}
.field span {
  font-family: var(--font-body);
  letter-spacing: 0;
  text-transform: none;
  font-size: 14px;
  font-weight: 500;
  color: inherit;
}
.field input,
.field select,
.field textarea {
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-text);
}
.newsletter .field input,
.newsletter .field select,
.newsletter .field textarea {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: white;
}
.newsletter .field input::placeholder { color: rgba(255,255,255,.45); }

.form-light .field input,
.form-light .field select,
.form-light .field textarea {
  background: white;
  color: var(--color-text);
  border-color: var(--color-border);
}

.site-footer {
  background: #070b10;
  color: rgba(243,239,230,.78);
  padding: 72px 0 36px;
  border-top: 1px solid rgba(196,163,90,.22);
}

.footer-center {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  max-width: 560px;
  margin: 0 auto;
}

.footer-logo img {
  height: 52px;
  width: auto;
  max-width: 260px;
  margin: 0 auto;
  filter: invert(1) brightness(1.2);
}

.footer-tag {
  margin: 4px 0 0;
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.footer-blurb {
  margin: 0;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(243,239,230,.72);
}

.footer-contact {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  width: 100%;
}

.footer-contact p {
  margin: 0 0 10px;
  line-height: 1.7;
}

.footer-contact a {
  display: inline;
  margin: 0;
  color: rgba(243,239,230,.88);
}

.footer-contact a:hover { color: var(--color-accent); }

.footer-copy {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(243,239,230,.45);
}

.site-footer h4 {
  font-family: var(--font-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7,11,16,.46);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 90;
}

.drawer-backdrop.is-open,
.modal-backdrop.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100%;
  background: var(--color-paper);
  z-index: 100;
  transform: translateX(110%);
  transition: transform 0.5s var(--ease);
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.cart-drawer.is-open { transform: none; }
.drawer-head, .drawer-foot { padding: 22px 24px; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--color-border); }
.drawer-head h2 { font-size: 34px; }
.drawer-body { overflow: auto; padding: 12px 24px 24px; }
.cart-line {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.cart-line img { width: 84px; height: 104px; object-fit: cover; background: #e8e0d2; }
.cart-empty { padding: 48px 0; text-align: center; color: var(--color-muted); }
.drawer-foot { border-top: 1px solid var(--color-border); display: grid; gap: 12px; }
.totals { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 26px; }

.product-modal {
  position: fixed;
  inset: 5vh 5vw;
  background: var(--color-paper);
  z-index: 110;
  overflow: auto;
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  pointer-events: none;
  transition: 0.4s var(--ease);
  box-shadow: var(--shadow-deep);
}

.product-modal.is-open { opacity: 1; pointer-events: auto; transform: none; }
.modal-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 100%; }
.modal-media { background: #e8e0d2; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.modal-copy { padding: 40px; }
.modal-close { position: absolute; top: 16px; right: 16px; z-index: 2; width: 44px; height: 44px; background: var(--color-paper); }

.search-panel {
  position: fixed;
  inset: 0 0 auto 0;
  background: var(--color-paper);
  z-index: 95;
  transform: translateY(-110%);
  transition: transform 0.45s var(--ease);
  padding: 28px 0 32px;
  box-shadow: var(--shadow-soft);
}

.search-panel.is-open { transform: none; }
.search-row { display: flex; gap: 12px; align-items: center; }
.search-row input {
  flex: 1;
  min-height: 56px;
  border: 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  font-family: var(--font-display);
  font-size: 32px;
}

.search-results { display: grid; gap: 8px; margin-top: 18px; }
.search-hit {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  width: 100%;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 140;
  display: grid;
  gap: 8px;
}

.toast {
  min-width: 260px;
  padding: 14px 16px;
  background: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-deep);
  transform: translateY(12px);
  animation: toast-in 0.35s var(--ease) forwards;
}

@keyframes toast-in { to { transform: none; } }

.page-hero {
  min-height: 46vh;
  display: grid;
  align-items: end;
  padding: 168px 0 72px;
  background:
    linear-gradient(180deg, rgba(11,31,51,.82), rgba(11,31,51,.52)),
    url("../images/hero/hero-study.jpg") center/cover;
  color: white;
}

.page-hero h1 { font-size: clamp(48px, 6vw, 88px); margin-top: 10px; max-width: 16ch; }
.page-hero p:not(.eyebrow) {
  max-width: 52ch;
  color: rgba(255,255,255,.78);
  font-size: 17px;
}

.pdp { padding: 56px 0 120px; }
.pdp-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: start; }
.pdp-stage { background: #fff; aspect-ratio: 4/5; overflow: hidden; }
.pdp-stage img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.pdp-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.pdp-thumbs button { width: 82px; height: 82px; overflow: hidden; border: 1px solid transparent; }
.pdp-thumbs button.is-active { border-color: var(--color-accent); }
.pdp-thumbs img { width: 100%; height: 100%; object-fit: cover; }

.checkout-wrap { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; }
.stripe-card { margin: 4px 0 18px; min-height: 72px; }
.panel { background: #fffdf8; border: 1px solid var(--color-border); padding: 28px; }
.panel h2 { font-size: 34px; margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-grid .full { grid-column: 1 / -1; }
.notice {
  padding: 14px 16px;
  border: 1px solid rgba(196,163,90,.45);
  background: rgba(196,163,90,.12);
  margin-bottom: 18px;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: #0b1f33;
  color: white;
  z-index: 85;
  padding: 110px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
  display: grid;
  align-content: start;
  gap: 22px;
}

.mobile-nav.is-open { transform: none; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 42px;
}

.sticky-mobile-cta { display: none !important; }

.page-shop .product-grid { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 1200px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 12px; letter-spacing: 0.12em; }
  .hero-split { grid-template-columns: 0.95fr 1.05fr; }
  .intro-layout,
  .faq-layout { gap: 40px; }
}

@media (max-width: 1100px) {
  .featured-grid,
  .why-grid,
  .trust-grid,
  .story-grid,
  .newsletter-grid,
  .pdp-grid,
  .checkout-wrap,
  .modal-grid,
  .intro-layout,
  .faq-layout,
  .hero-split { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .page-shop .product-grid,
  .product-grid { grid-template-columns: 1fr 1fr; }
  .faq-list { grid-template-columns: 1fr; }
  .hero-split { grid-template-rows: auto auto; }
  .hero-photo { min-height: 56vh; order: -1; }
  .hero-vline { display: none; }
  .hero-panel { padding: 48px 28px 148px; }
  .hero-panel::before { top: 48px; }
  .hero-stats { grid-row: auto; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stats > div:nth-child(2) { border-right: 0; }
  .intro-copy,
  .faq-layout .section-head { position: static; }
  .section-head-row { flex-direction: column; align-items: flex-start; }
  .story-photos-offset figure:first-child { margin-top: 0; }
}

@media (max-width: 860px) {
  :root { --nav-h: 72px; }
  .brand img { max-width: 190px; height: 36px; }
  .hero-content { padding-bottom: 70px; }
  .hero h1 { font-size: 48px; max-width: none; }
  .hero-panel { padding: 40px 22px 196px; }
  .scroll-hint { display: none; }
  .section { padding: 80px 0; }
  .product-grid,
  .benefit-grid,
  .page-shop .product-grid,
  .form-grid,
  .category-mosaic,
  .hero-stats { grid-template-columns: 1fr; }
  .hero-stats > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .card-actions { opacity: 1; transform: none; }
  .product-modal { inset: 0; }
  .float-chip { left: 12px; right: auto; }
  .why-visual { padding: 0; }
  .why-visual::before { display: none; }
  .why-visual img,
  .story-photos img,
  .story-photos-offset img { height: 280px; }
  .page-hero { min-height: 0; padding: 128px 0 48px; }
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.category-tile {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 156px;
  padding: 24px 22px;
  background: #fffdf8;
  border: 1px solid var(--color-border);
  transition: transform 0.35s var(--ease), border-color 0.3s ease, background 0.3s ease;
}
.category-tile:hover { transform: translateY(-3px); border-color: var(--color-accent); }
.category-tile strong { font-family: var(--font-display); font-size: 26px; }
.category-tile span { color: var(--color-muted); font-size: 14px; }

.filter-bar {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 0.8fr 0.8fr auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 48px;
  padding: 22px;
  background: #fffdf8;
  border: 1px solid var(--color-border);
}

.audio-player {
  margin: 22px 0;
  padding: 18px;
  border: 1px solid var(--color-border);
  background: #fffdf8;
}
.audio-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.audio-controls input[type="range"] { flex: 1; min-width: 120px; }

@media (max-width: 1100px) {
  .filter-bar, .category-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .filter-bar { grid-template-columns: 1fr; }
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: #f3e6c4;
}

.hero-vline {
  position: absolute;
  right: 28px;
  top: 50%;
  z-index: 3;
  margin: 0;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--font-label);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  white-space: nowrap;
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word-mask .word {
  display: inline-block;
  will-change: transform;
}

.section-index {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.28em;
  color: var(--color-accent);
}

.section-index.is-light { color: var(--color-accent); }

.page-curtain {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  background: var(--color-paper);
  color: var(--color-primary);
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.page-curtain.is-out {
  opacity: 0;
  visibility: hidden;
}

.curtain-mark {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
  padding: 0 24px;
}

.curtain-mark p {
  margin: 0;
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-accent);
  opacity: 0;
  animation: curtain-in 0.55s ease 0.08s forwards;
}

.curtain-mark img {
  height: 40px;
  width: auto;
  max-width: min(260px, 72vw);
  opacity: 0;
  transform: translateY(8px);
  animation: curtain-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

.curtain-mark i {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  animation: curtain-line 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

.curtain-mark em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 500;
  color: var(--color-muted);
  opacity: 0;
  animation: curtain-in 0.55s ease 0.55s forwards;
}

@keyframes curtain-in {
  to { opacity: 1; }
}

@keyframes curtain-rise {
  to { opacity: 1; transform: none; }
}

@keyframes curtain-line {
  to { transform: scaleX(1); }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 260;
  mix-blend-mode: difference;
  transition: width 0.25s var(--ease), height 0.25s var(--ease), margin 0.25s var(--ease), background 0.25s ease;
}

.cursor.is-hover {
  width: 44px;
  height: 44px;
  margin: -22px 0 0 -22px;
  background: rgba(196,163,90,.16);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 130;
  background: var(--color-accent);
  pointer-events: none;
}

.media-reveal { overflow: hidden; }
.media-reveal img { will-change: transform, clip-path; }

.card-view {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s var(--ease);
}

.product-card-media a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7,11,16,.55));
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}

.product-card:hover .card-view { opacity: 1; transform: none; }
.product-card:hover .product-card-media a::after { opacity: 1; }

.category-tile {
  position: relative;
  overflow: hidden;
}

.category-tile::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.45s var(--ease);
}

.category-tile:hover::after { width: 100%; }

.ticker:hover .ticker-track { animation-play-state: paused; }

.faq-item {
  overflow: hidden;
}

details.faq-item summary {
  transition: color 0.3s ease;
}

details.faq-item:hover summary { color: var(--color-accent); }

.field input,
.field select,
.field textarea {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(196,163,90,.18);
}

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

.hero-cinema {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  background: var(--color-dark);
}

.hero-cinema .hero-photo {
  position: absolute;
  inset: 0;
}

.hero-cinema .hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-cinema .hero-photo-shade {
  background:
    linear-gradient(180deg, rgba(7,11,16,.42) 0%, rgba(7,11,16,.12) 38%, rgba(7,11,16,.55) 100%),
    linear-gradient(90deg, rgba(7,11,16,.38) 0%, transparent 46%);
}

.hero-stage {
  position: relative;
  z-index: 3;
  padding: 0 0 56px;
}

.hero-plate {
  width: min(100%, 620px);
  padding: 44px 44px 40px;
  background: rgba(250, 247, 240, 0.96);
  color: var(--color-text);
  box-shadow: 0 28px 80px rgba(7, 11, 16, 0.28);
}

.hero-cinema .hero-plate h1 {
  max-width: 12ch;
  margin: 16px 0 18px;
  font-size: clamp(48px, 6vw, 86px);
  color: var(--color-primary);
}

.hero-cinema .hero-plate h1 em {
  color: var(--color-primary);
  font-style: italic;
  font-weight: 500;
}

.hero-cinema .hero-copy {
  max-width: 42ch;
  color: var(--color-muted);
  margin-bottom: 28px;
}

.hero-cinema .scroll-hint {
  bottom: 36px;
  right: 36px;
}

.stat-bar {
  background: var(--color-paper);
  border-bottom: 1px solid var(--color-border);
}

.stat-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-bar-grid > div {
  padding: 28px 20px 28px 0;
  border-right: 1px solid var(--color-border);
}

.stat-bar-grid > div:last-child { border-right: 0; }

.stat-bar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--color-primary);
  line-height: 1;
}

.stat-bar span {
  display: block;
  margin-top: 8px;
  font-family: var(--font-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--color-muted);
}

.manifesto { padding-top: 128px; }
.manifesto-copy { max-width: 920px; }

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(46px, 6.4vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.03em;
  max-width: 16ch;
  margin: 14px 0 24px;
}

.cat-line {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 72px 0 0;
  padding: 0;
  border-top: 1px solid var(--color-border);
}

.cat-line a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 28px 28px 28px 0;
  border-bottom: 1px solid var(--color-border);
  min-height: 120px;
  transition: background 0.3s ease, padding-left 0.35s var(--ease);
}

.cat-line a:hover { padding-left: 10px; }

.cat-line em {
  font-family: var(--font-label);
  font-style: normal;
  letter-spacing: 0.16em;
  color: var(--color-accent);
  font-size: 12px;
  padding-top: 6px;
}

.cat-line strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 8px;
}

.cat-line small {
  display: block;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.featured-spread {
  background: #f3efe6;
}

.featured-spread-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;
}

.featured-spread .featured-frame {
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-soft);
}

.featured-spread .float-chip { display: none; }

.band-photo {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}

.band-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-photo .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,11,16,.78) 0%, rgba(7,11,16,.28) 70%, rgba(7,11,16,.18) 100%);
}

.band-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 96px 0;
}

.band-copy h2 {
  font-size: clamp(46px, 6vw, 84px);
  margin: 12px 0 20px;
  color: var(--color-white);
}

.band-copy p { color: rgba(255,255,255,.8); max-width: 48ch; }
.band-copy .hero-actions { margin-top: 28px; }

.story-light {
  background: var(--color-paper);
  color: var(--color-text);
}

.story-light h2,
.story-light h3 { color: var(--color-primary); }

.quote-grid { margin-top: 36px; }

.page-hero {
  min-height: 0;
  padding: 168px 0 56px;
  background: var(--color-paper);
  color: var(--color-primary);
}

.page-hero h1 {
  color: var(--color-primary);
  max-width: 14ch;
}

.page-hero p:not(.eyebrow) {
  color: var(--color-muted);
}

body::before,
.cursor { display: none !important; }
.site-header.is-hidden { transform: none; }

@media (max-width: 1100px) {
  .featured-spread-grid,
  .cat-line,
  .stat-bar-grid { grid-template-columns: 1fr 1fr; }
  .hero-plate { padding: 32px 28px; }
  .stat-bar-grid > div:nth-child(2) { border-right: 0; }
}

@media (max-width: 860px) {
  .hero-cinema { align-items: end; }
  .hero-stage { padding-bottom: 28px; }
  .hero-plate { width: 100%; padding: 28px 22px; }
  .hero-cinema .hero-plate h1 { font-size: 46px; max-width: none; }
  .stat-bar-grid,
  .cat-line,
  .featured-spread-grid { grid-template-columns: 1fr; }
  .stat-bar-grid > div { border-right: 0; border-bottom: 1px solid var(--color-border); }
  .band-photo { min-height: 68vh; }
  .band-copy { padding: 72px 0; }
  .page-hero { padding: 128px 0 40px; }
}

@media (hover: none), (pointer: coarse) {
  .cursor { display: none !important; }
  .hero-vline { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track,
  .talk-status i,
  .talk-typing b { animation: none !important; }
  .cursor { display: none !important; }
  .site-header.is-hidden { transform: none; }
}
