@font-face {
  font-family: 'Royale Dreams';
  src: url('fonts/RoyaleDreamsPersonalUse-z8Gy1.otf') format('opentype');
  font-display: swap;
  font-weight: normal;
  font-style: normal;
}
:root {
  --ink: #1a0a2e;
  --deep-purple: #2D0954;
  --royal-purple: #4A1080;
  --plum: #6B1B9A;
  --orchid: #8B3FB8;
  --lilac: #D4B5E8;
  --champagne: #F5E6CA;
  --cream: #FAF5EC;
  --paper: #F8F2E8;
  --gold: #C9A227;
  --gold-bright: #E5BE3D;
  --gold-deep: #8B6914;
  --rose-gold: #B8869C;
  --shadow: rgba(45, 9, 84, 0.18);
  --banner-h: 42px;
}
@media (max-width: 640px) {
  :root { --banner-h: 56px; }
}

/* ============================================
   LAUNCH BANNER (top strip)
============================================ */
.launch-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--banner-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0 1rem;
  background: linear-gradient(90deg, #1a0a2e 0%, #2D0954 50%, #1a0a2e 100%);
  border-bottom: 1px solid rgba(201, 162, 39, 0.45);
  color: var(--champagne);
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}
.launch-banner:hover { background: linear-gradient(90deg, #2D0954 0%, #4A1080 50%, #2D0954 100%); text-decoration: none; }
.launch-banner-eyebrow {
  color: var(--gold-bright);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.launch-banner-eyebrow::before {
  content: '✦';
  font-size: 0.85em;
  color: var(--gold-bright);
}
.launch-banner-date {
  color: var(--cream);
  font-weight: 600;
}
.launch-banner-count {
  color: var(--gold-bright);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.launch-banner-cta {
  color: var(--champagne);
  font-weight: 600;
  border-left: 1px solid rgba(201, 162, 39, 0.35);
  padding-left: 0.85rem;
}
.launch-banner-cta span { transition: transform 0.2s ease; display: inline-block; margin-left: 0.25rem; }
.launch-banner:hover .launch-banner-cta span { transform: translateX(3px); }
.launch-banner-sep { color: rgba(245, 230, 202, 0.4); }

@media (max-width: 640px) {
  .launch-banner {
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    line-height: 1.3;
  }
  .launch-banner-cta { display: none; }
  .launch-banner-sep { display: none; }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

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

a { color: inherit; text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ===== Decorative dividers ===== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto;
  color: var(--gold);
}
.ornament .line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
}
.ornament .diamond {
  width: 8px; height: 8px;
  background: currentColor;
  transform: rotate(45deg);
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: var(--banner-h, 0); left: 0; right: 0;
  z-index: 99;
  padding: 1.25rem 2rem;
  background: rgba(26, 10, 46, 0.0);
  backdrop-filter: blur(0px);
  transition: all 0.4s ease;
}
.nav.scrolled {
  background: rgba(26, 10, 46, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201, 162, 39, 0.2);
  padding: 0.85rem 2rem;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  color: var(--champagne);
  letter-spacing: 0.5px;
}
.nav-brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 0.18rem;
}
.nav-brand-name {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--champagne);
  line-height: 1.05;
}
.nav-brand-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  line-height: 1;
}
.nav-brand-mark {
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 1;
  flex-shrink: 0;
}
.nav-brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}
.nav.scrolled .nav-brand-mark { width: 36px; height: 36px; transition: width 0.3s, height 0.3s; }
.nav-links {
  display: flex; gap: 2.5rem;
  list-style: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}
.nav-links a { position: relative; padding: 4px 0; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold-bright); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--gold-bright);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold-bright);
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--champagne); transform: translateY(-1px); }

/* Hamburger toggle — hidden on desktop */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(245, 230, 202, 0.35);
  border-radius: 8px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--champagne);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav.scrolled .nav-toggle { border-color: rgba(245, 230, 202, 0.45); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav { padding: 0.85rem 1.25rem; }
  .nav.scrolled { padding: 0.65rem 1.25rem; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem 1.5rem 1.75rem;
    background: rgba(26, 10, 46, 0.98);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(201, 162, 39, 0.3);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.95rem 0.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta-mobile {
    display: block;
    margin-top: 1rem;
    text-align: center;
    background: var(--gold-bright);
    color: var(--ink);
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    border: none;
    letter-spacing: 0.2em;
    font-weight: 600;
  }
  .nav-links .nav-cta-mobile::after { display: none; }
}

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(139, 63, 184, 0.45), transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(74, 16, 128, 0.7), transparent 55%),
    linear-gradient(180deg, #1a0838 0%, #2D0954 40%, #3a0e6b 100%);
  overflow: hidden;
  padding: 8rem 0 6rem;
  display: flex;
  align-items: center;
}

/* Decorative gold filigree corner ornaments */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='%23C9A227' stroke-width='0.7'%3E%3Cpath d='M10 10 Q 60 10 60 60 Q 60 90 30 90 Q 10 90 10 70'/%3E%3Cpath d='M10 10 Q 100 30 130 80 Q 150 110 110 130'/%3E%3Ccircle cx='10' cy='10' r='3' fill='%23C9A227'/%3E%3Ccircle cx='60' cy='60' r='2' fill='%23C9A227'/%3E%3Cpath d='M40 40 Q 70 50 80 80'/%3E%3Cpath d='M20 30 Q 35 35 40 50'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}
.hero::before { top: 80px; left: 0; }
.hero::after { bottom: 0; right: 0; transform: scaleX(-1) scaleY(-1); }

/* Subtle grain overlay */
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.45'/%3E%3C/svg%3E");
  opacity: 0.06;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { animation: fadeUp 1.2s 0.2s backwards ease-out; }

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: clamp(320px, 42vw, 560px);
  aspect-ratio: 1 / 1;
  margin: -1rem 0 2.25rem;
  animation: heroLogoIn 1.8s cubic-bezier(0.2, 0.8, 0.2, 1) both, heroLogoFloat 6s ease-in-out infinite 1.8s;
}

/* Conic gold-shimmer ring that slowly rotates */
.hero-logo-shimmer {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  pointer-events: none;
  background: conic-gradient(
    from 0deg,
    rgba(229, 190, 61, 0)    0deg,
    rgba(229, 190, 61, 0.55) 60deg,
    rgba(255, 230, 140, 0.85) 90deg,
    rgba(229, 190, 61, 0.55) 120deg,
    rgba(229, 190, 61, 0)    180deg,
    rgba(139, 63, 184, 0.45) 240deg,
    rgba(229, 190, 61, 0)    320deg,
    rgba(229, 190, 61, 0)    360deg
  );
  filter: blur(18px);
  opacity: 0.85;
  animation: heroShimmer 9s linear infinite;
  z-index: 0;
}

.hero-logo::before,
.hero-logo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.hero-logo::before {
  background: radial-gradient(circle, rgba(229,190,61,0.45) 0%, rgba(139,63,184,0.28) 45%, transparent 72%);
  transform: scale(1.45);
  animation: haloPulse 4s ease-in-out infinite;
  filter: blur(14px);
  z-index: 0;
}
.hero-logo::after {
  background: radial-gradient(circle, rgba(255,230,140,0.65) 0%, rgba(229,190,61,0) 62%);
  transform: scale(1.08);
  animation: haloRing 3.2s ease-in-out infinite;
  mix-blend-mode: screen;
  z-index: 0;
}
.hero-logo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: heartBeat 2.6s ease-in-out infinite;
  filter:
    drop-shadow(0 0 24px rgba(255, 220, 110, 0.75))
    drop-shadow(0 0 64px rgba(139, 63, 184, 0.55))
    drop-shadow(0 22px 44px rgba(0, 0, 0, 0.6));
  transform-origin: 50% 55%;
  will-change: transform, filter;
}
@keyframes heroLogoIn {
  0%   { opacity: 0; transform: translateY(-28px) scale(0.7) rotate(-6deg); }
  60%  { opacity: 1; transform: translateY(0) scale(1.06) rotate(2deg); }
  100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
}
@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes heroShimmer {
  to { transform: rotate(360deg); }
}
@keyframes haloPulse {
  0%, 100% { transform: scale(1.45); opacity: 0.55; }
  50%      { transform: scale(1.78); opacity: 1; }
}
@keyframes haloRing {
  0%, 100% { transform: scale(1.08); opacity: 0.5; }
  50%      { transform: scale(1.32); opacity: 0.95; }
}
@keyframes heartBeat {
  0%, 30%, 100% { transform: scale(1); }
  6%            { transform: scale(1.09); }
  14%           { transform: scale(1); }
  20%           { transform: scale(1.13); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.85rem;
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2rem;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--gold-bright); border-radius: 50%; }
.hero-eyebrow-under {
  margin-top: 0.4rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.96;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.hero-title .script {
  font-family: 'Royale Dreams', 'Pinyon Script', cursive;
  font-weight: 400;
  font-size: 1.05em;
  display: inline-block;
  background: linear-gradient(135deg, #F2D469 0%, #C9A227 50%, #8B6914 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}
.hero-title em {
  font-style: italic;
  color: var(--lilac);
  font-weight: 400;
}

.hero-sub {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--champagne);
  margin-bottom: 1.75rem;
  font-weight: 400;
  max-width: 520px;
  line-height: 1.4;
}

.hero-foreword {
  display: inline-flex; align-items: center; gap: 0.9rem;
  background: rgba(245, 230, 202, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  margin-bottom: 2.5rem;
  color: var(--champagne);
  font-size: 0.85rem;
}
.hero-foreword strong {
  color: var(--gold-bright);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero-ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1.05rem 2.1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-gold {
  background: linear-gradient(135deg, #E5BE3D 0%, #C9A227 100%);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 162, 39, 0.5);
}
.btn-ghost {
  border-color: rgba(245, 230, 202, 0.4);
  color: var(--cream);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.btn-arrow {
  transition: transform 0.3s;
  font-size: 1.2em;
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Hero book visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1.4s 0.4s backwards ease-out;
}
.hero-book {
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)) drop-shadow(0 10px 20px rgba(74, 16, 128, 0.4));
  animation: float 6s ease-in-out infinite;
  transform: rotate(-3deg);
  transition: transform 0.6s ease;
}
.hero-book:hover { transform: rotate(0deg) scale(1.02); }
.hero-book img {
  width: 100%;
  max-width: 540px;
  height: auto;
}

/* Halo behind book */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.25) 0%, transparent 65%);
  z-index: 0;
  animation: pulse 5s ease-in-out infinite;
}

/* 777 watermark */
.watermark-777 {
  position: absolute;
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 230, 202, 0.04);
  font-size: 22rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}
.watermark-tl { top: 50%; left: -8%; }

@keyframes float {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-14px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-book img { max-width: 320px; }
  .hero-visual::before { width: 320px; height: 320px; }
}

/* ============================================
   MARQUEE — Movement banner
============================================ */
.marquee {
  background: var(--ink);
  border-top: 1px solid rgba(201, 162, 39, 0.3);
  border-bottom: 1px solid rgba(201, 162, 39, 0.3);
  overflow: hidden;
  padding: 1.5rem 0;
  position: relative;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.marquee-group {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
  flex-shrink: 0;
  min-width: 100vw;
  justify-content: space-around;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 1.5rem;
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--champagne);
  flex-shrink: 0;
}
.marquee-item .star {
  color: var(--gold-bright);
  font-size: 0.7em;
}
.marquee-item a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: rgba(229, 190, 61, 0.5);
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.marquee-item a:hover { color: var(--cream); }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   THE MOVEMENT — 144 churches, 33 years
============================================ */
.movement {
  padding: 8rem 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.movement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.movement-text {
  max-width: 540px;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.85rem;
  color: var(--royal-purple);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.section-eyebrow .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

.section-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--deep-purple);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--gold-deep);
}
.section-lead {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--royal-purple);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.section-body {
  font-size: 1rem;
  color: #4a3a5e;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* The numerical pillars */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.pillar {
  background: linear-gradient(160deg, var(--deep-purple) 0%, var(--royal-purple) 100%);
  color: var(--cream);
  padding: 2.25rem 1.75rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 162, 39, 0.3);
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' fill='none' stroke='%23C9A227' stroke-width='0.5'%3E%3Ccircle cx='70' cy='10' r='2' fill='%23C9A227'/%3E%3Cpath d='M70 10 Q 50 20 40 50'/%3E%3Cpath d='M70 10 Q 60 30 30 40'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.pillar-num {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 4.5rem;
  line-height: 1;
  background: linear-gradient(135deg, #F2D469 0%, #C9A227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.4rem;
}
.pillar-label {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.pillar-desc {
  font-size: 0.9rem;
  color: var(--lilac);
  line-height: 1.5;
}

/* The visual side - book mockup */
.movement-visual {
  position: relative;
}
.movement-visual img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(45, 9, 84, 0.25));
}
.movement-quote {
  position: absolute;
  bottom: -20px;
  right: 0;
  background: var(--ink);
  color: var(--champagne);
  padding: 1.25rem 1.5rem;
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  max-width: 280px;
  border-left: 3px solid var(--gold);
}
.movement-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 14px;
  font-size: 4rem;
  color: var(--gold);
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  line-height: 1;
}

@media (max-width: 900px) {
  .movement-grid { grid-template-columns: 1fr; gap: 3rem; }
  .movement-quote { position: static; margin-top: 2rem; max-width: 100%; }
}
@media (max-width: 500px) {
  .pillars { grid-template-columns: 1fr; }
}

/* ============================================
   ABOUT THE BOOK
============================================ */
.about-book {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--ink) 0%, #240a48 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.about-book::before {
  content: '777';
  position: absolute;
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: 32rem;
  color: rgba(201, 162, 39, 0.025);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
}
.about-visual img {
  width: 160%;
  max-width: none;
  margin-left: -29%;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
}
@media (max-width: 1100px) {
  .about-visual img { width: 120%; margin-left: -5%; }
}

.about-text .section-title {
  color: var(--cream);
}
.about-text .section-title em {
  color: var(--gold-bright);
}
.about-text .section-eyebrow {
  color: var(--gold-bright);
}
.about-text .section-lead {
  color: var(--champagne);
}
.about-text .section-body {
  color: var(--lilac);
}

.kainos-callout {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(201, 162, 39, 0.08);
  border-left: 2px solid var(--gold);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  margin: 2rem 0;
}
.kainos-callout .greek {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.25rem;
  color: var(--gold-bright);
  line-height: 1;
}
.kainos-callout p {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--champagne);
  line-height: 1.5;
}
.kainos-callout strong {
  color: var(--gold-bright);
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual img { width: 100%; margin-left: 0; }
}

/* ============================================
   FOREWORD — H.E. Dr. Joyce Banda
============================================ */
.foreword {
  padding: 6.5rem 0;
  background: linear-gradient(180deg, #f5ecdf 0%, #ead7f5 100%);
  position: relative;
  overflow: hidden;
}
.foreword::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.18), transparent 70%);
  pointer-events: none;
}
.foreword-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.foreword-portrait {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, 0.85),
    0 0 0 7px var(--gold),
    0 30px 60px rgba(45, 9, 84, 0.35);
}
.foreword-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.foreword-flag {
  position: absolute;
  bottom: 8%;
  right: 8%;
  width: 60px;
  height: 40px;
  border-radius: 4px;
  background:
    linear-gradient(180deg, #000 0 33%, #ce1126 33% 66%, #00853f 66% 100%);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.foreword-flag::before {
  content: '';
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background:
    radial-gradient(circle, #ce1126 0 35%, transparent 36%),
    conic-gradient(from -90deg, #ce1126 0deg, transparent 0deg);
  background:
    radial-gradient(circle, #ce1126 0 38%, transparent 40%);
}
.foreword-text .section-title {
  color: var(--deep-purple);
  margin-bottom: 1.5rem;
}
.foreword-text .section-title em {
  color: var(--gold-deep);
}
.foreword-text .section-eyebrow {
  color: var(--royal-purple);
}
.foreword-quote {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.5vw + 0.6rem, 1.5rem);
  line-height: 1.5;
  color: #3a2a4e;
  margin: 0 0 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
}
.foreword-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(74, 16, 128, 0.18);
}
.foreword-attribution strong {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep-purple);
  letter-spacing: 0.01em;
}
.foreword-attribution span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal-purple);
  font-weight: 600;
}

@media (max-width: 900px) {
  .foreword-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .foreword-portrait { max-width: 320px; }
}
@media (max-width: 768px) {
  .foreword { padding: 4rem 0; }
  .foreword-quote { font-size: 1.1rem; padding-left: 1rem; }
}

/* ============================================
   THE 7-DAY DEVOTIONAL JOURNEY
============================================ */
.devotional {
  padding: 8rem 0;
  background: var(--paper);
}
.devotional-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.devotional-header .section-eyebrow {
  justify-content: center;
}
.devotional-header .ornament {
  margin-top: 1.5rem;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.day-grid .day-7-crown {
  grid-column: 2;
}
.day-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: var(--deep-purple);
  aspect-ratio: 3/4;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid transparent;
}
.day-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(45, 9, 84, 0.35);
  border-color: var(--gold);
}
.day-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.day-card:hover img { transform: scale(1.04); }
.day-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26, 10, 46, 0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.day-card:hover .day-card-overlay { opacity: 1; }
.day-card-meta {
  color: var(--cream);
}
.day-card-day {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-bright);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}
.day-card-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

/* The 7th day — Crown card */
.day-7-crown {
  background: linear-gradient(160deg, var(--royal-purple) 0%, var(--deep-purple) 100%);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.day-7-crown::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='%23C9A227' stroke-width='0.5' opacity='0.15'%3E%3Ccircle cx='100' cy='100' r='80'/%3E%3Ccircle cx='100' cy='100' r='60'/%3E%3Cpath d='M50 100 L 150 100 M 100 50 L 100 150'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.day-7-num {
  font-family: 'Royale Dreams', 'Pinyon Script', cursive;
  font-size: 7rem;
  background: linear-gradient(135deg, #F2D469 0%, #C9A227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 0.9;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.day-7-label {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 1.15rem;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

@media (max-width: 800px) {
  .day-grid { grid-template-columns: repeat(2, 1fr); }
  .day-grid .day-7-crown { grid-column: auto; }
}

/* ============================================
   AUTHOR
============================================ */
.author {
  padding: 8rem 0;
  background: linear-gradient(180deg, #f5ecdf 0%, #ead7f5 100%);
  position: relative;
  overflow: hidden;
}
.author::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.12), transparent 70%);
  pointer-events: none;
}
.author-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
}
.author-portrait {
  position: relative;
}
.author-portrait-frame {
  position: relative;
  background: linear-gradient(135deg, var(--royal-purple) 0%, var(--deep-purple) 100%);
  padding: 1.25rem;
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(45, 9, 84, 0.25);
  border: 1px solid var(--gold);
}
.author-portrait-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 162, 39, 0.4);
  pointer-events: none;
  z-index: 2;
}
.author-portrait img {
  width: 100%;
  display: block;
  border-radius: 2px;
}
.author-portrait-tag {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--ink);
  color: var(--gold-bright);
  font-family: 'Royale Dreams', 'Pinyon Script', cursive;
  font-size: 1.6rem;
  padding: 0.85rem 1.5rem;
  border-radius: 2px;
  border: 1px solid var(--gold);
  z-index: 3;
}

.author-text .section-title {
  margin-bottom: 0.4rem;
}
.author-credentials {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--royal-purple);
  font-size: 1rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.75rem;
}
.author-bio {
  color: #3a2a4e;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  font-size: 0.98rem;
}
.author-affiliations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(74, 16, 128, 0.18);
}
.author-affiliations span {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--royal-purple);
  font-weight: 600;
  position: relative;
  padding-left: 14px;
}
.author-affiliations span::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px; height: 5px;
  background: var(--gold);
}

@media (max-width: 900px) {
  .author-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================
   FOOT WASHING CEREMONY
============================================ */
.footwashing {
  padding: 5rem 0;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.footwashing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(201, 162, 39, 0.18), transparent 55%),
    radial-gradient(ellipse at 100% 50%, rgba(139, 63, 184, 0.25), transparent 60%);
  pointer-events: none;
}
.footwashing-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 2.5rem 2.75rem;
  background: linear-gradient(135deg, rgba(74, 16, 128, 0.5), rgba(45, 9, 84, 0.85));
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.footwashing-card .section-eyebrow { color: var(--gold-bright); }
.footwashing-card .section-eyebrow .dot { background: var(--gold-bright); }
.footwashing-card .section-title {
  color: var(--cream);
  margin-bottom: 1rem;
}
.footwashing-card .section-title em {
  color: var(--gold-bright);
}
.footwashing-card .section-lead {
  color: var(--champagne);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}
.footwashing-scripture {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-left: 2px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--lilac);
}
.footwashing-quote {
  font-size: 1.2rem;
  line-height: 1.5;
}
.footwashing-ref {
  font-style: normal;
  font-family: 'Manrope', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
}

@media (max-width: 800px) {
  .footwashing { padding: 3.5rem 0; }
  .footwashing-card {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding: 1.75rem 1.5rem;
  }
  .footwashing-quote { font-size: 1.05rem; }
}

/* ============================================
   CHURCH REGISTRATION
============================================ */
.register {
  padding: 8rem 0;
  background:
    radial-gradient(ellipse at top, rgba(139, 63, 184, 0.3), transparent 60%),
    linear-gradient(180deg, #1a0838 0%, #2D0954 100%);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.register-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 4rem;
}
.register-head .section-title {
  color: var(--cream);
}
.register-head .section-title em {
  color: var(--gold-bright);
}
.register-head .section-eyebrow { color: var(--gold-bright); justify-content: center; }
.register-head .section-lead { color: var(--champagne); }

.counter-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem auto;
  padding: 1.25rem 2rem;
  background: rgba(201, 162, 39, 0.1);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 999px;
  width: fit-content;
}
.counter-banner-num {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-bright);
  font-weight: 500;
  line-height: 1;
}
.counter-banner-text {
  font-size: 0.85rem;
  color: var(--champagne);
  letter-spacing: 0.05em;
}

.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(245, 230, 202, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 6px;
  padding: 3rem;
  position: relative;
}
.form-wrap::before, .form-wrap::after {
  content: '';
  position: absolute;
  width: 30px; height: 30px;
  border: 1px solid var(--gold);
}
.form-wrap::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.form-wrap::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-row { display: flex; flex-direction: column; }
.form-row.full { grid-column: 1 / -1; }
.form-row label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row select,
.form-row textarea {
  background: rgba(245, 230, 202, 0.06);
  border: 1px solid rgba(245, 230, 202, 0.2);
  color: var(--cream);
  padding: 0.95rem 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  border-radius: 3px;
  transition: all 0.3s;
  outline: none;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(245, 230, 202, 0.4); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  background: rgba(245, 230, 202, 0.1);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.form-row select option { background: var(--deep-purple); color: var(--cream); }

.checkbox-row {
  grid-column: 1 / -1;
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--champagne);
  line-height: 1.5;
}
.checkbox-row input { width: 16px; height: 16px; margin-top: 4px; accent-color: var(--gold); }
.checkbox-row a { color: var(--gold-bright); text-decoration: underline; }

.form-submit-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.form-success {
  text-align: center;
  padding: 2rem 0;
  display: none;
}
.form-success.show { display: block; }
.form-success-icon {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 1rem;
}
.form-success h3 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.form-success p {
  color: var(--champagne);
}

@media (max-width: 700px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem 1.25rem; }
}

/* ============================================
   NEWSLETTER STRIPE
============================================ */
.newsletter {
  padding: 5rem 0;
  background: var(--ink);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.newsletter-text h3 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.newsletter-text h3 em {
  color: var(--gold-bright);
  font-style: italic;
}
.newsletter-text p {
  color: var(--lilac);
  font-size: 0.95rem;
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  max-width: 460px;
  margin-left: auto;
  width: 100%;
}
.newsletter-form input {
  flex: 1;
  background: rgba(245, 230, 202, 0.06);
  border: 1px solid rgba(245, 230, 202, 0.2);
  color: var(--cream);
  padding: 0.95rem 1.1rem;
  font-family: inherit;
  font-size: 0.95rem;
  border-radius: 999px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(245, 230, 202, 0.4); }
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form button {
  background: var(--gold-bright);
  color: var(--ink);
  border: none;
  padding: 0 1.5rem;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--champagne);
  transform: translateY(-1px);
}

@media (max-width: 800px) {
  .newsletter-grid { grid-template-columns: 1fr; gap: 2rem; }
  .newsletter-form { margin: 0; }
}

/* ============================================
   BUY THE BOOK CTA
============================================ */
.buy-cta {
  padding: 8rem 0;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.buy-visual {
  position: relative;
}
.buy-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(45, 9, 84, 0.2));
}

.buy-text .section-title em {
  color: var(--gold-deep);
}
.buy-features {
  list-style: none;
  margin: 2rem 0;
}
.buy-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(74, 16, 128, 0.1);
  color: #3a2a4e;
  font-size: 0.98rem;
}
.buy-features li:last-child { border-bottom: none; }
.buy-features li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 6px;
  flex-shrink: 0;
}
.buy-features strong {
  color: var(--deep-purple);
  font-weight: 600;
}

.buy-pricing {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(74, 16, 128, 0.15);
  border-bottom: 1px solid rgba(74, 16, 128, 0.15);
}
.buy-pricing-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--royal-purple);
  font-weight: 600;
}
.buy-pricing-format {
  margin-left: auto;
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  color: #6a5478;
  font-size: 1rem;
}

.btn-buy {
  background: linear-gradient(135deg, var(--deep-purple) 0%, var(--royal-purple) 100%);
  color: var(--cream);
  padding: 1.15rem 2.4rem;
  border: 1px solid var(--gold);
  box-shadow: 0 12px 28px rgba(45, 9, 84, 0.3);
}
.btn-buy:hover {
  background: linear-gradient(135deg, var(--royal-purple) 0%, var(--plum) 100%);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(45, 9, 84, 0.4);
}

@media (max-width: 900px) {
  .buy-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ============================================
   FOOTER
============================================ */
.footer {
  background: #0d0420;
  color: var(--lilac);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: block;
  width: 80px;
  height: auto;
  margin: 0 0 1rem;
  filter: drop-shadow(0 4px 16px rgba(229, 190, 61, 0.25));
}
.footer-brand h4 {
  font-family: 'Royale Dreams', 'Pinyon Script', cursive;
  font-size: 2.4rem;
  background: linear-gradient(135deg, #F2D469 0%, #C9A227 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.footer-brand p {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--champagne);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}
.footer-brand .domain {
  display: inline-block;
  font-family: 'Manrope', monospace;
  letter-spacing: 0.05em;
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer h5 {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a {
  color: var(--lilac);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer ul a:hover { color: var(--gold-bright); }

.footer-contact { font-size: 0.9rem; color: var(--lilac); }
.footer-contact a { display: block; margin-bottom: 0.6rem; transition: color 0.3s; }
.footer-contact a:hover { color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(212, 181, 232, 0.6);
}
.footer-scripture {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--champagne);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Modal for devotional days
============================================ */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 4, 32, 0.92);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}
.modal.show { display: flex; }
.modal-content {
  position: relative;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 6px;
  border: 1px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.modal-content img { width: 100%; display: block; }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: all 0.3s;
}
.modal-close:hover { background: var(--gold); color: var(--ink); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================
   GLOBAL MOBILE REFINEMENTS
============================================ */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }

  /* Ease vertical rhythm on small screens */
  .hero { padding: 9rem 0 3.5rem; min-height: 0; }
  .marquee { padding: 1rem 0; }
  .marquee-item { font-size: 1.05rem; gap: 1rem; }
  .marquee-track { gap: 2.5rem; }

  .movement,
  .about-book,
  .devotional,
  .author,
  .register,
  .buy-cta { padding: 4rem 0; }
  .newsletter { padding: 3rem 0; }
  .footer { padding: 3rem 0 1.5rem; }

  /* Hero typography & layout */
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .hero-sub { font-size: 1.1rem; }
  .hero-logo { width: clamp(260px, 78vw, 360px); margin: -0.5rem 0 1.75rem; }
  .hero-logo-shimmer { inset: -10%; filter: blur(14px); }
  .nav-brand-mark { width: 36px; height: 36px; }
  .nav.scrolled .nav-brand-mark { width: 32px; height: 32px; }
  .hero-eyebrow { margin-bottom: 1.25rem; font-size: 0.68rem; letter-spacing: 0.3em; }
  .hero-foreword {
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    margin-bottom: 1.75rem;
  }
  .hero-ctas { gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-grid { gap: 2.25rem; }
  .hero-book img { max-width: 440px; margin: 0 auto; }
  .hero-visual::before { width: 240px !important; height: 240px !important; }
  .hero::before, .hero::after { width: 140px; height: 140px; }

  /* Decorative giant 777 watermarks — keep contained */
  .about-book::before { font-size: 18rem; }
  .watermark-777 { font-size: 14rem !important; }

  /* Section typography */
  .section-title { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .section-lead { font-size: 1.1rem; }
  .section-body { font-size: 0.98rem; }

  /* Pillars */
  .pillar { padding: 1.75rem 1.25rem; }
  .pillar-num { font-size: 3.5rem; }

  /* Movement */
  .movement-quote { font-size: 0.95rem; padding: 1rem 1.25rem; }

  /* Day grid */
  .devotional-header { margin-bottom: 2.5rem; }
  .day-grid { gap: 1rem; }
  .day-card-title { font-size: 1rem; }
  .day-7-num { font-size: 5rem; }

  /* Author */
  .author-portrait-tag {
    bottom: -16px; left: 50%;
    transform: translateX(-50%);
    font-size: 1.25rem;
    padding: 0.6rem 1.1rem;
  }
  .author-affiliations { gap: 0.5rem 1rem; }

  /* Counter banner — let it wrap on tiny screens */
  .counter-banner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.5rem;
    gap: 0.5rem 1rem;
    border-radius: 18px;
    max-width: 100%;
  }
  .counter-banner-num { font-size: 1.6rem; }

  /* Form */
  .form-wrap { padding: 1.75rem 1.1rem; }
  /* 16px font-size on inputs prevents iOS auto-zoom on focus */
  .form-row input,
  .form-row select,
  .form-row textarea { font-size: 16px; padding: 0.85rem 0.9rem; }
  .form-success-icon { font-size: 3rem; }
  .form-success h3 { font-size: 1.6rem; }

  /* Newsletter */
  .newsletter-form { flex-direction: column; gap: 0.6rem; }
  .newsletter-form input { font-size: 16px; }
  .newsletter-form button { padding: 0.95rem 1.5rem; }
  .newsletter-text h3 { font-size: 1.7rem; }

  /* Buy CTA */
  .buy-pricing { flex-wrap: wrap; gap: 0.4rem 1rem; }
  .buy-pricing-format { margin-left: 0; font-size: 0.95rem; }

  /* Footer */
  .footer-brand h4 { font-size: 2rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 0.78rem;
  }
  .footer-scripture { font-size: 0.88rem; }

  /* Buttons — comfortable tap targets */
  .btn { padding: 0.95rem 1.6rem; }

  /* Modal */
  .modal { padding: 1rem; }
  .modal-close { top: 0.6rem; right: 0.6rem; }
}

@media (max-width: 380px) {
  .container { padding: 0 1rem; }
  .hero-title { font-size: 2.1rem; }
  .section-title { font-size: 1.7rem; }
  .pillar-num { font-size: 3rem; }
  .day-7-num { font-size: 4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  /* Brand-priority exception: keep the hero heart subtly alive
     (gentler timings honor the user's preference for less motion). */
  .hero-logo {
    animation-duration: 1.4s, 8s !important;
  }
  .hero-logo img {
    animation-duration: 5s !important;
  }
  .hero-logo-shimmer {
    animation-duration: 24s !important;
  }
  .hero-logo::before {
    animation-duration: 7s !important;
  }
  .hero-logo::after {
    animation-duration: 6s !important;
  }

  /* Slow continuous marquee so the banner still reads as a moving
     ticker without being jarring. */
  .marquee-track {
    animation-duration: 90s !important;
  }
}


/* ============================================
   Toast — MailerLite submit confirmation
============================================ */
.ml-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, #E5BE3D 0%, #C9A227 100%);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 12px 22px;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.5);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ml-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 480px) {
  .ml-toast { font-size: 0.78rem; padding: 10px 18px; bottom: 18px; max-width: calc(100vw - 32px); }
}

/* picture wrapper passes layout through to its <img> child */
picture { display: contents; }

/* ============================================
   Official song — popup + floating mini-player
============================================ */
#songPlayer {
  position: fixed;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  pointer-events: none;
  opacity: 0;
}

.song-popup {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  width: min(340px, calc(100vw - 32px));
  padding: 18px 20px 16px;
  background: linear-gradient(160deg, #2D0954 0%, #1a0a2e 100%);
  border: 1px solid rgba(201, 162, 39, 0.55);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.song-popup.show {
  opacity: 1;
  transform: translateY(0);
}
.song-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: 0;
  color: var(--champagne);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.song-popup-close:hover { opacity: 1; }
.song-popup-eyebrow {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.song-popup-title {
  margin: 6px 0 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--cream);
}
.song-popup-desc {
  margin: 0 0 14px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--lilac);
}
.song-popup-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.song-popup-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 18px;
  background: linear-gradient(135deg, #E5BE3D 0%, #C9A227 100%);
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.song-popup-play:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(201, 162, 39, 0.4);
}
.song-popup-play-icon { font-size: 0.78rem; }
.song-popup-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--lilac);
}
.song-popup-links a {
  color: var(--champagne);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(245, 230, 202, 0.35);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.song-popup-links a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.song-mini {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px 8px 8px;
  background: linear-gradient(135deg, #2D0954 0%, #1a0a2e 100%);
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  color: var(--cream);
  font-family: 'Manrope', sans-serif;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.song-mini.show {
  opacity: 1;
  transform: translateY(0);
}
.song-mini-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #E5BE3D 0%, #C9A227 100%);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.song-mini-toggle:hover { transform: scale(1.05); }
.song-mini-icon-play { display: none; }
.song-mini.paused .song-mini-icon-pause { display: none; }
.song-mini.paused .song-mini-icon-play { display: inline; }
.song-mini-meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.song-mini-eyebrow {
  color: var(--gold-bright);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.song-mini-title {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.song-mini-links {
  display: inline-flex;
  gap: 6px;
  margin-left: 2px;
}
.song-mini-links a {
  color: var(--champagne);
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border: 1px solid rgba(201, 162, 39, 0.45);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.song-mini-links a:hover {
  background: var(--gold);
  color: var(--ink);
}
.song-mini-close {
  background: transparent;
  border: 0;
  color: var(--champagne);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.6;
  padding: 4px 6px;
  transition: opacity 0.2s ease;
}
.song-mini-close:hover { opacity: 1; }

@media (max-width: 520px) {
  .song-popup {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    padding: 16px 16px 14px;
  }
  .song-mini {
    right: 12px;
    bottom: 12px;
    padding: 6px 10px 6px 6px;
    gap: 9px;
  }
  .song-mini-toggle { width: 34px; height: 34px; }
  .song-mini-title { max-width: 120px; font-size: 0.78rem; }
  .song-mini-eyebrow { font-size: 0.58rem; }
  .song-mini-links a { font-size: 0.65rem; padding: 3px 7px; }
}
@media (max-width: 380px) {
  .song-mini-meta { display: none; }
}
