/* ============================================================
   The Forgotten 1950s Feminine Routine Manual
   Vintage women's-magazine aesthetic — warm, elegant, readable
   ============================================================ */

:root {
  --bg:        #F8EFE3;  /* warm vintage cream    */
  --cream:     #FFFBF4;  /* card cream            */
  --ink:       #2A211D;  /* primary text (warm)   */
  --ink-soft:  #6A574E;  /* secondary text        */
  --accent:    #A8403A;  /* warm coral-brick red  */
  --accent-dk: #832F2A;  /* deeper coral red      */
  --gold:      #D8B878;  /* antique gold          */
  --gold-dk:   #B5904F;  /* gold border/line      */
  --rose:      #C97E72;  /* warm coral / dusty rose*/
  --pink:      #E4B4AC;  /* soft dusty rose       */
  --teal:      #4E6E68;  /* muted teal accent     */
  --teal-dk:   #3A534E;
  --deep:      #5E2E39;  /* deep vintage wine (dark sections) */
  --deep-dk:   #43212B;

  --maxw: 1160px;
  --narrow: 760px;

  --serif: "EB Garamond", Georgia, "Times New Roman", serif;
  --display: "Fraunces", "EB Garamond", Georgia, serif;

  --shadow-soft: 0 18px 40px -22px rgba(42,33,29,.45);
  --shadow-card: 0 14px 30px -20px rgba(42,33,29,.32);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 12% 8%, rgba(215,183,122,.10), transparent 38%),
    radial-gradient(circle at 88% 92%, rgba(223,169,164,.12), transparent 42%);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  padding-bottom: 78px;   /* reserve room for the sticky purchase bar */
}

img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: var(--narrow); }
.center { text-align: center; }

/* --- subtle paper grain overlay --- */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* ============ TYPOGRAPHY PRIMITIVES ============ */
.h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -.01em;
  margin: 0 0 .55em;
  color: var(--accent);
}
.h2 em { font-style: italic; color: var(--ink); font-weight: 500; }
.h2--light { color: var(--cream); }
.h2--light em { color: var(--gold); }

.kicker {
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .26em;
  font-size: .74rem;
  color: var(--gold-dk);
  margin: 0 0 1rem;
}
.kicker--light { color: var(--gold); }

.eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .76rem;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 1.3rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.eyebrow__star { color: var(--gold-dk); font-size: .9rem; }

.ornament {
  display: block;
  color: var(--gold-dk);
  letter-spacing: .5em;
  font-size: 1.1rem;
  margin: 0 auto 1.1rem;
}
.ornament--light { color: var(--gold); }

.sechead { margin-bottom: 3.2rem; }
.sechead__sub {
  font-size: 1.24rem;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 34ch;
  margin: .2rem auto 0;
}

/* ============ BUTTONS ============ */
.btn {
  --pad-y: 1.05rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .12rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.18rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--pad-y) 2.5rem;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease;
  box-shadow: 0 10px 24px -12px rgba(141,46,36,.6);
}
.btn__sub {
  font-size: .62rem;
  letter-spacing: .18em;
  opacity: .8;
  text-transform: uppercase;
}
.btn--primary { background: var(--accent); color: var(--cream); }
.btn--primary:hover { background: var(--accent-dk); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(141,46,36,.65); }
.btn--gold { background: var(--gold); color: var(--deep-dk); box-shadow: 0 12px 26px -14px rgba(0,0,0,.5); }
.btn--gold:hover { background: var(--gold-dk); color: #fff; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--gold-dk);
  box-shadow: none;
  justify-content: center;
}
.btn--ghost:hover { background: rgba(168,64,58,.07); border-color: var(--accent); transform: translateY(-2px); }
.btn--xl { font-size: 1.34rem; padding: 1.3rem 3.2rem; }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

/* ============ ANNOUNCEMENT BAR ============ */
.announce {
  position: relative;
  z-index: 3;
  background: linear-gradient(90deg, var(--deep-dk), var(--deep) 50%, var(--deep-dk));
  color: var(--cream);
  font-family: var(--display);
  border-bottom: 2px solid var(--gold);
  padding: .5rem 0;
}
.announce__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.announce__live {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
  letter-spacing: .02em;
}
.announce__count { color: var(--gold); font-weight: 600; }
.announce__pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: #6cd07a;
  box-shadow: 0 0 0 0 rgba(108,208,122,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(108,208,122,.6); }
  70%  { box-shadow: 0 0 0 7px rgba(108,208,122,0); }
  100% { box-shadow: 0 0 0 0 rgba(108,208,122,0); }
}
.announce__offer {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .92rem;
}
.announce__offer-lbl {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .72rem;
  color: rgba(255,251,244,.8);
}
.announce__timer {
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: .08em;
  color: var(--gold);
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(216,184,120,.45);
  border-radius: 4px;
  padding: .12rem .55rem;
  font-variant-numeric: tabular-nums;
}

/* ============ HERO ============ */
.hero { position: relative; z-index: 2; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(255,251,244,.9), transparent 55%),
    radial-gradient(ellipse at 78% 28%, rgba(228,180,172,.35), transparent 55%),
    radial-gradient(ellipse at 16% 82%, rgba(216,184,120,.24), transparent 55%),
    radial-gradient(ellipse at 90% 88%, rgba(201,126,114,.18), transparent 50%);
}
/* faint vintage floral motifs + ornaments behind the hero */
.hero__florals { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.floral {
  position: absolute;
  font-size: clamp(9rem, 22vw, 18rem);
  line-height: 1;
  color: var(--rose);
  opacity: .07;
}
.floral--tl { top: -3rem; left: -2.5rem; transform: rotate(-12deg); }
.floral--br { bottom: -4rem; right: -2.5rem; transform: rotate(160deg); color: var(--gold-dk); opacity: .08; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title {
  font-family: var(--display);
  font-weight: 700;
  color: var(--deep);
  font-size: clamp(2.7rem, 6.4vw, 4.7rem);
  line-height: .98;
  letter-spacing: -.02em;
  margin: 0 0 1.3rem;
}
.hero__title-big {
  color: var(--accent);
  font-size: 1.32em;
  font-weight: 900;
  display: inline-block;
  letter-spacing: -.01em;
}
.hero__sub {
  font-size: 1.42rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 1.3rem;
  max-width: 36ch;
}
.hero__support {
  font-size: 1.16rem;
  color: var(--ink-soft);
  margin: 0 0 2rem;
  max-width: 44ch;
}
.hero__cta { margin-bottom: 0; }

/* trending micro social-proof badge */
.trending {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
  color: var(--accent);
  background: rgba(228,180,172,.28);
  border: 1px solid rgba(168,64,58,.25);
  border-radius: 100px;
  padding: .42rem 1rem;
  margin: 0 0 1.3rem;
}
.trending__star { color: var(--gold-dk); font-size: .9rem; }
.trending--center { margin: 0 auto 1.4rem; }

/* hero CTA row */
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.hero__cta2 { font-size: 1.04rem; }

/* emotional microcopy dividers between sections */
.interlude {
  position: relative;
  z-index: 2;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.5rem);
  color: var(--rose);
  letter-spacing: .01em;
  margin: 0;
  padding: clamp(1.6rem, 4vw, 2.6rem) 1rem;
}
.interlude::before, .interlude::after {
  content: "\10038";
  color: var(--gold-dk);
  font-style: normal;
  font-size: .7em;
  opacity: .7;
  margin: 0 .8em;
  vertical-align: .12em;
}

.trustline {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: .55rem 1.5rem;
  font-family: var(--display);
  font-size: .96rem;
  letter-spacing: .03em;
  color: var(--ink-soft);
}
.trustline li { display: flex; align-items: center; gap: .45rem; }
.tick {
  color: var(--accent); font-weight: 700;
  display: inline-grid; place-items: center;
  width: 1.25rem; height: 1.25rem;
  border: 1.5px solid var(--gold-dk); border-radius: 50%;
  font-size: .72rem;
}

/* --- book mockup --- */
.hero__book { display: flex; justify-content: center; }
.bookframe { position: relative; }
.bookframe__glow {
  position: absolute;
  inset: -14% -10%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 45%, rgba(216,184,120,.55), rgba(228,180,172,.3) 45%, transparent 72%);
  filter: blur(6px);
}
.bookframe__badge {
  position: absolute;
  top: -22px; right: -10px;
  z-index: 3;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow-card);
  transform: rotate(8deg);
  border: 2px dashed rgba(255,249,240,.6);
}
.bookframe__badge-num { font-family: var(--display); font-weight: 900; font-size: 1.7rem; line-height: 1; }
.bookframe__badge-label { font-family: var(--display); text-transform: uppercase; letter-spacing: .18em; font-size: .6rem; }

.book {
  position: relative;
  border-radius: 5px 9px 9px 5px;
  overflow: hidden;
  box-shadow:
    var(--shadow-soft),
    -8px 0 0 -2px rgba(0,0,0,.18) inset;
  transform: perspective(1400px) rotateY(-13deg);
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
  border-left: 4px solid rgba(0,0,0,.22);
}
.book::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.28) 0%, transparent 18%, transparent 88%, rgba(0,0,0,.14) 100%);
  pointer-events: none;
}
.book:hover { transform: perspective(1400px) rotateY(-5deg) translateY(-4px); }
.book img { width: clamp(260px, 34vw, 430px); height: auto; }

/* ============ SOCIAL PROOF BAR ============ */
.proofbar {
  position: relative; z-index: 2;
  background: var(--teal);
  color: var(--cream);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.proofbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 1.6rem 24px;
}
.proof { padding: .3rem 1rem; position: relative; }
.proof + .proof::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 56%; width: 1px; background: rgba(255,249,240,.25);
}
.proof__stars { color: var(--gold); letter-spacing: .12em; font-size: 1rem; display: block; margin-bottom: .15rem; }
.proof__lead { font-family: var(--display); font-weight: 700; font-size: 1.7rem; display: block; line-height: 1.1; }
.proof__sub { font-family: var(--display); text-transform: uppercase; letter-spacing: .16em; font-size: .68rem; opacity: .85; }

/* ============ SECTION SHELL ============ */
.sec { position: relative; z-index: 2; padding: clamp(3.5rem, 8vw, 6.5rem) 0; }

/* --- decorative top rule between light sections --- */
.sec--inside, .sec--peek, .sec--faq { }

/* SECTION 1 — promise */
.sec--promise { padding-top: clamp(3rem, 6vw, 5rem); }
.prose { font-size: 1.34rem; line-height: 1.7; color: var(--ink); }
.prose p { margin: 0 0 1.15rem; }
.prose--lead p:first-child { color: var(--ink-soft); }
.prose__pair { display: flex; flex-direction: column; gap: .2rem; font-style: italic; color: var(--accent); }
.prose__emph {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 1.6rem !important;
  position: relative;
  display: inline-block;
}
.prose__emph::after {
  content: ""; display: block; height: 2px; width: 60%; margin: .6rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold-dk), transparent);
}

/* ============ SECTION 2 — CARDS ============ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.card {
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 2.1rem 1.9rem 2.2rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card::before {
  content: ""; position: absolute; inset: 7px; border: 1px solid rgba(185,149,79,.4); border-radius: 3px; pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -22px rgba(30,27,24,.5); border-color: var(--gold-dk); }
.card__no {
  font-family: var(--display); font-weight: 600;
  letter-spacing: .16em; font-size: .76rem; text-transform: uppercase;
  color: var(--gold-dk);
}
.card__title {
  font-family: var(--display); font-weight: 600;
  font-size: 1.6rem; color: var(--accent);
  margin: .35rem 0 1rem; line-height: 1.1;
}
.card__title::after { content: ""; display: block; width: 38px; height: 2px; background: var(--pink); margin-top: .7rem; }
.card__list { list-style: none; margin: 0; padding: 0; }
.card__list li {
  position: relative; padding-left: 1.4rem; margin-bottom: .4rem;
  font-size: 1.08rem; color: var(--ink-soft); line-height: 1.45;
}
.card__list li::before {
  content: "\273B"; position: absolute; left: 0; top: .05rem;
  color: var(--gold-dk); font-size: .8rem;
}

/* ============ SECTION 3 — WHY ============ */
.sec--why { background: linear-gradient(180deg, transparent, rgba(223,169,164,.12) 50%, transparent); }
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.why__card {
  background: var(--cream);
  border-radius: 8px;
  padding: 2.6rem 2rem 2.3rem;
  text-align: center;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-card);
  transition: transform .3s ease;
}
.why__card:hover { transform: translateY(-5px); }
.why__num {
  display: inline-grid; place-content: center;
  width: 60px; height: 60px; margin: 0 auto 1.2rem;
  border: 2px solid var(--accent); border-radius: 50%;
  font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  color: var(--accent);
}
.why__text { font-family: var(--display); font-weight: 600; font-size: 1.42rem; line-height: 1.25; color: var(--ink); margin: 0 0 .7rem; }
.why__note { font-size: 1.06rem; font-style: italic; color: var(--ink-soft); margin: 0; }

/* ============ SECTION 4 — A PEEK INSIDE ============ */
.peek {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.6rem;
}
.page { margin: 0; grid-column: span 2; }
.page--checklist { grid-column: span 3; }
.page--beauty    { grid-column: span 3; }
.page--recipe    { grid-column: span 4; }
.page--planner   { grid-column: span 2; }
.page--etiquette { grid-column: span 6; max-width: 620px; margin: 0 auto; }

.page__paper {
  background:
    repeating-linear-gradient(0deg, transparent, transparent 37px, rgba(185,149,79,.12) 38px),
    var(--cream);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1.8rem 1.9rem 2rem;
  box-shadow: var(--shadow-card);
  height: 100%;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.page:hover .page__paper { transform: translateY(-4px) rotate(-.4deg); box-shadow: 0 22px 38px -22px rgba(30,27,24,.5); }
.page__hdr {
  font-family: var(--display); text-transform: uppercase; letter-spacing: .2em;
  font-size: .72rem; color: var(--gold-dk); margin: 0;
}
.page__sub {
  font-family: var(--display); font-weight: 600; font-style: italic;
  font-size: 1.5rem; color: var(--accent); margin: .15rem 0 1.1rem; line-height: 1.1;
}
.page__cap {
  text-align: center; margin-top: .9rem;
  font-family: var(--display); text-transform: uppercase; letter-spacing: .16em;
  font-size: .72rem; color: var(--ink-soft);
}

.checklist { list-style: none; margin: 0; padding: 0; }
.checklist li { display: flex; align-items: flex-start; gap: .7rem; font-size: 1.06rem; margin-bottom: .55rem; color: var(--ink); }
.checkbox {
  flex: none; width: 1.3rem; height: 1.3rem; margin-top: .12rem;
  border: 1.5px solid var(--accent); border-radius: 3px;
  color: var(--accent); display: grid; place-content: center; font-size: .82rem; font-weight: 700;
}
.beauty-row { display: flex; gap: 1rem; padding: .5rem 0; border-bottom: 1px dotted rgba(185,149,79,.5); }
.beauty-row:last-child { border-bottom: none; }
.beauty-row__k { font-family: var(--display); font-weight: 600; color: var(--accent); min-width: 4.2rem; }
.beauty-row__v { color: var(--ink-soft); font-size: 1.04rem; }

.recipe { display: grid; grid-template-columns: 1fr 1.3fr; gap: 1.6rem; }
.recipe__lbl { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: .7rem; color: var(--gold-dk); margin: 0 0 .5rem; }
.recipe ul { margin: 0; padding-left: 1.1rem; }
.recipe ul li { font-size: 1.04rem; color: var(--ink); margin-bottom: .2rem; }
.recipe p { font-size: 1.04rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }

.planner { width: 100%; border-collapse: collapse; }
.planner th { text-align: left; font-family: var(--display); color: var(--accent); width: 3.4rem; padding: .42rem 0; font-weight: 600; }
.planner td { padding: .42rem 0; color: var(--ink-soft); border-bottom: 1px dotted rgba(185,149,79,.5); }
.planner tr:last-child td { border-bottom: none; }

.etiquette { list-style: none; margin: 0; padding: 0; column-count: 1; }
.etiquette li {
  position: relative; padding-left: 1.7rem; margin-bottom: .55rem;
  font-size: 1.1rem; color: var(--ink); font-style: italic;
}
.etiquette li::before { content: "\10038"; position: absolute; left: 0; color: var(--gold-dk); font-style: normal; }

/* ============ SECTION 5 — VALUE STACK ============ */
.sec--value { background: linear-gradient(180deg, var(--deep), var(--deep-dk)); color: var(--cream); }
.sec--value .sechead__sub { color: rgba(255,249,240,.8); }
.stack {
  background: var(--cream);
  color: var(--ink);
  border-radius: 8px;
  padding: clamp(1.6rem, 3vw, 2.6rem) clamp(1.4rem, 3vw, 2.8rem);
  box-shadow: 0 26px 50px -28px rgba(0,0,0,.6);
  border: 1px solid var(--gold-dk);
  margin-bottom: 2.6rem;
}
.stack__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px dotted rgba(185,149,79,.6);
}
.stack__name { font-size: 1.14rem; color: var(--ink); }
.stack__name em { font-style: italic; color: var(--ink-soft); font-size: .92em; }
.stack__val { font-family: var(--display); font-weight: 600; color: var(--gold-dk); white-space: nowrap; }
.stack__row--main .stack__name { font-family: var(--display); font-weight: 600; font-size: 1.24rem; color: var(--accent); }

.stack__total, .stack__today {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-top: 1.1rem; margin-top: .4rem;
}
.stack__total { border-top: 2px solid var(--gold-dk); }
.stack__total-lbl { font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: .9rem; color: var(--ink-soft); }
.stack__total-val { font-family: var(--display); font-size: 1.3rem; color: var(--ink-soft); text-decoration: line-through; text-decoration-color: var(--accent); }
.stack__today-lbl { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: 1.05rem; color: var(--accent); }
.stack__today-val { font-family: var(--display); font-weight: 900; font-size: 2.6rem; color: var(--accent); line-height: 1; }

/* ============ SECTION 6 — STORIES ============ */
.stories { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.story {
  margin: 0; background: var(--cream);
  border-radius: 8px; padding: 2.2rem 2rem;
  box-shadow: var(--shadow-card);
  border-bottom: 4px solid var(--pink);
  position: relative;
}
.story::before {
  content: "\201C"; position: absolute; top: -.2rem; left: 1.1rem;
  font-family: var(--display); font-size: 4.5rem; color: var(--gold); line-height: 1; opacity: .55;
}
.story__stars { color: var(--gold-dk); letter-spacing: .14em; display: block; margin-bottom: .9rem; position: relative; }
.story__quote { margin: 0 0 1.2rem; font-size: 1.14rem; line-height: 1.6; color: var(--ink); font-style: italic; }
.story__by { font-family: var(--display); font-weight: 600; color: var(--accent); }
.story__by span { color: var(--ink-soft); font-weight: 400; font-style: italic; }

/* ============ SECTION 7 — FAQ ============ */
.faq { border-top: 1px solid var(--gold); }
.faq__item { border-bottom: 1px solid var(--gold); }
.faq__q {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.35rem .3rem;
  font-family: var(--display); font-weight: 600; font-size: 1.32rem; color: var(--ink);
  transition: color .2s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--accent); }
.faq__icon { flex: none; position: relative; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--accent); border-radius: 2px;
  transition: transform .3s ease;
}
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__icon::after  { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__a { padding: 0 .3rem 1.5rem; max-width: 62ch; }
.faq__a p { margin: 0; font-size: 1.12rem; color: var(--ink-soft); line-height: 1.65; }
.faq__item[open] .faq__q { color: var(--accent); }

/* ============ FINAL CTA ============ */
.finale { position: relative; z-index: 2; color: var(--cream); padding: clamp(4rem, 9vw, 7rem) 0; overflow: hidden; }
.finale__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 28% 18%, rgba(201,126,114,.55), transparent 60%),
    radial-gradient(ellipse at 82% 92%, rgba(94,46,57,.7), transparent 58%),
    var(--deep-dk);
}
.finale__bg::after {
  content: ""; position: absolute; inset: 14px; border: 1.5px solid rgba(215,183,122,.45); border-radius: 4px;
}
.finale__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2.1rem, 5vw, 3.5rem); line-height: 1.1;
  margin: 0 0 1.6rem; color: var(--cream); letter-spacing: -.01em;
}
.finale__prose p { font-size: 1.3rem; margin: 0 0 .5rem; color: rgba(255,251,244,.9); font-style: italic; }
.finale__long { font-style: normal !important; font-size: 1.18rem !important; max-width: 52ch; margin: 1.6rem auto 2.4rem !important; color: rgba(255,251,244,.82); }
.finale__sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.5;
  color: rgba(255,251,244,.9);
  max-width: 46ch;
  margin: 0 auto 2.2rem;
}
.finale .btn--primary { background: var(--gold); color: var(--teal-dk); box-shadow: 0 16px 40px -16px rgba(0,0,0,.7); }
.finale .btn--primary:hover { background: #e6cb96; }

.microcopy { font-family: var(--display); letter-spacing: .06em; font-size: .92rem; margin-top: 1.1rem; color: var(--ink-soft); }
.microcopy--light { color: rgba(255,249,240,.78); }

/* ============ FOOTER ============ */
.footer { position: relative; z-index: 2; background: var(--deep-dk); color: rgba(255,251,244,.8); padding: 2.6rem 0; }
.footer__mark { font-family: var(--display); font-size: 1.3rem; color: var(--cream); margin: 0 0 .4rem; }
.footer__mark strong { color: var(--gold); }
.footer__fine { font-family: var(--display); letter-spacing: .1em; text-transform: uppercase; font-size: .72rem; margin: 0 0 1rem; color: var(--gold); }
.footer__legal { font-size: .92rem; max-width: 60ch; margin: 0 auto; line-height: 1.5; opacity: .7; }

/* ============ STICKY PURCHASE BAR ============ */
.purchasebar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: linear-gradient(90deg, var(--deep-dk), var(--deep) 55%, var(--deep-dk));
  border-top: 2px solid var(--gold);
  box-shadow: 0 -12px 34px -16px rgba(0,0,0,.5);
  transform: translateY(115%);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.purchasebar.is-visible { transform: translateY(0); }
.purchasebar__inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: .7rem 24px;
}
.purchasebar__title {
  flex: 1 1 auto;
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.12rem;
  color: var(--cream);
  line-height: 1.2;
}
.purchasebar__meta {
  flex: none;
  margin: 0;
  font-family: var(--display);
  letter-spacing: .04em;
  font-size: 1rem;
  color: rgba(255,251,244,.85);
  white-space: nowrap;
}
.purchasebar__meta strong { color: var(--gold); font-size: 1.15em; }
.purchasebar__btn { flex: none; padding: .9rem 2rem; font-size: 1.06rem; }

/* ============ EXIT INTENT POPUP ============ */
.exitpop {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  padding: 1.2rem;
}
.exitpop[hidden] { display: none; }
.exitpop__backdrop {
  position: absolute; inset: 0;
  background: rgba(42,33,29,.62);
  backdrop-filter: blur(2px);
  animation: fade .3s ease;
}
.exitpop__card {
  position: relative;
  width: 100%; max-width: 460px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(228,180,172,.3), transparent 60%),
    var(--cream);
  border: 1px solid var(--gold-dk);
  border-radius: 8px;
  box-shadow: 0 30px 70px -24px rgba(42,33,29,.7);
  padding: 2.4rem 2.2rem 2.2rem;
  text-align: center;
  animation: pop .35s cubic-bezier(.2,.8,.25,1);
}
.exitpop__card::before {
  content: ""; position: absolute; inset: 9px;
  border: 1px solid rgba(181,144,79,.45); border-radius: 5px; pointer-events: none;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(.97); } to { opacity: 1; transform: none; } }
.exitpop__x {
  position: absolute; top: .5rem; right: .8rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; line-height: 1; color: var(--ink-soft);
}
.exitpop__x:hover { color: var(--accent); }
.exitpop__title {
  font-family: var(--display); font-weight: 700;
  font-size: 2rem; color: var(--accent);
  margin: .2rem 0 .6rem; line-height: 1.1;
}
.exitpop__sub { font-size: 1.12rem; color: var(--ink-soft); margin: 0 0 1.3rem; }
.exitpop__sub em { color: var(--ink); font-weight: 500; }
.exitpop__list {
  list-style: none; margin: 0 auto 1.6rem; padding: 0;
  display: inline-block; text-align: left;
}
.exitpop__list li {
  display: flex; align-items: center; gap: .6rem;
  font-size: 1.08rem; color: var(--ink); margin-bottom: .5rem;
}
.exitpop__cta { width: 100%; }
.exitpop__pass {
  display: block; width: 100%; margin-top: 1rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--serif); font-style: italic; font-size: 1rem;
  color: var(--ink-soft); text-decoration: underline; text-decoration-color: rgba(106,87,78,.5);
}
.exitpop__pass:hover { color: var(--accent); }

/* ============ PURCHASE NOTIFICATIONS ============ */
.purchasenote {
  position: fixed; left: 18px; bottom: 18px; z-index: 55;
  width: min(320px, calc(100vw - 36px));
  pointer-events: none;
}
.purchasenote__card {
  display: flex; align-items: center; gap: .9rem;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  box-shadow: 0 16px 34px -18px rgba(42,33,29,.55);
  padding: .8rem 1rem;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}
.purchasenote__card.is-in { opacity: 1; transform: none; }
.purchasenote__icon {
  flex: none; width: 38px; height: 38px; border-radius: 50%;
  background: var(--deep); color: var(--gold);
  display: grid; place-content: center;
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
}
.purchasenote__body { font-size: .96rem; line-height: 1.3; color: var(--ink); }
.purchasenote__name { font-family: var(--display); font-weight: 600; color: var(--accent); }
.purchasenote__time { display: block; font-size: .8rem; font-style: italic; color: var(--ink-soft); margin-top: .1rem; }

/* ============ SCROLL REVEAL ============ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__book { order: 1; margin-bottom: 1.5rem; }
  .eyebrow, .trustline { justify-content: center; }
  .hero__sub, .hero__support { margin-left: auto; margin-right: auto; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .stories { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .peek { grid-template-columns: repeat(2, 1fr); }
  .page, .page--checklist, .page--beauty, .page--recipe, .page--planner, .page--etiquette { grid-column: span 2; max-width: none; }
}

@media (max-width: 600px) {
  body { font-size: 1.14rem; padding-bottom: 92px; }   /* clear sticky purchase bar */
  .proofbar__grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem 0; }
  .proof:nth-child(2)::before { display: none; }
  .cards { grid-template-columns: 1fr; }
  .peek { grid-template-columns: 1fr; }
  .recipe { grid-template-columns: 1fr; gap: 1rem; }
  .hero__title-big { font-size: 1.2em; }
  .btn { width: 100%; }

  /* hero CTAs: full-width, larger tap targets */
  .hero__actions { flex-direction: column; gap: .8rem; }
  .hero__cta, .hero__cta2 { width: 100%; }

  /* top bar: stack live counter over countdown, keep both visible */
  .announce__inner { flex-direction: column; gap: .35rem; text-align: center; }
  .announce__live { font-size: .86rem; }
  .announce__offer { font-size: .82rem; gap: .5rem; }

  /* sticky purchase bar: compact bottom bar — drop the title, keep meta + big CTA */
  .purchasebar__inner { gap: .8rem; padding: .6rem 14px; }
  .purchasebar__title { display: none; }
  .purchasebar__meta { font-size: .9rem; }
  .purchasebar__btn { width: auto; flex: 1; padding: 1rem 1rem; }

  .interlude::before, .interlude::after { margin: 0 .5em; }
}

/* ============ MOTION SAFETY ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .book { transform: none; }
}
