/* ==========================================================================
   built by Nora. — design system
   Palette: oxblood · bone · ink. Editorial, high-contrast, unisex.
   Type: Instrument Serif (display) / Archivo Black (statement caps) / Inter (UI)
   ========================================================================== */

:root {
  /* surfaces */
  --bone:      #F4EFE7;
  --bone-2:    #EAE2D6;
  --bone-3:    #DFD5C6;
  --paper:     #FBF8F3;

  /* ink */
  --ink:       #17120F;
  --ink-2:     #2B2320;
  --muted:     #7A6E66;

  /* brand */
  --wine:      #5E1226;
  --wine-2:    #7C1A31;
  --wine-deep: #33070F;
  --blush:     #E6D2CD;
  --blush-2:   #D9BDB6;

  --line:      #D8CDBC;
  --line-dark: #3A2C28;

  --radius:    18px;
  --radius-sm: 12px;
  --maxw:      1180px;

  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --caps:  'Archivo Black', 'Helvetica Neue', Arial, sans-serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-weight: 400; line-height: 1.02; letter-spacing: -0.02em; }

h1 { font-family: var(--serif); font-size: clamp(3rem, 8.5vw, 6.4rem); }
h2 { font-family: var(--serif); font-size: clamp(2.2rem, 5.2vw, 3.8rem); }
h3 { font-family: var(--sans); font-weight: 700; font-size: clamp(1.05rem, 2vw, 1.28rem); letter-spacing: -0.015em; line-height: 1.25; }

.serif-i { font-family: var(--serif); font-style: italic; }

/* Big statement caps — the Archivo Black blocks from the board */
.statement {
  font-family: var(--caps);
  text-transform: uppercase;
  letter-spacing: -0.035em;
  line-height: 0.92;
  font-size: clamp(2.2rem, 6.5vw, 5rem);
}

p { color: var(--muted); }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-2); max-width: 60ch; line-height: 1.62; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 20px;
}
.eyebrow::before { content: '—'; margin-right: 10px; opacity: .5; }

.grad { color: var(--wine); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,239,231,0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 15px 26px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo {
  font-family: var(--serif); font-size: 1.32rem; letter-spacing: -0.02em; color: var(--ink);
  white-space: nowrap;
}
.logo span { font-style: italic; color: var(--wine); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted); transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--wine); }
.nav-toggle {
  display: none; background: none; border: 0; color: var(--ink);
  font-size: 1.5rem; cursor: pointer; line-height: 1;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--sans); font-weight: 600; font-size: 0.83rem;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
  transition: all .22s cubic-bezier(.2,.7,.3,1); text-align: center;
}
.btn-primary { background: var(--wine); color: var(--paper); }
.btn-primary:hover { background: var(--wine-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 0.72rem; }
.btn-block { width: 100%; }
.btn:disabled { opacity: .35; cursor: not-allowed; transform: none; }

/* buttons on dark surfaces */
.on-dark .btn-ghost { border-color: var(--bone); color: var(--bone); }
.on-dark .btn-ghost:hover { background: var(--bone); color: var(--ink); }
.on-dark .btn-primary { background: var(--bone); color: var(--wine-deep); }
.on-dark .btn-primary:hover { background: #fff; }

/* ---------- Sections ---------- */
section { padding: 104px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head p { margin-top: 16px; }
.divider { height: 1px; background: var(--line); }

/* Dark / wine bands */
.band-ink  { background: var(--ink); color: var(--bone); }
.band-wine { background: var(--wine); color: var(--paper); }
.band-ink p, .band-wine p { color: rgba(244,239,231,0.72); }
.band-ink .eyebrow, .band-wine .eyebrow { color: var(--blush-2); }
.band-ink .lead, .band-wine .lead { color: rgba(244,239,231,0.88); }
.band-ink h1, .band-ink h2, .band-ink h3,
.band-wine h1, .band-wine h2, .band-wine h3 { color: var(--paper); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 18px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s, border-color .25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--blush-2);
  box-shadow: 0 18px 40px -24px rgba(94,18,38,0.35);
}
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.94rem; }
.card-num {
  font-family: var(--serif); font-size: 2.1rem; line-height: 1;
  color: var(--blush-2); display: block; margin-bottom: 16px;
}

.card-blush { background: var(--blush); border-color: var(--blush-2); }
.card-ink { background: var(--ink); border-color: var(--line-dark); color: var(--bone); }
.card-ink h3 { color: var(--paper); }
.card-ink p { color: rgba(244,239,231,0.7); }
.card-ink .card-num { color: var(--blush-2); }

/* ---------- Ticks ---------- */
.ticks { list-style: none; margin-top: 18px; }
.ticks li {
  position: relative; padding-left: 24px; margin-bottom: 10px;
  font-size: 0.9rem; color: var(--ink-2); line-height: 1.5;
}
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 9px; height: 1px; background: var(--wine);
}
.card-ink .ticks li, .band-ink .ticks li, .band-wine .ticks li { color: rgba(244,239,231,0.85); }
.card-ink .ticks li::before, .band-ink .ticks li::before, .band-wine .ticks li::before { background: var(--blush-2); }

/* ---------- Pricing ---------- */
.tier-group { margin-bottom: 76px; }
.tier-group > .tier-sub { margin: 12px 0 34px; font-size: 0.97rem; max-width: 60ch; }

.price-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px; position: relative;
  display: flex; flex-direction: column;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(94,18,38,0.3); }
.price-card.featured {
  background: var(--wine); border-color: var(--wine);
  box-shadow: 0 24px 50px -28px rgba(94,18,38,0.6);
}
.price-card.featured h3 { color: var(--paper); }
.price-card.featured .price { color: var(--paper); }
.price-card.featured .price-note { color: rgba(244,239,231,0.66); }
.price-card.featured .price-meta { color: var(--blush-2); }
.price-card.featured .ticks li { color: rgba(244,239,231,0.88); }
.price-card.featured .ticks li::before { background: var(--blush-2); }
.price-card.featured .btn-ghost { border-color: var(--bone); color: var(--bone); }
.price-card.featured .btn-ghost:hover { background: var(--bone); color: var(--wine-deep); }
.price-card.featured .btn-primary { background: var(--bone); color: var(--wine-deep); }
.price-card.featured .btn-primary:hover { background: #fff; }

.badge {
  position: absolute; top: -12px; left: 28px;
  background: var(--ink); color: var(--bone);
  font-size: 0.6rem; font-weight: 700; letter-spacing: .16em;
  padding: 6px 14px; border-radius: 999px; text-transform: uppercase;
  font-family: var(--sans);
}
.price {
  font-family: var(--serif); font-size: 3.2rem; letter-spacing: -0.03em;
  margin: 14px 0 2px; line-height: 1; color: var(--wine);
}
.price-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 8px; }
.price-meta {
  font-size: 0.66rem; color: var(--wine); font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
}
.price-card .ticks { flex: 1; }
.price-card .btn { margin-top: 24px; }

/* ---------- Quiz ---------- */
.quiz-shell {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 22px; padding: 46px; max-width: 780px; margin: 0 auto;
  box-shadow: 0 30px 70px -50px rgba(23,18,15,0.5);
}
.progress-track { height: 3px; background: var(--bone-3); border-radius: 999px; overflow: hidden; margin-bottom: 14px; }
.progress-fill { height: 100%; width: 0%; background: var(--wine); transition: width .4s cubic-bezier(.2,.7,.3,1); }
.progress-label {
  font-size: 0.66rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 34px;
}
.q-title { font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 2.5rem); line-height: 1.05; margin-bottom: 10px; }
.q-help { font-size: 0.92rem; margin-bottom: 28px; }

.opt {
  display: flex; align-items: flex-start; gap: 15px;
  width: 100%; text-align: left; cursor: pointer;
  background: var(--bone); border: 1px solid var(--line);
  border-radius: 14px; padding: 18px 20px; margin-bottom: 10px;
  font-family: var(--sans); color: var(--ink);
  transition: all .18s cubic-bezier(.2,.7,.3,1);
}
.opt:hover { border-color: var(--wine); background: var(--blush); transform: translateX(4px); }
.opt.selected { border-color: var(--wine); background: var(--wine); }
.opt.selected .opt-label { color: var(--paper); }
.opt.selected .opt-desc { color: rgba(244,239,231,0.72); }
.opt-dot {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid var(--blush-2); margin-top: 4px; transition: .18s;
}
.opt.selected .opt-dot { border-color: var(--bone); background: var(--bone); box-shadow: inset 0 0 0 3px var(--wine); }
.opt-label { font-weight: 650; font-size: 0.97rem; display: block; letter-spacing: -0.01em; }
.opt-desc { font-size: 0.83rem; color: var(--muted); margin-top: 3px; display: block; line-height: 1.45; }

.quiz-nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 30px; }

/* ---------- Quiz result ---------- */
.result-hero { text-align: center; margin-bottom: 36px; }
.rec-card {
  background: var(--wine); color: var(--paper);
  border-radius: var(--radius); padding: 36px; margin-bottom: 18px;
}
.rec-card h3 { color: var(--paper); font-size: 1.5rem; }
.rec-card .price-meta { color: var(--blush-2); }
.rec-card .price-note { color: rgba(244,239,231,0.66); }
.rec-card .ticks li { color: rgba(244,239,231,0.88); }
.rec-card .ticks li::before { background: var(--blush-2); }
.rec-card p { color: rgba(244,239,231,0.78); }
.rec-price { font-family: var(--serif); font-size: 3.6rem; letter-spacing: -0.03em; line-height: 1; color: var(--paper); }
.alt-card { background: var(--bone-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px; }
.hidden { display: none !important; }

/* ---------- Forms ---------- */
.field { margin-bottom: 20px; }
label.flabel {
  display: block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
input[type=text], input[type=email], input[type=tel], select, textarea {
  width: 100%; background: var(--bone); border: 1px solid var(--line);
  border-radius: 11px; padding: 14px 16px; color: var(--ink);
  font-family: var(--sans); font-size: 0.96rem; transition: all .16s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--wine); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(94,18,38,0.1);
}
textarea { resize: vertical; min-height: 112px; }
::placeholder { color: #A99C91; }

/* form validation errors */
input[aria-invalid="true"], textarea[aria-invalid="true"], select[aria-invalid="true"] {
  border-color: #B3261E; background: rgba(179,38,30,0.04);
}
.fs-err {
  display: none; color: #B3261E; font-size: 0.85rem; font-weight: 500;
  margin-top: 7px; line-height: 1.45;
}
.fs-err[data-fs-error="form"] {
  background: rgba(179,38,30,0.07); border: 1px solid rgba(179,38,30,0.25);
  border-radius: 10px; padding: 13px 15px; margin-top: 0;
}

/* ---------- Testimonials ---------- */
.quote-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px; display: flex; flex-direction: column;
}
.quote-card .stars { color: var(--wine); letter-spacing: 4px; margin-bottom: 16px; font-size: .85rem; }
.quote-card blockquote {
  font-family: var(--serif); font-size: 1.28rem; color: var(--ink); line-height: 1.35; flex: 1;
  letter-spacing: -0.015em;
}
.quote-meta { display: flex; align-items: center; gap: 13px; margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--wine); display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.1rem; color: var(--paper);
}
.quote-meta strong { font-size: .9rem; display: block; font-weight: 650; }
.quote-meta span { font-size: .76rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* ---------- Client carousel ---------- */
.carousel { position: relative; }
.car-viewport { overflow: hidden; border-radius: var(--radius); }
.car-track { display: flex; transition: transform .55s cubic-bezier(.22,.75,.25,1); }
.car-slide { min-width: 100%; }

.client-card {
  display: grid; grid-template-columns: 0.85fr 1fr;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; min-height: 520px;
}
/* Before and after sit side by side as portraits. All client photos are
   prepared at 1:2, and the slots are locked to 1:2 — so nobody's head or feet
   get cropped, and a long story can't stretch the photos out of shape. */
.client-photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); position: relative; align-self: start;
}
.client-photo { position: relative; overflow: hidden; background: var(--bone-2); aspect-ratio: 1 / 2; }
.client-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.client-photo .ba-slot { aspect-ratio: auto; height: 100%; }
.photo-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--ink); color: var(--bone);
  font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.photo-tag.after { background: var(--wine); }

.client-body { padding: 42px 44px; display: flex; flex-direction: column; }
.client-name { font-family: var(--serif); font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.05; margin-bottom: 16px; }
.client-meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 26px; }
.meta-chip {
  font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 999px; background: var(--bone-2); color: var(--ink-2);
}
.meta-chip.wine { background: var(--wine); color: var(--paper); }
.client-story-label, .client-review-label {
  font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 9px; display: block;
}
.client-story { font-size: .97rem; color: var(--ink-2); line-height: 1.65; margin-bottom: 30px; }
.client-review {
  border-left: 2px solid var(--wine); padding-left: 22px; margin-top: auto;
}
.client-review blockquote {
  font-family: var(--serif); font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.3; color: var(--ink); letter-spacing: -0.015em;
}
.client-review cite {
  display: block; font-style: normal; font-size: .74rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); font-weight: 600; margin-top: 14px;
}

.car-controls { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 24px; flex-wrap: wrap; }
.car-arrows { display: flex; gap: 9px; }
.car-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--ink);
  background: transparent; color: var(--ink); cursor: pointer; font-size: 1rem;
  display: grid; place-items: center; transition: all .2s;
}
.car-btn:hover:not(:disabled) { background: var(--ink); color: var(--bone); }
.car-btn:disabled { opacity: .25; cursor: not-allowed; }
.car-dots { display: flex; gap: 9px; align-items: center; }
.car-dot {
  width: 9px; height: 9px; border-radius: 50%; border: 0; padding: 0;
  background: var(--bone-3); cursor: pointer; transition: all .25s;
}
.car-dot.on { background: var(--wine); width: 28px; border-radius: 999px; }
.car-count { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 700; }

@media (max-width: 900px) {
  .client-card { grid-template-columns: 1fr; min-height: 0; }
  .client-photos { max-width: 520px; margin: 0 auto; width: 100%; }
  .client-body { padding: 32px 26px; }
  .client-review { margin-top: 8px; }
}
@media (max-width: 560px) {
  .car-controls { justify-content: center; }
  .car-count { width: 100%; text-align: center; order: -1; }
}

.ba-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ba-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.ba-slot {
  aspect-ratio: 3/4; background: var(--bone-2); display: grid; place-items: center;
  color: #A99C91; font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; text-align: center; padding: 14px; line-height: 1.7;
}
.ba-body { padding: 28px; }
.ba-stats { display: flex; gap: 26px; margin-top: 20px; flex-wrap: wrap; }
.ba-stat strong { display: block; font-family: var(--serif); font-size: 1.6rem; line-height: 1; color: var(--wine); }
.ba-stat span { font-size: .64rem; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }

/* ---------- Notes / journal ---------- */
.filter-row { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 40px; }
.chip {
  background: transparent; border: 1px solid var(--line); color: var(--muted);
  padding: 9px 18px; border-radius: 999px; cursor: pointer;
  font-family: var(--sans); font-size: 0.73rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; transition: all .18s;
}
.chip:hover { border-color: var(--wine); color: var(--wine); }
.chip.on { background: var(--ink); border-color: var(--ink); color: var(--bone); }

.note-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; cursor: pointer; background: var(--paper);
  display: flex; flex-direction: column;
  transition: all .25s cubic-bezier(.2,.7,.3,1);
}
.note-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -26px rgba(23,18,15,0.5); border-color: var(--blush-2); }
.note-kind {
  font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; align-self: flex-start; margin-bottom: 18px;
}
.k-breakdown { background: var(--wine); color: var(--paper); }
.k-myth      { background: var(--ink); color: var(--bone); }
.k-protocol  { background: var(--blush); color: var(--wine-deep); }
.k-answer    { background: var(--bone-3); color: var(--ink-2); }
.note-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.55rem; line-height: 1.1; margin-bottom: 12px; }
.note-card .dek { font-size: .92rem; flex: 1; }
.note-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 600;
}

.note-feature {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  margin-bottom: 22px; cursor: pointer; background: var(--ink); color: var(--bone);
  transition: box-shadow .25s;
}
.note-feature:hover { box-shadow: 0 24px 50px -30px rgba(23,18,15,0.7); }
.note-feature .nf-body { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.note-feature h2 { color: var(--paper); font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 14px; }
.note-feature p { color: rgba(244,239,231,0.72); }
.note-feature .note-foot { border-color: var(--line-dark); color: rgba(244,239,231,0.55); }
.nf-visual {
  background: var(--wine); display: grid; place-items: center; padding: 40px; min-height: 280px;
}
.nf-visual .statement { color: var(--paper); opacity: .92; text-align: center; font-size: clamp(1.8rem,3.4vw,3rem); }

/* Reader drawer */
.reader-bg {
  position: fixed; inset: 0; background: rgba(23,18,15,0.55);
  backdrop-filter: blur(3px); z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.reader-bg.open { opacity: 1; pointer-events: auto; }
.reader {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(680px, 100%);
  background: var(--paper); z-index: 201; overflow-y: auto;
  transform: translateX(100%); transition: transform .38s cubic-bezier(.2,.75,.3,1);
  box-shadow: -30px 0 70px -40px rgba(23,18,15,0.6);
}
.reader.open { transform: translateX(0); }
.reader-inner { padding: 54px 48px 80px; }
.reader-close {
  position: sticky; top: 0; float: right; background: var(--ink); color: var(--bone);
  border: 0; width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  font-size: 1.1rem; line-height: 1; z-index: 5;
}
.reader h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); margin: 16px 0 14px; }
.reader .r-meta {
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 28px;
  padding-bottom: 20px; border-bottom: 1px solid var(--line);
}
.reader-body p { color: var(--ink-2); margin-bottom: 17px; font-size: 1.02rem; line-height: 1.68; }
.reader-body h4 {
  font-family: var(--sans); font-weight: 700; font-size: .74rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--wine); margin: 34px 0 12px;
}
.reader-body ul { margin: 0 0 18px 0; padding-left: 0; list-style: none; }
.reader-body li {
  position: relative; padding-left: 24px; margin-bottom: 10px;
  color: var(--ink-2); font-size: 1rem; line-height: 1.6;
}
.reader-body li::before { content:''; position:absolute; left:0; top:11px; width:9px; height:1px; background: var(--wine); }
.reader-body blockquote {
  font-family: var(--serif); font-size: 1.4rem; line-height: 1.25; color: var(--wine);
  border-left: 2px solid var(--wine); padding-left: 22px; margin: 28px 0;
}
.reader-cta { background: var(--bone-2); border-radius: var(--radius); padding: 28px; margin-top: 40px; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; white-space: nowrap; padding: 22px 0; border-block: 1px solid var(--line); background: var(--paper); }
.marquee-track { display: inline-block; animation: slide 34s linear infinite; }
.marquee-track span {
  font-family: var(--caps); text-transform: uppercase; font-size: 1.5rem;
  letter-spacing: -0.02em; color: var(--ink); margin: 0 26px;
}
.marquee-track span.alt { color: var(--wine); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Placeholder marker ---------- */
.todo {
  border-left: 2px solid #B8860B; background: rgba(184,134,11,0.09);
  padding: 3px 10px; border-radius: 0 5px 5px 0; color: #8A6508;
  font-size: .82rem; font-weight: 600; display: inline-block;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--ink); color: var(--bone);
  border-radius: 24px; padding: 74px 48px; text-align: center;
}
.cta-band h2 { color: var(--paper); }
.cta-band .eyebrow { color: var(--blush-2); }
.cta-band p { margin: 18px auto 32px; color: rgba(244,239,231,0.75); }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: var(--bone); padding: 68px 0 44px; }
footer p { color: rgba(244,239,231,0.6); }
footer .logo { color: var(--paper); }
footer .logo span { color: var(--blush-2); }
.foot-inner { display: flex; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 26px; flex-wrap: wrap; }
.foot-links a { font-size: .78rem; color: rgba(244,239,231,0.62); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
.foot-links a:hover { color: var(--blush-2); }
footer small { color: rgba(244,239,231,0.4); font-size: .8rem; display: block; margin-top: 32px; line-height: 1.7; }
footer .todo { background: rgba(184,134,11,0.16); color: #D9AF52; border-color: #D9AF52; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .g4 { grid-template-columns: repeat(2, 1fr); }
  .g3 { grid-template-columns: repeat(2, 1fr); }
  .note-feature { grid-template-columns: 1fr; }
  .note-feature .nf-body { padding: 36px; }
  .nf-visual { min-height: 190px; order: -1; }
}
@media (max-width: 720px) {
  section { padding: 68px 0; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px 26px 22px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 16px; border-bottom: 0; }
  .quiz-shell { padding: 28px 20px; border-radius: 16px; }
  .cta-band { padding: 46px 24px; }
  .reader-inner { padding: 40px 24px 60px; }
}

/* ==========================================================================
   EDITORIAL LAYER
   Added on top of the base styles — nothing above this line was changed.
   Type gets bigger, sections get numbered, things move as you scroll.
   ========================================================================== */

/* ---------- film grain ----------
   A whisper of texture over everything. Stops the flat colour fields from
   looking like a template and makes the bone read like paper. */
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 9998;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- scroll reveals ---------- */
[data-reveal] {
  opacity: 0; transform: translateY(30px);
  transition: opacity .95s cubic-bezier(.16,.8,.3,1), transform .95s cubic-bezier(.16,.8,.3,1);
  transition-delay: var(--d, 0ms);
}
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-34px); }
[data-reveal="right"] { transform: translateX(34px); }
[data-reveal="scale"] { transform: scale(.96); }
[data-reveal].in[data-reveal] { transform: none; }

/* headline that wipes up line by line */
.rise { display: block; overflow: hidden; }
.rise > span {
  display: block; transform: translateY(105%);
  transition: transform 1.05s cubic-bezier(.16,.85,.3,1);
  transition-delay: var(--d, 0ms);
}
.rise.in > span { transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal], .rise > span { opacity: 1 !important; transform: none !important; transition: none !important; }
  .marquee-track { animation: none !important; }
}

/* ---------- oversized display type ---------- */
h1 { font-size: clamp(3.2rem, 10.5vw, 8.5rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(2.3rem, 5.6vw, 4.4rem); letter-spacing: -0.035em; }
.statement { font-size: clamp(2.6rem, 9vw, 7rem); letter-spacing: -0.05em; }

/* ---------- editorial hero ---------- */
.hero-edit { position: relative; padding-top: 72px; }
.hero-edit h1 { position: relative; z-index: 3; }
.hero-frame {
  position: relative; border-radius: 26px; overflow: hidden;
  margin-top: -3.5vw; box-shadow: 0 50px 90px -60px rgba(23,18,15,.75);
}
.hero-frame img, .hero-frame .ba-slot { width: 100%; display: block; }
.hero-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,18,15,.55), transparent 45%);
}
/* the word that sits over the photo */
.hero-over {
  position: absolute; left: 0; right: 0; bottom: 4%; z-index: 4;
  text-align: center; pointer-events: none;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(2.6rem, 9vw, 7.5rem); line-height: 1;
  color: var(--paper); letter-spacing: -0.04em;
  text-shadow: 0 8px 40px rgba(23,18,15,.5);
}

/* ---------- numbered sections ---------- */
.sec-index {
  display: flex; align-items: baseline; gap: 18px; margin-bottom: 6px;
}
.sec-index .num {
  font-family: var(--caps); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: .8;
  color: transparent; -webkit-text-stroke: 1.2px var(--blush-2); letter-spacing: -.04em;
}
.band-ink .sec-index .num, .band-wine .sec-index .num,
.cta-band .sec-index .num { -webkit-text-stroke-color: rgba(230,210,205,.55); }

/* ---------- image hover ---------- */
.zoom { overflow: hidden; }
.zoom img { transition: transform 1.4s cubic-bezier(.16,.8,.3,1); will-change: transform; }
.zoom:hover img { transform: scale(1.055); }

/* ---------- cards, lifted ---------- */
.card, .price-card, .note-card, .quote-card {
  transition: transform .45s cubic-bezier(.16,.8,.3,1), box-shadow .45s, border-color .35s, background .35s;
}
.card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx,50%) var(--my,0%), rgba(139,26,49,.07), transparent 65%);
  opacity: 0; transition: opacity .4s;
}
.card { position: relative; }
.card:hover::after { opacity: 1; }

/* ---------- buttons that move ---------- */
.btn-primary, .btn-ghost { position: relative; overflow: hidden; }
.btn-primary::before {
  content: ''; position: absolute; inset: 0; background: var(--wine-deep);
  transform: translateY(101%); transition: transform .45s cubic-bezier(.16,.8,.3,1); z-index: -1;
}
.btn-primary:hover::before { transform: none; }
.btn::after {
  content: '→'; display: inline-block; margin-left: -6px; width: 0; opacity: 0;
  transform: translateX(-6px);
  transition: opacity .3s, transform .35s cubic-bezier(.16,.8,.3,1), width .35s, margin .35s;
}
.btn:hover::after { opacity: 1; width: 1em; margin-left: 2px; transform: none; }
.btn-block::after { content: none; }

/* ---------- marquee, louder ---------- */
.marquee { background: var(--wine); border-color: var(--wine); padding: 26px 0; }
.marquee-track span { color: var(--paper); font-size: clamp(1.4rem, 3vw, 2.4rem); }
.marquee-track span.alt { color: var(--blush-2); }

/* ---------- pull quote ---------- */
.pull {
  font-family: var(--serif); font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.12; letter-spacing: -.03em; color: var(--wine);
  max-width: 20ch; margin: 0;
}
.pull-mark { font-size: 3rem; line-height: 0; color: var(--blush-2); display: block; margin-bottom: 8px; }

/* ---------- stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.stat { background: var(--bone); padding: 40px 26px; text-align: center; }
.stat b { display: block; font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1; color: var(--wine); letter-spacing: -.03em; }
.stat span { display: block; margin-top: 10px; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }

/* ---------- offset / asymmetric helpers ---------- */
.offset-up { margin-top: -6vw; }
.g2-uneven { display: grid; grid-template-columns: 1.25fr .75fr; gap: 26px; }
@media (max-width: 900px) { .g2-uneven { grid-template-columns: 1fr; } .offset-up { margin-top: 0; } }

/* ---------- nav on scroll ---------- */
.nav { transition: padding .35s, background .35s, box-shadow .35s; }
.nav.tight { box-shadow: 0 10px 30px -26px rgba(23,18,15,.6); }
.nav.tight .nav-inner { padding-top: 9px; padding-bottom: 9px; }

/* ---------- scroll progress ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 200;
  background: var(--wine); width: 0%;
}

/* ---------- split hero: type beside a tall portrait ---------- */
.hero-split { padding-top: 56px; }
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.split-type h1 { font-size: clamp(3rem, 7.2vw, 6.4rem); }
.split-photo { position: relative; }
.split-photo .hero-frame {
  margin-top: 0; border-radius: 22px; overflow: hidden;
  box-shadow: 0 48px 90px -58px rgba(23,18,15,.8);
}
.split-photo .hero-frame::after {
  background: linear-gradient(to top, rgba(23,18,15,.42), transparent 42%);
}
.photo-caption {
  position: absolute; left: 20px; bottom: 18px; z-index: 3;
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; color: var(--paper); opacity: .82;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split-photo { max-width: 460px; }
}
