/* ================================================================
   BOLLSEN Life+ — How to Sleep with a Snoring Partner
   Aesthetic: Art-Deco Geometric | Bodoni Moda + EB Garamond
   Palette: Deep Midnight #1B2535 · Cream Paper #F2EBDC · Gold #C9A96A
   ================================================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --midnight:    #1B2535;
  --midnight-2:  #14202D;
  --cream:       #F2EBDC;
  --cream-2:     #F5EFE0;
  --gold:        #C9A96A;
  --gold-2:      #D6B97A;
  --rose:        #C09590;
  --rose-light:  #DDB8B4;
  --ink:         #2C3A4A;
  --ink-light:   #4A5568;

  --font-display: 'Bodoni Moda', 'Times New Roman', serif;
  --font-body:    'EB Garamond', 'Garamond', 'Georgia', serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  --max-body:     70ch;
  --max-wide:     1100px;
  --gutter:       clamp(1rem, 5vw, 3rem);

  --radius-sm:    3px;
  --radius-md:    6px;

  --transition:   0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--gold-2); }

/* ── TYPOGRAPHY ── */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--midnight);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  font-style: normal;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.25rem;
  max-width: var(--max-body);
}

p:last-child { margin-bottom: 0; }

strong { font-weight: 700; color: var(--midnight); }
em     { font-style: italic; color: var(--ink-light); }

/* ── LAYOUT HELPERS ── */
.container {
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.body-column {
  max-width: var(--max-body);
  margin: 0 auto;
}

/* ── MASTHEAD ── */
.masthead {
  background: var(--midnight-2);
  color: var(--gold);
  text-align: center;
  padding: 0.55rem var(--gutter);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--gold);
}

.masthead-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.masthead-brand {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.masthead-sep {
  color: var(--gold);
  opacity: 0.4;
  font-size: 0.65rem;
}

.masthead-issue {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

/* ── PRESS BAR ── */
.press-bar {
  background: var(--midnight);
  color: var(--cream);
  padding: 0.6rem var(--gutter);
  text-align: center;
  border-bottom: 1px solid rgba(201,169,106,0.25);
}

.press-bar-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-right: 0.75rem;
}

.press-bar-items {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.press-bar-item {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.85;
}

.press-bar-dot {
  color: var(--gold);
  opacity: 0.4;
  font-size: 0.5rem;
}

/* ── HERO SECTION ── */
.hero {
  background: var(--midnight);
  color: var(--cream);
  padding: 3.5rem var(--gutter) 3rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(201,169,106,0.03) 0px,
    rgba(201,169,106,0.03) 1px,
    transparent 1px,
    transparent 20px
  );
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr 420px;
    align-items: start;
    gap: 3rem;
  }
}

/* Kicker */
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--gold);
}

/* H1 */
.hero h1 {
  color: var(--cream);
  margin-bottom: 1.25rem;
}

/* Subhead */
.hero-subhead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(242,235,220,0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 58ch;
}

/* Byline */
.byline-strip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.byline-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--midnight);
  flex-shrink: 0;
}

.byline-text {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  line-height: 1.5;
}

.byline-name {
  color: var(--gold);
  opacity: 1;
  font-weight: 600;
}

/* Trust pills */
.trust-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.trust-pill {
  background: rgba(201,169,106,0.12);
  border: 1px solid rgba(201,169,106,0.35);
  border-radius: 2px;
  padding: 0.3rem 0.65rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.trust-pill.primary {
  background: rgba(201,169,106,0.2);
  border-color: var(--gold);
}

/* Hero CTA */
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--midnight-2);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid var(--gold);
  transition: var(--transition);
  cursor: pointer;
  line-height: 1;
}

.cta-btn:hover {
  background: var(--gold-2);
  border-color: var(--gold-2);
  color: var(--midnight-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,169,106,0.35);
}

.cta-btn.secondary {
  background: transparent;
  color: var(--gold);
  border-color: rgba(201,169,106,0.5);
  font-size: 0.8rem;
}

.cta-btn.secondary:hover {
  background: rgba(201,169,106,0.1);
  border-color: var(--gold);
  color: var(--gold-2);
  transform: none;
  box-shadow: none;
}

.price-anchor {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.55;
}

/* ── HERO PROOF ARTIFACT (Art-Deco SVG Diagram) ── */
.hero-diagram {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,106,0.25);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.diagram-title {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 0.75rem;
  text-align: center;
}

.diagram-svg {
  width: 100%;
  max-width: 380px;
}

.diagram-caption {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.45;
  margin-top: 0.75rem;
  text-align: center;
  line-height: 1.4;
}

/* ── TOC (Table of Contents) ── */
.toc-section {
  background: var(--midnight);
  padding: 2.5rem var(--gutter);
  border-bottom: 2px solid var(--gold);
}

.toc-inner {
  max-width: var(--max-wide);
  margin: 0 auto;
}

.toc-header {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: var(--transition);
}

.toc-item:hover {
  background: rgba(201,169,106,0.08);
}

.toc-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.05em;
  width: 2.2rem;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.toc-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.3;
}

/* ── INTRO SECTION ── */
.intro-section {
  padding: 3rem var(--gutter);
  background: var(--cream);
}

.intro-section .body-column {
  max-width: var(--max-body);
}

.intro-section p {
  font-size: 1.08rem;
  line-height: 1.7;
}

.intro-section p:first-child {
  font-size: 1.18rem;
  font-style: italic;
  color: var(--ink-light);
}

/* ── TACTIC SECTIONS ── */
.tactic-section {
  padding: 3rem var(--gutter) 2rem;
  background: var(--cream);
  position: relative;
}

.tactic-section:nth-child(even) {
  background: var(--cream-2);
}

/* Chevron / Art-Deco divider */
.tactic-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tactic-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--midnight);
  white-space: nowrap;
}

.tactic-chevron-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,169,106,0.15) 100%);
  position: relative;
}

.tactic-chevron-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold);
  border-top: 1.5px solid var(--gold);
  transform: translateY(-50%) rotate(45deg);
  opacity: 0.5;
}

.tactic-body-inner {
  max-width: var(--max-body);
  margin: 0 auto;
}

.tactic-body-inner h2 {
  color: var(--midnight);
  margin-bottom: 1.25rem;
}

.tactic-body-inner p {
  color: var(--ink);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.tactic-body-inner a {
  color: var(--midnight);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  text-decoration: none;
  transition: var(--transition);
}

.tactic-body-inner a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold-2);
}

/* Villain section — 2AM Foam Collapse — highlighted */
.tactic-section.villain {
  background: var(--midnight);
  color: var(--cream);
}

.tactic-section.villain .tactic-label {
  color: var(--gold);
}

.tactic-section.villain .tactic-chevron-line {
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201,169,106,0.15) 100%);
}

.tactic-section.villain h2 {
  color: var(--cream);
}

.tactic-section.villain p {
  color: rgba(242,235,220,0.85);
}

.tactic-section.villain strong {
  color: var(--gold);
}

.tactic-section.villain a {
  color: var(--gold);
  border-bottom-color: rgba(201,169,106,0.5);
}

.tactic-section.villain a:hover {
  color: var(--gold-2);
}

/* Solution section — BOLLSEN — highlighted gold */
.tactic-section.solution {
  background: var(--cream);
  border-left: 4px solid var(--gold);
}

@media (min-width: 768px) {
  .tactic-section.solution {
    border-left: 6px solid var(--gold);
  }
}

.tactic-section.solution h2 {
  color: var(--midnight);
}

/* Inline evidence callout */
.evidence-callout {
  background: var(--midnight);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.evidence-callout-icon {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  padding-top: 0.1rem;
}

.evidence-callout-body {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cream);
  opacity: 0.85;
  line-height: 1.5;
}

.evidence-callout-body strong {
  color: var(--gold);
  font-weight: 600;
}

/* Inline CTA within tactic */
.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--midnight-2);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-sm);
  margin-top: 0.75rem;
  display: inline-flex;
  transition: var(--transition);
}

.inline-cta:hover {
  background: var(--gold-2);
  color: var(--midnight-2);
  transform: translateY(-1px);
}

/* ── PRODUCT CARDS ── */
.product-section {
  padding: 3.5rem var(--gutter);
  background: var(--midnight);
}

.product-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.product-section-header h2 {
  color: var(--cream);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}

.product-section-header p {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin: 0 auto;
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .product-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,106,0.25);
  border-radius: var(--radius-sm);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}

.product-card:hover {
  border-color: var(--gold);
  background: rgba(201,169,106,0.06);
}

.product-card.featured {
  border-color: var(--gold);
  background: rgba(201,169,106,0.08);
  position: relative;
}

.product-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--gold);
  color: var(--midnight-2);
  font-family: var(--font-mono);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  align-self: flex-start;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin: 0;
}

.product-card-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(242,235,220,0.65);
  line-height: 1.4;
  margin: 0;
}

.product-card-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.product-card-price-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.5;
  margin-top: 0.2rem;
}

.product-card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-card-features li {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(242,235,220,0.8);
  line-height: 1.4;
  padding-left: 1rem;
  position: relative;
}

.product-card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
  font-size: 0.75rem;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 3.5rem var(--gutter);
  background: var(--cream-2);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.testimonials-header h2 {
  color: var(--midnight);
  margin-bottom: 0.5rem;
}

.testimonials-header p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--cream);
  border: 1px solid rgba(27,37,53,0.12);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.testimonial-quote {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  flex: 1;
}

.testimonial-author {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.testimonials-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  padding: 1rem;
  border-top: 1px solid rgba(27,37,53,0.1);
}

.aggregate-stat {
  text-align: center;
}

.aggregate-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--midnight);
}

.aggregate-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ── FAQ ── */
.faq-section {
  padding: 3.5rem var(--gutter);
  background: var(--cream);
}

.faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-header h2 {
  color: var(--midnight);
}

.faq-list {
  max-width: var(--max-body);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(27,37,53,0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(27,37,53,0.12);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover .faq-question-text {
  color: var(--gold);
}

.faq-question-text {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--midnight);
  line-height: 1.4;
  transition: var(--transition);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
  color: var(--gold);
  font-size: 0.75rem;
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--midnight);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s;
}

.faq-item.open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 0 1.25rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.7;
}

/* ── FINAL CTA SECTION ── */
.cta-section {
  padding: 4rem var(--gutter);
  background: var(--midnight-2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(201,169,106,0.03) 0px,
    rgba(201,169,106,0.03) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}

.cta-section-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.cta-section-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 1.5rem;
}

.cta-section-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(242,235,220,0.75);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-section-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 480px) {
  .cta-section-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

.cta-guarantee {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.4;
}

/* ── FOOTER DISCLAIMER ── */
.footer {
  background: var(--midnight);
  border-top: 1px solid rgba(201,169,106,0.2);
  padding: 2rem var(--gutter);
}

.footer-disclaimer {
  max-width: var(--max-wide);
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  color: var(--cream);
  opacity: 0.35;
  line-height: 1.6;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.5;
  text-align: center;
  margin-bottom: 1rem;
}

/* ── MOBILE STICKY CTA ── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--midnight-2);
  border-top: 1px solid var(--gold);
  padding: 0.75rem var(--gutter);
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(20,32,45,0.5);
}

.mobile-sticky-cta.visible {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }
}

.mobile-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  max-width: var(--max-wide);
  margin: 0 auto;
}

.mobile-sticky-text {
  flex: 1;
}

.mobile-sticky-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
}

.mobile-sticky-price {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.mobile-sticky-cta .cta-btn {
  font-size: 0.72rem;
  padding: 0.65rem 1.1rem;
  white-space: nowrap;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── UTILITY ── */
.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;
}

/* ── RESPONSIVE ADJUSTMENTS ── */
@media (max-width: 768px) {
  .hero {
    padding: 2.5rem var(--gutter) 2rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 7vw, 2.4rem);
  }

  .hero-subhead {
    font-size: 0.9rem;
  }

  .toc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tactic-section {
    padding: 2rem var(--gutter) 1.5rem;
  }

  .product-section {
    padding: 2.5rem var(--gutter);
  }

  .cta-section {
    padding: 2.5rem var(--gutter);
  }
}

@media (max-width: 420px) {
  .toc-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .trust-pills {
    gap: 0.35rem;
  }

  .trust-pill {
    font-size: 0.56rem;
    padding: 0.25rem 0.5rem;
  }
}

/* ── ART-DECO ORNAMENT ── */
.art-deco-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

.art-deco-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
  max-width: 120px;
}

.art-deco-divider-gem {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  opacity: 0.5;
}

.art-deco-divider-gem-lg {
  width: 12px;
  height: 12px;
  background: transparent;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.4;
}
