/* ================================================================
   מהאדמה לנשמה — styles.css
   Quiet-luxury editorial system · Hebrew RTL · mobile-first
   Art direction: parchment, watercolor, ink, restrained burgundy,
   hairline gold. Typography: Frank Ruhl Libre (display) + Assistant.
   ================================================================ */

/* ── Tokens ─────────────────────────────────────────────────────── */
:root {
  /* type */
  --font-serif: 'Frank Ruhl Libre', 'Times New Roman', serif;
  --font-sans:  'Assistant', Arial, sans-serif;
  /* legacy aliases (subpages reference these) */
  --font-main:    var(--font-sans);
  --font-heading: var(--font-serif);

  /* palette — paper world */
  --paper:     #f3ecdd;
  --paper-hi:  #faf5e9;
  --paper-lo:  #eadfc8;
  --ink:       #261a10;
  --ink-2:     #63513f;
  --muted:     var(--ink-2);          /* legacy alias */
  --wine:      #5e1b22;
  --wine-deep: #401016;
  --espresso:  #1a110a;
  --espresso-2:#241812;
  --gold:      #9c7439;
  --gold-hi:   #c8a266;
  --line:      #d9caa9;
  --line-soft: #e6dabd;
  --card:      var(--paper-hi);       /* legacy alias */
  --soft:      var(--paper-lo);       /* legacy alias */
  --bg:        var(--paper);          /* legacy alias */

  /* on-dark */
  --dark-ivory:      #efe3cb;
  --dark-ivory-dim:  rgba(239, 227, 203, .62);
  --dark-line:       rgba(200, 162, 102, .28);

  /* layout */
  --content: 1120px;
  --text-col: 660px;
  --pad-x: 20px;
  --sect: clamp(72px, 12vw, 128px);

  --ease: cubic-bezier(.25, .6, .25, 1);

  /* z-index */
  --z-sticky-cta: 200;
  --z-header:     500;
  --z-whatsapp:   900;
  --z-a11y-btn:   910;
  --z-a11y-menu:  920;
  --z-age-modal:  9000;

  /* floating buttons */
  --floating-gap: 16px;
  --sticky-cta-h: 72px;
  --floating-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px) + var(--floating-gap));
}

/* ── A11y font scaling (widget) — rem-based so root scaling works ── */
html.a11y-text-sm { font-size: 87.5%; }
html.a11y-text-lg { font-size: 112.5%; }
html.a11y-text-xl { font-size: 125%; }

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

/* Paper grain — one fixed layer, barely there */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

a       { color: inherit; text-decoration: none; }
img     { display: block; max-width: 100%; height: auto; }
ul      { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p, figure { margin: 0; }

::selection { background: rgba(94, 27, 34, .16); }

/* ── Typography ─────────────────────────────────────────────────── */
h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -.01em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.1rem, 11vw, 6.2rem);
  line-height: 1.02;
  font-weight: 700;
  color: var(--ink);
}

h2 {
  font-size: clamp(1.9rem, 5.4vw, 3rem);
  line-height: 1.16;
  margin-bottom: .55em;
}

h3 {
  font-size: clamp(1.25rem, 3.4vw, 1.55rem);
  line-height: 1.25;
  margin-bottom: .4em;
}

p { color: var(--ink-2); }
strong { color: var(--ink); font-weight: 600; }

.lede {
  font-size: clamp(1.1rem, 2.6vw, 1.25rem);
  line-height: 1.75;
  max-width: 34em;
}

/* Kicker — quiet editorial label */
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 22px;
}
.kicker::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
  flex-shrink: 0;
}
.kicker--center {
  justify-content: center;
}
.kicker--center::after {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
  flex-shrink: 0;
}

/* Gold hairline ornament */
.rule-gold {
  border: none;
  height: 1px;
  margin: 0;
  background: linear-gradient(to left, transparent, rgba(156,116,57,.55), transparent);
}

/* ── Layout ─────────────────────────────────────────────────────── */
.wrap {
  width: min(100% - (var(--pad-x) * 2), var(--content));
  margin-inline: auto;
}

.wrap-text {
  width: min(100% - (var(--pad-x) * 2), var(--text-col));
  margin-inline: auto;
}

.section { padding: var(--sect) 0; position: relative; }

.section-dark {
  background: var(--espresso);
  color: var(--dark-ivory);
}
.section-dark h2, .section-dark h3 { color: var(--dark-ivory); }
.section-dark p { color: var(--dark-ivory-dim); }
.section-dark .kicker { color: var(--gold-hi); }
.section-dark .kicker::before, .section-dark .kicker--center::after { background: var(--gold-hi); }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  min-height: 54px;
  padding: 13px 32px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: .02em;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  background: none;
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn-primary {
  background: var(--wine);
  color: #f7efdd;
}
.btn-primary:hover { background: var(--wine-deep); }

.btn-outline,
.btn-secondary {
  border-color: rgba(38, 26, 16, .45);
  color: var(--ink);
}
.btn-outline:hover,
.btn-secondary:hover { border-color: var(--ink); background: rgba(38,26,16,.04); }

/* on-dark variants */
.btn-ivory {
  background: var(--dark-ivory);
  color: var(--espresso);
}
.btn-ivory:hover { background: #fff8e9; }

.btn-outline-ivory {
  border-color: rgba(239,227,203,.4);
  color: var(--dark-ivory);
}
.btn-outline-ivory:hover { border-color: var(--dark-ivory); background: rgba(239,227,203,.06); }

/* quiet inline text link */
.link-quiet {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--wine);
  border-bottom: 1px solid rgba(94,27,34,.3);
  padding-bottom: 2px;
  transition: border-color .25s;
}
.link-quiet:hover { border-color: var(--wine); }
.link-quiet:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── Age notice bar ─────────────────────────────────────────────── */
.age-notice-bar {
  direction: rtl;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .3rem .6rem;
  padding: .5rem var(--pad-x);
  background: var(--espresso);
  color: rgba(239,227,203,.78);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
  text-align: center;
}
.age-notice-separator { color: var(--gold-hi); }

/* ── Site header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(243, 236, 221, .0);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease),
              backdrop-filter .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(243, 236, 221, .92);
  border-bottom-color: var(--line-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.wordmark b {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: .01em;
}
.wordmark span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--gold);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 30px;
}
.site-nav a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: color .2s;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.header-cta {
  min-height: 42px;
  padding: 8px 22px;
  font-size: .9rem;
}

.presale-chip {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--wine);
  border: 1px solid rgba(94,27,34,.35);
  border-radius: 2px;
  padding: 6px 12px;
  white-space: nowrap;
}

@media (min-width: 1000px) {
  .site-nav { display: flex; }
}

/* ── Hero ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(28px, 6vw, 84px) 0 clamp(56px, 9vw, 110px);
  overflow: clip;
}

/* faint warm wash behind the book */
.hero::before {
  content: '';
  position: absolute;
  inset-inline-start: 50%;
  top: 0;
  width: min(120vw, 1400px);
  height: 100%;
  transform: translateX(50%);
  background:
    radial-gradient(ellipse 46% 42% at 28% 50%, rgba(156,116,57,.14), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}

.hero-copy { text-align: center; }

.hero-kicker {
  justify-content: center;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 3.2vw, 1.5rem);
  color: var(--wine);
  margin: 20px 0 14px;
}

.hero-desc {
  margin-inline: auto;
  margin-bottom: 30px;
  max-width: 30em;
}

.hero-facts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-facts span {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .04em;
  padding: 0 18px;
  position: relative;
}
.hero-facts span + span::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--line);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero-cta .btn { min-width: 260px; }

/* the book object */
.hero-book {
  position: relative;
  width: min(78vw, 420px);
  margin-inline: auto;
}
.hero-book .book-media {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(31, 17, 8, .55),
    0 12px 28px -12px rgba(31, 17, 8, .4);
}
.hero-book video,
.hero-book img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* thin gold frame, like a mounted plate */
.hero-book::after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(156,116,57,.4);
  border-radius: 8px;
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    text-align: right;
  }
  .hero-copy { text-align: right; order: 0; }
  .hero-kicker { justify-content: flex-start; }
  .hero-desc { margin-inline: 0; }
  .hero-facts { justify-content: flex-start; }
  .hero-facts span:first-child { padding-inline-start: 0; }
  .hero-cta { flex-direction: row; align-items: center; justify-content: flex-start; }
  .hero-book { order: 1; width: min(38vw, 460px); }
}

/* ── Quote band ─────────────────────────────────────────────────── */
.quote-band {
  padding: clamp(64px, 10vw, 110px) 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-hi);
  text-align: center;
  position: relative;
}
.quote-band .quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: .6;
  color: var(--wine);
  opacity: .3;
  margin-bottom: 26px;
}
.quote-band blockquote {
  margin: 0 auto;
  max-width: 21em;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3.6vw, 2.05rem);
  line-height: 1.55;
  color: var(--ink);
  font-weight: 400;
}

/* ── Journey triptych (כרם → יקב → יין) ─────────────────────────── */
.journey { overflow: clip; }

.journey-head {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: clamp(48px, 7vw, 84px);
}

.journey-grid {
  display: grid;
  gap: clamp(56px, 8vw, 40px);
}

.journey-part { text-align: center; }

.journey-figure {
  position: relative;
  margin-inline: auto;
  max-width: 300px;
}
.journey-figure img {
  width: 100%;
  mix-blend-mode: multiply;
  will-change: transform;
}

.journey-num {
  font-family: var(--font-serif);
  font-size: .95rem;
  letter-spacing: .3em;
  color: var(--gold);
  display: block;
  margin: 10px 0 6px;
}

.journey-part h3 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  margin-bottom: 12px;
}

.journey-part p {
  font-size: .98rem;
  max-width: 30em;
  margin-inline: auto;
}

@media (min-width: 820px) {
  .journey-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
  /* staggered baselines — authored, not uniform */
  .journey-part:nth-child(2) { margin-top: 64px; }
  .journey-part:nth-child(3) { margin-top: 24px; }
}

/* ── Interviews strip ───────────────────────────────────────────── */
.interviews {
  border-top: 1px solid var(--line-soft);
  background: var(--paper);
  padding: clamp(52px, 8vw, 84px) 0;
  text-align: center;
}
.interviews .kicker { margin-bottom: 16px; }
.interviews-lede {
  max-width: 34em;
  margin: 0 auto 34px;
}
.interview-names {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 14px 0;
  max-width: 900px;
  margin-inline: auto;
}
.interview-names span {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3.4vw, 1.7rem);
  color: var(--ink);
  padding: 0 26px;
  position: relative;
}
.interview-names span + span::before {
  content: '';
  position: absolute;
  inset-inline-start: -3px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .55;
}

/* ── Wine journey map (wide 5020 render) ────────────────────────── */
.journey-map {
  background: var(--paper-hi);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(64px, 9vw, 110px) 0;
  overflow: clip;
}
.journey-map-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.journey-map figure {
  width: min(100% - (var(--pad-x) * 2), 1320px);
  margin-inline: auto;
}
.journey-map img {
  width: 100%;
  mix-blend-mode: multiply;
}
.journey-map figcaption {
  text-align: center;
  font-size: .85rem;
  color: var(--ink-2);
  letter-spacing: .06em;
  margin-top: 26px;
}

/* ── Inside the book ────────────────────────────────────────────── */
.inside-grid {
  display: grid;
  gap: clamp(44px, 7vw, 80px);
  align-items: center;
}

.inside-figure {
  position: relative;
}
.inside-figure img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 24px 60px -18px rgba(31,17,8,.35);
}
.inside-figure figcaption {
  font-size: .85rem;
  color: var(--ink-2);
  margin-top: 14px;
  letter-spacing: .03em;
}

.samples-list {
  margin-top: 40px;
  display: grid;
}
.sample {
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 18px;
  align-items: baseline;
}
.sample:last-child { border-bottom: 1px solid var(--line-soft); }
.sample .sample-num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  grid-row: span 2;
}
.sample h3 {
  font-size: 1.18rem;
  margin: 0;
}
.sample p {
  grid-column: 2;
  font-size: .95rem;
  margin: 0;
}

@media (min-width: 900px) {
  .inside-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

/* Collage bleed */
.collage-bleed {
  margin-top: clamp(64px, 9vw, 110px);
  position: relative;
}
.collage-bleed figure {
  width: min(100% - (var(--pad-x) * 2), 1320px);
  margin-inline: auto;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px -24px rgba(31,17,8,.4);
}
.collage-bleed img { width: 100%; }
.collage-bleed figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 56px 28px 22px;
  background: linear-gradient(to top, rgba(26,17,10,.82), transparent);
  color: var(--dark-ivory);
  font-size: .92rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: .02em;
}

/* ── Gallery — museum archive ───────────────────────────────────── */
.gallery-section {
  background: var(--paper-lo);
  border-top: 1px solid var(--line-soft);
  overflow-x: clip;
}
.gallery-head {
  max-width: 620px;
  margin-bottom: clamp(40px, 6vw, 60px);
}

.gallery {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
}

.gallery-card {
  background: var(--paper-hi);
  border: 1px solid var(--line);
  padding: 10px;
  border-radius: 2px;
  box-shadow: 0 14px 36px -14px rgba(31,17,8,.22);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 1405 / 1000;
  object-fit: cover;
  display: block;
}
.gallery-card .cap {
  padding: 14px 8px 8px;
  font-size: .88rem;
  color: var(--ink-2);
  line-height: 1.55;
}
.gallery-card .cap b {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 2px;
}

@media (min-width: 680px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  /* mounted-print rhythm */
  .gallery-card:nth-child(2) { transform: translateY(26px); }
  .gallery-card:nth-child(4) { transform: translateY(26px); }
  .gallery { padding-bottom: 26px; }
}

/* Mobile: swipe carousel */
@media (max-width: 679px) {
  .gallery {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 14px;
    padding-inline: 28px;
    margin-inline: calc(var(--pad-x) * -1);
    scroll-padding-inline: 28px;
    touch-action: pan-x pan-y;
    overscroll-behavior-x: contain;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery-card {
    flex: 0 0 calc(100vw - 56px);
    max-width: 420px;
    scroll-snap-align: center;
  }
}

.gallery-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
@media (max-width: 679px) {
  .gallery-dots { display: flex; }
}
.gallery-dot {
  appearance: none;
  -webkit-appearance: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(38,26,16,.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: width .3s var(--ease), background-color .3s var(--ease), border-radius .3s var(--ease);
}
.gallery-dot.is-active {
  width: 20px;
  border-radius: 99px;
  background: var(--gold);
}
.gallery-dot:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── Festival / video — cinematic dark ──────────────────────────── */
.festival {
  position: relative;
}
.festival::before {
  /* soft vignette to keep the dark warm, not flat */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 10%, rgba(94,27,34,.22), transparent 70%);
  pointer-events: none;
}

.festival-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.festival-text { display: contents; }
.festival-text-top { order: -1; text-align: center; max-width: 560px; }
.festival-frame-wrap { order: 0; }
.festival-text-bottom { order: 1; text-align: center; max-width: 460px; }

.festival-text-top .kicker { justify-content: center; }

.festival-note {
  font-size: .85rem;
  color: rgba(239,227,203,.5);
  font-style: italic;
  margin-bottom: 26px;
}

.festival-frame-wrap {
  width: min(76vw, 270px);
  flex-shrink: 0;
}
.festival-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.7);
}
.festival-frame::after {
  content: '';
  position: absolute;
  inset: -9px;
  border: 1px solid var(--dark-line);
  border-radius: 7px;
  pointer-events: none;
}
.festival-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (min-width: 940px) {
  .festival-layout {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
  }
  .festival-text {
    display: flex;
    flex-direction: column;
    max-width: 480px;
    text-align: right;
    order: 0;
  }
  .festival-text-top, .festival-text-bottom { order: unset; text-align: right; max-width: none; }
  .festival-text-top .kicker { justify-content: flex-start; }
  .festival-frame-wrap { order: 1; width: clamp(250px, 24vw, 320px); }
}

/* ── Purchase experience ────────────────────────────────────────── */
.buy-section { overflow: clip; }

.buy-head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: clamp(44px, 6vw, 64px);
}

.limited-note {
  display: inline-block;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--wine);
  border-block: 1px solid rgba(94,27,34,.3);
  padding: 8px 4px;
  margin-top: 14px;
}

/* Platinum — the signature offer, a wine-list panel */
.platinum {
  position: relative;
  background: linear-gradient(168deg, var(--wine-deep) 0%, #2c0b10 55%, #200a0e 100%);
  color: var(--dark-ivory);
  border-radius: 5px;
  padding: clamp(36px, 6vw, 64px) clamp(24px, 5vw, 64px);
  max-width: 880px;
  margin-inline: auto;
  box-shadow: 0 36px 90px -28px rgba(40, 10, 14, .55);
}
/* jewelry: one hairline gold frame */
.platinum::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(200,162,102,.35);
  border-radius: 3px;
  pointer-events: none;
}

.platinum-inner { position: relative; z-index: 1; }

.platinum-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.platinum-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--gold-hi);
}
.platinum-stock {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: rgba(239,227,203,.66);
  border: 1px solid var(--dark-line);
  border-radius: 2px;
  padding: 5px 12px;
}

.platinum h3 {
  font-size: clamp(1.7rem, 5vw, 2.5rem);
  color: var(--dark-ivory);
  margin: 6px 0 26px;
}

.platinum-list {
  display: grid;
  margin-bottom: 30px;
}
.platinum-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 15px 2px;
  border-top: 1px solid rgba(200,162,102,.16);
  font-size: 1.02rem;
  color: var(--dark-ivory);
}
.platinum-list li:last-child { border-bottom: 1px solid rgba(200,162,102,.16); }
.platinum-list .item-note {
  font-size: .82rem;
  color: rgba(239,227,203,.55);
  letter-spacing: .04em;
  white-space: nowrap;
}
.platinum-list .item-name b {
  font-family: var(--font-serif);
  font-weight: 500;
  color: #f5ead2;
}

.platinum-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
.platinum-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.platinum-price .amount {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.5rem, 7vw, 3.4rem);
  line-height: 1;
  color: #f5ead2;
  letter-spacing: -.02em;
}
.platinum-price .currency {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold-hi);
}
.platinum-foot .btn { min-width: 220px; }

/* Individual products — editorial ledger rows */
.addons-block {
  max-width: 880px;
  margin: clamp(56px, 8vw, 84px) auto 0;
}
.addons-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 8px;
}
.addons-title h3 { margin: 0; font-size: 1.35rem; }
.addons-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.addons-sub {
  font-size: .92rem;
  margin-bottom: 26px;
}

.addon-card {
  border-top: 1px solid var(--line);
}
.addon-card:last-child { border-bottom: 1px solid var(--line); }

.addon-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 2px;
}
.addon-info h3 {
  font-size: 1.22rem;
  margin: 0 0 3px;
}
.addon-info p {
  font-size: .88rem;
  margin: 0;
}
.addon-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.addon-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
}
.addon-right .btn {
  min-height: 44px;
  padding: 8px 24px;
  font-size: .92rem;
}

/* Book options accordion */
.book-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.book-accordion-panel.is-open { max-height: 1100px; }

.book-option-card {
  margin: 0 0 14px;
  padding: 18px 20px;
  background: var(--paper-hi);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
}
.book-option-card:first-child { margin-top: 4px; }
.book-option-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 4px;
}
.book-option-title {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.book-option-price {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--wine);
  white-space: nowrap;
}
.book-option-desc {
  font-size: .88rem;
  margin: 0 0 4px;
}
.book-option-note {
  font-size: .8rem;
  color: var(--ink-2);
  font-style: italic;
  margin: 0 0 14px;
}
.book-option-wa-link {
  color: var(--wine);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.book-option-cta {
  min-height: 42px;
  font-size: .9rem;
  padding: 8px 22px;
}

/* ── Timeline ───────────────────────────────────────────────────── */
.timeline-section .wrap-text { max-width: 760px; }
.timeline {
  margin-top: 40px;
  display: grid;
  gap: 0;
}
.timeline-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 4px 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line-soft);
  align-items: baseline;
}
.timeline-step:last-child { border-bottom: 1px solid var(--line-soft); }
.step-num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  grid-row: span 2;
  line-height: 1;
}
.timeline-step h3 { font-size: 1.15rem; margin: 0; }
.timeline-step p { grid-column: 2; font-size: .95rem; margin: 0; }

/* ── FAQ ────────────────────────────────────────────────────────── */
.faq-section { background: var(--paper-hi); border-top: 1px solid var(--line-soft); }
.faq-list {
  max-width: 760px;
  margin: 34px auto 0;
}
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 2px;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--wine); }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 300;
  font-family: var(--font-sans);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .3s var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); color: var(--wine); }

.faq-answer {
  padding: 0 2px 22px;
  color: var(--ink-2);
  font-size: .97rem;
  line-height: 1.75;
  max-width: 60ch;
}

/* ── Final close ────────────────────────────────────────────────── */
.section-final {
  text-align: center;
  padding: clamp(84px, 12vw, 150px) 0;
}
.section-final h2 {
  font-size: clamp(2rem, 6vw, 3.3rem);
  max-width: 15em;
  margin-inline: auto;
}
.section-final .lede {
  margin: 0 auto 40px;
}
.section-final .rule-gold { width: min(300px, 60%); margin: 0 auto 40px; }

/* ── Footer ─────────────────────────────────────────────────────── */
.footer {
  background: var(--espresso);
  color: var(--dark-ivory-dim);
  padding: clamp(52px, 8vw, 76px) 0 34px;
  border-top: 1px solid rgba(200,162,102,.2);
}

.footer-grid {
  display: grid;
  gap: 34px;
  margin-bottom: 44px;
}

.footer-col h4 {
  color: var(--gold-hi);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  margin: 0 0 14px;
}
.footer-col p {
  font-size: .9rem;
  color: var(--dark-ivory-dim);
  margin: 0;
  line-height: 1.9;
}
.footer-col a:hover { color: var(--dark-ivory); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(239,227,203,.1);
  margin: 0 0 24px;
}
.footer-divider--slim { margin: 0 0 18px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
  margin-bottom: 22px;
}
.footer-links a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--dark-ivory-dim);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(239,227,203,.25);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold-hi); }
.footer-links a:focus-visible { outline: 2px solid var(--gold-hi); outline-offset: 3px; }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: .82rem;
  color: rgba(239,227,203,.42);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--dark-line);
  border-radius: 2px;
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold-hi);
  letter-spacing: .04em;
}

@media (min-width: 680px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── Sticky mobile CTA ──────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  z-index: var(--z-sticky-cta);
  left: 0; right: 0; bottom: 0;
  padding-top: 10px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(250, 245, 233, .96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 34px rgba(31,17,8,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform .35s var(--ease), opacity .35s;
}
.sticky-cta.is-hidden {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.sticky-inner {
  width: min(100%, 560px);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
}
.sticky-cta .btn {
  min-height: 50px;
  font-size: .95rem;
  padding-inline: 10px;
}
@media (min-width: 940px) {
  .sticky-cta { display: none; }
}

/* ── Body padding for sticky CTA (mobile only) ──────────────────── */
@media (max-width: 939px) {
  body { padding-bottom: calc(var(--sticky-cta-h) + env(safe-area-inset-bottom, 0px)); }
}

/* ── Motion choreography ────────────────────────────────────────── */
.fx {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.fx.is-visible { opacity: 1; transform: none; }

/* image mask reveal */
.fx-mask {
  clip-path: inset(8% 8% 8% 8%);
  opacity: 0;
  transition: clip-path 1.1s var(--ease), opacity .9s var(--ease);
}
.fx-mask.is-visible { clip-path: inset(0 0 0 0); opacity: 1; }

/* staggered children */
.fx-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fx-stagger.is-visible > * { opacity: 1; transform: none; }
.fx-stagger.is-visible > *:nth-child(1) { transition-delay: .05s; }
.fx-stagger.is-visible > *:nth-child(2) { transition-delay: .16s; }
.fx-stagger.is-visible > *:nth-child(3) { transition-delay: .27s; }
.fx-stagger.is-visible > *:nth-child(4) { transition-delay: .38s; }
.fx-stagger.is-visible > *:nth-child(5) { transition-delay: .49s; }
.fx-stagger.is-visible > *:nth-child(6) { transition-delay: .6s; }

/* hero entrance */
@keyframes heroFade {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.hero .hero-kicker   { animation: heroFade .8s var(--ease) .1s both; }
.hero h1             { animation: heroFade .9s var(--ease) .22s both; }
.hero .hero-sub      { animation: heroFade .9s var(--ease) .34s both; }
.hero .hero-desc     { animation: heroFade .9s var(--ease) .44s both; }
.hero .hero-facts    { animation: heroFade .8s var(--ease) .56s both; }
.hero .hero-cta      { animation: heroFade .8s var(--ease) .68s both; }
.hero .hero-book     { animation: heroFade 1.1s var(--ease) .3s both; }

/* ── Reduced motion ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .fx, .fx-mask, .fx-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}

html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  animation-duration: .01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: .01ms !important;
}
html.a11y-reduce-motion .fx,
html.a11y-reduce-motion .fx-mask,
html.a11y-reduce-motion .fx-stagger > * {
  opacity: 1 !important;
  transform: none !important;
  clip-path: none !important;
}
html.a11y-reduce-motion { scroll-behavior: auto; }

/* ── Purchase link disabled (age-denied) ────────────────────────── */
.purchase-link.is-age-blocked {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

body.age-modal-open { overflow: hidden; }

/* ── 18+ Age verification modal ─────────────────────────────────── */
.age-modal,
.age-denied-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-age-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(20, 11, 6, .9);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.age-modal[hidden],
.age-denied-overlay[hidden] { display: none; }

.age-modal-box,
.age-denied-box {
  background: var(--paper-hi);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 44px 34px 38px;
  max-width: 430px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 90px rgba(0,0,0,.5);
  position: relative;
}
/* hairline gold inner frame */
.age-modal-box::before,
.age-denied-box::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(156,116,57,.35);
  border-radius: 2px;
  pointer-events: none;
}

.age-modal-kicker {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.age-modal-box h2,
.age-denied-box h2 {
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  color: var(--ink);
  margin: 0 0 14px;
}
.age-modal-box p,
.age-denied-box p {
  font-size: .97rem;
  color: var(--ink-2);
  margin: 0 0 10px;
  line-height: 1.65;
}
.age-modal-buttons {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  position: relative;
}
.age-modal-buttons .btn { width: 100%; }
.age-denied-sub { font-size: .85rem !important; }

@media (max-width: 480px) {
  .age-modal-box, .age-denied-box { padding: 36px 22px 30px; }
}

/* ── Screen-reader-only ─────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -60px;
  inset-inline-start: 16px;
  z-index: 2000;
  background: var(--ink);
  color: var(--paper-hi);
  padding: 12px 20px;
  border-radius: 3px;
  font-weight: 600;
  transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ── WhatsApp floating button ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: var(--floating-gap);
  bottom: var(--floating-bottom);
  z-index: var(--z-whatsapp);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #22aa5a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(15, 60, 34, .35);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 24px rgba(15, 60, 34, .45);
}
.whatsapp-float:focus-visible { outline: 3px solid #0d6e3c; outline-offset: 3px; }
.whatsapp-float svg { width: 27px; height: 27px; pointer-events: none; }

@media (min-width: 940px) {
  .whatsapp-float { bottom: 24px; right: 24px; width: 56px; height: 56px; }
  .whatsapp-float svg { width: 29px; height: 29px; }
}

/* ── Accessibility widget ───────────────────────────────────────── */
.accessibility-widget {
  position: fixed;
  left: var(--floating-gap);
  bottom: var(--floating-bottom);
  z-index: var(--z-a11y-btn);
}
@media (min-width: 940px) {
  .accessibility-widget { bottom: 24px; left: 24px; }
}

.accessibility-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1a56a0;
  color: #fff;
  border: 2px solid rgba(255,255,255,.16);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  padding: 0;
  font-family: inherit;
  box-shadow: 0 6px 18px rgba(20, 50, 95, .4);
  transition: transform .2s var(--ease), background .2s;
  -webkit-tap-highlight-color: transparent;
}
.accessibility-toggle:hover { background: #134688; transform: scale(1.06); }
.accessibility-toggle:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.accessibility-menu {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  width: min(280px, calc(100vw - 32px));
  max-height: calc(100vh - 180px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: var(--paper-hi);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 30px 70px -20px rgba(31,17,8,.4);
  z-index: var(--z-a11y-menu);
  transform-origin: bottom left;
  animation: a11yMenuIn .22s var(--ease) both;
}
.accessibility-menu[hidden] { display: none; }

@keyframes a11yMenuIn {
  from { opacity: 0; transform: scale(.94) translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.accessibility-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 10px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-lo);
  position: sticky;
  top: 0;
  z-index: 1;
}
.accessibility-menu-head span {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--wine);
}

.accessibility-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink-2);
  font-size: 15px;
  font-family: inherit;
  line-height: 1;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 0;
  transition: background .15s, color .15s;
}
.accessibility-close:hover { background: var(--line); color: var(--ink); }
.accessibility-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.accessibility-options {
  list-style: none;
  margin: 0;
  padding: 6px;
  display: grid;
  gap: 3px;
}
.accessibility-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink);
  text-align: right;
  direction: rtl;
  transition: background .15s, border-color .15s;
}
.accessibility-option:hover { background: var(--paper-lo); border-color: var(--line); }
.accessibility-option:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; }
.accessibility-option[aria-pressed="true"] {
  background: rgba(94,27,34,.08);
  border-color: var(--wine);
  color: var(--wine);
}
.accessibility-option-icon {
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.accessibility-reset {
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% - 12px);
  min-height: 44px;
  margin: 3px 6px 6px;
  padding: 10px 12px;
  background: none;
  border: none;
  border-top: 1px solid var(--line);
  cursor: pointer;
  font-size: .88rem;
  font-weight: 500;
  font-family: inherit;
  color: var(--ink-2);
  text-align: right;
  direction: rtl;
  transition: color .15s;
}
.accessibility-reset:hover { color: var(--wine); }
.accessibility-reset:focus-visible { outline: 2px solid var(--wine); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  .accessibility-menu { animation: none; }
}

/* ── A11y high contrast ─────────────────────────────────────────── */
html.a11y-high-contrast {
  --paper:     #000000;
  --paper-hi:  #0d0d0d;
  --paper-lo:  #111111;
  --ink:       #ffffff;
  --ink-2:     #dddddd;
  --wine:      #ff4d4d;
  --wine-deep: #300000;
  --espresso:  #000000;
  --gold:      #ffd700;
  --gold-hi:   #ffe44d;
  --line:      #555555;
  --line-soft: #444444;
  --dark-ivory: #ffffff;
  --dark-ivory-dim: #dddddd;
  --dark-line: #777777;
}
html.a11y-high-contrast body { background: #000; color: #fff; }
html.a11y-high-contrast body::before { display: none; }
html.a11y-high-contrast .btn-primary { background: #ff4d4d !important; color: #000 !important; }
html.a11y-high-contrast .btn-ivory { background: #fff !important; color: #000 !important; }
html.a11y-high-contrast .platinum { background: #111 !important; }
html.a11y-high-contrast .site-header.is-scrolled { background: rgba(0,0,0,.94); }
html.a11y-high-contrast .sticky-cta { background: rgba(0,0,0,.95); }
html.a11y-high-contrast .journey-figure img,
html.a11y-high-contrast .journey-map img { mix-blend-mode: normal; background: #fff; }

/* ── A11y link highlighting ─────────────────────────────────────── */
html.a11y-highlight-links a:not(.btn):not(.accessibility-toggle):not(.whatsapp-float) {
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
  text-decoration-thickness: 2px !important;
}
html.a11y-highlight-links a:not(.accessibility-toggle):not(.whatsapp-float),
html.a11y-highlight-links button:not(.accessibility-toggle):not(.accessibility-option):not(.accessibility-close):not(.accessibility-reset) {
  outline: 2px dashed currentColor !important;
  outline-offset: 2px !important;
}

/* ── Subpages (terms / privacy / returns / contact / results) ───── */
.subpage-header {
  background: var(--espresso);
  color: var(--dark-ivory);
  padding: 26px 0 24px;
  border-bottom: 1px solid rgba(200,162,102,.25);
}
.subpage-header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: var(--content);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dark-ivory-dim);
  font-size: .88rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color .2s;
  flex-shrink: 0;
}
.subpage-back:hover { color: var(--dark-ivory); }
.subpage-back:focus-visible { outline: 2px solid var(--gold-hi); outline-offset: 3px; }
.subpage-back svg { flex-shrink: 0; transform: scaleX(-1); }

.subpage-page-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  font-weight: 500;
  color: var(--dark-ivory);
  margin: 0;
  flex: 1;
  min-width: 0;
}

.legal-article {
  max-width: 720px;
  margin-inline: auto;
}
.legal-article h2 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--ink);
  margin: 0 0 14px;
}
.legal-article .legal-lead {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0 0 40px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}
.legal-section { margin-bottom: 36px; }
.legal-section h3 {
  font-size: clamp(1.05rem, 3vw, 1.2rem);
  color: var(--wine);
  margin: 0 0 10px;
}
.legal-section p { margin: 0 0 10px; }
.legal-section ul,
.legal-section ol {
  padding-inline-start: 20px;
  margin: 0;
  line-height: 1.85;
  color: var(--ink-2);
}
.legal-section ul { list-style: disc; }
.legal-section li { margin-bottom: 4px; }

.contact-blocks {
  display: grid;
  gap: 18px;
  max-width: 640px;
  margin-inline: auto;
}
.contact-block {
  background: var(--paper-hi);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 24px 26px;
}
.contact-block h3 {
  font-size: 1.05rem;
  color: var(--wine);
  margin: 0 0 8px;
}
.contact-block p { margin: 0 0 12px; color: var(--ink); line-height: 1.6; }
.contact-block p:last-child { margin-bottom: 0; }
@media (min-width: 800px) {
  .contact-blocks { grid-template-columns: 1fr 1fr; }
}

.result-page-body {
  text-align: center;
  max-width: 520px;
  margin-inline: auto;
}
.result-page-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--wine);
}
.result-page-body h2 {
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: var(--ink);
  margin: 0 0 16px;
}
.result-page-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.result-page-body .result-note {
  font-size: .88rem;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.result-page-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}
