/* ============================================================
   АСТРОКНИГА — сепия, без излишеств
   ============================================================ */

:root {
  --bg:           #2a1a10;
  --bg-deep:      #1a0f08;
  --paper:        #3a2618;
  --paper-edge:   #5b3f28;
  --ink:          #f0e0c0;
  --ink-soft:     #d4a574;
  --ink-muted:    rgba(240, 224, 192, 0.55);
  --copper:       #d4a574;
  --copper-bright:#f0c896;
  --copper-deep:  #b8763e;
  --copper-glow:  rgba(240, 200, 150, 0.40);
  --divider:      rgba(212, 165, 116, 0.22);
  --shadow-soft:  0 18px 60px -20px rgba(0, 0, 0, 0.55);
  --shadow-book:  0 40px 90px -30px rgba(0, 0, 0, 0.85),
                  0 18px 30px -18px rgba(0, 0, 0, 0.55);

  --f-display: 'Playfair Display', 'Times New Roman', serif;
  --f-body:    'Cormorant Garamond', 'Times New Roman', serif;
  --f-caps:    'Cormorant SC', 'Cormorant Garamond', serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 18px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  font-variant-emoji: text;
  -webkit-font-variant-emoji: text;
}
svg text, .foot-zodiac-band {
  font-variant-emoji: text;
  -webkit-font-variant-emoji: text;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ───────── atmosphere ───────── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  mix-blend-mode: screen; opacity: 0.10;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95 0 0 0 0 0.78 0 0 0 0 0.55 0 0 0 0.55 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}
.vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 2;
  background: radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,0.45) 95%);
}

.stars {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
}
.stars span {
  position: absolute;
  background: var(--copper-bright);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--copper-glow), 0 0 12px var(--copper-glow);
  animation: twinkle var(--dur, 3s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: scale(0.85); }
  50%      { opacity: 1;    transform: scale(1.15); }
}

/* ───────── layout & type ───────── */
main { position: relative; z-index: 3; }
section { position: relative; padding: 120px 0; }
.wrap { width: min(1200px, 92vw); margin: 0 auto; }
.wrap-narrow { width: min(900px, 92vw); margin: 0 auto; }

.eyebrow {
  font-family: var(--f-caps);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper-bright);
  display: inline-flex; align-items: center; gap: 14px;
  margin: 0 0 22px;
}
.eyebrow::after {
  content: ""; height: 1px; width: 36px;
  background: currentColor; opacity: 0.5;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before {
  content: ""; height: 1px; width: 36px;
  background: currentColor; opacity: 0.5;
}

h1.display, h2.display, h3.display {
  font-family: var(--f-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h1.display { font-size: clamp(36px, 5vw, 72px); line-height: 1.05; }
h2.display { font-size: clamp(38px, 5vw, 68px);   line-height: 1.05; }
h3.display { font-size: clamp(26px, 2.6vw, 36px); line-height: 1.1; }
.display em { font-style: italic; font-weight: 400; color: var(--copper-bright); }

.lede {
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 56ch;
}

.flourish {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; color: var(--copper); margin: 32px auto;
}
.flourish .line {
  height: 1px; flex: 1; max-width: 220px;
  background: linear-gradient(to right, transparent, currentColor, transparent);
}
.flourish .glyph { font-size: 14px; opacity: 0.85; letter-spacing: 0.3em; }

/* ───────── CTA ───────── */
.cta {
  --pad-y: 18px;
  --pad-x: 38px;
  display: inline-flex; align-items: center; gap: 14px;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--f-caps);
  font-size: 15px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--paper);
  background: linear-gradient(135deg, var(--copper-deep) 0%, var(--copper) 45%, var(--copper-bright) 55%, var(--copper) 80%);
  background-size: 220% 220%; background-position: 20% 50%;
  border: 1px solid var(--copper-deep);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  box-shadow: 0 12px 32px -10px rgba(184, 118, 62, 0.55),
              0 2px 0 rgba(255, 220, 180, 0.18) inset,
              0 -2px 0 rgba(60, 30, 10, 0.25) inset;
  transition: background-position 0.6s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.cta:hover {
  background-position: 80% 50%;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(184, 118, 62, 0.75),
              0 0 0 1px var(--copper-bright);
}
.cta .arrow {
  font-family: var(--f-display); font-size: 18px;
  letter-spacing: 0; transition: transform 0.3s ease;
}
.cta:hover .arrow { transform: translateX(6px); }
.cta.small { --pad-y: 11px; --pad-x: 22px; font-size: 12px; }
.cta.huge  { --pad-y: 26px; --pad-x: 56px; font-size: 17px; letter-spacing: 0.32em; }

/* ───────── nav ───────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 18px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 90%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--divider);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display); font-size: 22px; letter-spacing: 0.04em;
}
.brand-mark { width: 36px; height: 36px; color: var(--copper-bright); display: grid; place-items: center; }
.nav-links {
  display: flex; gap: 36px;
  font-family: var(--f-caps); font-size: 13px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--copper); transition: right 0.4s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
@media (max-width: 760px) { .nav-links { display: none; } }

/* ───────── hero ───────── */
.hero { padding: 180px 0 40px; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 80px; align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  color: var(--copper-bright);
  font-family: var(--f-caps); font-size: 12px;
  letter-spacing: 0.32em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-eyebrow .line { height: 1px; width: 60px; background: currentColor; opacity: 0.5; }
.hero .lede { margin: 32px 0 44px; }
.hero-meta {
  display: flex; gap: 36px; margin-top: 56px; flex-wrap: wrap;
  font-family: var(--f-caps); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-muted);
}
.hero-meta .item { display: flex; align-items: center; gap: 10px; }
.hero-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--copper); }

.hero-visual { position: relative; aspect-ratio: 1 / 1; }
.zodiac-wheel-bg {
  position: absolute; inset: -8%; z-index: 1;
  color: var(--copper);
  opacity: 0.7;
  animation: rotate 180s linear infinite;
}
.zodiac-wheel-bg svg { width: 100%; height: 100%; display: block; }
@keyframes rotate { to { transform: rotate(360deg); } }

.hero-video-stage {
  position: absolute; inset: 10%; z-index: 2;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-book), inset 0 0 0 1px rgba(212, 165, 116, 0.25);
}
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ───────── how it works ───────── */
.how-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px;
  margin-top: 80px;
}
.how-card { position: relative; padding-top: 130px; }
.how-num {
  position: absolute; top: 0; left: 0;
  font-family: var(--f-display); font-style: italic;
  font-size: 96px; line-height: 0.8;
  color: var(--copper);
}
.how-num::after {
  content: ""; position: absolute; left: 0; bottom: -18px;
  width: 50px; height: 1px; background: var(--copper);
}
.how-card h3 { margin-bottom: 14px; }
.how-card p { color: var(--ink-soft); margin: 0; }
@media (max-width: 760px) { .how-grid { grid-template-columns: 1fr; gap: 50px; } }

/* ───────── natal preview ───────── */
.natal-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center;
}
.natal-stage {
  position: relative; aspect-ratio: 1 / 1;
  background: radial-gradient(ellipse at center, var(--paper) 0%, var(--paper) 50%, var(--paper-edge) 100%);
  border-radius: 50%;
  padding: 6%;
  box-shadow: var(--shadow-soft), inset 0 0 0 1px var(--divider), inset 0 0 60px rgba(0,0,0,0.25);
}
.planet-list { list-style: none; padding: 0; margin: 0; }
.planet-list li {
  display: grid; grid-template-columns: 28px 1fr; gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  font-family: var(--f-display); font-size: 19px; color: var(--ink);
}
.planet-list li:last-child { border-bottom: none; }
.planet-list .glyph { color: var(--copper-bright); font-size: 22px; text-align: center; }
@media (max-width: 900px) {
  .natal-grid { grid-template-columns: 1fr; gap: 60px; }
  .natal-stage { max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ───────── why ───────── */
.why-quote {
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.25;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto;
  color: var(--ink);
  text-wrap: balance;
}
.why-quote::before, .why-quote::after {
  content: "❦";
  display: block;
  color: var(--copper);
  font-size: 18px; opacity: 0.8;
  margin: 0 auto 28px;
}
.why-quote::after { margin: 28px auto 0; }
.why-attrib {
  text-align: center; font-family: var(--f-caps);
  font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-muted); margin-top: 32px;
}

/* ───────── what's inside ───────── */
.inside-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center;
  margin-top: 80px;
}
.open-book-stage {
  aspect-ratio: 1 / 0.78;
  filter: drop-shadow(0 30px 60px -20px rgba(0,0,0,0.6));
}
.open-book-stage svg { width: 100%; height: 100%; display: block; }

.chapter-list { list-style: none; padding: 0; margin: 30px 0 0; }
.chapter-list li {
  position: relative; padding: 22px 0 22px 56px;
  border-bottom: 1px solid var(--divider);
  font-family: var(--f-display); font-size: 22px;
  color: var(--ink);
  transition: padding-left 0.35s ease, color 0.35s ease;
}
.chapter-list li:hover { padding-left: 64px; color: var(--copper-bright); }
.chapter-list li::before {
  content: "✦"; position: absolute; left: 0; top: 22px;
  color: var(--copper); font-size: 18px;
  transition: transform 0.5s ease;
}
.chapter-list li:hover::before { transform: rotate(72deg); }
.chapter-list .num {
  font-family: var(--f-caps); font-size: 11px; letter-spacing: 0.32em;
  color: var(--copper-bright); display: block; margin-bottom: 4px;
}
@media (max-width: 900px) { .inside-grid { grid-template-columns: 1fr; gap: 60px; } }

/* ───────── production stories ───────── */
.stories-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  margin-top: 80px;
}
.story-card {
  position: relative; aspect-ratio: 3 / 4;
  border: 1px solid var(--copper);
  padding: 12px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s ease;
}
.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.7);
}
.story-card::before, .story-card::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--copper); pointer-events: none;
}
.story-card::before { top: 4px; left: 4px;   border-right: none; border-bottom: none; }
.story-card::after  { bottom: 4px; right: 4px; border-left: none; border-top: none; }
.story-card .frame {
  position: relative;
  width: 100%; height: 78%;
  outline: 1px solid var(--divider);
  outline-offset: 4px;
  background:
    linear-gradient(135deg, #4a2814 0%, #2a1608 60%, #1a0c04 100%);
  display: grid; place-items: center;
  overflow: hidden;
}
.story-card .frame::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(240, 200, 150, 0.18) 0%, transparent 55%);
}
.story-card .frame .ph {
  position: relative; z-index: 1;
  color: rgba(212, 165, 116, 0.5);
  font-family: var(--f-caps); font-size: 10px;
  letter-spacing: 0.32em; text-transform: uppercase;
}
.story-card .stage-num {
  position: absolute; top: -10px; left: -10px;
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1px solid var(--copper);
  display: grid; place-items: center;
  font-family: var(--f-display); font-style: italic;
  color: var(--copper-bright); font-size: 18px;
  z-index: 2;
}
.story-card .caption {
  padding: 14px 4px 4px;
  text-align: center;
}
.story-card .caption .title {
  font-family: var(--f-caps); font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: 4px;
}
.story-card .caption .desc {
  font-family: var(--f-body); font-style: italic;
  font-size: 14px; color: var(--ink-soft); line-height: 1.3;
}
@media (max-width: 1100px) { .stories-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .stories-row { grid-template-columns: repeat(2, 1fr); } }

/* ───────── social proof ───────── */
.social-section { background: var(--bg-deep); }
.testimonials {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px;
  margin-top: 70px;
}
.testimonial {
  background: var(--paper);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.testimonial::before, .testimonial::after,
.testimonial > .corner-tl, .testimonial > .corner-br {
  content: ""; position: absolute; width: 18px; height: 18px;
  border: 1px solid var(--copper); pointer-events: none;
}
.testimonial::before { top: 8px; left: 8px;   border-right: none; border-bottom: none; }
.testimonial::after  { top: 8px; right: 8px;  border-left:  none; border-bottom: none; }
.testimonial > .corner-tl { bottom: 8px; left: 8px;  border-right: none; border-top: none; }
.testimonial > .corner-br { bottom: 8px; right: 8px; border-left:  none; border-top: none; }
.testimonial .head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 22px;
}
.testimonial .photo {
  width: 56px; height: 56px; border-radius: 50%;
  outline: 1px solid var(--copper); outline-offset: 3px;
  background: linear-gradient(135deg, #4a2814 0%, #2a1608 100%);
  display: grid; place-items: center;
  color: var(--copper-bright);
  font-family: var(--f-display); font-style: italic;
  font-size: 22px;
  flex-shrink: 0;
}
.testimonial .name {
  font-family: var(--f-display); font-size: 22px;
  line-height: 1.1; color: var(--ink);
}
.testimonial .rating { color: var(--copper); font-size: 14px; margin-top: 4px; letter-spacing: 0.1em; }
.testimonial .quote {
  font-family: var(--f-body); font-style: italic;
  font-size: 18px; line-height: 1.5; color: var(--ink-soft);
}
.testimonial .quote::before { content: "«"; color: var(--copper); margin-right: 2px; font-style: normal; }
.testimonial .quote::after  { content: "»"; color: var(--copper); margin-left: 2px;  font-style: normal; }
.testimonial .city {
  margin-top: 22px;
  font-family: var(--f-caps); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-muted);
}

.stat-strip {
  margin-top: 70px;
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
  font-family: var(--f-caps); font-size: 13px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--ink-soft);
}
.stat-strip strong {
  font-family: var(--f-display); font-style: italic;
  font-size: 28px; letter-spacing: 0; color: var(--copper-bright);
  margin-right: 6px; font-weight: 500;
}
.stat-strip .sep { color: var(--copper); }
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* ───────── FAQ ───────── */
.faq-list { margin-top: 70px; }
.faq-item {
  border-top: 1px solid var(--divider);
  position: relative;
}
.faq-item:last-child { border-bottom: 1px solid var(--divider); }
.faq-item::after {
  content: ""; position: absolute; left: 50%; top: -3px;
  width: 5px; height: 5px; background: var(--copper);
  transform: translateX(-50%) rotate(45deg);
}
.faq-q {
  width: 100%; background: transparent; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--f-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  padding: 26px 56px 26px 0;
  display: block; position: relative;
}
.faq-q .plus {
  position: absolute; right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--copper-bright);
  font-family: var(--f-caps); font-size: 22px; font-weight: 300;
  transition: transform 0.5s ease;
}
.faq-item.open .plus { transform: translateY(-50%) rotate(135deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease, opacity 0.4s ease 0.1s;
  opacity: 0;
  color: var(--ink-soft);
  font-size: 18px; line-height: 1.6;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 28px;
  opacity: 1;
}

/* ───────── final cta ───────── */
.final-section {
  position: relative; overflow: hidden;
  background: radial-gradient(ellipse at center, var(--bg) 0%, var(--bg-deep) 70%);
  padding: 180px 0;
}
.final-section::before {
  content: ""; position: absolute; inset: -10%;
  background: radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,0.4) 95%);
  pointer-events: none; z-index: 2;
}
.final-wheel {
  position: absolute; inset: 0; display: grid; place-items: center;
  pointer-events: none; z-index: 0;
  opacity: 0.28;
  color: var(--copper);
}
.final-wheel svg {
  width: 80%; max-width: 900px; aspect-ratio: 1; height: auto;
  animation: rotate 300s linear infinite;
}
.final-inner { position: relative; z-index: 3; text-align: center; }
.final-inner h2 { margin-bottom: 22px; }
.final-inner .lede { margin: 0 auto 50px; }
.final-meta {
  margin-top: 34px;
  font-family: var(--f-caps); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-muted);
}
.final-meta .sep { color: var(--copper); margin: 0 10px; }

/* ───────── footer ───────── */
footer.foot {
  background: #1a0c04;
  color: var(--copper);
  padding: 80px 0 50px;
}
.foot a:hover { color: var(--copper-bright); }
.foot-zodiac-band {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  border-top: 1px solid rgba(212, 165, 116, 0.2);
  border-bottom: 1px solid rgba(212, 165, 116, 0.2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; letter-spacing: 0.2em;
  color: rgba(212, 165, 116, 0.7);
  margin-bottom: 56px;
}
.foot-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.foot-brand {
  font-family: var(--f-display); font-size: 28px;
  margin-bottom: 16px; color: var(--copper-bright);
}
.foot-tag {
  font-family: var(--f-body); font-style: italic; font-size: 16px;
  color: rgba(212,165,116, 0.7); max-width: 32ch; line-height: 1.5;
}
.foot-col h4 {
  font-family: var(--f-caps); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--copper-bright);
  margin: 0 0 18px; font-weight: 400;
}
.foot-col ul {
  list-style: none; padding: 0; margin: 0;
  font-family: var(--f-body); font-size: 16px;
}
.foot-col li { padding: 5px 0; opacity: 0.8; }
.foot-col li:hover { opacity: 1; }
.foot-col a { display: inline-block; }
.foot-requisites {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(212, 165, 116, 0.15);
  font-family: var(--f-body); font-size: 14px;
  color: rgba(212, 165, 116, 0.7);
}
.foot-requisites h4 {
  font-family: var(--f-caps); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--copper-bright);
  margin: 0 0 14px; font-weight: 400;
}
.foot-requisites p { margin: 0; line-height: 1.7; }
.foot-legal {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid rgba(212, 165, 116, 0.15);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-caps); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.6;
}
@media (max-width: 800px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .foot-zodiac-band { font-size: 14px; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .foot-legal { flex-direction: column; gap: 18px; text-align: center; }
}

/* ───────── reveal-on-scroll ───────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* ───────── quiz modal ───────── */
.quiz-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: radial-gradient(ellipse at center, rgba(20, 10, 4, 0.65), rgba(0, 0, 0, 0.95));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
  display: flex; justify-content: center; align-items: safe center;
  overflow-y: auto; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 24px;
}
.quiz-overlay.open { opacity: 1; pointer-events: auto; }
.quiz-modal {
  width: min(720px, 100%);
  flex-shrink: 0;
  background: var(--paper);
  border: 1px solid var(--copper);
  padding: 56px 56px 48px;
  position: relative;
  transform: scale(0.96) translateY(20px); opacity: 0;
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), opacity 0.5s ease;
  box-shadow: 0 40px 100px rgba(0,0,0, 0.6);
}
.quiz-overlay.open .quiz-modal { transform: none; opacity: 1; }
.quiz-modal::before, .quiz-modal::after,
.quiz-modal .corner-tl, .quiz-modal .corner-br {
  content: ""; position: absolute; width: 22px; height: 22px;
  border: 1px solid var(--copper); pointer-events: none;
}
.quiz-modal::before { top: 10px; left: 10px;   border-right: none; border-bottom: none; }
.quiz-modal::after  { top: 10px; right: 10px;  border-left:  none; border-bottom: none; }
.quiz-modal .corner-tl { bottom: 10px; left: 10px;  border-right: none; border-top: none; }
.quiz-modal .corner-br { bottom: 10px; right: 10px; border-left:  none; border-top: none; }
.quiz-close {
  position: absolute; top: 18px; right: 18px;
  background: transparent; border: none; cursor: pointer;
  color: var(--copper-bright);
  font-family: var(--f-display); font-size: 22px;
  width: 36px; height: 36px; display: grid; place-items: center;
  transition: transform 0.3s ease, color 0.3s ease;
}
.quiz-close:hover { transform: rotate(90deg); color: var(--ink); }

.quiz-progress {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-bottom: 36px;
}
.quiz-progress .dot {
  width: 28px; height: 1px; background: var(--divider);
  transition: background 0.4s ease, height 0.4s ease;
}
.quiz-progress .dot.active { background: var(--copper); height: 2px; }
.quiz-progress .dot.done   { background: var(--copper-deep); }

.quiz-step { min-height: 280px; }
.quiz-step.hidden { display: none; }
.quiz-step .eyebrow { margin-bottom: 18px; }
.quiz-step h3.display { margin-bottom: 12px; }
.quiz-step p.lede     { font-size: 17px; margin-bottom: 28px; color: var(--ink-soft); }

.quiz-input {
  width: 100%; padding: 16px 18px;
  background: transparent;
  border: 1px solid var(--divider);
  border-bottom: 1px solid var(--copper);
  font-family: var(--f-display); font-size: 22px;
  color: var(--ink); outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  color-scheme: dark;
}
.quiz-input:focus { border-color: var(--copper-bright); background: rgba(212, 165, 116, 0.06); }
.quiz-input::placeholder { color: var(--ink-muted); font-style: italic; }

.quiz-toggle {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-caps); font-size: 12px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); cursor: pointer;
}
.quiz-toggle input { display: none; }
.quiz-toggle .box {
  width: 18px; height: 18px; border: 1px solid var(--copper);
  display: grid; place-items: center; color: var(--copper);
}
.quiz-toggle input:checked + .box::after {
  content: "✕"; font-size: 14px; line-height: 1;
}

.quiz-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 40px;
}
.quiz-back {
  background: transparent; border: none; cursor: pointer;
  font-family: var(--f-caps); font-size: 12px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 4px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.quiz-back:hover { color: var(--ink); gap: 14px; }
.quiz-back.disabled { opacity: 0; pointer-events: none; }
.quiz-next.disabled { opacity: 0.4; pointer-events: none; }

.quiz-result { text-align: center; padding: 6px 0 0; }
.quiz-result.hidden { display: none; }
.quiz-result .result-seal-stage {
  position: relative;
  width: 240px; height: 240px;
  margin: 0 auto 24px;
  display: grid; place-items: center;
}
.quiz-result .result-seal-stage .zodiac-wheel-bg {
  position: absolute; inset: -6%;
  margin: 0;
}
.quiz-result .seal {
  width: 110px; height: 110px;
  display: grid; place-items: center;
  color: var(--copper-bright);
  animation: seal-in 0.8s cubic-bezier(.2,.7,.2,1);
  position: relative; z-index: 2;
}
.quiz-result .result-seal-stage .seal { margin: 0; }
@keyframes seal-in {
  from { opacity: 0; transform: scale(0.6) rotate(-30deg); }
  to   { opacity: 1; transform: none; }
}
.quiz-result .your-chart {
  display: grid; grid-template-columns: auto 1fr;
  gap: 20px 28px; text-align: left;
  margin: 36px auto 0;
  max-width: 460px;
  padding: 28px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.quiz-result dt {
  font-family: var(--f-caps); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--copper-bright);
  align-self: center;
}
.quiz-result dd {
  margin: 0; font-family: var(--f-display);
  font-size: 22px; color: var(--ink); font-style: italic;
}

.quiz-loader { display: none; text-align: center; padding: 6px 0 0; }
.quiz-loader.active { display: block; }
.quiz-loader .loader-seal {
  width: 110px; height: 110px; margin: 0 auto 24px;
  display: grid; place-items: center;
  color: var(--copper-bright);
  animation: seal-in 0.6s cubic-bezier(.2,.7,.2,1);
}
.quiz-loader .loader-spin {
  transform-origin: 0 0;
  animation: loader-spin 7s linear infinite;
}
@keyframes loader-spin { to { transform: rotate(360deg); } }
.loader-status {
  margin: 30px auto 18px; max-width: 52ch;
  font-family: var(--f-caps);
  font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--copper-bright);
  min-height: 18px;
  transition: opacity 0.25s ease;
}
.loader-bar {
  position: relative;
  width: min(440px, 100%);
  margin: 0 auto;
  height: 2px;
  background: var(--divider);
  overflow: hidden;
}
.loader-bar-fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--copper-deep), var(--copper-bright));
  box-shadow: 0 0 14px var(--copper-glow);
  transition: width 0.22s cubic-bezier(.4,.0,.2,1);
}
.loader-percent {
  margin-top: 16px;
  font-family: var(--f-display);
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
}

/* ───────── plans (paywall) ───────── */
.plans {
  display: flex; flex-direction: column; gap: 16px;
  margin: 40px 0 0;
  text-align: left;
}
.plan {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 22px;
  align-items: start;
  width: 100%;
  padding: 24px 26px;
  background: rgba(26, 15, 8, 0.35);
  border: 1px solid var(--divider);
  border-radius: 2px;
  font-family: inherit;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
}
.plan:hover {
  border-color: rgba(212, 165, 116, 0.55);
  background: rgba(26, 15, 8, 0.55);
}
.plan.active {
  border-color: var(--copper);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.10) 0%, rgba(26, 15, 8, 0.55) 70%);
  box-shadow: 0 14px 34px -16px rgba(0, 0, 0, 0.6);
}
.plan.active::before, .plan.active::after,
.plan.active > .plan-corner-bl, .plan.active > .plan-corner-br {
  content: ""; position: absolute; width: 12px; height: 12px;
  border: 1px solid var(--copper); pointer-events: none;
}
.plan.active::before { top: 6px; left: 6px;   border-right: none; border-bottom: none; }
.plan.active::after  { top: 6px; right: 6px;  border-left:  none; border-bottom: none; }

.plan-mark {
  width: 18px; height: 18px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-top: 6px;
  transition: box-shadow 0.3s ease;
}
.plan-mark::after {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--copper-bright);
  opacity: 0; transform: scale(0.4);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.plan.active .plan-mark { box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.18); }
.plan.active .plan-mark::after { opacity: 1; transform: none; }

.plan-body { display: flex; flex-direction: column; }
.plan-eyebrow {
  font-family: var(--f-caps); font-size: 11px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--copper-bright);
  margin-bottom: 6px;
}
.plan-title {
  font-family: var(--f-display); font-style: italic;
  font-size: 24px; line-height: 1.15;
  color: var(--ink);
}
.plan-desc {
  font-family: var(--f-body); font-size: 15px; line-height: 1.5;
  color: var(--ink-soft); margin-top: 8px;
}
.plan-features {
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  margin-top: 14px;
  font-family: var(--f-caps); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted);
}
.plan-features > span { display: inline-flex; align-items: center; gap: 8px; }
.plan-features > span::before {
  content: "✦"; color: var(--copper); font-size: 10px;
  letter-spacing: 0;
}

.plan-price {
  display: flex; flex-direction: column; align-items: flex-end;
  text-align: right; padding-left: 12px;
}
.plan-price-amount {
  font-family: var(--f-display); font-style: italic;
  font-size: 28px; line-height: 1;
  color: var(--copper-bright);
  white-space: nowrap;
}
.plan-price-meta {
  margin-top: 8px;
  font-family: var(--f-caps); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .plan { grid-template-columns: 20px 1fr; padding: 20px; gap: 14px 16px; }
  .plan-price {
    grid-column: 2 / -1;
    flex-direction: row; align-items: baseline; justify-content: space-between;
    text-align: left; padding-left: 0;
    border-top: 1px solid var(--divider);
    margin-top: 4px; padding-top: 14px; width: 100%;
  }
  .plan-price-amount { font-size: 24px; }
  .plan-price-meta { margin-top: 0; }
}

/* ───────── preview spread ───────── */
.preview-spread {
  margin: 40px 0 0;
  text-align: center;
}
.preview-spread .eyebrow.center { margin-bottom: 18px; }
.spread-stage {
  max-width: 100%;
  filter: drop-shadow(0 22px 44px -18px rgba(0, 0, 0, 0.6));
}
.spread-stage svg { width: 100%; height: auto; display: block; }
.spread-caption {
  margin-top: 18px;
  font-family: var(--f-body); font-style: italic;
  font-size: 14px; color: var(--ink-muted);
}

/* ───────── options (gift packaging) ───────── */
.options {
  margin: 32px 0 0;
  padding: 26px 26px 22px;
  background: rgba(26, 15, 8, 0.35);
  border: 1px solid var(--divider);
  border-radius: 2px;
  text-align: left;
}
.quiz-result[data-active-plan="pdf"] .options { display: none; }

.options-h {
  font-family: var(--f-caps); font-size: 12px;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--copper-bright);
}
.options-sub {
  font-family: var(--f-body); font-style: italic;
  font-size: 13px; color: var(--ink-muted);
  margin: 4px 0 22px;
}

.option {
  padding: 20px 0;
  border-top: 1px solid var(--divider);
}
.option:first-of-type { border-top: none; padding-top: 0; }

.option-label {
  font-family: var(--f-caps); font-size: 11px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

/* ribbons */
.ribbons {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.ribbon {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 6px 4px;
  background: transparent; border: none;
  cursor: pointer;
}
.ribbon-swatch {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ribbon);
  outline: 1px solid var(--divider); outline-offset: 4px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08),
              0 8px 16px -8px rgba(0, 0, 0, 0.6);
  transition: outline-color 0.3s ease, transform 0.3s ease;
}
.ribbon-name {
  font-family: var(--f-caps); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-muted);
  transition: color 0.3s ease;
}
.ribbon:hover .ribbon-swatch {
  outline-color: rgba(212, 165, 116, 0.5);
  transform: scale(1.04);
}
.ribbon:hover .ribbon-name { color: var(--ink-soft); }
.ribbon.active .ribbon-swatch { outline-color: var(--copper); }
.ribbon.active .ribbon-name { color: var(--copper-bright); }

/* dedication card */
.option-toggle-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  cursor: pointer;
}
.option-toggle-info { display: flex; flex-direction: column; gap: 4px; }
.option-toggle-title {
  font-family: var(--f-display); font-style: italic;
  font-size: 19px; color: var(--ink); line-height: 1.2;
}
.option-toggle-desc {
  font-family: var(--f-body); font-size: 14px;
  color: var(--ink-muted); line-height: 1.4;
}
.option-toggle-box {
  width: 24px; height: 24px;
  border: 1px solid var(--copper);
  display: grid; place-items: center;
  color: var(--paper);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.option-toggle-row input:checked ~ .option-toggle-box {
  background: var(--copper);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.18);
}
.option-toggle-row input:checked ~ .option-toggle-box::after {
  content: "✓";
  font-family: var(--f-caps); font-size: 14px; line-height: 1;
}

.option-card-body {
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
}
.option--card.is-active .option-card-body {
  max-height: 260px;
  margin-top: 18px;
  opacity: 1;
}
.option-card-text {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-deep);
  border: 1px solid var(--divider);
  border-radius: 2px;
  font-family: var(--f-body); font-style: italic;
  font-size: 16px; line-height: 1.5;
  color: var(--ink);
  resize: vertical;
  outline: none;
  transition: border-color 0.3s ease;
}
.option-card-text:focus { border-color: var(--copper); }
.option-card-text::placeholder { color: var(--ink-muted); }
.option-card-meta {
  margin-top: 8px;
  font-family: var(--f-caps); font-size: 10px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ───────── after pay ───────── */
.after-pay {
  margin: 64px 0 0;
  padding: 40px 0 0;
  border-top: 1px solid var(--divider);
  text-align: center;
}
.after-pay .eyebrow.center { margin-bottom: 14px; }
.after-pay-h {
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 30px);
  margin: 0 0 36px;
  color: var(--ink);
}
.after-steps {
  list-style: none; padding: 0;
  margin: 0 auto;
  max-width: 540px;
  display: flex; flex-direction: column; gap: 24px;
  text-align: left;
}
.after-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 22px;
  align-items: start;
  position: relative;
}
.after-steps li:not(:last-child)::after {
  content: ""; position: absolute;
  left: 26px; top: 56px;
  width: 1px; height: calc(100% - 32px);
  background: var(--divider);
}
.step-num {
  width: 52px; height: 52px;
  border: 1px solid var(--copper);
  display: grid; place-items: center;
  font-family: var(--f-display); font-style: italic;
  font-size: 22px;
  color: var(--copper-bright);
  background: var(--paper);
  z-index: 1;
}
.step-text {
  font-family: var(--f-body);
  font-size: 16px; line-height: 1.5;
  color: var(--ink-soft);
  padding-top: 10px;
}
.step-text strong {
  color: var(--ink);
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
}

.quiz-result[data-active-plan="print"] [data-step-final="pdf"]  { display: none; }
.quiz-result[data-active-plan="pdf"]   [data-step-final="print"] { display: none; }

/* ───────── guarantee ───────── */
.guarantee {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 28px;
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.08) 0%, rgba(26, 15, 8, 0.45) 70%);
  border: 1px solid var(--divider);
  border-radius: 2px;
  text-align: left;
}
.guarantee-seal {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  color: var(--copper-bright);
}
.guarantee-title {
  font-family: var(--f-display); font-style: italic;
  font-size: 22px; color: var(--ink);
  margin-bottom: 6px;
}
.guarantee-text {
  margin: 0;
  font-family: var(--f-body);
  font-size: 15px; line-height: 1.5;
  color: var(--ink-soft);
}

/* ───────── fineprint ───────── */
.fineprint {
  margin: 36px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--divider);
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 8px 14px;
  font-family: var(--f-caps); font-size: 11px;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--ink-muted);
}
.fineprint a {
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
}
.fineprint a:hover { color: var(--copper-bright); }
.fineprint a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 1px; background: var(--copper);
  transition: right 0.3s ease;
}
.fineprint a:hover::after { right: 0; }
.fineprint .sep { color: var(--copper); opacity: 0.55; }

@media (max-width: 560px) {
  .after-steps li { grid-template-columns: 44px 1fr; gap: 16px; }
  .after-steps li:not(:last-child)::after { left: 22px; top: 48px; height: calc(100% - 26px); }
  .step-num { width: 44px; height: 44px; font-size: 18px; }
  .step-text { padding-top: 8px; font-size: 15px; }
  .step-text strong { font-size: 16px; }

  .guarantee {
    grid-template-columns: 1fr; gap: 14px;
    padding: 24px 20px; text-align: center;
  }
  .guarantee-seal { margin: 0 auto; }

  .options { padding: 22px 20px 18px; }
  .ribbons { gap: 14px; }
  .ribbon-swatch { width: 38px; height: 38px; }

  .option-toggle-title { font-size: 17px; }
  .option-toggle-desc { font-size: 13px; }
}

@media (max-width: 600px) {
  .quiz-modal { padding: 48px 26px 32px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ─────────── Quiz: photo upload step ─────────── */
.quiz-upload { width: 100%; margin-top: 8px; }
.quiz-upload-zone {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 38px 24px; cursor: pointer;
  border: 1px dashed var(--copper-deep); border-radius: 4px;
  background: rgba(240, 200, 150, 0.04);
  transition: border-color .25s ease, background .25s ease;
  text-align: center;
}
.quiz-upload-zone:hover,
.quiz-upload-zone.is-dragover {
  border-color: var(--copper-bright);
  background: rgba(240, 200, 150, 0.09);
}
.quiz-upload-glyph { font-family: serif; font-size: 30px; color: var(--copper-bright); line-height: 1; }
.quiz-upload-glyph.loader-spin { animation: loader-spin 1.6s linear infinite; }
.quiz-upload-title { color: var(--ink); font-size: 16px; }
.quiz-upload-hint { color: var(--ink-muted); font-size: 13px; }
.quiz-upload-loader {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 38px 24px; border: 1px solid var(--copper-deep); border-radius: 4px;
}
.quiz-upload-cancel,
.quiz-upload-replace {
  background: none; border: none; cursor: pointer;
  color: var(--copper); font-size: 13px; text-decoration: underline; padding: 4px 8px;
}
.quiz-upload-cancel:hover,
.quiz-upload-replace:hover { color: var(--copper-bright); }
.quiz-upload-preview {
  display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 18px 0;
}
.quiz-upload-photo {
  width: 150px; height: 150px; border-radius: 50%;
  background-size: cover; background-position: center;
  border: 2px solid var(--copper); box-shadow: 0 0 0 4px rgba(240,200,150,0.08);
}

/* ─────────── toast + pay loading ─────────── */
.nk-toast {
  position: fixed; left: 50%; bottom: 30px; transform: translateX(-50%) translateY(20px);
  max-width: 90vw; z-index: 9999; opacity: 0; pointer-events: none;
  background: #1a1008; color: var(--ink); border: 1px solid var(--copper-deep);
  border-radius: 4px; padding: 13px 20px; font-size: 14px; line-height: 1.4;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
  transition: opacity .3s ease, transform .3s ease;
}
.nk-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.cta.is-loading { opacity: 0.6; pointer-events: none; }

/* ─────────── Quiz: city searchable select ─────────── */
.quiz-city { position: relative; }
.quiz-city-list {
  display: none; position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 30;
  background: #1a1008; border: 1px solid var(--copper-deep); border-radius: 4px;
  max-height: 260px; overflow-y: auto; box-shadow: 0 16px 50px rgba(0,0,0,0.55);
}
.quiz-city-list.open { display: block; }
.quiz-city-opt { padding: 11px 16px; cursor: pointer; color: var(--ink); font-size: 15px; transition: background .15s ease; }
.quiz-city-opt:hover { background: rgba(240,200,150,0.10); color: var(--copper-bright); }
.quiz-city-opt + .quiz-city-opt { border-top: 1px solid rgba(212,165,116,0.12); }
