/* ============================================================
   COACH PRINCE — demo site
   Design system: "Messenger of Light"
   ivory / espresso / amber gold · Fraunces + Inter
   Built by Funnelado
   ============================================================ */

:root {
  --ivory: #FBF7F0;
  --ivory-deep: #F4EDDF;
  --sand: #EFE5D2;
  --espresso: #241C14;
  --espresso-soft: #3A2E1F;
  --umber: #6E5F4B;
  --line: #DED2BA;
  --gold: #C9922E;
  --gold-deep: #A0731A;
  --dawn: #E8B34B;
  --white: #FFFEFB;

  --font-display: "Marcellus", Georgia, serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;

  --wrap: 1100px;
  --radius: 18px;
  --shadow-soft: 0 24px 60px -24px rgba(36, 28, 20, 0.18);
  --shadow-lift: 0 16px 40px -16px rgba(36, 28, 20, 0.22);
}

/* ---------- Reset & base ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img { height: auto; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0.005em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); }

p { margin: 0 0 1em; }

a { color: var(--gold-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }

em.glow {
  font-style: normal;
  color: var(--gold-deep);
}

.wrap { width: min(var(--wrap), 91%); margin-inline: auto; }
.wrap-narrow { width: min(760px, 91%); margin-inline: auto; }

.section { padding: clamp(4.25rem, 9vw, 7.5rem) 0; }

.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.1rem;
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--umber);
  max-width: 46ch;
}

.center .lead { margin-inline: auto; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: rgba(201, 146, 46, 0.25); }

/* ---------- Signature: horizon of light ---------- */

.horizon {
  position: relative;
  height: 1px;
  width: min(560px, 70%);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--line) 18%, var(--line) 82%, transparent);
}

.horizon::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 44px;
  background: radial-gradient(ellipse at center, rgba(232, 179, 75, 0.42), transparent 68%);
  pointer-events: none;
}

.horizon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px 2px rgba(232, 179, 75, 0.65);
}

/* ---------- Demo notice bar ---------- */

.demo-bar {
  background: var(--espresso);
  color: #EFE6D6;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 0.55rem 2.6rem;
  position: relative;
  z-index: 60;
}

.demo-bar strong { color: var(--dawn); font-weight: 600; }

.demo-bar button {
  position: absolute;
  right: 0.6rem; top: 50%;
  transform: translateY(-50%);
  background: none; border: 0;
  color: #EFE6D6;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  opacity: 0.7;
}
.demo-bar button:hover { opacity: 1; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--espresso);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.wordmark .dot { color: var(--gold); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--espresso);
  color: var(--ivory);
  box-shadow: 0 10px 26px -12px rgba(36, 28, 20, 0.55);
}

.btn-primary:hover {
  background: var(--espresso-soft);
  box-shadow: 0 12px 30px -10px rgba(201, 146, 46, 0.55);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: var(--espresso);
  box-shadow: 0 10px 26px -12px rgba(160, 115, 26, 0.6);
}

.btn-gold:hover {
  background: var(--dawn);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--espresso);
  border-color: rgba(36, 28, 20, 0.35);
}

.btn-ghost:hover { border-color: var(--espresso); background: rgba(36, 28, 20, 0.04); }

.btn-sm { padding: 0.62rem 1.3rem; font-size: 0.87rem; }

.btn-block { width: 100%; }

.microcopy {
  font-size: 0.8rem;
  color: var(--umber);
  letter-spacing: 0.02em;
  margin-top: 0.8rem;
}

/* ---------- Sample badge ---------- */

.sample-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--umber);
  border: 1px dashed rgba(110, 95, 75, 0.55);
  border-radius: 999px;
  padding: 0.28rem 0.75rem;
  background: rgba(255, 254, 251, 0.55);
}

.sample-badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(2.4rem, 5vw, 4rem) 0 clamp(2.6rem, 5vw, 4.2rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 120%;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 179, 75, 0.28), rgba(232, 179, 75, 0.07) 42%, transparent 68%);
  pointer-events: none;
}

.hero .inner { position: relative; text-align: center; }

.hero .eyebrow { font-size: 0.8rem; margin-bottom: 0; }

/* ---------- Video ---------- */

.video-frame {
  position: relative;
  margin: clamp(1.6rem, 3.5vw, 2.4rem) auto 0;
  max-width: 920px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--espresso);
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.video-frame video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.video-frame.cinema {
  box-shadow: var(--shadow-soft), 0 0 90px rgba(232, 179, 75, 0.35);
}

.video-frame.vertical { max-width: 300px; margin: 0; }
.video-frame.vertical video { aspect-ratio: 9 / 16; }

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  background: linear-gradient(180deg, rgba(36, 28, 20, 0.08), rgba(36, 28, 20, 0.42));
  border: 0;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.play-overlay:hover { background: linear-gradient(180deg, rgba(36, 28, 20, 0.02), rgba(36, 28, 20, 0.5)); }

.play-overlay .ring {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(251, 247, 240, 0.94);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 10px rgba(251, 247, 240, 0.22), 0 0 34px rgba(232, 179, 75, 0.5);
  transition: transform 0.2s ease;
}

.play-overlay:hover .ring { transform: scale(1.06); }

.play-overlay .ring svg { margin-left: 4px; }

.video-frame.vertical .play-overlay .ring { width: 58px; height: 58px; }
.video-frame.vertical .play-overlay { font-size: 0.72rem; }

/* ---------- Intro (headline below the hero video) ---------- */

.intro { padding-top: clamp(3.4rem, 7vw, 5.5rem); }

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.2rem, 5vw, 4.5rem);
  align-items: center;
}

.intro-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background:
    url("../img/conversation.webp") center / cover no-repeat,
    radial-gradient(circle at 50% 33%, rgba(232, 179, 75, 0.55), rgba(232, 179, 75, 0) 40%),
    linear-gradient(180deg, #F7EEDD 0%, #F7EEDD 54.8%, #E7D6B6 55.2%, #DECBA6 100%);
  box-shadow: var(--shadow-soft);
}

.intro-visual::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 146, 46, 0.5);
  border-radius: 12px;
  pointer-events: none;
}

.intro-copy h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); max-width: 15ch; }

.intro-copy .lead { margin: 1.1rem 0 1.9rem; }

/* ---------- Testimonials ---------- */

.testimonials { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-deep) 100%); }

.testimonial-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(1.6rem, 3.5vw, 3rem);
  align-items: start;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.video-testimonial-caption {
  font-size: 0.82rem;
  color: var(--umber);
  margin-top: 0.9rem;
  max-width: 300px;
}

.quote-stack { display: grid; gap: 1.2rem; }

.quote-card {
  background: var(--white);
  border: 1px solid rgba(222, 210, 186, 0.7);
  border-radius: var(--radius);
  padding: 1.6rem 1.7rem 1.4rem;
  box-shadow: 0 10px 30px -22px rgba(36, 28, 20, 0.35);
  position: relative;
}

.quote-card::before {
  content: "\201C";
  position: absolute;
  top: 0.4rem;
  left: 1.2rem;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: rgba(201, 146, 46, 0.35);
}

.quote-card p {
  font-size: 0.99rem;
  line-height: 1.65;
  margin: 0.9rem 0 1.1rem;
  color: var(--espresso-soft);
}

.quote-meta { display: flex; align-items: center; gap: 0.8rem; }

.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dawn), var(--gold-deep));
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.quote-meta .who { line-height: 1.35; }
.quote-meta .who strong { display: block; font-size: 0.92rem; font-weight: 600; }
.quote-meta .who span { font-size: 0.8rem; color: var(--umber); }

.quote-card .sample-badge { position: absolute; top: 1.05rem; right: 1.1rem; }

/* ---------- What I do ---------- */

.what {
  background: url("../img/paper-texture.webp") center / cover no-repeat, var(--ivory);
}

.what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
}

.what-card { position: relative; padding-top: 1.4rem; }

.what-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 44px; height: 2px;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(232, 179, 75, 0.7);
}

.what-card h3 { margin-bottom: 0.5rem; }

.what-card p { font-size: 0.98rem; color: var(--umber); margin: 0; }

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.4rem);
  margin-top: clamp(2rem, 4vw, 3rem);
  counter-reset: step;
}

.step {
  background: var(--white);
  border: 1px solid rgba(222, 210, 186, 0.7);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.5rem;
  position: relative;
  counter-increment: step;
}

.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-deep);
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(201, 146, 46, 0.5);
  background: rgba(232, 179, 75, 0.12);
  margin-bottom: 1rem;
}

.step h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }

.step p { font-size: 0.94rem; color: var(--umber); margin: 0; }

/* ---------- Lead magnet ---------- */

.magnet {
  position: relative;
  background: url("../img/dawn-sea.webp") center 62% / cover no-repeat;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.magnet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(251, 247, 240, 0.88) 0%, rgba(251, 247, 240, 0.35) 45%, rgba(251, 247, 240, 0.75) 100%);
}

.magnet-card {
  position: relative;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
  background: rgba(255, 254, 251, 0.94);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(222, 210, 186, 0.8);
  border-radius: 24px;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  box-shadow: var(--shadow-soft);
}

.guide-cover {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  overflow: hidden;
  background: url("../img/guide-cover.webp") center / cover no-repeat;
  box-shadow: 14px 18px 44px -18px rgba(36, 28, 20, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.3rem;
  transform: rotate(-2deg);
}

.guide-cover .cover-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}

.guide-cover .cover-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.22;
  font-weight: 600;
  color: var(--espresso);
  margin: 0 0 0.4rem;
}

.guide-cover .cover-sub {
  font-size: 0.72rem;
  color: var(--umber);
  margin: 0;
}

.magnet-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--umber);
  margin: 1rem 0 0.35rem;
}

.magnet-form input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--espresso);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.magnet-form input::placeholder { color: rgba(110, 95, 75, 0.55); }

.magnet-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 146, 46, 0.18);
}

.magnet-form .btn { margin-top: 1.4rem; }

.hidden { display: none !important; }

/* ---------- Final CTA: dark dawn panel ---------- */

.final-cta { padding-bottom: clamp(4.5rem, 9vw, 7rem); }

.cta-panel {
  position: relative;
  background: var(--espresso);
  border-radius: 28px;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.4rem, 5vw, 4rem);
  overflow: hidden;
  box-shadow: 0 30px 70px -30px rgba(36, 28, 20, 0.5);
}

.cta-panel::before {
  content: "";
  position: absolute;
  left: -20%; right: -20%; bottom: -60%;
  height: 120%;
  background: radial-gradient(ellipse at 50% 100%, rgba(232, 179, 75, 0.55), rgba(232, 179, 75, 0.12) 48%, transparent 72%);
  pointer-events: none;
}

.cta-panel::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%; bottom: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 179, 75, 0.45) 30%, rgba(232, 179, 75, 0.45) 70%, transparent);
  pointer-events: none;
}

.cta-panel > * { position: relative; z-index: 1; }

.cta-panel h2 { color: var(--ivory); max-width: 18ch; margin-inline: auto; }

.cta-panel .eyebrow { color: var(--dawn); }

.cta-panel .lead { color: rgba(239, 230, 214, 0.85); }

.cta-panel .microcopy { color: rgba(239, 230, 214, 0.6); }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.6rem 0 1.8rem;
  font-size: 0.8rem;
  color: var(--umber);
}

.site-footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-footer a { color: var(--umber); }
.site-footer a:hover { color: var(--gold-deep); }

/* ---------- Subpages (book / thank-you / bonus / guide) ---------- */

.page-hero {
  position: relative;
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -50% -20% auto;
  height: 130%;
  background: radial-gradient(ellipse at 50% 0%, rgba(232, 179, 75, 0.24), transparent 62%);
  pointer-events: none;
}

.page-hero .inner { position: relative; }

.price-line {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--espresso-soft);
}

.price-line strong { color: var(--gold-deep); font-weight: 600; }

.panel {
  background: var(--white);
  border: 1px solid rgba(222, 210, 186, 0.8);
  border-radius: 20px;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-lift);
}

.panel + .panel { margin-top: 1.6rem; }

/* Payment module (swappable) */

.payment-module {
  border: 1.5px dashed rgba(201, 146, 46, 0.75);
  background: rgba(232, 179, 75, 0.07);
  border-radius: 20px;
  padding: clamp(1.6rem, 3.5vw, 2.4rem);
  position: relative;
}

.module-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(232, 179, 75, 0.18);
  border: 1px solid rgba(201, 146, 46, 0.4);
  border-radius: 999px;
  padding: 0.32rem 0.85rem;
  margin-bottom: 1.1rem;
}

.pay-steps { margin: 0.4rem 0 0; padding: 0; list-style: none; }

.pay-steps li {
  display: flex;
  gap: 0.9rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(222, 210, 186, 0.6);
  font-size: 0.97rem;
}

.pay-steps li:last-child { border-bottom: 0; }

.pay-steps .n {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--dawn);
  font-size: 0.78rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.pay-steps li span:last-child { color: var(--espresso-soft); }

.demo-shortcut {
  margin-top: 1.8rem;
  padding-top: 1.5rem;
  border-top: 1px dashed rgba(110, 95, 75, 0.4);
  text-align: center;
}

.demo-shortcut p { font-size: 0.8rem; color: var(--umber); margin-bottom: 0.8rem; }

/* Calendly slot */

.calendly-placeholder {
  border: 1.5px dashed rgba(110, 95, 75, 0.45);
  border-radius: 16px;
  background: var(--ivory);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  text-align: center;
  padding: 2rem;
  color: var(--umber);
}

.calendly-placeholder .cal-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(232, 179, 75, 0.16);
  border: 1px solid rgba(201, 146, 46, 0.4);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
}

.calendly-inline-widget { min-width: 320px; height: 700px; }

/* Bonus / upsell */

.bonus-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: clamp(2rem, 4.5vw, 3.6rem);
  align-items: center;
}

.book-cover-wrap {
  position: relative;
  max-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 18px 22px 50px -20px rgba(36, 28, 20, 0.5);
  transform: rotate(2deg);
}

.book-cover-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.book-cover-wrap .cover-title-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 0 1.5rem 2.2rem;
  text-align: center;
  color: #F3E8D4;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 560;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.strike { color: var(--umber); text-decoration: line-through; font-weight: 400; }

.bonus-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--gold-deep);
  margin: 0.4rem 0 1.4rem;
}

.confirm-note {
  margin-top: 1.6rem;
  background: rgba(232, 179, 75, 0.12);
  border: 1px solid rgba(201, 146, 46, 0.35);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  font-size: 0.95rem;
  color: var(--espresso-soft);
}

/* Toast */

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.6rem;
  transform: translate(-50%, 20px);
  background: var(--espresso);
  color: var(--ivory);
  font-size: 0.88rem;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lift);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
  max-width: min(480px, 90vw);
  text-align: center;
}

.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .play-overlay .ring { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr; }
  .intro-visual { max-width: 420px; margin-inline: auto; width: 100%; }
  .intro-copy { text-align: center; }
  .intro-copy h1 { margin-inline: auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .video-frame.vertical { margin-inline: auto; }
  .video-testimonial-caption { margin-inline: auto; text-align: center; }
  .what-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .steps { grid-template-columns: 1fr; }
  .magnet-card { grid-template-columns: 1fr; }
  .guide-cover { max-width: 280px; margin-inline: auto; }
  .bonus-grid { grid-template-columns: 1fr; }
  .book-cover-wrap { max-width: 280px; margin-inline: auto; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .btn { width: 100%; }
  .site-header .btn { width: auto; }
  .quote-card .sample-badge { position: static; margin-bottom: 0.6rem; }
}
