/* Wedding Band Mastery — Brand Tokens
   Locked to cover + logo palette. Do not add new tokens without updating
   BRAND_NOTES.md and CLAUDE.md.
*/

:root {
  /* Colors */
  --ink-black: #07000e;
  --ink-deep: #14022c;
  --ink-purple: #280953;
  --bone: #f2ebdc;
  --bone-bright: #fcf9f3;
  --accent-pink: #ff0d6e;
  --accent-pink-dim: #d20a5a;
  --star-yellow: #ffc700;

  /* Surfaces */
  --surface-0: var(--ink-black);
  --surface-1: #0d0518;
  --surface-2: #13082a;
  --surface-3: #1c0e3a;
  --surface-card: rgba(255, 255, 255, 0.035);
  --surface-card-hover: rgba(255, 255, 255, 0.06);
  --divider: rgba(242, 235, 220, 0.08);
  --divider-strong: rgba(242, 235, 220, 0.16);

  /* Text */
  --text-primary: var(--bone-bright);
  --text-secondary: rgba(242, 235, 220, 0.72);
  --text-muted: rgba(242, 235, 220, 0.48);

  /* Typography */
  --font-display: "Big Shoulders Display", "Work Sans", system-ui, sans-serif;
  --font-editorial: "Instrument Serif", Georgia, serif;
  --font-body: "Work Sans", system-ui, -apple-system, sans-serif;

  /* Scale */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 36px;

  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 20px 48px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 40px 90px rgba(0, 0, 0, 0.6);
  --shadow-pink: 0 20px 60px rgba(255, 13, 110, 0.35);
  --shadow-book: 0 50px 90px rgba(0, 0, 0, 0.65), 0 12px 30px rgba(255, 13, 110, 0.18);

  --max-w: 1240px;
  --max-w-narrow: 920px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--surface-0);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

/* The full-page dark gradient was removed — dark mood is scoped to .dark-section only */

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

/* Typography */
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.02;
  color: var(--text-primary);
  margin: 0;
}

h1 { font-size: clamp(44px, 7vw, 96px); text-transform: uppercase; }
h2 { font-size: clamp(36px, 5vw, 68px); text-transform: uppercase; }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: clamp(18px, 2vw, 22px); }

.editorial {
  font-family: var(--font-editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--bone);
}

p { margin: 0 0 1em; color: var(--text-secondary); }

.kicker {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-pink);
}

.kicker-bone { color: var(--bone); }

/* Utilities */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.container-narrow { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; z-index: 1; }
.section-tight { padding: clamp(60px, 7vw, 100px) 0; position: relative; z-index: 1; }

.pink { color: var(--accent-pink); }
.yellow { color: var(--star-yellow); }
.bone { color: var(--bone); }
.bone-bright { color: var(--bone-bright); }
.muted { color: var(--text-muted); }

/* Asterism */
.asterism {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-pink);
  font-size: 14px;
  letter-spacing: 0.2em;
  gap: 6px;
}
.asterism::before, .asterism::after {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-pink), transparent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  padding: 18px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-pink);
  color: var(--bone-bright);
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 28px 70px rgba(255, 13, 110, 0.5); background: #ff2d82; }

.btn-ghost {
  background: transparent;
  color: var(--bone-bright);
  border: 1px solid var(--divider-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.05); border-color: var(--bone); }

.btn-xl { padding: 22px 42px; font-size: 15px; }

/* Cards */
.card {
  background: var(--surface-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.card:hover { border-color: var(--divider-strong); background: var(--surface-card-hover); }

/* Stars */
.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--star-yellow);
  font-size: 16px;
  letter-spacing: 1px;
}

/* Dividers */
.hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--divider-strong) 30%, var(--divider-strong) 70%, transparent);
  width: 100%;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 0, 14, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--divider);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav-logo { height: 32px; opacity: 0.95; }
.nav-cta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent-pink);
  color: var(--bone-bright);
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 .line-pink { color: var(--accent-pink); display: inline-block; }
.hero .subhead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
  margin-top: 24px;
  max-width: 560px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
}
.hero-price-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 14px;
}
.hero-price-strip .strike { text-decoration: line-through; opacity: 0.5; }

.hero-cover-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
}
.hero-cover-wrap::before {
  content: "";
  position: absolute;
  inset: 10% 5% -10% 5%;
  background: radial-gradient(closest-side, rgba(255, 13, 110, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
}
.hero-cover {
  position: relative;
  z-index: 1;
  max-width: 420px;
  width: 100%;
  border-radius: 4px;
  box-shadow: var(--shadow-book);
  transform: rotate(-3deg);
  transition: transform 400ms ease;
}
.hero-cover:hover { transform: rotate(0deg) translateY(-6px); }

.badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--divider-strong);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bone);
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-pink); }

/* Trust strip */
.trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  background: rgba(7, 0, 14, 0.3);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.05em;
}

/* Section headers */
.section-header { text-align: center; max-width: 780px; margin: 0 auto clamp(48px, 6vw, 80px); }
.section-header .kicker { margin-bottom: 16px; display: inline-block; }
.section-header h2 { margin-bottom: 20px; }
.section-header p { color: var(--text-secondary); font-size: 19px; max-width: 640px; margin: 0 auto; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1020px) { .grid-5, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

/* Secret cards */
.secret-card {
  position: relative;
  padding: 36px 28px 28px;
  background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface-1) 100%);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.secret-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255, 13, 110, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 300ms ease;
}
.secret-card:hover::before { opacity: 1; }
.secret-number {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 72px;
  line-height: 0.9;
  color: var(--accent-pink);
  margin-bottom: 12px;
}
.secret-card h3 { font-size: 22px; margin-bottom: 14px; line-height: 1.15; }
.secret-card p { font-size: 15px; color: var(--text-secondary); margin: 0; }

/* Offer stack */
.offer {
  background: linear-gradient(180deg, var(--surface-3) 0%, var(--surface-1) 100%);
  border: 1px solid var(--divider-strong);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 64px);
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255, 13, 110, 0.25), transparent 70%);
  filter: blur(40px);
}
.offer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; gap: 40px; } }

.offer-item {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--divider);
}
.offer-item:last-child { border-bottom: none; }
.offer-check {
  width: 22px; height: 22px;
  background: var(--accent-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone-bright);
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
}
.offer-item-label { font-weight: 600; color: var(--bone-bright); font-size: 15px; }
.offer-item-sub { color: var(--text-muted); font-size: 12px; letter-spacing: 0.04em; }
.offer-item-price { font-family: var(--font-editorial); font-style: italic; color: var(--bone); font-size: 16px; }
.offer-item-price .strike { text-decoration: line-through; opacity: 0.5; }

.price-stack {
  text-align: center;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  border: 1px solid var(--divider-strong);
}
.price-total-label { color: var(--text-muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; }
.price-total {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--bone);
  opacity: 0.45;
  text-decoration: line-through;
  font-size: 28px;
  margin: 8px 0 4px;
}
.price-today {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-pink);
  font-size: 88px;
  line-height: 1;
  margin: 12px 0;
  letter-spacing: -0.02em;
}
.price-today sup { font-size: 36px; vertical-align: top; position: relative; top: 14px; margin-right: 6px; }
.price-once { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.16em; font-size: 11px; }

/* Guarantee block */
.guarantee {
  background: linear-gradient(120deg, rgba(255, 199, 0, 0.08), rgba(255, 13, 110, 0.08));
  border: 1px solid rgba(255, 199, 0, 0.25);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 760px) { .guarantee { grid-template-columns: 1fr; text-align: center; justify-items: center; } }
.guarantee-seal {
  width: 180px; height: 180px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 199, 0, 0.45), transparent 60%),
    conic-gradient(from 0deg, var(--star-yellow) 0%, var(--accent-pink) 25%, var(--star-yellow) 50%, var(--accent-pink) 75%, var(--star-yellow) 100%);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.guarantee-seal-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--ink-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--star-yellow);
  text-align: center;
  padding: 16px;
}
.guarantee-seal-inner .big { font-family: var(--font-display); font-size: 48px; line-height: 1; }
.guarantee-seal-inner .small { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone); margin-top: 6px; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--divider);
  padding: 24px 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--bone-bright);
  cursor: pointer;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--divider-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 18px;
  transition: transform 200ms ease, background 200ms ease;
  flex-shrink: 0;
}
details[open] .faq-toggle { background: var(--accent-pink); border-color: var(--accent-pink); transform: rotate(45deg); }
.faq-answer {
  padding-top: 16px;
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 720px;
}

/* Testimonials */
.testimonial {
  padding: 32px;
  background: var(--surface-card);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial-text {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--bone-bright);
  margin: 14px 0 22px;
}
.testimonial-meta { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-pink), var(--ink-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone-bright);
  font-weight: 700;
  font-size: 16px;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--bone-bright); }
.testimonial-role { font-size: 12px; color: var(--text-muted); letter-spacing: 0.04em; }

/* Interior pages gallery */
.interior-gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: end;
  justify-items: center;
}
@media (max-width: 900px) { .interior-gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
.interior-page {
  border-radius: 6px;
  box-shadow: var(--shadow-md);
  width: 100%;
  background: var(--bone);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.interior-page:nth-child(odd) { transform: rotate(-2deg); }
.interior-page:nth-child(even) { transform: rotate(2deg); }
.interior-page:hover { transform: rotate(0deg) translateY(-10px) scale(1.03); box-shadow: var(--shadow-lg); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.credentials {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px;
}
.cred-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--divider-strong);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone);
  font-weight: 600;
}

/* Final CTA */
.final-cta {
  padding: clamp(60px, 8vw, 120px) 0;
  text-align: center;
  background:
    radial-gradient(closest-side at 50% 30%, rgba(255, 13, 110, 0.35), transparent 65%),
    var(--ink-black);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}
.final-cta .mini-cover {
  width: 200px; margin: 0 auto 36px; box-shadow: var(--shadow-book); border-radius: 4px;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-inner {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: center;
}
.footer a:hover { color: var(--bone); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* Sticky mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 40;
  background: var(--accent-pink);
  color: var(--bone-bright);
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 14px;
  box-shadow: var(--shadow-pink);
}
@media (max-width: 760px) { .mobile-cta { display: block; } }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp 700ms ease-out both; }
.reveal-delay-1 { animation-delay: 100ms; }
.reveal-delay-2 { animation-delay: 200ms; }
.reveal-delay-3 { animation-delay: 300ms; }

/* Checkout-specific */
.checkout-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 0;
}
@media (max-width: 980px) {
  .checkout-shell { grid-template-columns: 1fr; }
  .checkout-summary { order: -1; }
}
.checkout-main {
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 72px);
}
.checkout-summary {
  background: var(--surface-1);
  border-left: 1px solid var(--divider);
  padding: clamp(40px, 6vw, 64px) clamp(28px, 4vw, 48px);
}

.field-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 700;
}
.field-input {
  width: 100%;
  padding: 16px 18px;
  background: var(--surface-card);
  border: 1px solid var(--divider-strong);
  border-radius: var(--radius-sm);
  color: var(--bone-bright);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 200ms ease, background 200ms ease;
}
.field-input:focus { outline: none; border-color: var(--accent-pink); background: var(--surface-2); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.bump {
  display: flex;
  gap: 16px;
  padding: 22px;
  border: 2px dashed rgba(255, 199, 0, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 199, 0, 0.04);
  cursor: pointer;
  transition: all 200ms ease;
  align-items: flex-start;
}
.bump:hover { border-color: rgba(255, 199, 0, 0.6); }
.bump input[type="checkbox"] { margin-top: 4px; width: 20px; height: 20px; accent-color: var(--accent-pink); flex-shrink: 0; }
.bump-headline { font-weight: 700; color: var(--bone-bright); font-size: 15px; margin-bottom: 6px; display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; }
.bump-headline .yellow { color: var(--star-yellow); letter-spacing: 0.08em; font-size: 11px; text-transform: uppercase; }
.bump-sub { color: var(--text-secondary); font-size: 14px; margin: 0; }
.bump-price { margin-top: 8px; font-family: var(--font-editorial); font-style: italic; color: var(--accent-pink); font-size: 15px; }
.bump-price .strike { text-decoration: line-through; color: var(--text-muted); margin-right: 8px; }

.summary-card {
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: var(--surface-card);
}
.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 14px;
}
.summary-item:last-child { border-bottom: none; }
.summary-item .label { color: var(--bone); font-weight: 600; }
.summary-item .price { color: var(--bone-bright); font-family: var(--font-editorial); font-style: italic; }
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--divider-strong);
}
.summary-total-amount { font-family: var(--font-display); font-size: 40px; color: var(--accent-pink); }

.trust-mini {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── Light sections (cream/paper) ───────────────────────────────────────── */
html, body {
  background: #faf7f2; /* warm paper — default between dark sections */
}

.section-light {
  background: #faf7f2;
  position: relative;
  z-index: 1;
}
.section-light-alt {
  background: #ffffff;
  position: relative;
  z-index: 1;
}

/* Text on light */
.section-light h1, .section-light h2, .section-light h3, .section-light h4,
.section-light-alt h1, .section-light-alt h2, .section-light-alt h3, .section-light-alt h4 {
  color: var(--ink-black);
}
.section-light p, .section-light-alt p {
  color: rgba(7, 0, 14, 0.65);
}
.section-light .editorial, .section-light-alt .editorial {
  color: rgba(7, 0, 14, 0.75);
}
.section-light .muted, .section-light-alt .muted {
  color: rgba(7, 0, 14, 0.42);
}
.section-light .section-header p, .section-light-alt .section-header p {
  color: rgba(7, 0, 14, 0.62);
}
.section-light .bone-bright, .section-light-alt .bone-bright {
  color: var(--ink-black);
}

/* Cards on light */
.section-light .card, .section-light-alt .card {
  background: #ffffff;
  border-color: rgba(7, 0, 14, 0.09);
  box-shadow: 0 2px 24px rgba(7, 0, 14, 0.07);
}
.section-light .card:hover, .section-light-alt .card:hover {
  background: #ffffff;
  border-color: rgba(7, 0, 14, 0.18);
  box-shadow: 0 6px 36px rgba(7, 0, 14, 0.12);
  transform: translateY(-2px);
}

/* Secret cards on light */
.section-light .secret-card, .section-light-alt .secret-card {
  background: #ffffff;
  border-color: rgba(7, 0, 14, 0.09);
  box-shadow: 0 2px 24px rgba(7, 0, 14, 0.07);
  background-image: none;
}
.section-light .secret-card h3, .section-light-alt .secret-card h3 { color: var(--ink-black); }
.section-light .secret-card p, .section-light-alt .secret-card p { color: rgba(7, 0, 14, 0.62); }
.section-light .secret-card::before, .section-light-alt .secret-card::before {
  background: radial-gradient(circle at 100% 0%, rgba(255, 13, 110, 0.09), transparent 60%);
}

/* Testimonials on light */
.section-light .testimonial, .section-light-alt .testimonial {
  background: #ffffff;
  border-color: rgba(7, 0, 14, 0.09);
  box-shadow: 0 2px 20px rgba(7, 0, 14, 0.06);
}
.section-light .testimonial-text, .section-light-alt .testimonial-text { color: var(--ink-black); }
.section-light .testimonial-name, .section-light-alt .testimonial-name { color: var(--ink-black); }
.section-light .testimonial-role, .section-light-alt .testimonial-role { color: rgba(7, 0, 14, 0.5); }

/* FAQ on light */
.section-light .faq-item, .section-light-alt .faq-item { border-bottom-color: rgba(7, 0, 14, 0.1); }
.section-light .faq-question, .section-light-alt .faq-question { color: var(--ink-black); }
.section-light .faq-toggle, .section-light-alt .faq-toggle {
  border-color: rgba(7, 0, 14, 0.18);
  color: var(--ink-black);
}
.section-light .faq-answer, .section-light-alt .faq-answer { color: rgba(7, 0, 14, 0.62); }

/* Misc on light */
.section-light .badge, .section-light-alt .badge {
  border-color: rgba(7, 0, 14, 0.14);
  color: rgba(7, 0, 14, 0.75);
}
.section-light .badge-dot, .section-light-alt .badge-dot { background: var(--accent-pink); }
.section-light .cred-chip, .section-light-alt .cred-chip {
  border-color: rgba(7, 0, 14, 0.14);
  color: rgba(7, 0, 14, 0.75);
}
.section-light .asterism, .section-light-alt .asterism { color: var(--accent-pink); }
.section-light .asterism::before, .section-light .asterism::after,
.section-light-alt .asterism::before, .section-light-alt .asterism::after {
  background: linear-gradient(90deg, transparent, rgba(7,0,14,0.15), transparent);
}
.section-light .hairline, .section-light-alt .hairline {
  background: linear-gradient(90deg, transparent, rgba(7,0,14,.1) 30%, rgba(7,0,14,.1) 70%, transparent);
}

/* Interior page tilt — looks better on cream */
.section-light .interior-page, .section-light-alt .interior-page {
  box-shadow: 0 8px 40px rgba(7,0,14,.18), 0 2px 8px rgba(7,0,14,.12);
}

/* Dark section overrides (hero, device mockup, five-secrets, offer, final CTA) */
.dark-section {
  background: var(--ink-black);
  position: relative;
  z-index: 1;
}
.dark-section h1, .dark-section h2, .dark-section h3, .dark-section h4 { color: var(--bone-bright); }
.dark-section p { color: var(--text-secondary); }

/* Guarantee block on light bg */
.section-light .guarantee, .section-light-alt .guarantee {
  background: linear-gradient(120deg, rgba(255,199,0,.06), rgba(255,13,110,.05));
  border-color: rgba(255,199,0,.3);
}
.section-light .guarantee h3, .section-light-alt .guarantee h3 { color: var(--ink-black); }
.section-light .guarantee p, .section-light-alt .guarantee p { color: rgba(7,0,14,.65); }
.section-light .guarantee-seal-inner, .section-light-alt .guarantee-seal-inner {
  background: var(--ink-black);
}

