/* ═══════════════════════════════════════════════════════
   SPIRIT OF THE POINTS — Landing Page Styles
   Palette:
     Deep Indigo  #1D2438
     Soft Sand    #F3E9D8
     Stone Blue   #6F8798
     Soft Gold    #C7A25A
     Muted Indigo Gray  #4A5568
═══════════════════════════════════════════════════════ */

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

:root {
  --indigo: #1D2438;
  --indigo-dark: #161c2d;
  --sand: #F3E9D8;
  --sand-dark: #e8d9c0;
  --stone: #6F8798;
  --gold: #C7A25A;
  --gold-light: #d4b47a;
  --gold-dim: rgba(199,162,90,0.35);
  --muted: #4A5568;
  --muted-sand: #8a7d6a;
  --font-serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --font-sc: 'Cormorant SC', 'Cormorant Garamond', Georgia, serif;
  --font-cinzel: 'Cinzel', Georgia, serif;
  --transition: 0.4s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.8;
  color: var(--indigo);
  background: var(--sand);
  overflow-x: hidden;
}

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

/* ── Typography ── */
h1, h2, h3 { font-family: var(--font-cinzel); font-weight: 600; }

.section-title {
  font-family: var(--font-cinzel);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.section-title-indigo { color: var(--indigo); }
.section-title-sand { color: var(--sand); }
.section-title-gold { color: var(--gold); }

.section-eyebrow-gold {
  font-family: var(--font-sc);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}
.section-eyebrow-muted {
  font-family: var(--font-sc);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--muted-sand);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: block;
}

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

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: 780px;
}

.section {
  padding: 6rem 2rem;
}

.section-indigo { background: var(--indigo); }
.section-sand { background: var(--sand); }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-cinzel);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--indigo);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-sm { padding: 0.65rem 1.6rem; font-size: 1rem; }
.btn-large { padding: 1.3rem 3.5rem; font-size: 1.05rem; }

/* ── Gold Divider ── */
.gold-divider {
  text-align: center;
  margin: 2.5rem auto;
  border: none;
  line-height: 0;
}
.gold-divider img {
  max-width: 320px;
  margin: 0 auto;
  opacity: 0.9;
  display: block;
  border: none;
  outline: none;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 20, 35, 0.45);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(199,162,90,0.25);
  box-shadow: 0 1px 30px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
  margin-right: 1.5rem;
}
.nav-link {
  font-family: var(--font-cinzel);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--sand);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}
.nav-link:hover {
  opacity: 1;
  color: var(--gold);
}
.nav-logo-title {
  font-family: var(--font-cinzel);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--sand);
}
.nav-logo-sub {
  font-family: var(--font-cinzel);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
  opacity: 0.85;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 6rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 30%, rgba(111,135,152,0.08) 0%, transparent 60%), var(--indigo);
}

/* Starfield */
.hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 10% 15%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 25% 40%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 40% 8%, rgba(255,255,255,1.0) 0%, transparent 100%),
    radial-gradient(2px 2px at 55% 30%, rgba(255,255,255,0.85) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 70% 12%, rgba(255,255,255,0.9) 0%, transparent 100%),
    radial-gradient(2px 2px at 85% 25%, rgba(255,255,255,0.75) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 15% 60%, rgba(255,255,255,0.65) 0%, transparent 100%),
    radial-gradient(2px 2px at 90% 55%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 70%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(2px 2px at 60% 80%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 78% 68%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(2px 2px at 5% 85%, rgba(255,255,255,0.75) 0%, transparent 100%),
    radial-gradient(2.5px 2.5px at 48% 55%, rgba(255,255,255,0.85) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 92% 80%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(2px 2px at 20% 90%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 33% 22%, rgba(255,255,255,0.65) 0%, transparent 100%),
    radial-gradient(2px 2px at 67% 45%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 82% 10%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(2px 2px at 12% 35%, rgba(255,255,255,0.75) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 50% 65%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(2px 2px at 95% 35%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(3px 3px at 73% 88%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 28% 75%, rgba(255,255,255,0.65) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 44% 18%, rgba(255,255,255,0.8) 0%, transparent 100%),
    radial-gradient(2px 2px at 8% 50%, rgba(255,255,255,0.6) 0%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--font-sc);
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  width: fit-content;
}
/* Center the ornament and 'of the' relative to the title block */
.hero-title-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  transform: translateX(-26.8px);
}
.hero-title-spirit {
  font-family: var(--font-cinzel);
  font-size: clamp(3.8rem, 7.5vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--sand);
  line-height: 1;
}
.hero-title-ornament {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0.3rem auto;
  line-height: 0;
  border: none;
  text-align: center;
}
.hero-title-ornament img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  /* The logo image has a white background in the lower portion — mix-blend-mode makes it blend into the dark hero */
}
.hero-title-of {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.1rem;
}
.hero-title-points {
  font-family: var(--font-cinzel);
  font-size: clamp(3.8rem, 7.5vw, 6.5rem);
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--sand);
  line-height: 1;
}

.hero-tagline {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--gold);
  opacity: 1;
  margin-bottom: 1rem;
  font-weight: 300;
}
.hero-sub {
  color: rgba(243,233,216,0.75);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-headline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.5;
  max-width: 480px;
  margin-bottom: 0.6rem;
}
.hero-sub-para {
  color: rgba(243,233,216,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-launch-note {
  margin-top: 1rem;
  font-family: var(--font-sc);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(199,162,90,0.7);
}

/* Hero Product Stack */
.hero-product { position: relative; }
.hero-cards-stack {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 620px;
}
.hero-card {
  position: absolute;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.6s ease;
}
.hero-card-back {
  width: 240px;
  left: -20px;
  transform: rotate(-14deg) translateY(10px);
  z-index: 1;
  filter: brightness(0.65);
}
.hero-card-mid {
  width: 260px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg) translateY(5px);
  z-index: 2;
  filter: brightness(0.82);
}
.hero-card-front {
  width: 285px;
  right: -20px;
  transform: rotate(12deg) translateY(-5px);
  z-index: 3;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6), 0 0 40px rgba(199,162,90,0.08);
}
.hero-book-wrap {
  position: absolute;
  bottom: -10px;
  left: -30px;
  z-index: 0;
}
.hero-book {
  width: 150px;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
  transform: rotate(-12deg);
  filter: brightness(0.75);
}

.hero-cards-stack:hover .hero-card-back { transform: rotate(-18deg) translateY(-8px); }
.hero-cards-stack:hover .hero-card-mid { transform: translateX(-50%) rotate(-2deg) translateY(-8px); }
.hero-cards-stack:hover .hero-card-front { transform: rotate(16deg) translateY(-12px); }



/* ── A WAY BACK ── */
.way-back { text-align: center; }
.way-back .container { padding: 0 2rem; }
.way-back-text { max-width: 680px; margin: 0 auto; }
.lead-italic {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.emphasis-line {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--indigo);
  font-weight: 500;
  margin: 1.5rem 0;
}

/* ── WHY I MADE THIS ── */
.why-made-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-made-text { color: rgba(243,233,216,0.85); }
.why-made-text p { color: rgba(243,233,216,0.78); }
.why-made-bio {
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(243,233,216,0.9) !important;
  margin-bottom: 1.5rem;
}
.point-names {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 1.5rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold-dim);
}
.point-names span {
  font-family: var(--font-cinzel);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}
.closing-line {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--sand) !important;
  margin-top: 1.5rem;
}
.author-sig {
  font-family: var(--font-sc);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold) !important;
  margin-top: 0.5rem;
}

.book-display {
  position: relative;
  display: flex;
  justify-content: center;
}
.book-display img {
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  max-width: 360px;
  width: 100%;
}

/* Why Made This — guidebook cover sizing to match screenshot proportions */
.guidebook-cover-img {
  max-width: 320px;
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(199,162,90,0.08);
  display: block;
  margin: 0 auto;
}
.book-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(199,162,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ── WHAT MAKES THIS DIFFERENT ── */
.different { }
.different-card-img {
  max-width: 420px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 40px rgba(199,162,90,0.08);
  display: block;
  margin: 0 auto;
}
.different-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 2rem;
}
.different-text .lead {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.pull-quote {
  border-left: 2px solid var(--gold);
  padding: 1.2rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.9;
  background: rgba(199,162,90,0.04);
  border-radius: 0 4px 4px 0;
}

/* ── Testimonial ── */
.testimonial-section {
  padding: 5rem 2rem;
}
.testimonial-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  margin: 0;
  padding: 0;
  border: none;
}
.testimonial-quote p {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--indigo);
  margin: 0 0 1.8rem;
}
.testimonial-quote cite {
  display: block;
  font-family: var(--font-sc);
  font-size: 1.16rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-sand);
  font-style: normal;
}
.testimonial-quote cite em {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* ── DIFFERENT section on dark background ── */
.different p,
.different .different-text p {
  color: rgba(243,233,216,0.85);
}
.different-taoist-quote {
  font-family: var(--font-body) !important;
  font-style: italic !important;
  font-size: 1.1rem !important;
  color: var(--gold) !important;
  line-height: 1.65;
  margin-bottom: 0.5rem !important;
}
.different-system-line {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  color: rgba(243,233,216,0.7) !important;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem !important;
  font-style: normal !important;
}
.different .pull-quote {
  border-left: 2px solid var(--gold);
  background: rgba(199,162,90,0.08);
  color: var(--sand);
}
.different .pull-quote cite {
  color: var(--gold);
  font-style: italic;
}
.different .different-text .lead {
  color: rgba(243,233,216,0.7);
}
.different-card-book {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
}
.diff-card-wrap img {
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(29,36,56,0.2);
}
.diff-book-wrap img {
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(29,36,56,0.15);
}

/* ── WHAT'S INSIDE ── */
.whats-inside { text-align: center; }
.inside-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  text-align: center;
}
.inside-list { list-style: none; padding: 0; margin: 0; }
.inside-item {}
.inside-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
}
.inside-icon svg { width: 100%; height: 100%; }
.inside-title {
  font-family: var(--font-cinzel);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  color: var(--indigo);
  margin-bottom: 0.3rem;
}
.inside-label {
  font-family: var(--font-sc);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.inside-desc {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto;
}

/* ── SEE THE DECK ── */
.see-deck { text-align: center; }
.see-deck-intro {
  color: rgba(243,233,216,0.75);
  font-style: italic;
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* Cards Gallery */
.cards-gallery {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.gallery-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 8px;
  overflow: hidden;
}
.gallery-card img {
  width: 220px;
  border-radius: 8px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: width 0.4s ease, box-shadow 0.4s ease;
}
.gallery-card { transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease; }
.gallery-card:hover { transform: translateY(-8px) scale(1.02); }
/* Active (selected) card — lifted and larger */
.gallery-card-active { transform: translateY(-18px); }
.gallery-card-active img { width: 270px; box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 50px rgba(199,162,90,0.15); }
.gallery-card-active:hover { transform: translateY(-22px) scale(1.01); }
/* Non-active cards — no dimming, full opacity */
.cards-gallery.has-active .gallery-card:not(.gallery-card-active) { opacity: 1; }
.cards-gallery.has-active .gallery-card:not(.gallery-card-active):hover { opacity: 1; transform: translateY(-6px); }
.gallery-card-overlay {
  display: none;
}
/* hover overlay removed */
.gallery-card-overlay span {
  font-family: var(--font-sc);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

/* Card Spread */
.card-spread-section {
  margin-bottom: 4rem;
}
.spread-label {
  font-family: var(--font-sc);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: rgba(199,162,90,0.6);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.card-spread {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  position: relative;
  height: 380px;
}
.spread-card {
  position: absolute;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.spread-card-left {
  width: 200px;
  transform: rotate(-12deg) translateX(-120px) translateY(20px);
  z-index: 1;
  filter: brightness(0.75);
}
.spread-card-center {
  width: 230px;
  transform: rotate(0deg);
  z-index: 3;
}
.spread-card-right {
  width: 200px;
  transform: rotate(12deg) translateX(120px) translateY(20px);
  z-index: 2;
  filter: brightness(0.8);
}

/* Guidebook Showcase */
.guidebook-showcase {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}
.guidebook-page-wrap {
  max-width: 380px;
  text-align: center;
}
.guidebook-page-wrap img {
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  width: 100%;
}
.guidebook-caption {
  margin-top: 1rem;
  font-family: var(--font-sc);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(199,162,90,0.65);
  text-transform: uppercase;
}

.see-deck-cta { margin-top: 2rem; }
.see-deck-cta-text {
  font-style: italic;
  color: rgba(243,233,216,0.65);
  margin-bottom: 2rem;
  font-size: 1rem;
}

/* ── GUIDEBOOK SPREAD ── */
.book-spread-wrap {
  margin: 3rem auto 2rem;
  max-width: 860px;  /* wider on desktop for better readability */
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(0);
}
.book-spread-wrap.is-transitioning {
  opacity: 0;
  transform: translateY(-10px);
}
.book-spread-wrap.is-entering {
  opacity: 0;
  transform: translateY(12px);
}

.gb-spread {
  display: flex;
  gap: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05);
  border-radius: 2px;
}

/* Individual page */
.gb-page {
  background: #f7f3ec;
  width: 50%;
  padding: 36px 32px 60px 44px;  /* extra left padding for margin rule; extra bottom for pinned footer */
  position: relative;
  overflow: hidden;
  font-family: 'Cormorant Garamond', serif;
  color: #1a1714;
  display: flex;
  flex-direction: column;
}

/* Aged paper texture */
.gb-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 10%, rgba(180,155,100,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 90% 90%, rgba(140,120,80,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Margin rule — sits in the left padding, clear of text */
.gb-page-left::after {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #c9b99a 15%, #c9b99a 85%, transparent);
  opacity: 0.35;
}

/* Spine shadow */
.gb-spine {
  width: 12px;
  flex-shrink: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.18), rgba(0,0,0,0.06) 40%, rgba(0,0,0,0.06) 60%, rgba(0,0,0,0.18));
  position: relative;
  z-index: 2;
}

/* Header */
.gb-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.gb-point-number {
  display: block;
  font-family: 'Cormorant SC', serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: #b5924a;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gb-title {
  font-family: 'Cormorant SC', serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: #1a1714;
  line-height: 1.2;
  margin-bottom: 4px;
}

.gb-subtitle {
  font-family: 'Cormorant SC', serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: #b5924a;
  margin-bottom: 16px;
}

.gb-title-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.gb-title-rule::before,
.gb-title-rule::after {
  content: '';
  height: 1px;
  width: 55px;
  background: linear-gradient(to right, transparent, #b5924a);
}

.gb-title-rule::after {
  background: linear-gradient(to left, transparent, #b5924a);
}

.gb-diamond {
  width: 5px;
  height: 5px;
  background: #b5924a;
  transform: rotate(45deg);
  opacity: 0.8;
}

/* Body text */
.gb-body {
  font-size: 12px;
  line-height: 1.85;
  color: #3a3530;
  font-weight: 300;
  text-align: justify;
  hyphens: auto;
}

.gb-body p {
  margin-bottom: 1.3em;
}

.gb-body p:first-child::first-letter {
  font-size: 3em;
  float: left;
  line-height: 0.75;
  margin-right: 5px;
  margin-top: 6px;
  color: #b5924a;
  font-weight: 400;
  font-family: 'Cormorant Garamond', serif;
}

.gb-pull-insight {
  font-style: italic;
  font-size: 12px;
  line-height: 1.8;
  color: #1a1714;
  border-left: 2px solid #d4ae72;
  padding-left: 14px;
  margin: 16px 0;
  font-weight: 300;
}

/* Section divider on right page */
.gb-section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0 14px;
}

.gb-section-divider::before,
.gb-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9b99a);
}

.gb-section-divider::after {
  background: linear-gradient(to left, transparent, #c9b99a);
}

.gb-divider-sym {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: #b5924a;
  opacity: 0.75;
}

/* Practice section */
.gb-practice-header {
  font-family: 'Cormorant SC', serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: #b5924a;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 400;
}

.gb-practice-block {
  background: #ede8df;
  border: 1px solid rgba(181,146,74,0.22);
  padding: 16px 18px;
  position: relative;
  margin-bottom: 0;
}

/* Corner marks */
.gb-practice-block::before,
.gb-practice-block::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: #d4ae72;
  border-style: solid;
  opacity: 0.55;
}

.gb-practice-block::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}

.gb-practice-block::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

.gb-practice-title {
  font-family: 'Cormorant SC', serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: #1a1714;
  margin-bottom: 14px;
  font-weight: 400;
}

.gb-practice-text {
  font-size: 11.5px;
  line-height: 1.8;
  color: #3a3530;
  font-weight: 300;
}

.gb-practice-text p {
  margin-bottom: 0.9em;
}

.gb-journal-prompt {
  font-style: italic;
  color: #1a1714;
  font-size: 11px;
  line-height: 1.75;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(181,146,74,0.2);
}

/* Meditation block */
.gb-meditation-block {
  text-align: center;
  padding: 16px 0;
}

.gb-qr-placeholder {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(181,146,74,0.35);
  margin: 0 auto 14px;
  background: rgba(181,146,74,0.04);
}

.gb-scan-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-style: italic;
  color: #7a6e62;
  line-height: 1.7;
}

/* Page footer / number */
.gb-page-footer {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 0;
}

.gb-page-footer::before,
.gb-page-footer::after {
  content: '';
  width: 36px;
  height: 1px;
  background: #c9b99a;
  opacity: 0.5;
}

.gb-page-num {
  font-family: 'Cormorant SC', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #7a6e62;
  font-weight: 300;
}

.book-spread-caption {
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
  color: rgba(243,233,216,0.55);
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* Responsive: stack on mobile */
@media (max-width: 700px) {
  .gb-spread { flex-direction: column; }
  .gb-page { width: 100%; padding: 28px 22px; }
  .gb-spine { width: 100%; height: 8px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.15));
  }
}

/* ── WHAT THIS IS bridge ── */
.what-this-is { padding: 40px 0; }
.what-this-is-outer {
  max-width: 560px;
  margin: 0 auto;
}
.what-this-is-box {
  background: #e8dfd0;
  border: 1px solid rgba(180,150,90,0.35);
  border-radius: 4px;
  padding: 44px 52px;
  text-align: center;
}
.what-this-eyebrow {
  margin-bottom: 0.4rem;
}
.what-this-title {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  font-style: normal;
  color: var(--indigo);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.what-this-is-intro {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--indigo);
  opacity: 0.75;
  line-height: 1.55;
  margin-bottom: 1.1rem;
}
.what-this-is-lead {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 0.4rem;
  line-height: 1.5;
}
.what-this-is-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  text-align: left;
  display: inline-block;
}
.what-this-is-list li {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: var(--indigo);
  padding: 0.18rem 0;
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
}
.what-this-is-list li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0.18rem;
}
.what-this-is-close {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--indigo);
  line-height: 1.6;
  margin-top: 1.2rem;
}

/* ── OFFER ── */
.offer-section { position: relative; }

/* Two-column layout: box left, text right */
.offer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.offer-box-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-box-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  margin-right: 2rem;
}

.offer-box-img {
  max-width: 360px;
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6)) drop-shadow(0 0 30px rgba(199,162,90,0.12));
  display: block;
}

.offer-text-col {
  text-align: left;
}

.offer-text-col .offer-price {
  justify-content: flex-start;
}

.offer-text-col .offer-includes {
  margin-left: 0;
  margin-right: 0;
}

.offer-text-col .offer-shipping {
  text-align: left;
}
.offer-gold-line {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin-bottom: 0;
}
.offer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0 0.5rem;
}
.price-original {
  font-size: 1.5rem;
  color: rgba(243,233,216,0.35);
  text-decoration: line-through;
  font-style: italic;
}
.price-current {
  font-size: 4rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
  text-shadow: 0 0 40px rgba(199,162,90,0.3);
}
.offer-intro-line {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(243,233,216,0.75);
  font-style: italic;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.offer-sub {
  font-family: var(--font-cinzel);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: rgba(243,233,216,0.5);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.offer-includes {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  text-align: left;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.offer-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(243,233,216,0.8);
  font-size: 0.95rem;
}
.offer-check {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.offer-shipping {
  margin-top: 1.2rem;
  font-family: var(--font-sc);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(199,162,90,0.55);
  text-transform: uppercase;
}

/* ── WHAT OPENS ── */
.what-opens { text-align: center; }
.what-opens-intro {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.opens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: left;
}
.opens-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(199,162,90,0.2);
  background: rgba(199,162,90,0.03);
}
.opens-dash {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.opens-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}
.opens-closing {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
}

/* ── WHO THIS IS FOR ── */
.who-for { text-align: center; }
.who-for-text {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}
.who-for-text p { color: var(--muted); }
.who-for-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.who-for-list li {
  color: var(--muted);
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(199,162,90,0.12);
  line-height: 1.7;
  font-size: 1.05rem;
}
.who-for-list li:first-child { border-top: 1px solid rgba(199,162,90,0.12); }
.who-for-list li::before {
  content: '♦';
  position: absolute;
  left: 0;
  top: 0.75rem;
  color: var(--gold);
  font-size: 0.55rem;
  line-height: 1.9;
}

/* ── DRAW A CARD ── */
.draw-section { text-align: center; }
.draw-header { margin-bottom: 0; }
.draw-intro {
  color: rgba(243,233,216,0.82);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 0;
  line-height: 1.8;
}

/* Fan instruction */
.fan-instruction {
  font-style: italic;
  color: rgba(243,233,216,0.6);
  font-size: 1rem;
  margin: 2rem 0 0;
  letter-spacing: 0.03em;
  text-align: center;
}

/* ── FANNED ARC STAGE ── */
.card-fan-stage {
  position: relative;
  width: 100%;
  height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  overflow: visible;
  cursor: default;
}

/* Each fan card is absolutely positioned via JS inline styles */
.fan-card {
  position: absolute;
  width: 130px;
  transform-origin: bottom center;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.35s ease,
    box-shadow 0.35s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
}

.fan-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  pointer-events: none;
  user-select: none;
}

/* Hover: card lifts and brightens; siblings dim */
.card-fan-stage:has(.fan-card:hover) .fan-card:not(:hover) {
  filter: brightness(0.72);
}

.fan-card:hover {
  box-shadow: 0 32px 70px rgba(0,0,0,0.7), 0 0 28px rgba(199,162,90,0.18);
  filter: brightness(1.08);
}

/* Fallback for browsers without :has() */
.fan-card.sibling-dim {
  filter: brightness(0.72);
  transition: filter 0.35s ease;
}

.fan-card.hovered {
  filter: brightness(1.08);
  box-shadow: 0 32px 70px rgba(0,0,0,0.7), 0 0 28px rgba(199,162,90,0.18);
}

/* Step 2 — chosen card + email */
#draw-step-2 { transition: opacity 0.5s ease; }

/* Chosen card scene */
.chosen-card-scene {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

/* 3D flip container */
.chosen-card-flip {
  width: 160px;
  height: 240px;
  perspective: 1200px;
}

.chosen-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

.chosen-card-flip.flipped .chosen-card-inner {
  transform: rotateY(180deg);
}

.chosen-card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.65);
}

/* Back face is shown initially */
.chosen-card-face-back {
  /* default: facing forward */
}

/* Front face starts rotated 180deg (hidden) */
.chosen-card-face-front {
  transform: rotateY(180deg);
}

.chosen-card-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Email block below card */
.draw-email-block {
  text-align: center;
}

.draw-form-heading {
  font-family: var(--font-cinzel);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: var(--sand);
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.draw-form-sub {
  color: rgba(243,233,216,0.65);
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.8rem;
  line-height: 1.7;
}

/* Email form */
.draw-form-wrap { margin-bottom: 2rem; }
.draw-form {}
.draw-input-row {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 1rem;
  border: 1.5px solid rgba(199,162,90,0.4);
}
.draw-input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: none;
  padding: 1rem 1.5rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--sand);
  outline: none;
}
.draw-input::placeholder { color: rgba(243,233,216,0.35); }
.draw-input:focus { background: rgba(255,255,255,0.1); }
.draw-form .btn { border-radius: 0; border: none; white-space: nowrap; }
.draw-privacy {
  font-family: var(--font-sc);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(199,162,90,0.4);
  text-transform: uppercase;
  margin: 0;
}

/* Card Reveal */
.card-reveal {
  display: none;
  animation: fadeInUp 0.8s ease forwards;
}
.card-reveal.visible { display: block; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.card-reveal-inner { max-width: 480px; margin: 0 auto; }
.reveal-eyebrow {
  font-family: var(--font-cinzel);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.reveal-card-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.reveal-card-img {
  width: 260px;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: cardReveal 1s ease forwards;
}
@keyframes cardReveal {
  from { opacity: 0; transform: scale(0.85) rotateY(15deg); }
  to { opacity: 1; transform: scale(1) rotateY(0deg); }
}
.reveal-card-name {
  font-family: var(--font-cinzel);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.reveal-passage {
  font-style: italic;
  color: rgba(243,233,216,0.75);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-left: 2px solid var(--gold-dim);
  text-align: left;
}
.reveal-email-note {
  color: rgba(243,233,216,0.55);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.reveal-cta { margin-top: 0.5rem; }

/* ── COMMUNITY ── */
.community { text-align: center; }
.community p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── FINAL CTA ── */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem;
}
.final-cta-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 20%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 10%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 75% 30%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 30% 70%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 65%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 85%, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none;
}
.final-cta-inner {
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: center;
}
.final-card-display { flex-shrink: 0; }
.final-card-img {
  width: 320px;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 40px rgba(199,162,90,0.1);
  transform: rotate(-3deg);
}
.final-cta-text { text-align: left; }
.final-cta-eyebrow {
  font-family: var(--font-cinzel);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
/* Classes used in HTML */
.final-eyebrow {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.final-title {
  font-family: var(--font-cinzel);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--sand);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.final-closing {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: rgba(243,233,216,0.8);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 420px;
}
.final-note {
  margin-top: 0.75rem;
  font-family: var(--font-sc);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(199,162,90,0.55);
  text-transform: uppercase;
}
.final-cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--sand);
  font-weight: 300;
  margin-bottom: 2rem;
}
.final-cta-note {
  margin-top: 1rem;
  font-family: var(--font-sc);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(199,162,90,0.5);
  text-transform: uppercase;
}
.gold-link { color: var(--gold); border-bottom: 1px solid var(--gold-dim); }
.gold-link:hover { color: var(--gold-light); }

/* ── FOOTER ── */
.footer { padding: 4rem 2rem; border-top: 1px solid rgba(199,162,90,0.15); }
.footer-inner { text-align: center; }
.footer-title {
  font-family: var(--font-cinzel);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--sand);
  margin-bottom: 0.5rem;
}
.footer-ornament {
  width: 200px;
  margin: 0.5rem auto;
}
.footer-ornament-img {
  width: 200px;
  margin: 0.5rem auto;
  display: block;
  opacity: 0.7;
}
.footer-sub {
  font-family: var(--font-sc);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(199,162,90,0.5);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: rgba(243,233,216,0.25);
  margin: 0;
}

/* ── Section transitions ── */
.section-indigo + .section-sand,
.section-sand + .section-indigo {
  position: relative;
}

/* ── Draw a Card enhanced ── */
.draw-card-section {
  background: linear-gradient(180deg, var(--indigo) 0%, #1a2035 100%);
}

.draw-form-wrap {
  position: relative;
}
.draw-form-wrap::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, transparent, rgba(199,162,90,0.4));
}

/* ── Offer section enhanced ── */
.offer-section {
  background: linear-gradient(180deg, var(--indigo) 0%, #161c2d 100%);
}

/* ── What Opens grid enhanced ── */
.opens-item {
  transition: border-color 0.3s ease, background 0.3s ease;
}
.opens-item:hover {
  border-color: rgba(199,162,90,0.4);
  background: rgba(199,162,90,0.06);
}

/* ── Scroll Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text { order: 1; }
  .hero-product { order: 2; }
  .hero-title { align-items: center; }
  .hero-sub { margin: 0 auto 2rem; }
  .hero-cards-stack { height: 380px; }
  .hero-card-back { width: 160px; left: 10px; }
  .hero-card-mid { width: 180px; }
  .hero-card-front { width: 200px; right: 10px; }
  .hero-book { width: 110px; }

  .why-made-inner { grid-template-columns: 1fr; gap: 3rem; }
  .different-inner { grid-template-columns: 1fr; gap: 3rem; }
  .different-card-book { max-width: 480px; margin: 0 auto; }
  .final-cta-inner { flex-direction: column; gap: 3rem; text-align: center; }
  .final-cta-text { text-align: center; }
  .card-spread { height: 300px; }
  .spread-card-left { width: 160px; transform: rotate(-12deg) translateX(-90px) translateY(20px); }
  .spread-card-center { width: 180px; }
  .spread-card-right { width: 160px; transform: rotate(12deg) translateX(90px) translateY(20px); }
}

@media (max-width: 600px) {
  .section { padding: 4rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .cards-gallery { gap: 1rem; }
  .gallery-card img { width: 150px; }
  .gallery-card-active img { width: 185px; }
  .draw-input-row { flex-direction: column; border: none; gap: 0.8rem; }
  .draw-input { border: 1.5px solid rgba(199,162,90,0.4); }
  .draw-form .btn { width: 100%; }
  .inside-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .opens-grid { grid-template-columns: 1fr; }
  .guidebook-showcase { flex-direction: column; align-items: center; }
}

/* ── LIVING RITUAL PRACTICE ── */
.ritual-practice { overflow: hidden; }
.ritual-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.ritual-box-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ritual-box-wrap::before {
  content: '';
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse at center, rgba(199,162,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ritual-box-img {
  width: 100%;
  max-width: 340px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)) drop-shadow(0 0 40px rgba(199,162,90,0.12));
  transition: transform 0.6s ease;
}
.ritual-box-img:hover { transform: translateY(-6px) rotate(1deg); }
.ritual-text { color: rgba(243,233,216,0.85); }
.ritual-text p { color: rgba(243,233,216,0.75); }
.ritual-text .section-title { margin-bottom: 1.5rem; }

@media (max-width: 768px) {
  .ritual-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .ritual-box-img { max-width: 260px; margin: 0 auto; }
}

/* ── Offer inner responsive ── */
@media (max-width: 768px) {
  .offer-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .offer-box-img { max-width: 200px; }
  .offer-text-col { text-align: center; }
  .offer-text-col .offer-price { justify-content: center; }
  .offer-text-col .offer-includes { margin-left: auto; margin-right: auto; }
  .offer-text-col .offer-shipping { text-align: center; }
}

/* ── Card fan stage responsive ── */
@media (max-width: 600px) {
  .card-fan-stage { height: 320px; }
  .fan-card { width: 90px; }
}

/* ── Draw confirm section ── */
.draw-confirm {
  text-align: center;
  padding: 2rem 0;
}
.confirm-card-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.confirm-card-img {
  width: 180px;
  border-radius: 8px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.6);
  animation: cardReveal 0.8s ease forwards;
}
.confirm-heading {
  font-family: var(--font-cinzel);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.confirm-sub {
  color: rgba(243,233,216,0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── NAV RIGHT ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ── MOBILE NAV RESPONSIVE ── */
@media (max-width: 768px) {
  /* Hide About and Get Your Deck links on mobile */
  .nav-links { display: none !important; }

  /* Tighten nav inner padding */
  .nav-inner { padding: 0.75rem 1.25rem; }

  /* Smaller logo title */
  .nav-logo-title {
    font-size: 0.78rem !important;
    letter-spacing: 0.08em !important;
  }

  /* Smaller LOGIN button */
  .nav-right .btn-sm,
  .nav-right .btn {
    font-size: 0.65rem !important;
    padding: 0.45rem 0.9rem !important;
    letter-spacing: 0.1em !important;
  }
}

/* ══════════════════════════════════════════════════════
   PRACTICE IN FOUR MOVEMENTS
══════════════════════════════════════════════════════ */
.practice-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, rgba(90,70,50,0.12) 0%, transparent 65%), var(--indigo);
}

.practice-container {
  position: relative;
  z-index: 1;
}

/* Intro row */
.practice-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.practice-eyebrow {
  font-family: var(--font-sc);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.practice-title {
  font-family: var(--font-cinzel);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--sand);
  line-height: 1.2;
  margin: 0;
}

.practice-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.practice-intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(243,233,216,0.75);
  max-width: 480px;
}

/* Gold rule divider */
.practice-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(199,162,90,0.5) 20%, rgba(199,162,90,0.5) 80%, transparent);
  margin-bottom: 3.5rem;
}

/* 2×2 grid */
.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Step card */
.practice-step {
  border: 1px solid rgba(199,162,90,0.14);
  border-radius: 4px;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.practice-step:hover {
  border-color: rgba(199,162,90,0.28);
  background: rgba(255,255,255,0.04);
}

.practice-step-inner {
  padding: 2.5rem 2rem 2.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.practice-icon {
  width: 160px;
  height: 160px;
  object-fit: contain;
  margin-bottom: 1rem;
  opacity: 1;
  filter: drop-shadow(0 0 14px rgba(199,162,90,0.55)) drop-shadow(0 0 4px rgba(199,162,90,0.8));
}

.practice-step-num {
  font-family: var(--font-sc);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(199,162,90,0.65);
  margin-bottom: 0.5rem;
}

.practice-step-title {
  font-family: var(--font-cinzel);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--sand);
  margin-bottom: 1rem;
}

.practice-step-body {
  font-size: 0.97rem;
  line-height: 1.8;
  color: rgba(243,233,216,0.7);
}

/* Responsive */
@media (max-width: 900px) {
  .practice-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .practice-intro-text {
    max-width: 100%;
  }
  .practice-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   PRACTICE SECTION V2 — VERTICAL SINGLE-COLUMN LAYOUT
═══════════════════════════════════════════════════════ */

.practice-section-v2 {
  position: relative;
  overflow: hidden;
}

.practice-v2-container {
  max-width: 1020px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* Centered intro */
.practice-v2-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

.practice-v2-intro .practice-title {
  margin-bottom: 1.2rem;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  color: #ffffff;
}

.practice-v2-title {
  color: #ffffff !important;
  font-family: var(--font-serif) !important;
  font-style: italic !important;
}

.practice-v2-intro-text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(243,233,216,0.82);
  max-width: 680px;
  margin: 0 auto;
}

/* Gold rule below intro */
.practice-v2-intro::after {
  content: '';
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,162,90,0.6), transparent);
  margin: 2.5rem auto 0;
}

/* Steps wrapper */
.practice-v2-steps {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

/* Individual step row */
.practice-v2-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  padding: 36px 0;
}

/* Icon column */
.practice-v2-icon-col {
  flex: 0 0 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.practice-v2-icon {
  width: 150px;
  height: 150px;
  object-fit: contain;
  opacity: 1;
  filter: drop-shadow(0 0 14px rgba(199,162,90,0.55)) drop-shadow(0 0 4px rgba(199,162,90,0.8));
}

/* Text column */
.practice-v2-text-col {
  flex: 1;
  text-align: left;
  padding-right: 8%;
}

.practice-v2-text-col .practice-step-num {
  text-align: left;
  margin-bottom: 0.4rem;
}

.practice-v2-text-col .practice-step-title {
  text-align: left;
  margin-bottom: 0.8rem;
}

.practice-v2-body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(243,233,216,0.8);
  text-align: left;
  margin: 0;
}

/* Connector line between steps */
.practice-v2-connector {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(199,162,90,0.5), rgba(199,162,90,0.15));
  margin-left: 70px; /* align with center of 140px icon column */
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 640px) {
  .practice-v2-step {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 48px 0;
  }

  .practice-v2-icon-col {
    flex: none;
  }

  .practice-v2-text-col {
    text-align: center;
  }

  .practice-v2-text-col .practice-step-num,
  .practice-v2-text-col .practice-step-title,
  .practice-v2-body {
    text-align: center;
  }

  .practice-v2-connector {
    display: none;
  }
}
