/* =========================================================
   DIVINELY CHELSEY — DESIGN SYSTEM
   Pulled from live.html. This is the reusable look-and-feel:
   colors, fonts, buttons, section styling, cards, and every
   animation on the site. The checkout-funnel logic (steps,
   pricing state, popups) was left out on purpose — that's
   page-specific behavior, not part of the visual system.

   How to use this: this is the file to hand back to build
   the block templates from — every CSS class here is a
   candidate for a reusable block type (Hero, Offer Card,
   Review Carousel, CTA Banner, etc).
   ========================================================= */

/* ---------- FONTS (load these in <head>) ----------
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Lato:wght@300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css">
------------------------------------------------------ */

/* ---------- COLOR + FONT TOKENS ---------- */
:root {
  --plum: #3f1940;       /* primary background */
  --gold: #ffc300;       /* accent / CTA color */
  --crimson: #371219;    /* alternate dark background */
  --red-badge: #7a0f1e;  /* "live" / urgency badge red */
  --off-white: #f9f3e8;  /* body text on dark backgrounds */

  --font-title: 'Cinzel Decorative', serif;   /* headings */
  --font-body: 'Cormorant Garamond', serif;   /* body copy, italics */
  --font-label: 'Lato', sans-serif;           /* labels, buttons, nav, eyebrows */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-weight: 600;
  background-color: var(--plum);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
  padding-top: 70px; /* offsets fixed nav */
}

/* ---------- NAV ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(63,25,64,0.97); backdrop-filter: blur(8px);
  padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid rgba(255,195,0,0.8);
}
.nav-logo { font-family: 'Cinzel Decorative', serif; font-size: 17px; color: #ffc300; letter-spacing: 0.05em; text-decoration: none; }
.nav-links { display: flex; gap: 1.1rem; list-style: none; flex-wrap: nowrap; }
.nav-links a { color: #ffffff; text-decoration: none; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-family: 'Lato', sans-serif; font-weight: 600; transition: color 0.2s; }
.nav-links a:hover { color: #ffc300; }
.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; padding: 6px; z-index: 10001; }
.hamburger span { display: block; width: 26px; height: 2px; background: #ffc300; border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; background: #3f1940; z-index: 9999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #f9f3e8; font-family: 'Lato', sans-serif; font-size: 19px; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: color 0.2s; }
.mobile-menu a:hover { color: #ffc300; }
.mobile-menu-close { position: absolute; top: 1.5rem; right: 1.75rem; background: none; border: none; color: #f9f3e8; font-size: 36px; cursor: pointer; line-height: 1; z-index: 10000; }
@media (max-width: 768px) { .hamburger { display: flex; } .nav-links { display: none !important; } }

/* ---------- HERO ---------- */
.page-hero {
  background-color: #3f1940;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 80px 24px 70px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(92,43,94,0.5) 0%, transparent 70%);
  pointer-events: none;
}
.eyebrow-label {
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: #ffc300;
  margin-bottom: 20px; display: block; position: relative; z-index: 2;
}
.page-hero h1 {
  font-family: 'Cinzel Decorative', serif; font-size: clamp(42px, 8vw, 72px);
  line-height: 1.2; color: #ffc300; margin-bottom: 8px;
  position: relative; z-index: 2; max-width: 700px;
  text-wrap: balance;
}
.page-hero h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3.5vw, 32px);
  line-height: 1.4; color: #f9f3e8; margin-bottom: 36px;
  position: relative; z-index: 2; max-width: 680px;
  font-style: italic; font-weight: 600;
  text-wrap: balance;
}
.hero-sub {
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(249,243,232,0.55); line-height: 1.6;
  position: relative; z-index: 2; max-width: 480px;
  margin-top: 36px; margin-bottom: 0;
  text-wrap: balance;
}

/* Floating sparkle decoration — drop <span class="sparkle s1">…</span>
   through s6 anywhere inside a relatively-positioned section */
.sparkle { position: absolute; width: 8px; height: 8px; background: #ffc300; pointer-events: none; animation: floatSparkle 6s ease-in-out infinite; opacity: 0; }
.sparkle::before { content: ''; position: absolute; inset: -2px; background: #ffc300; transform: rotate(45deg); }
.sparkle.s1 { top: 15%; left: 10%; animation-delay: 0s; }
.sparkle.s2 { top: 25%; right: 12%; animation-delay: 0.6s; width: 6px; height: 6px; }
.sparkle.s3 { top: 55%; left: 15%; animation-delay: 1.2s; width: 5px; height: 5px; }
.sparkle.s4 { top: 70%; right: 20%; animation-delay: 1.8s; }
.sparkle.s5 { top: 40%; left: 6%; animation-delay: 2.4s; width: 6px; height: 6px; }
.sparkle.s6 { top: 35%; right: 8%; animation-delay: 3s; width: 7px; height: 7px; }
@keyframes floatSparkle {
  0%, 100% { opacity: 0; transform: translateY(0) rotate(0deg); }
  20%, 80% { opacity: 1; }
  50% { transform: translateY(-30px) rotate(180deg); }
}

/* ---------- BADGES ---------- */
.live-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #7a0f1e; color: #f9f3e8;
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 14px 36px; margin-bottom: 28px;
  position: relative; z-index: 2;
  animation: ctaPulseRed 2.5s ease-in-out infinite;
}
.discount-badge {
  display: inline-block; background: #7a0f1e; color: #f9f3e8;
  font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 10px 28px; white-space: nowrap;
  animation: ctaPulseRed 2.5s ease-in-out infinite;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: #ffc300; animation: liveDotBlink 1.4s ease-in-out infinite; flex-shrink: 0; }
@keyframes liveDotBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
@keyframes ctaPulseRed {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122,15,30,0.7); }
  50% { box-shadow: 0 0 0 12px rgba(122,15,30,0); }
}

/* ---------- BUTTONS ---------- */
.hero-btn, .btn-gold {
  display: inline-block; background: #ffc300; color: #3f1940;
  font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  padding: 18px 52px; position: relative; z-index: 2;
  transition: background 0.3s, transform 0.2s;
  animation: ctaPulse 2.5s ease-in-out infinite;
}
.hero-btn:hover, .btn-gold:hover { background: #e6b000; transform: scale(1.02); }
.btn-outline {
  display: inline-block; background: transparent; color: #ffc300;
  font-family: 'Lato', sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  padding: 16px 44px; border: 1px solid rgba(255,195,0,0.6);
  transition: border-color 0.3s, color 0.3s;
}
.btn-outline:hover { border-color: #ffc300; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,195,0,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(255,195,0,0); }
}

/* ---------- TICKER ---------- */
.ticker-strip {
  background: #7a0f1e; overflow: hidden; white-space: nowrap;
  padding: 12px 0; border-top: 1px solid rgba(255,195,0,0.4); border-bottom: 1px solid rgba(255,195,0,0.4);
}
.ticker-track { display: inline-flex; width: max-content; animation: tickerScroll 22s linear infinite; }
.ticker-track span {
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: #f9f3e8;
  padding: 0 28px; white-space: nowrap;
}
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- BACKGROUND BANDS ---------- */
.band-plum   { background-color: #3f1940; }
.band-crimson { background-color: #371219; }

/* ---------- SECTION HEADER ---------- */
.section-wrap { max-width: 1060px; margin: 0 auto; padding: 64px 48px; }
.section-label {
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: #ffc300;
  margin-bottom: 16px; display: block; text-align: center;
}
.section-heading {
  font-family: 'Cinzel Decorative', serif; font-size: clamp(26px, 4vw, 40px);
  line-height: 1.25; color: #f9f3e8; margin-bottom: 16px; text-align: center;
  text-wrap: balance;
}
.section-heading em { color: #ffc300; font-style: normal; }
.section-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,195,0,0.8), transparent);
  margin-bottom: 32px;
}

/* ---------- BODY COPY ---------- */
.intro-copy { max-width: 720px; margin-left: auto; margin-right: auto; }
.intro-copy p { font-family: 'Cormorant Garamond', serif; font-size: 20px; line-height: 1.9; color: #f9f3e8; margin-bottom: 20px; }
.intro-copy p:last-child { margin-bottom: 0; }
.gold-italic { color: #ffc300; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 21px; line-height: 1.7; }

/* ---------- REVIEWS CAROUSEL ---------- */
.carousel-wrapper { width: 100%; overflow: hidden; padding: 10px 0 10px; }
.carousel-track { display: flex; gap: 24px; width: max-content; animation: slideLeft 55s linear infinite; }
@keyframes slideLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.review-card {
  background: #f9f3e8; border-radius: 12px; padding: 24px 26px; width: 320px; flex-shrink: 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3); display: flex; flex-direction: column; gap: 12px;
}
.review-card-top { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: #3f1940; display: flex; align-items: center; justify-content: center; font-family: 'Cinzel Decorative', serif; font-size: 16px; color: #ffc300; flex-shrink: 0; }
.review-meta { flex: 1; }
.review-name { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700; color: #1a1a1a; line-height: 1.2; }
.review-source { font-family: 'Lato', sans-serif; font-size: 11px; color: #666; margin-top: 2px; }
.review-stars-row { display: flex; align-items: center; gap: 8px; }
.review-stars-row .stars { color: #fbbc04; font-size: 15px; letter-spacing: 1px; }
.review-reading-type { font-family: 'Lato', sans-serif; font-size: 11px; color: #888; }
.review-text { font-family: 'Lato', sans-serif; font-size: 13px; line-height: 1.6; color: #333; }

/* ---------- OFFER / PRICING CARD ---------- */
.offer-img { display: block; width: 100%; max-width: 100%; border: 1px solid rgba(255,195,0,0.4); margin: 0 auto 28px; }
.offer-box {
  max-width: 680px; margin: 0 auto;
  border: 1px solid rgba(255,195,0,0.6); background: rgba(255,195,0,0.04);
  padding: 52px 52px; text-align: center; position: relative;
}
.offer-live-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #7a0f1e; color: #f9f3e8;
  font-family: 'Lato', sans-serif; font-size: 10px; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  padding: 7px 22px; white-space: nowrap;
  animation: ctaPulseRed 2.5s ease-in-out infinite;
}
.offer-box-title { font-family: 'Cinzel Decorative', serif; font-size: clamp(22px, 3.5vw, 30px); color: #f9f3e8; margin-bottom: 10px; }
.offer-box-price { font-family: 'Cinzel Decorative', serif; font-size: clamp(44px, 7vw, 64px); color: #ffc300; line-height: 1; margin-bottom: 16px; }
.offer-price-row { display: flex; align-items: baseline; justify-content: center; gap: 18px; margin-bottom: 16px; flex-wrap: wrap; }
.offer-price-was { font-family: 'Cinzel Decorative', serif; font-size: clamp(24px, 4vw, 34px); color: rgba(249,243,232,0.45); text-decoration: line-through; line-height: 1; }
.offer-price-now { font-family: 'Cinzel Decorative', serif; font-size: clamp(44px, 7vw, 64px); color: #ffc300; line-height: 1; }
.offer-save-note {
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #f9f3e8;
  background: rgba(122,15,30,0.85); display: inline-block; padding: 8px 18px; margin-bottom: 20px;
}
.offer-box-sub { font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 600; color: rgba(249,243,232,0.6); letter-spacing: 0.08em; margin-bottom: 40px; text-wrap: balance; }
.offer-details { display: flex; flex-direction: column; gap: 16px; text-align: left; max-width: 500px; margin: 0 auto 40px; }
.offer-detail-row { display: flex; align-items: flex-start; gap: 14px; }
.offer-detail-icon { color: #ffc300; font-size: 18px; flex-shrink: 0; margin-top: 3px; }
.offer-detail-row p { font-family: 'Cormorant Garamond', serif; font-size: 20px; line-height: 1.65; color: #f9f3e8; }
.offer-detail-row p strong { color: #ffc300; }

/* Link-list style offer card (compact row, used on Links-style pages) */
.offer-card { border: 1px solid rgba(255,195,0,0.6); background: rgba(255,195,0,0.03); padding: 24px 28px; margin-bottom: 16px; display: flex; justify-content: space-between; align-items: center; text-decoration: none; transition: border-color 0.25s, background 0.25s; max-width: 720px; margin-left: auto; margin-right: auto; }
.offer-card:hover { border-color: #ffc300; background: rgba(255,195,0,0.07); }
.offer-name { font-family: 'Cinzel Decorative', serif; font-size: 14px; color: #ffc300; margin-bottom: 6px; line-height: 1.4; }
.offer-detail { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: #f9f3e8; font-style: italic; }
.offer-price { font-family: 'Cinzel Decorative', serif; font-size: 22px; color: #ffc300; white-space: nowrap; margin-left: 20px; }
.offer-price .price-was { font-size: 15px; color: rgba(249,243,232,0.45); text-decoration: line-through; margin-right: 8px; }
.payment-note { font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: rgba(249,243,232,0.6); text-align: center; margin-top: 24px; line-height: 1.6; }

/* ---------- STEPS / "HOW IT WORKS" LIST ---------- */
.steps-stack { display: flex; flex-direction: column; gap: 18px; max-width: 720px; margin-left: auto; margin-right: auto; }
.step-item { border-left: 3px solid rgba(255,195,0,0.5); padding: 10px 0 10px 24px; transition: border-color 0.25s; }
.step-item:hover { border-color: #ffc300; }
.step-item p { font-family: 'Cormorant Garamond', serif; font-size: 20px; line-height: 1.8; color: #f9f3e8; }
.step-item p strong { color: #ffc300; }

/* ---------- CLOSING / CTA BLOCK ---------- */
.closing-block {
  text-align: center; padding: 48px;
  border: 1px solid rgba(255,195,0,0.3); max-width: 680px; margin: 0 auto;
  background: rgba(255,195,0,0.03);
}
.closing-block p { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic; color: #f9f3e8; line-height: 1.7; margin-bottom: 12px; text-wrap: balance; }

/* ---------- SCROLL-REVEAL ANIMATION ----------
   Add class="reveal" to any element; requires the small
   IntersectionObserver script at the bottom of this file's
   companion JS snippet to toggle .visible on scroll. */
html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- FOOTER ---------- */
footer { background: #3f1940; padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,195,0,0.8); }
.footer-brand { font-family: 'Cinzel Decorative', serif; font-size: 19px; color: #ffc300; margin-bottom: 1rem; display: block; }
.footer-desc { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-style: italic; color: #f9f3e8; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,195,0,0.8); display: flex; align-items: center; justify-content: center; font-size: 16px; color: #f9f3e8; text-decoration: none; transition: border-color 0.2s, color 0.2s; }
.social-link:hover { border-color: #ffc300; color: #ffc300; }
.footer-col-title { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #ffc300; margin-bottom: 1.25rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: #f9f3e8; text-decoration: none; font-family: 'Lato', sans-serif; font-size: 17px; transition: color 0.2s; }
.footer-links a:hover { color: #ffc300; }
.footer-bottom { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; font-family: 'Lato', sans-serif; font-size: 13px; color: #f9f3e8; flex-wrap: wrap; gap: 0.75rem; }
.footer-policies { display: flex; flex-wrap: wrap; gap: 4px 0; justify-content: center; align-items: center; }
.footer-policies a { color: #f9f3e8; text-decoration: none; font-size: 13px; font-weight: 600; transition: color 0.2s; }
.footer-policies a:hover { color: #ffc300; }
.policy-dot { color: #f9f3e8; font-size: 13px; font-weight: 600; padding: 0 8px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .section-wrap { padding: 48px 24px; }
  .offer-box { padding: 42px 24px 36px; }
  .closing-block { padding: 36px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .carousel-track { padding: 24px; }
  .btn-gold { white-space: nowrap; }
  .hero-btn { white-space: nowrap; padding: 18px 28px; }
  .live-badge { max-width: 90vw; white-space: normal; text-align: center; }
  .offer-box-sub { margin-bottom: 24px; }
  .offer-box .btn-gold { display: block; width: 100%; text-align: center; box-sizing: border-box; white-space: normal; padding: 18px 16px; }
  .closing-block .btn-gold { display: block; width: 100%; text-align: center; box-sizing: border-box; white-space: normal; padding: 18px 16px; }
  .closing-block p { font-size: 18px; word-break: break-word; }
}

/* =========================================================
   EXTRA ANIMATIONS
   The rest of the site's motion effects, generalized into
   standalone classes so any block/card/button can use them
   — pulled from the funnel-specific CSS where they originally
   only applied to checkout elements.
   ========================================================= */

/* --- Glow-pulse border: a soft box-shadow pulse around the edge.
   Drop on any card or button. --- */
.glow-pulse {
  animation: glowPulseBox 2.2s ease-in-out infinite;
}
@keyframes glowPulseBox {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,195,0,0.25); }
  50% { box-shadow: 0 0 0 10px rgba(255,195,0,0); }
}

/* --- Rotating gold-orbit border: a thin gradient ring that spins
   around the element's edge, plus a soft ambient glow underneath.
   Requires position: relative on the element, and the two
   pseudo-elements will overlay its edges. --- */
.glow-outline {
  position: relative;
}
.glow-outline::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  border: 1px solid rgba(255,195,0,0.45);
  animation: outlineAmbientGlow 2.6s ease-in-out infinite;
  pointer-events: none;
}
.glow-outline::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from var(--outlineAngle),
    transparent 0%, transparent 70%,
    rgba(255,195,0,0.35) 82%, rgba(255,214,51,0.95) 90%,
    rgba(255,195,0,0.35) 96%, transparent 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  animation: outlineOrbit 3.5s linear infinite;
  pointer-events: none;
}
@property --outlineAngle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes outlineOrbit {
  0% { --outlineAngle: 0deg; }
  100% { --outlineAngle: 360deg; }
}
@keyframes outlineAmbientGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(255,195,0,0.15), inset 0 0 18px rgba(255,195,0,0.05); border-color: rgba(255,195,0,0.35); }
  50% { box-shadow: 0 0 38px rgba(255,195,0,0.4), inset 0 0 26px rgba(255,195,0,0.12); border-color: rgba(255,195,0,0.8); }
}

/* --- Scale-pulse: gentle breathing zoom, good on totals/prices --- */
.scale-pulse {
  animation: scalePulse 1.3s ease-in-out infinite;
}
@keyframes scalePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* --- Header text pulse: subtle scale + gold text-shadow glow,
   good on headings you want to feel "alive" --- */
.text-pulse {
  animation: textPulseGlow 2.4s ease-in-out infinite;
}
@keyframes textPulseGlow {
  0%, 100% { transform: scale(1); text-shadow: 0 0 0 rgba(255,195,0,0); }
  50% { transform: scale(1.035); text-shadow: 0 0 18px rgba(255,195,0,0.35); }
}

/* --- Twinkling sparkle (variant of the hero sparkle, rotates + scales
   rather than floating — good for small accent icons) --- */
.twinkle-sparkle {
  position: absolute; color: #ffc300; pointer-events: none;
  font-size: 14px; line-height: 1; opacity: 0;
  text-shadow: 0 0 8px rgba(255,195,0,0.8);
  animation: sparkleTwinkle 2.8s ease-in-out infinite;
}
@keyframes sparkleTwinkle {
  0%, 100% { opacity: 0; transform: scale(0.4) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(25deg); }
}

/* --- Shimmer fill: animated diagonal shimmer sweeping across a
   filled bar (progress bars, loading states). Recolored to gold to
   match the approved palette — was green in its original checkout-bar
   use. --- */
.shimmer-fill {
  background: linear-gradient(90deg, #FFC300, #FFE180, #FFC300);
  background-size: 200% 100%;
  animation: shimmerSweep 1.6s linear infinite;
}
@keyframes shimmerSweep {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

/* --- Punch-in: entrance animation for content appearing on
   scroll or on a user action (bouncy overshoot) --- */
.punch-in {
  animation: punchIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes punchIn {
  0% { opacity: 0; transform: translateY(30px) scale(0.96); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.01); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Bouncing arrow: for "scroll down" / "continue" indicators --- */
.bounce-arrow {
  text-align: center; padding: 18px 0 0;
  font-size: 34px; color: #ffc300;
  text-shadow: 0 0 16px rgba(255,195,0,0.5);
  animation: arrowBounce 1.4s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(10px); opacity: 1; }
}

/* --- Popup entrance: scale+fade-in for modals/popups --- */
.popup-in {
  animation: popupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popupIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

/* =========================================================
   BLOCK BUILDER SYSTEM
   Classes emitted by blocks-render.js for pages built with the
   + New Page editor (hero, aboutSplit, offerCard, testimonialCarousel,
   ctaBanner, leadCapture, links-page pieces, footer columns).
   Matched to the same tokens and visual language as the classes
   above, which is what your six original text pages use.
   ========================================================= */

/* ---------- SHARED PRIMARY BUTTON ----------
   blocks-render.js uses .btn-primary / .btn-outline for every
   button in the block system; alias them to the existing
   .hero-btn / .btn-outline look so both systems match exactly. */
.btn-primary { display: inline-block; background: #ffc300; color: #3f1940;
  font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none;
  padding: 18px 52px; position: relative; z-index: 2;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: #e6b000; transform: scale(1.02); }

/* ---------- SECTION WRAPPER ----------
   .section-inner is this system's equivalent of .section-wrap. */
.section-inner { max-width: 1060px; margin: 0 auto; padding: 64px 48px; }
.section-eyebrow { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase; color: #ffc300;
  margin-bottom: 16px; }
.divider { width: 60px; height: 2px; background: #ffc300; margin-bottom: 20px; }

/* ---------- HERO (block builder) ----------
   Mirrors .page-hero / .eyebrow-label / .page-hero h1 / .hero-sub
   from the text-page hero, under the class names blocks-render.js
   actually outputs. */
.hero-bg, .hero-orbs { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; pointer-events: none; }
.orb-1 { width: 320px; height: 320px; top: -80px; left: -60px; background: #ffc300; }
.orb-2 { width: 260px; height: 260px; bottom: -60px; right: -40px; background: #7a0f1e; }
.orb-3 { width: 200px; height: 200px; top: 40%; left: 60%; background: #ffc300; opacity: 0.15; }
.hero-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; padding: 120px 24px 80px; }
.hero-eyebrow { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase; color: #ffc300;
  margin-bottom: 20px; display: block; }
.hero-title { font-family: 'Cinzel Decorative', serif; font-size: clamp(42px, 8vw, 72px);
  line-height: 1.2; color: #ffc300; margin-bottom: 8px; max-width: 700px;
  margin-left: auto; margin-right: auto; text-wrap: balance; }
.hero-tagline { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px, 3.5vw, 32px);
  line-height: 1.4; color: #f9f3e8; margin-bottom: 36px; max-width: 680px;
  margin-left: auto; margin-right: auto; font-style: italic; font-weight: 600; text-wrap: balance; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.scroll-indicator { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: 'Lato', sans-serif; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(249,243,232,0.5); }

/* ---------- ABOUT / IMAGE + TEXT SPLIT ---------- */
.about { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image-frame { aspect-ratio: 4/5; overflow: hidden; border-radius: 8px; border: 1px solid rgba(255,195,0,0.4); }
.about-accent-border { position: absolute; inset: -10px; border: 1px solid rgba(255,195,0,0.3); border-radius: 8px; pointer-events: none; z-index: -1; }
.about-text { text-align: left; }
.about-badges { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.badge { font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 14px; border-radius: 20px;
  background: rgba(255,195,0,0.12); color: #ffc300; display: inline-block; }
.badge-crimson { background: rgba(122,15,30,0.25); }
.badge-plum { background: rgba(63,25,64,0.4); }
.badge-navy { background: rgba(63,25,64,0.4); }
.badge-forest { background: rgba(255,195,0,0.12); }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* ---------- OFFER BOX (block builder) ----------
   Same as .offer-box in the existing system, aliased so the
   block renderer's own class name picks up the identical look. */
.offer-box { max-width: 680px; margin: 0 auto; border: 1px solid rgba(255,195,0,0.6);
  background: rgba(255,195,0,0.04); padding: 52px 52px; text-align: center; position: relative; }
.offer-box-title { font-family: 'Cinzel Decorative', serif; font-size: clamp(22px, 3.5vw, 30px); color: #f9f3e8; margin-bottom: 10px; }
.offer-box-price { font-family: 'Cinzel Decorative', serif; font-size: clamp(44px, 7vw, 64px); color: #ffc300; line-height: 1; margin-bottom: 16px; }
.offer-box-sub { font-family: 'Lato', sans-serif; font-size: 12px; font-weight: 600; color: rgba(249,243,232,0.6); letter-spacing: 0.08em; margin-bottom: 40px; text-wrap: balance; }
.offer-details { display: flex; flex-direction: column; gap: 16px; text-align: left; max-width: 500px; margin: 0 auto 40px; }
.offer-detail-row { display: flex; align-items: flex-start; gap: 14px; }
.offer-detail-icon { color: #ffc300; font-size: 18px; flex-shrink: 0; margin-top: 3px; }

/* ---------- TESTIMONIAL SECTION WRAPPER (block builder) ---------- */
.testimonials { padding: 80px 0; }

/* ---------- LEAD CAPTURE (block builder) ---------- */
.lead-capture { text-align: center; padding: 80px 24px; max-width: 720px; margin: 0 auto; }
.lead-title { font-family: 'Cinzel Decorative', serif; color: #f9f3e8; margin-bottom: 12px;
  font-size: clamp(26px, 4vw, 40px); }
.lead-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 19px; color: rgba(249,243,232,0.75); }
.lead-disclaimer { font-family: 'Lato', sans-serif; font-size: 12px; color: rgba(249,243,232,0.5); }

/* ---------- LINKS PAGE (block builder) ----------
   Matches the look of your existing Links page for pages built
   with the linkProfile / linkList / linkFooter block types. */
.profile { text-align: center; padding: 40px 24px 0; }
.profile-image { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; overflow: hidden;
  background: rgba(255,195,0,0.15); display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel Decorative', serif; font-size: 32px; color: #ffc300; border: 2px solid rgba(255,195,0,0.6); }
.profile-name { font-family: 'Cinzel Decorative', serif; font-size: 20px; color: #ffc300; margin-bottom: 4px; }
.profile-handle { font-family: 'Lato', sans-serif; font-size: 13px; color: rgba(249,243,232,0.6); margin-bottom: 14px; }
.profile-bio { font-family: 'Cormorant Garamond', serif; font-size: 17px; color: #f9f3e8; max-width: 420px; margin: 0 auto; line-height: 1.6; }
.social-row { display: flex; justify-content: center; gap: 12px; margin: 20px 0 28px; }
.social-icon { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,195,0,0.6);
  display: flex; align-items: center; justify-content: center; color: #f9f3e8; text-decoration: none;
  transition: border-color 0.2s, color 0.2s; }
.social-icon:hover { border-color: #ffc300; color: #ffc300; }
.outline-btn, .website-btn { display: block; max-width: 500px; margin: 0 auto 12px; padding: 16px 20px;
  text-decoration: none; font-family: 'Lato', sans-serif; text-align: center; border-radius: 8px; }
.outline-btn { border: 1px solid rgba(255,195,0,0.6); color: #ffc300; background: transparent; }
.outline-btn:hover { border-color: #ffc300; }
.website-btn { background: #ffc300; color: #3f1940; font-weight: 700; }
.website-btn:hover { background: #e6b000; }
.btn-sub { display: block; font-size: 11px; font-weight: 400; text-transform: none; letter-spacing: 0.02em; opacity: 0.8; margin-top: 2px; }
.links-divider { max-width: 500px; margin: 32px auto 20px; border-top: 1px solid rgba(255,195,0,0.25); }
.link-btn { display: flex; align-items: center; gap: 14px; max-width: 500px; margin: 0 auto 12px;
  padding: 14px 18px; text-decoration: none; border: 1px solid rgba(255,195,0,0.3); border-radius: 8px;
  transition: border-color 0.2s, background 0.2s; }
.link-btn:hover { border-color: #ffc300; background: rgba(255,195,0,0.04); }
.link-btn.featured { border-color: rgba(255,195,0,0.7); background: rgba(255,195,0,0.06); }
.link-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,195,0,0.1);
  display: flex; align-items: center; justify-content: center; color: #ffc300; flex-shrink: 0; }
.link-text { flex: 1; text-align: left; }
.link-title { font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700; color: #f9f3e8; }
.link-detail { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-style: italic; color: rgba(249,243,232,0.65); margin-top: 2px; }
.link-price { font-family: 'Cinzel Decorative', serif; font-size: 15px; color: #ffc300; white-space: nowrap; margin-left: 10px; }
.links-footer { text-align: center; padding: 40px 24px; font-family: 'Lato', sans-serif; font-size: 12px; color: rgba(249,243,232,0.5); }
.links-footer a { color: #ffc300; text-decoration: none; }

/* ---------- FOOTER COLUMN (block builder) ----------
   blocks-render.js's footer() outputs .footer-col per column;
   the text-page footer uses .footer-links li instead, so this
   gives the block-builder markup its own matching link styling. */
.footer-col { margin-bottom: 24px; }
.footer-col a { display: block; color: #f9f3e8; text-decoration: none; font-family: 'Lato', sans-serif;
  font-size: 15px; margin-bottom: 8px; transition: color 0.2s; }
.footer-col a:hover { color: #ffc300; }
