/* =========================================================
   Shift Happening — Editorial Press redesign
   Ink + cream + brass · derived from the Gray Rock cover
   ========================================================= */

:root {
  /* Palette */
  --ink:        #15110d;
  --ink-2:      #221c16;
  --ink-3:      #2e261e;
  --paper:      #f3ebdf;
  --paper-2:    #ebe0cf;
  --paper-3:    #e2d3bc;
  --brass:      #c7a26a;
  --brass-deep: #9a7a45;
  --rose:       #c08c84;
  --rule:       rgba(21, 17, 13, 0.14);
  --rule-paper: rgba(243, 235, 223, 0.18);

  /* Type */
  --display: "Italiana", "Cormorant Garamond", Georgia, serif;
  --serif:   "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Spacing rhythm */
  --gutter: clamp(20px, 5vw, 56px);
  --section: clamp(80px, 9vw, 140px);
  --r-sm: 4px;
  --r-md: 10px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body::before {
  /* subtle paper grain */
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 0.15 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; padding: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- type primitives ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass-deep);
  font-weight: 500;
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.on-ink .eyebrow { color: var(--brass); }

.display, .h-display, .h-title {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: .005em;
  line-height: 1.02;
  margin: 0 0 22px;
  color: var(--ink);
  text-wrap: balance;
}
.display    { font-size: clamp(64px, 11vw, 160px); }
.h-display  { font-size: clamp(40px, 5.8vw, 80px); }
.h-title    { font-size: clamp(26px, 2.2vw, 34px); }
.on-ink :is(.display, .h-display, .h-title) { color: var(--paper); }

.display em, .h-display em, .h-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--brass-deep);
}
.on-ink .display em, .on-ink .h-display em, .on-ink .h-title em { color: var(--brass); }

.lede {
  font-family: var(--serif);
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 0 0 36px;
  font-style: italic;
}
.on-ink .lede { color: color-mix(in oklab, var(--paper) 85%, transparent); }

.body { font-size: 16px; color: var(--ink-2); margin: 0 0 18px; line-height: 1.7; }
.body strong { color: var(--ink); font-weight: 600; }

.fineprint {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--ink-2);
  opacity: .75;
  line-height: 1.55;
}
.on-ink .fineprint { color: color-mix(in oklab, var(--paper) 70%, transparent); }

.label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brass-deep);
}
.on-ink .label { color: var(--brass); }

/* drop ornaments */
.diamond {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--brass);
  transform: rotate(45deg);
  vertical-align: middle;
  margin: 0 8px;
  position: relative; top: -2px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  cursor: pointer;
  position: relative;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary::before { background: var(--ink-3); }
@media (hover: hover) {
  .btn-primary:hover { color: var(--brass); }
  .btn-primary:hover::before { transform: scaleX(1); }
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost::before { background: var(--ink); }
@media (hover: hover) {
  .btn-ghost:hover { color: var(--paper); }
  .btn-ghost:hover::before { transform: scaleX(1); }
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-outline::before { background: var(--ink); }
@media (hover: hover) {
  .btn-outline:hover { color: var(--paper); border-color: var(--ink); }
  .btn-outline:hover::before { transform: scaleX(1); }
}
.btn-brass {
  background: var(--brass);
  color: var(--ink);
  border-color: var(--brass);
}
.btn-brass::before { background: var(--brass-deep); }
@media (hover: hover) {
  .btn-brass:hover { color: var(--paper); border-color: var(--brass-deep); }
  .btn-brass:hover::before { transform: scaleX(1); }
}
.on-ink .btn-ghost { color: var(--paper); border-color: var(--paper); }
.on-ink .btn-ghost::before { background: var(--paper); }
@media (hover: hover) {
  .on-ink .btn-ghost:hover { color: var(--ink); }
  .on-ink .btn-ghost:hover::before { transform: scaleX(1); }
}
.on-ink .btn-outline { color: var(--paper); border-color: var(--rule-paper); }
.on-ink .btn-outline::before { background: var(--paper); }
@media (hover: hover) {
  .on-ink .btn-outline:hover { color: var(--ink); border-color: var(--paper); }
  .on-ink .btn-outline:hover::before { transform: scaleX(1); }
}

.btn-sm { padding: 12px 20px; font-size: 11.5px; letter-spacing: .2em; }
.btn-block { width: 100%; }

.link-arrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--brass);
  transition: color .3s, border-color .3s, gap .3s var(--ease);
}
@media (hover: hover) {
  .link-arrow:hover { color: var(--ink); border-color: var(--ink); gap: 16px; }
}

/* ---------- top bar ---------- */
.topbar {
  position: relative;
  z-index: 60;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px var(--gutter);
}
.topbar span { color: var(--brass); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 22px var(--gutter);
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled {
  padding: 14px var(--gutter);
  border-bottom-color: var(--rule);
  background: color-mix(in oklab, var(--paper) 92%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}
.brand-mark {
  width: 28px; height: 28px;
  border: 1px solid var(--ink);
  display: grid;
  place-items: center;
  position: relative;
}
.brand-mark::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--brass);
  transform: rotate(45deg);
}
.brand-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--ink);
  text-transform: uppercase;
}
.brand-name em {
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  color: var(--brass-deep);
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  gap: 38px;
  justify-self: center;
}
.nav-links a {
  font-size: 11.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
@media (hover: hover) {
  .nav-links a:hover { color: var(--ink); }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
}
.nav-cta {
  justify-self: end;
}
.nav-cta .btn { padding: 10px 18px; font-size: 11px; }

.nav-toggle {
  display: none;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(70px, 9vw, 130px) var(--gutter) clamp(60px, 7vw, 110px);
  overflow: hidden;
  border-bottom: 1px solid var(--brass);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(199,162,106,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 15% 70%, rgba(199,162,106,.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid color-mix(in oklab, var(--brass) 35%, transparent);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero-words { position: relative; }
.hero-words .display {
  font-size: clamp(56px, 11vw, 180px);
  line-height: .92;
  margin: 14px 0 28px;
}
.hero-words .display .ln {
  display: block;
}
.hero-words .display .ln-2 {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-weight: 400;
  font-size: .76em;
  margin-left: clamp(20px, 4vw, 80px);
  letter-spacing: -.005em;
}
.hero-kicker {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.hero-kicker::before, .hero-kicker::after {
  content: "";
  height: 1px; flex: 0 0 36px;
  background: var(--brass);
  opacity: .6;
}
.hero-kicker::after { display: none; }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0 0;
}
.hero-meta {
  margin-top: 38px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 22px;
  font-size: 13px;
  max-width: 520px;
  align-items: start;
  padding-top: 26px;
  border-top: 1px solid var(--rule-paper);
}
.hero-meta dt {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass);
  padding-top: 2px;
}
.hero-meta dd {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: color-mix(in oklab, var(--paper) 88%, transparent);
  line-height: 1.45;
}

.hero-cover {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 380px;
  aspect-ratio: 2/3;
}
.hero-cover::before {
  /* shadow / ground */
  content: "";
  position: absolute;
  inset: 14% -4% -8% 4%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.hero-cover img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.6),
    0 4px 14px -2px rgba(0,0,0,.4);
}
.hero-cover-meta {
  position: absolute;
  bottom: -28px;
  right: -10px;
  z-index: 2;
  background: var(--brass);
  color: var(--ink);
  padding: 10px 16px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.hero-corner {
  position: absolute;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass);
  opacity: .85;
}
.hero-corner.tl { top: 38px; left: 38px; }
.hero-corner.tr { top: 38px; right: 38px; text-align: right; }
.hero-corner.br { bottom: 38px; right: 38px; text-align: right; }
.hero-corner.bl { bottom: 38px; left: 38px; }

/* ---------- marquee strip ---------- */
.marquee {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee span {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.marquee span em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-deep);
  font-weight: 500;
}
.marquee span::after {
  content: "";
  width: 6px; height: 6px;
  background: var(--brass);
  transform: rotate(45deg);
  margin-left: 64px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- section scaffold ---------- */
.section {
  padding: var(--section) var(--gutter);
  position: relative;
}
.section.on-ink {
  background: var(--ink);
  color: var(--paper);
}

/* ---------- section decorative divider ---------- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 28px 0;
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.section-divider::before,
.section-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: var(--brass);
  opacity: .4;
}
.section-divider .divider-diamond {
  width: 8px;
  height: 8px;
  background: var(--brass);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- stats ribbon ---------- */
.stats-ribbon {
  background: var(--paper-2);
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  z-index: 2;
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
  text-align: center;
}
.stat-item {
  padding: 0 12px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--rule);
}
.stat-number {
  font-family: var(--display);
  font-size: clamp(42px, 4.5vw, 64px);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number .stat-suffix {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass-deep);
  font-size: .55em;
}
.stat-label {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--ink-2);
}

/* ---------- social proof ---------- */
.social-proof {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(60px, 7vw, 100px) var(--gutter);
  border-top: 1px solid var(--brass);
  border-bottom: 1px solid var(--brass);
  position: relative;
  overflow: hidden;
}
.social-proof::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(199,162,106,.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(199,162,106,.05) 0%, transparent 60%);
  pointer-events: none;
}
.proof-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 56px);
  position: relative;
  z-index: 2;
}
.proof-header .eyebrow { color: var(--brass); }
.proof-header .eyebrow::before { background: var(--brass); }
.proof-header h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 400;
  color: var(--paper);
  margin: 12px 0 0;
  letter-spacing: .005em;
  line-height: 1.1;
}
.proof-header h2 em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--brass);
  font-weight: 500;
}
.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  position: relative;
  z-index: 2;
}
.testimonial {
  background: var(--ink-2);
  border: 1px solid var(--rule-paper);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), border-color .5s var(--ease);
}
@media (hover: hover) {
  .testimonial:hover {
    transform: translateY(-4px);
    border-color: var(--brass);
  }
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.testimonial-stars .star {
  width: 14px;
  height: 14px;
  background: var(--brass);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.testimonial blockquote {
  margin: 0 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: color-mix(in oklab, var(--paper) 90%, transparent);
  line-height: 1.55;
  padding-bottom: 22px;
}
.testimonial-author {
  padding-top: 18px;
  border-top: 1px solid var(--rule-paper);
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--display);
  font-size: 16px;
  display: grid;
  place-items: center;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.testimonial-meta .testimonial-name {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--paper);
}
.testimonial-meta .testimonial-detail {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: color-mix(in oklab, var(--paper) 60%, transparent);
  margin-top: 2px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  margin-bottom: clamp(48px, 6vw, 90px);
  align-items: end;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}
.on-ink .section-head { border-bottom-color: var(--rule-paper); }
.section-head .index {
  font-family: var(--display);
  font-size: clamp(80px, 8vw, 130px);
  line-height: .85;
  color: var(--brass-deep);
}
.on-ink .section-head .index { color: var(--brass); }
.section-head .title h2 { margin-bottom: 8px; }
.section-head .title p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0;
}
.on-ink .section-head .title p { color: color-mix(in oklab, var(--paper) 80%, transparent); }

/* ---------- FEATURED ---------- */
.featured {
  background: var(--paper);
}
.featured-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: stretch;
}
.featured-art {
  position: relative;
  background: var(--ink);
  padding: clamp(40px, 5vw, 70px);
  display: grid;
  place-items: center;
  min-height: 600px;
}
.featured-art::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid color-mix(in oklab, var(--brass) 35%, transparent);
  pointer-events: none;
}
.featured-art img {
  position: relative;
  max-width: 78%;
  width: auto;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.7);
}
.featured-art .label {
  position: absolute;
  top: 36px;
  left: 36px;
  color: var(--brass);
  z-index: 2;
}
.featured-art .ed-meta {
  position: absolute;
  bottom: 36px;
  left: 36px;
  right: 36px;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
  z-index: 2;
}
.featured-copy {
  padding-top: 10px;
}
.price-line {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.price {
  font-family: var(--display);
  font-size: 34px;
  color: var(--ink);
  letter-spacing: .02em;
  text-transform: none;
}
.price-line .dot { width: 4px; height: 4px; background: var(--brass); border-radius: 50%; }

.toc {
  list-style: none;
  padding: 0;
  margin: 30px 0 36px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.toc li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 20px;
  padding: 16px 4px;
  align-items: baseline;
  border-bottom: 1px solid var(--rule);
}
.toc li .num {
  font-family: var(--display);
  color: var(--brass-deep);
  font-size: 16px;
  letter-spacing: .04em;
}
.toc li .ti {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  line-height: 1.35;
}
.toc li .ct {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.featured-cta {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  margin: 16px 0 18px;
}

/* ---------- SHOP ---------- */
.shop {
  background: var(--paper-2);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 56px -24px rgba(21,17,13,.4);
    border-color: var(--brass);
  }
}
.cards .card:nth-child(2),
.cards .card:nth-child(5) {
  margin-top: 24px;
}
.cards .card:nth-child(3),
.cards .card:nth-child(6) {
  margin-top: 48px;
}
.card-cover {
  aspect-ratio: 2/3;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-cover::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid color-mix(in oklab, var(--brass) 35%, transparent);
  pointer-events: none;
}
.card-cover .cv-eyebrow {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass);
  position: relative;
  z-index: 2;
  text-align: center;
}
.card-cover .cv-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: .95;
  letter-spacing: .005em;
  color: var(--paper);
  text-align: center;
  position: relative;
  z-index: 2;
  text-transform: uppercase;
}
.card-cover .cv-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: color-mix(in oklab, var(--paper) 88%, transparent);
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 26ch;
  margin: 0 auto;
  line-height: 1.35;
}
.card-cover .cv-foot {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.card-cover .cv-foot::before, .card-cover .cv-foot::after {
  content: "";
  height: 1px; width: 24px;
  background: var(--brass); opacity: .5;
}
.card-cover .cv-ornament {
  position: relative; z-index: 2;
  align-self: center;
  width: 8px; height: 8px;
  background: var(--brass);
  transform: rotate(45deg);
}
/* photo cover variant for Gray Rock card */
.card-cover.has-img { padding: 0; }
.card-cover.has-img::before { display: none; }
.card-cover.has-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
@media (hover: hover) {
  .card:hover .card-cover.has-img img { transform: scale(1.04); }
}

/* paper variant */
.card-cover.paper {
  background: var(--paper);
  color: var(--ink);
}
.card-cover.paper::before { border-color: color-mix(in oklab, var(--brass-deep) 45%, transparent); }
.card-cover.paper .cv-eyebrow,
.card-cover.paper .cv-foot { color: var(--brass-deep); }
.card-cover.paper .cv-foot::before,
.card-cover.paper .cv-foot::after { background: var(--brass-deep); }
.card-cover.paper .cv-title { color: var(--ink); }
.card-cover.paper .cv-sub { color: var(--ink-2); }

.card-status {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 3;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 6px 10px;
}
.card-status.muted { background: var(--paper-3); color: var(--ink); }
.card-body {
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid var(--rule);
}
.card-body .tag {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin: 0 0 10px;
  font-weight: 500;
}
.card-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: .005em;
  margin: 0 0 10px;
  color: var(--ink);
}
.card-body p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 22px;
}
.card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.card-foot .price { font-size: 22px; }
.card-foot .price em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  color: var(--ink-2);
  margin-left: 4px;
}

/* ---------- SEMINARS ---------- */
.seminars {
  background: var(--paper);
}
.seminar-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.seminar {
  display: grid;
  grid-template-columns: 100px 1.2fr 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 56px);
  padding: 36px 4px;
  border-bottom: 1px solid var(--rule);
  transition: background .3s var(--ease);
}
@media (hover: hover) {
  .seminar:hover { background: color-mix(in oklab, var(--paper-2) 60%, transparent); }
}
.seminar-date {
  text-align: left;
  border-right: 1px solid var(--rule);
  padding-right: clamp(16px, 2vw, 30px);
}
.seminar-date .m {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 6px;
}
.seminar-date .d {
  display: block;
  font-family: var(--display);
  font-size: clamp(46px, 4.5vw, 64px);
  color: var(--ink);
  line-height: .9;
}
.seminar-date .y {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-top: 6px;
}
.seminar-body h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--ink);
}
.seminar-body p {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.5;
}
.seminar-spec {
  display: grid;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.seminar-spec strong {
  color: var(--ink);
  font-weight: 600;
  font-family: var(--display);
  text-transform: none;
  letter-spacing: 0;
  font-size: 22px;
  display: inline-block;
  margin-top: 4px;
}

/* ---------- STARTER ---------- */
.starter {
  background: var(--ink);
  color: var(--paper);
}
.starter-solo {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: stretch;
}
.starter-cta-row {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 8px;
}
.lead-success {
  margin-top: 14px;
  color: var(--brass);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}

.starter-preview {
  background: var(--ink-2);
  border: 1px solid var(--rule-paper);
  padding: clamp(28px, 3.5vw, 44px);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .5s var(--ease);
}
@media (hover: hover) {
  .starter-preview:hover { border-color: var(--brass); }
}
.starter-preview::before {
  content: "Sample · Script 03 of 10";
  position: absolute;
  top: -12px; left: 26px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  background: var(--ink);
  padding: 4px 10px;
  color: var(--brass);
}
.starter-preview h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 6px 0 0;
  font-weight: 500;
}
.starter-preview .scenario {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: color-mix(in oklab, var(--paper) 80%, transparent);
  margin: 0;
  line-height: 1.5;
  padding-left: 18px;
  border-left: 2px solid var(--rule-paper);
}
.starter-preview .script {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--paper);
  line-height: 1.55;
  margin: 0;
  padding: 22px 24px;
  border-left: 3px solid var(--brass);
  background: linear-gradient(135deg, rgba(199,162,106,.06) 0%, rgba(199,162,106,.02) 100%);
  position: relative;
}
.starter-preview .script::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--brass);
  vertical-align: text-bottom;
  margin-left: 4px;
  animation: cursorBlink 1s steps(1) infinite;
}
@keyframes cursorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
.starter-preview .biff {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass);
  padding-top: 6px;
}
.starter-preview .biff span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.starter-preview .biff span::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--brass);
  transform: rotate(45deg);
}

/* ---------- STORY ---------- */
.story {
  background: var(--paper);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.story-portrait {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper-3);
  background-image:
    repeating-linear-gradient(135deg, transparent 0 10px, rgba(154,122,69,.10) 10px 11px);
  display: grid;
  place-items: center;
  border: 1px solid var(--rule);
}
.story-portrait::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid color-mix(in oklab, var(--brass-deep) 50%, transparent);
  pointer-events: none;
}
.story-portrait .placeholder {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--ink-2);
  text-transform: uppercase;
  text-align: center;
}
.story-portrait .placeholder em {
  display: block;
  font-family: var(--display);
  font-style: normal;
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--ink);
  margin-top: 8px;
}
.story-copy {
  padding-top: 14px;
}
.story-copy p {
  font-family: var(--serif);
  font-size: clamp(18px, 1.3vw, 21px);
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 20px;
}
.story-copy p.drop-cap::first-letter {
  font-family: var(--display);
  float: left;
  font-size: 5.6em;
  line-height: .85;
  padding: 6px 14px 0 0;
  color: var(--brass-deep);
}
.signature {
  font-family: var(--display);
  font-style: italic;
  font-size: 30px !important;
  color: var(--ink) !important;
  margin-top: 28px !important;
  letter-spacing: .02em;
}
.story-quote {
  margin-top: 44px;
  padding: 36px 0 0;
  border-top: 1px solid var(--rule);
}
.story-quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 2.3vw, 34px);
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
  position: relative;
  padding-left: 24px;
}
.story-quote blockquote::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 2px;
  background: var(--brass);
}
.story-quote cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

/* ---------- FOOTER ---------- */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(70px, 7vw, 100px) var(--gutter) 30px;
  border-top: 1px solid var(--brass);
}
.foot-top {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 56px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--rule-paper);
}
.foot .brand-name { color: var(--paper); margin: 0 0 14px; }
.foot .brand-name em { color: var(--brass); }
.foot .brand-mark { border-color: var(--paper); }
.foot h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 18px;
  font-weight: 500;
}
.foot a {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  color: color-mix(in oklab, var(--paper) 80%, transparent);
  font-family: var(--serif);
  transition: color .3s;
}
@media (hover: hover) {
  .foot a:hover { color: var(--brass); }
}
.foot-tag {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
  font-size: 15px;
  max-width: 28ch;
}
.foot .fineprint {
  color: color-mix(in oklab, var(--paper) 65%, transparent);
}
.foot-bottom {
  max-width: 1280px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 55%, transparent);
}

/* ---------- MODALS ---------- */
.modal {
  position: fixed; inset: 0;
  display: grid;
  place-items: center;
  z-index: 100;
  padding: 5vw;
}
.modal[hidden] { display: none; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(21,17,13,.55);
  backdrop-filter: blur(8px);
  animation: fadeIn .35s var(--ease);
}
.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: var(--paper);
  border: 1px solid var(--brass);
  padding: 44px 38px 36px;
  animation: pop .45s var(--ease);
}
.modal-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid color-mix(in oklab, var(--brass) 40%, transparent);
  pointer-events: none;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute;
  top: 14px; right: 18px;
  width: 32px; height: 32px;
  font-size: 26px;
  color: var(--ink-2);
  line-height: 1;
  z-index: 2;
}
@media (hover: hover) {
  .modal-close:hover { color: var(--ink); }
}
.modal-card h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  margin: 6px 0 6px;
  color: var(--ink);
  position: relative;
  z-index: 2;
}
.modal-product {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-2);
  margin: 0 0 6px;
  font-size: 17px;
  position: relative;
  z-index: 2;
}
.modal-price {
  font-family: var(--display);
  font-size: 28px;
  color: var(--brass-deep);
  margin: 0 0 24px;
  position: relative;
  z-index: 2;
}
.modal-form { display: grid; gap: 14px; position: relative; z-index: 2; }
.modal-form label { display: grid; gap: 6px; }
.modal-form span {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.modal-form input {
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid var(--rule);
  background: #fff;
  font: inherit;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color .3s var(--ease);
}
.modal-form input:focus { border-color: var(--brass); }

/* ---------- scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--brass-deep), var(--brass), var(--brass-deep));
  z-index: 999;
  transition: none;
  pointer-events: none;
}

/* ---------- hero entrance ---------- */
@keyframes heroWordSlide {
  from { opacity: 0; transform: translateY(40px) skewY(2deg); }
  to   { opacity: 1; transform: translateY(0) skewY(0); }
}
@keyframes heroCoverFloat {
  from { opacity: 0; transform: translateY(60px) rotate(2deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0); }
}
@keyframes heroCornerFade {
  from { opacity: 0; }
  to   { opacity: .85; }
}
@keyframes heroBorderDraw {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero .hero-corner {
  opacity: 0;
  animation: heroCornerFade .8s var(--ease) 1.4s forwards;
}
.hero::before {
  animation: heroBorderDraw 1.2s var(--ease) .8s forwards;
  opacity: 0;
}
.hero-words .hero-kicker {
  opacity: 0;
  animation: heroWordSlide .7s var(--ease) .2s forwards;
}
.hero-words .display .ln:first-child {
  opacity: 0;
  animation: heroWordSlide .8s var(--ease) .35s forwards;
}
.hero-words .display .ln-2 {
  opacity: 0;
  animation: heroWordSlide .8s var(--ease) .5s forwards;
}
.hero-words .lede {
  opacity: 0;
  animation: heroWordSlide .7s var(--ease) .65s forwards;
}
.hero-words .hero-cta {
  opacity: 0;
  animation: heroWordSlide .7s var(--ease) .8s forwards;
}
.hero-words .hero-meta {
  opacity: 0;
  animation: heroWordSlide .7s var(--ease) .95s forwards;
}
.hero-cover {
  opacity: 0;
  animation: heroCoverFloat 1s var(--ease) .6s forwards;
}

/* hero cover hover float */
@media (hover: hover) {
  .hero-cover:hover img {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow:
      0 40px 70px -20px rgba(0,0,0,.7),
      0 8px 20px -4px rgba(0,0,0,.5);
  }
}
.hero-cover img {
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}

/* ---------- reveal anim ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.cards .reveal:nth-child(1) { transition-delay: .0s; }
.cards .reveal:nth-child(2) { transition-delay: .08s; }
.cards .reveal:nth-child(3) { transition-delay: .16s; }
.cards .reveal:nth-child(4) { transition-delay: .06s; }
.cards .reveal:nth-child(5) { transition-delay: .14s; }
.cards .reveal:nth-child(6) { transition-delay: .22s; }
.seminar-list .reveal:nth-child(2) { transition-delay: .1s; }
.seminar-list .reveal:nth-child(3) { transition-delay: .2s; }

/* ---------- Tweaks ---------- */
.tweaks {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  background: var(--paper);
  border: 1px solid var(--ink);
  width: 280px;
  padding: 20px 22px 18px;
  font-family: var(--sans);
  display: none;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.4);
}
.tweaks.open { display: block; }
.tweaks h5 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .03em;
  color: var(--ink);
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tweaks h5 button {
  font-size: 18px;
  color: var(--ink-2);
}
.tweak-group { margin-bottom: 16px; }
.tweak-group:last-child { margin-bottom: 0; }
.tweak-label {
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: 8px;
}
.tweak-options {
  display: flex;
  gap: 6px;
}
.tweak-options button {
  flex: 1;
  padding: 8px 10px;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink-2);
  transition: all .25s var(--ease);
}
@media (hover: hover) {
  .tweak-options button:hover { color: var(--ink); border-color: var(--ink); }
}
.tweak-options button.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ---------- Palette variants ---------- */
body[data-palette="charcoal"] {
  --ink: #1c1c1d;
  --ink-2: #2a2a2c;
  --ink-3: #3a3a3c;
  --paper: #efeae0;
  --paper-2: #e6dfd0;
  --paper-3: #d8cdb6;
}
body[data-palette="paper"] {
  --ink: #2a241c;
  --ink-2: #3a3128;
  --paper: #f8f1e4;
  --paper-2: #f0e6d2;
  --paper-3: #e5d6ba;
}

body[data-accent="rose"] {
  --brass: #c08c84;
  --brass-deep: #9d6862;
}
body[data-accent="sage"] {
  --brass: #8aa089;
  --brass-deep: #5e7a5d;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-cover { max-width: 320px; }
  .featured-grid, .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .featured-art { min-height: 480px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .cards .card:nth-child(2),
  .cards .card:nth-child(5) { margin-top: 24px; }
  .cards .card:nth-child(3),
  .cards .card:nth-child(6) { margin-top: 0; }
  .seminar { grid-template-columns: 90px 1fr 1fr; }
  .seminar > .btn { grid-column: 1 / -1; justify-self: start; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .section-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .section-head .index { font-size: 80px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(3)::after,
  .stat-item:nth-child(4)::after { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav { grid-template-columns: 1fr auto; padding: 16px var(--gutter); }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .5s var(--ease), visibility .5s var(--ease);
    z-index: 49;
  }
  .nav-links a { font-size: 16px; }
  .nav.open .nav-links { visibility: visible; opacity: 1; }
  .nav-toggle { display: flex; }

  /* Topbar — tighten tracking, smaller text, allow soft wrap */
  .topbar {
    font-size: 9.5px;
    letter-spacing: .12em;
    padding: 8px 14px;
    line-height: 1.55;
  }

  /* Brand name slightly smaller so it sits comfortably with the toggle */
  .brand-name { font-size: 19px; }

  /* Hero — reduce padding, stack the meta list, full-width buttons */
  .hero { padding: 56px var(--gutter) 64px; }
  .hero-corner { display: none; }
  .hero-grid { gap: 44px; }
  .hero-words .display { font-size: clamp(52px, 14vw, 96px); }
  .hero-words .display .ln-2 { margin-left: 14px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 6px 0;
    padding-top: 22px;
  }
  .hero-meta dt { padding-top: 8px; }
  .hero-meta dd { font-size: 15px; }
  .hero-cover { max-width: 280px; }
  .hero-cover-meta {
    bottom: -18px;
    right: 50%;
    transform: translateX(50%);
    font-size: 9.5px;
    padding: 8px 14px;
    white-space: nowrap;
  }

  /* Marquee — smaller type, tighter gaps */
  .marquee span { font-size: 16px; gap: 10px; }
  .marquee-track { gap: 36px; }
  .marquee span::after { margin-left: 36px; }

  /* Sections — tighter vertical rhythm */
  .section { padding: 64px var(--gutter); }

  /* Section heads — shrink the giant index numerals so they don't fight the title */
  .section-head { gap: 16px; padding-bottom: 22px; margin-bottom: 40px; }
  .section-head .index { font-size: 56px; }
  .section-head .title h2 { font-size: clamp(30px, 8vw, 44px); }
  .section-head .title p { font-size: 16px; }

  /* Featured — reduce dark plate height and inner padding */
  .featured-art {
    min-height: 360px;
    padding: 28px;
  }
  .featured-art::before { inset: 12px; }
  .featured-art .label { top: 18px; left: 18px; }
  .featured-art .ed-meta { bottom: 18px; left: 18px; right: 18px; font-size: 9px; }
  .featured-art img { max-width: 70%; }
  .price-line { gap: 8px; font-size: 10.5px; letter-spacing: .18em; }
  .price-line .dot { width: 3px; height: 3px; }
  .toc li {
    grid-template-columns: 22px 1fr;
    column-gap: 14px;
    row-gap: 4px;
    padding: 14px 2px;
  }
  .toc li .ti { font-size: 16px; }
  .toc li .ct { grid-column: 2 / 3; font-size: 9.5px; letter-spacing: .22em; }
  .featured-cta { flex-direction: column; align-items: stretch; gap: 14px; }
  .featured-cta .btn { width: 100%; }

  /* Library cards — full width, slightly shorter book covers */
  .cards { grid-template-columns: 1fr; }
  .cards .card:nth-child(2),
  .cards .card:nth-child(3),
  .cards .card:nth-child(5),
  .cards .card:nth-child(6) { margin-top: 0; }
  .card-cover { aspect-ratio: 4/5; padding: 26px 22px; }
  .card-cover .cv-title { font-size: clamp(26px, 7vw, 32px); }
  .card-cover .cv-sub { font-size: 14px; }
  .card-body { padding: 22px 22px 22px; }
  .card-body h3 { font-size: 20px; }
  .card-status { top: 14px; right: 14px; font-size: 9px; padding: 5px 8px; }

  /* Seminars */
  .seminar { grid-template-columns: 80px 1fr; gap: 18px; padding: 24px 0; }
  .seminar-spec { grid-column: 1 / -1; padding-left: 98px; }
  .seminar > .btn { grid-column: 1 / -1; justify-self: stretch; }
  .seminar-body h3 { font-size: 21px; }
  .seminar-body p { font-size: 15px; }
  .seminar-date .d { font-size: 44px; }

  /* Sample / starter section */
  .starter-solo { gap: 24px; }
  .starter-preview { padding: 26px 22px; }
  .starter-preview .scenario, .starter-preview .script { font-size: 16px; }
  .starter-preview .biff { gap: 12px; font-size: 9.5px; }
  .starter-cta-row { flex-direction: column; align-items: stretch; gap: 16px; text-align: center; }
  .starter-cta-row .btn { width: 100%; }

  /* Stats ribbon */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .stat-item::after { display: none !important; }
  .stat-number { font-size: clamp(36px, 10vw, 48px); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .social-proof { padding: 48px var(--gutter); }
  .proof-header h2 { font-size: clamp(28px, 8vw, 40px); }

  /* Section divider */
  .section-divider { padding: 20px 0; }

  /* Footer — stack into a single column for readability */
  .foot { padding: 56px var(--gutter) 24px; }
  .foot-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .foot-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    letter-spacing: .18em;
  }

  /* Modals */
  .modal-card { padding: 36px 24px 26px; }
  .modal-card h3 { font-size: 26px; }

  /* Tweaks panel (edit-mode only) */
  .tweaks { right: 12px; bottom: 12px; width: 240px; padding: 16px; }
}

@media (max-width: 420px) {
  .topbar { font-size: 9px; letter-spacing: .08em; }
  .brand-name { font-size: 17px; }
  .hero-words .display { font-size: clamp(44px, 13vw, 72px); }
  .section-head .index { font-size: 48px; }
  .section-head .title h2 { font-size: clamp(26px, 8.5vw, 36px); }
  .hero-cover { max-width: 240px; }
  .featured-art { min-height: 300px; padding: 22px; }
  .card-cover .cv-title { font-size: 22px; }
  .seminar-date .d { font-size: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .hero-corner,
  .hero::before,
  .hero-words .hero-kicker,
  .hero-words .display .ln:first-child,
  .hero-words .display .ln-2,
  .hero-words .lede,
  .hero-words .hero-cta,
  .hero-words .hero-meta,
  .hero-cover { opacity: 1; }
  .scroll-progress { display: none; }
}
