/*
Theme Name: Her Purpose Pathway
Theme URI: https://herpurposepathway.com
Author: Tiffany Owens
Author URI: https://herpurposepathway.com
Description: A faith-based, design-locked theme for Her Purpose Pathway. Custom theme built around the Rose Joy palette (deep burgundy ink, rose bloom, sunshine gold, soft sage) with Cormorant Garamond + DM Sans + Caveat typography. Includes a Pathway Quiz, MailerLite-ready forms, and long-form blog templates.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary — All Rights Reserved
License URI: https://herpurposepathway.com
Text Domain: hpp
Tags: faith-based, christian, women, affirmations, blog, custom-colors, custom-logo, custom-menu, threaded-comments, translation-ready
*/
/* =====================================================
   HER PURPOSE PATHWAY — Elegant Joy
   Design system, base styles, nav, hero
   ===================================================== */

:root {
  /* Core palette — Rose Joy (feminine, bright, joyful) */
  --ivory:       #FBF6ED;
  --ivory-soft:  #FEFCF7;
  --ink:         #3D1F2D;      /* deep burgundy ink — warmer than navy, matches book cover */
  --ink-soft:    #5A3344;
  --taupe:       #8A7E6E;
  --coral:       #D14D77;      /* rose bloom — bright pink, feminine, joyful */
  --coral-deep:  #8B2748;      /* wine — deeper rose for hover/depth */
  --coral-soft:  #F5A7BB;      /* soft rose */
  --gold:        #F2B544;      /* sunshine gold — pairs with rose for joy */
  --gold-soft:   #FBE3A3;
  --sage:        #9DB39A;      /* soft sage — calming counterbalance */
  --sage-soft:   #C9D7C6;
  --blush:       #FCD0D8;      /* soft pink blush */
  --blush-soft:  #FDE5E8;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
  --font-script:  'Caveat', 'Brush Script MT', cursive;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(31, 42, 68, 0.06), 0 1px 1px rgba(31, 42, 68, 0.04);
  --shadow:    0 8px 24px -8px rgba(31, 42, 68, 0.12), 0 2px 4px rgba(31, 42, 68, 0.04);
  --shadow-lg: 0 24px 56px -16px rgba(31, 42, 68, 0.18), 0 6px 12px -4px rgba(31, 42, 68, 0.06);

  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 96px;
  --space-3xl: 128px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

* { margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s var(--ease);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: var(--ivory);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 1000;
}
.skip-link:focus { left: 16px; top: 16px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  font-weight: 500;
  color: var(--coral);
}

p { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--coral);
  margin-bottom: 16px;
}

.eyebrow-on-coral { color: var(--ivory); opacity: 0.92; }

.section-head {
  max-width: 760px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.section-title {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.06;
  margin-bottom: var(--space-md);
}

.section-sub {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-lg { padding: 18px 32px; font-size: 16px; }

.btn-primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 4px 12px -2px rgba(209, 77, 119, 0.38), 0 2px 4px rgba(209, 77, 119, 0.22);
}
.btn-primary:hover {
  background: var(--coral-deep);
  box-shadow: 0 8px 20px -4px rgba(209, 77, 119, 0.48);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost-light:hover {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

/* ---------- Navigation ---------- */
.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 var(--gutter);
  margin-top: 16px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 20px 10px 22px;
  background: rgba(254, 252, 247, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(61, 31, 45, 0.06);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-logo {
  height: 64px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}
.brand-logo-footer {
  height: 120px;
  max-width: 240px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  color: var(--coral);
}
.brand-name em {
  font-style: italic;
  color: var(--coral);
  font-weight: 600;
}

@media (max-width: 720px) {
  .brand-logo { height: 36px; max-width: 160px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0 auto 0 12px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  color: var(--ink-soft);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
  background: rgba(209, 77, 119, 0.10);
}

.nav-cta { padding: 10px 18px; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.8px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: var(--maxw);
  margin: 12px auto 0;
  padding: 20px;
  background: var(--ivory-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.mobile-menu[hidden] { display: none !important; }
@media (min-width: 721px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu a {
  padding: 14px 18px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius);
}
.mobile-menu a:hover { background: var(--blush-soft); }
.mobile-menu .btn { margin-top: 8px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(40px, 7vw, 80px) 0 clamp(56px, 9vw, 100px);
  overflow: hidden;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.12;
  filter: saturate(0.6);
}
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.22;
  animation: float 14s ease-in-out infinite;
}
.blob-blush {
  width: 360px; height: 360px;
  background: var(--blush);
  top: -80px; left: -80px;
}
.blob-sage {
  display: none;
}
.blob-gold {
  width: 240px; height: 240px;
  background: var(--gold-soft);
  top: 40%; right: -40px;
  opacity: 0.18;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -30px); }
  66% { transform: translate(-15px, 20px); }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.04;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 540px;
  color: var(--ink-soft);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero-checks li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dot-coral { background: var(--coral); }
.dot-gold { background: var(--gold); }
.dot-sage { background: var(--sage); }

/* ---------- Hero book stage (real book cover) ---------- */
.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-book-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-book-image {
  position: relative;
  width: clamp(280px, 28vw, 360px);
  aspect-ratio: 2 / 3;
  z-index: 2;
  transform: rotate(-3deg);
  transition: transform 0.6s var(--ease);
}
.hero-book-image:hover { transform: rotate(0deg) scale(1.03); }

.hero-book-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 14px 14px 6px;
  box-shadow:
    -6px 0 0 var(--coral-deep),
    0 30px 60px -20px rgba(61, 31, 45, 0.4),
    0 12px 30px -8px rgba(61, 31, 45, 0.2);
}

.hero-book-shadow {
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 30px;
  background: radial-gradient(ellipse at center, rgba(61, 31, 45, 0.25), transparent 70%);
  filter: blur(12px);
  z-index: -1;
}

/* Floating affirmation card in front of book */
.hero-card-float {
  position: absolute;
  bottom: 30px;
  left: -10px;
  width: 240px;
  padding: 22px 22px;
  background: linear-gradient(180deg, var(--blush-soft) 0%, var(--ivory-soft) 100%);
  border: 1px solid rgba(61, 31, 45, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  transform: rotate(-8deg);
  z-index: 3;
  transition: transform 0.4s var(--ease);
}
.hero-card-float:hover { transform: rotate(-3deg) translateY(-4px); z-index: 5; }

.affirmation-card {
  font-family: var(--font-display);
}

.card-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.card-text {
  font-size: 22px;
  line-height: 1.2;
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 14px;
}
.card-ref {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* Decorative SVG accents around hero book */
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.hero-deco-1 { top: 5%; right: 5%; animation: floatGentle 6s ease-in-out infinite; }
.hero-deco-2 { top: 40%; right: -20px; opacity: 0.85; animation: floatGentle 8s ease-in-out -2s infinite; }
.hero-deco-3 { bottom: 8%; right: 12%; animation: floatGentle 7s ease-in-out -4s infinite; }

@keyframes floatGentle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* =====================================================
   MARQUEE (full-color band)
   ===================================================== */
.marquee-section {
  padding: var(--space-2xl) 0 var(--space-xl);
  background: var(--ivory);
  border-top: 1px solid rgba(61, 31, 45, 0.08);
  border-bottom: 1px solid rgba(61, 31, 45, 0.08);
  position: relative;
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
}
.marquee-label::before,
.marquee-label::after {
  content: '✦';
  color: var(--gold);
  margin: 0 14px;
  font-size: 14px;
}

.marquee {
  overflow: hidden;
  position: relative;
  z-index: 1;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.marquee-section:hover .marquee-track { animation-play-state: paused; }

.marquee-item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee-item { color: var(--ink); }
.marquee-item:nth-child(3n+2) { color: var(--coral); }
.marquee-dot {
  font-size: 18px;
  color: var(--gold);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================
   SCRIPTURE ANCHOR
   ===================================================== */
.scripture {
  padding: var(--space-3xl) 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.scripture-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.scripture-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scripture-illustration {
  width: 100%;
  max-width: 440px;
  position: relative;
}
.scripture-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(61, 31, 45, 0.1));
}

/* Scripture section — real photo */
.scripture-image-frame {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(61, 31, 45, 0.25),
    0 12px 30px -8px rgba(61, 31, 45, 0.15);
}
.scripture-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.scripture-image-frame:hover .scripture-image { transform: scale(1.04); }
.scripture-frame-overlay {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: multiply;
}

.scripture-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.scripture-ornament {
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 0.2em;
  align-self: flex-start;
}

.scripture-eyebrow {
  font-family: var(--font-body) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: var(--coral) !important;
  font-style: normal !important;
  line-height: 1 !important;
  margin: 0 !important;
}

.scripture-text > p:not(.scripture-eyebrow):not(.scripture-context) {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
  font-weight: 400;
  color: var(--ink);
  font-style: italic;
  letter-spacing: -0.01em;
}
.scripture-text p em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 65%, var(--gold-soft) 65%);
  padding: 0 4px;
  color: var(--ink);
}

.scripture-text cite {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--coral);
}

.scripture-context {
  font-family: var(--font-display) !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
  color: var(--ink-soft) !important;
  font-style: italic;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(209, 77, 119, 0.18);
}
.scripture-context em {
  color: var(--coral);
  font-weight: 500;
}

/* =====================================================
   THE VISION (SEO content section)
   ===================================================== */
.vision {
  padding: var(--space-3xl) 0;
  background: var(--ivory);
  position: relative;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.vision-copy { max-width: 720px; }
.vision-copy .section-title { margin-bottom: var(--space-md); }

.vision-lede {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  margin-bottom: var(--space-md);
}

.vision-copy p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.vision-copy p a {
  color: var(--coral);
  font-weight: 500;
  border-bottom: 1px solid var(--coral-soft);
  transition: color 0.2s, border-color 0.2s;
}
.vision-copy p a:hover { color: var(--coral-deep); border-bottom-color: var(--coral); }

.vision-beliefs {
  margin-top: var(--space-lg);
  padding: 28px 32px;
  background: var(--ivory-soft);
  border-radius: var(--radius);
  border-left: 3px solid var(--coral);
}

.beliefs-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.vision-beliefs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vision-beliefs li {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.4;
}
.vision-beliefs li span {
  color: var(--gold);
  margin-right: 8px;
}
.vision-beliefs li em {
  font-style: italic;
  font-weight: 500;
}

.vision-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 110px;
}

.pillar-card {
  background: var(--ivory-soft);
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 31, 45, 0.05);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pillar-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.pillar-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pillar-faith   .pillar-icon { background: var(--blush-soft); color: var(--coral); }
.pillar-purpose .pillar-icon { background: var(--gold-soft); color: #B4831C; }
.pillar-impact  .pillar-icon { background: var(--sage-soft); color: #4F6B4B; }

.pillar-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}
.pillar-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* =====================================================
   LIFESTYLE BAND (purposeful desk image)
   ===================================================== */
.lifestyle-band {
  padding: var(--space-3xl) 0;
  background: var(--ivory);
  overflow: hidden;
}
.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.lifestyle-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.lifestyle-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.lifestyle-image-wrap:hover .lifestyle-image { transform: scale(1.03); }

.lifestyle-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 64px);
  background: var(--ivory-soft);
}
.lifestyle-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
}
.lifestyle-title em { font-style: italic; color: var(--coral); }
.lifestyle-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.lifestyle-body strong { color: var(--ink); font-weight: 600; }
.lifestyle-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink);
  padding: 22px 26px;
  background: var(--ivory);
  border-left: 3px solid var(--coral);
  border-radius: 0 var(--radius) var(--radius) 0;
  position: relative;
}
.lifestyle-quote em { color: var(--coral); font-weight: 500; }
.quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--coral);
  font-size: 36px;
  margin-right: 4px;
  line-height: 0;
  vertical-align: -12px;
}

/* =====================================================
   AUDIENCE GRID
   ===================================================== */
.audience {
  padding: var(--space-3xl) 0;
  background: var(--ivory);
  border-top: 1px solid rgba(61, 31, 45, 0.06);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.audience-card {
  background: var(--ivory-soft);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 42, 68, 0.05);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.audience-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  margin-bottom: 20px;
}
.icon-coral { background: var(--blush-soft); color: var(--coral); }
.icon-gold  { background: var(--gold-soft); color: #B4831C; }
.icon-sage  { background: var(--sage-soft); color: #4F6B4B; }

.audience-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--ink);
}

.audience-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* =====================================================
   TENSION (PROBLEM)
   ===================================================== */
.tension {
  padding: var(--space-3xl) 0;
  background: var(--ivory);
}

.tension-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tension-card {
  background: var(--ivory-soft);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 42, 68, 0.05);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 320px;
}

.tension-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.tension-coral { color: var(--coral); }
.tension-gold  { color: #B4831C; }
.tension-sage  { color: #4F6B4B; }

.tension-body {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  flex: 1;
}
.tension-body strong {
  font-weight: 600;
  font-style: normal;
  display: block;
  margin-bottom: 8px;
}

.tension-visual {
  align-self: flex-start;
  width: 92px; height: 92px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
}
.visual-coral { background: var(--blush-soft); color: var(--coral); }
.visual-gold  { background: var(--gold-soft); color: #B4831C; }
.visual-sage  { background: var(--sage-soft); color: #4F6B4B; }

/* =====================================================
   PATHWAY (SOLUTION)
   ===================================================== */
.pathway {
  padding: var(--space-3xl) 0;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-soft) 100%);
  position: relative;
}

.pathway-intro {
  max-width: 760px;
  margin: 0 auto var(--space-2xl);
  text-align: center;
}
.pathway-intro .eyebrow { display: block; }

.pathway-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.pathway-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  z-index: 0;
}

.pathway-step {
  background: var(--ivory-soft);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 42, 68, 0.05);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: transform 0.3s var(--ease);
}
.pathway-step:hover { transform: translateY(-4px); }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  border-radius: 50%;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px -2px rgba(209, 77, 119, 0.42);
}

.pathway-step:nth-child(2) .step-num { background: var(--gold); color: var(--ink); box-shadow: 0 4px 10px -2px rgba(242, 181, 68, 0.5); }
.pathway-step:nth-child(3) .step-num { background: var(--sage); color: #fff; box-shadow: 0 4px 10px -2px rgba(157, 179, 154, 0.55); }
.pathway-step:nth-child(4) .step-num { background: var(--ink); color: var(--gold); box-shadow: 0 4px 10px -2px rgba(31, 42, 68, 0.4); }

.pathway-step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.pathway-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* =====================================================
   PATHWAY QUIZ (engagement challenge)
   ===================================================== */
.quiz {
  padding: var(--space-3xl) 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.quiz-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--ivory-soft);
  border: 1px solid rgba(209, 77, 119, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 5vw, 60px);
  box-shadow: 0 24px 56px -16px rgba(61, 31, 45, 0.18);
  position: relative;
}

.quiz-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: 0.4;
  filter: blur(20px);
  pointer-events: none;
}

.quiz-screen {
  display: none;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.quiz-screen.is-active { display: flex; }

/* Intro screen */
.quiz-intro { text-align: center; align-items: center; }
.quiz-intro-deco { color: var(--coral); margin-bottom: 4px; }

.quiz-intro-title {
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.1;
  max-width: 540px;
  margin-bottom: 12px;
}
.quiz-intro-title em { font-style: italic; color: var(--coral); }

.quiz-intro-body {
  font-size: 16px;
  line-height: 1.6;
  max-width: 580px;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.quiz-intro-body strong { color: var(--coral); font-weight: 600; }
.quiz-intro-body em { color: var(--coral); font-style: italic; }

.quiz-intro .btn { margin-top: 12px; }

.quiz-disclaimer {
  font-size: 13px;
  color: var(--taupe);
  font-style: italic;
}

/* Question screen */
.quiz-progress { margin-bottom: 8px; }
.quiz-progress-bar {
  height: 6px;
  background: var(--blush-soft);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.quiz-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 100%);
  border-radius: var(--radius-pill);
  transition: width 0.4s var(--ease);
}
.quiz-progress-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 10px;
  text-align: center;
}

.quiz-question-text {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.2;
  text-align: center;
  margin: 8px 0 16px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiz-option {
  text-align: left;
  width: 100%;
  padding: 18px 22px;
  background: var(--ivory);
  border: 1.5px solid rgba(61, 31, 45, 0.1);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.4;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.2s var(--ease);
}
.quiz-option:hover {
  border-color: var(--coral);
  background: var(--blush-soft);
  transform: translateX(3px);
}
.quiz-option.is-selected {
  border-color: var(--coral);
  background: var(--blush-soft);
  box-shadow: 0 4px 12px -2px rgba(209, 77, 119, 0.18);
}
.quiz-option-marker {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid rgba(61, 31, 45, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: all 0.2s;
}
.quiz-option.is-selected .quiz-option-marker {
  border-color: var(--coral);
  background: var(--coral);
}
.quiz-option.is-selected .quiz-option-marker::after {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ivory);
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
  gap: 12px;
}
.btn-sm { padding: 12px 22px; font-size: 14px; }
.btn-sm:disabled,
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; box-shadow: none; }

/* Result screen */
.result-eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  text-align: center;
  margin-bottom: 6px;
}

.result-title {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1;
  text-align: center;
  color: var(--ink);
  margin-bottom: 8px;
  font-style: italic;
  letter-spacing: -0.02em;
}

.result-subtitle {
  font-family: var(--font-display);
  font-size: 19px;
  font-style: italic;
  color: var(--coral);
  text-align: center;
  margin-bottom: 20px;
}

.result-scripture {
  padding: 24px 28px;
  background: linear-gradient(135deg, var(--blush-soft) 0%, var(--ivory) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 8px 0 20px;
}
.result-scripture p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
}
.result-scripture cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}

.result-body p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.result-next-step {
  margin: 8px 0 24px;
  padding: 20px 24px;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid rgba(209, 77, 119, 0.15);
}
.next-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 6px;
}
.next-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}

/* Three places to start — pathway tips */
.result-tips-wrap { margin: 32px 0 28px; }
.result-tips-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
  text-align: center;
}
.result-tips { display: flex; flex-direction: column; gap: 14px; }
.result-tip {
  display: flex;
  gap: 18px;
  padding: 20px 22px;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid rgba(209, 77, 119, 0.15);
  align-items: flex-start;
}
.result-tip-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral) 0%, var(--gold) 100%);
  color: var(--ivory);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px -2px rgba(209, 77, 119, 0.3);
}
.result-tip-content h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 2px 0 6px;
  line-height: 1.3;
}
.result-tip-content p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}
.result-tip-content p em { color: var(--coral); font-style: italic; }

/* Post-result email capture — pathway-aware lead magnet */
.result-email-capture {
  margin: 32px 0 28px;
  padding: 32px 28px;
  background: linear-gradient(135deg, var(--blush-soft) 0%, var(--ivory-soft) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(209, 77, 119, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.result-email-deco {
  color: var(--gold);
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px rgba(242, 181, 68, 0.4));
}
.result-email-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.25;
}
.result-email-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 520px;
  margin: 0 auto 18px;
}
.result-email-body em { color: var(--coral); font-style: italic; font-weight: 500; }
.result-email-body strong { color: var(--coral-deep); font-weight: 600; }
.result-email-capture .result-email-form {
  max-width: 460px;
  margin: 0 auto 10px;
}
.result-email-fine {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--taupe);
  margin: 6px 0 0;
}
.result-email-thanks {
  padding: 24px 16px;
}
.result-email-thanks-line {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.result-email-thanks-line em { color: var(--coral); font-weight: 500; }

/* Book pitch — the soft push to the full guide */
.result-book-pitch {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  text-align: center;
  max-width: 560px;
  margin: 4px auto 14px;
}
.result-book-pitch em { color: var(--coral); font-style: italic; font-weight: 500; }

.result-ctas { display: flex; flex-direction: column; gap: 14px; }

.result-email-form {
  display: flex;
  gap: 8px;
  background: var(--ivory);
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--coral);
  box-shadow: 0 4px 12px -2px rgba(209, 77, 119, 0.18);
}
.result-email-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  outline: none;
}
.result-email-form input::placeholder { color: var(--taupe); }
.result-email-form .btn { white-space: nowrap; padding: 12px 20px; font-size: 14px; }

.result-secondary-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.btn-coral-soft {
  background: var(--blush-soft);
  color: var(--coral-deep);
  border: 1.5px solid rgba(209, 77, 119, 0.3);
}
.btn-coral-soft:hover { background: var(--coral); color: var(--ivory); border-color: var(--coral); }

.btn-link {
  background: transparent;
  color: var(--taupe);
  border: none;
  padding: 8px 14px;
  font-size: 14px;
  text-decoration: underline;
}
.btn-link:hover { color: var(--coral); }

.result-share-confirm {
  text-align: center;
  padding: 12px;
  background: var(--gold-soft);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  margin-top: 12px;
}

/* Rating question (1-5 scale) */
.quiz-options-rating { gap: 18px; }
.rating-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe);
  padding: 0 8px;
}
.rating-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.rating-btn {
  aspect-ratio: 1;
  background: var(--ivory);
  border: 2px solid rgba(61, 31, 45, 0.15);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.rating-btn:hover {
  border-color: var(--coral);
  background: var(--blush-soft);
  transform: translateY(-2px);
}
.rating-btn.is-selected {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--ivory);
  box-shadow: 0 6px 16px -4px rgba(209, 77, 119, 0.4);
  transform: translateY(-2px);
}

/* Email gate screen */
.quiz-email-gate {
  text-align: center;
  align-items: center;
}
.email-gate-deco {
  color: var(--gold);
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 12px rgba(242, 181, 68, 0.4));
}
.email-gate-title {
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  max-width: 540px;
  margin-bottom: 16px;
}
.email-gate-title em { font-style: italic; color: var(--coral); }
.email-gate-body {
  font-size: 16px;
  line-height: 1.6;
  max-width: 560px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.email-gate-body em { color: var(--coral); font-style: italic; font-weight: 500; }

.email-gate-form {
  display: flex;
  gap: 8px;
  background: var(--ivory);
  padding: 7px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--coral);
  box-shadow: 0 8px 24px -6px rgba(209, 77, 119, 0.3);
  width: 100%;
  max-width: 520px;
}
.email-gate-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.email-gate-form input::placeholder { color: var(--taupe); }
.email-gate-form .btn { white-space: nowrap; }

.email-gate-fine {
  font-size: 13px;
  color: var(--taupe);
  font-style: italic;
  margin-top: 14px;
}

/* Result score bars */
.result-scores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 6px 0 24px;
  padding: 20px 22px;
  background: var(--ivory);
  border-radius: var(--radius);
  border: 1px solid rgba(209, 77, 119, 0.12);
}
.score-card { display: flex; flex-direction: column; gap: 6px; }
.score-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
}
.score-bar {
  height: 8px;
  background: var(--blush-soft);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.score-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral) 0%, var(--gold) 100%);
  border-radius: var(--radius-pill);
  transition: width 0.8s var(--ease);
}
.score-value {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}
.score-out {
  font-size: 14px;
  color: var(--taupe);
  margin-left: 2px;
}

.result-inbox-note {
  text-align: center;
  padding: 14px 20px;
  background: var(--gold-soft);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  margin: 20px 0;
}
.result-inbox-note em { color: var(--coral); font-style: italic; font-weight: 500; }

@media (max-width: 720px) {
  .result-scores { grid-template-columns: 1fr; }
  .email-gate-form { flex-direction: column; border-radius: var(--radius); padding: 10px; }
  .email-gate-form .btn { width: 100%; }
  .rating-btn { font-size: 22px; }
}

@media (max-width: 720px) {
  .result-email-form { flex-direction: column; border-radius: var(--radius); padding: 8px; }
  .result-email-form .btn { width: 100%; }
  .quiz-option { padding: 14px 16px; font-size: 15px; }
}

/* =====================================================
   BOOK SECTION
   ===================================================== */
.book-section {
  padding: var(--space-3xl) 0;
  background: var(--ivory);
  border-top: 1px solid rgba(61, 31, 45, 0.06);
  overflow: hidden;
}

.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.book-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: relative;
}

.book-cover-real {
  position: relative;
  width: clamp(280px, 36vw, 400px);
  aspect-ratio: 2 / 3;
  transform: rotate(-2deg);
  transition: transform 0.6s var(--ease);
}
.book-cover-real:hover { transform: rotate(0deg) scale(1.03); }

.book-cover-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 14px 14px 6px;
  box-shadow:
    -6px 0 0 var(--coral-deep),
    0 30px 60px -20px rgba(61, 31, 45, 0.45),
    0 12px 30px -8px rgba(61, 31, 45, 0.22);
}

.book-cover-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at center, rgba(242, 181, 68, 0.25), transparent 60%);
  filter: blur(40px);
  z-index: -1;
}

.book-deco {
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.book-deco-tl { top: -20px; left: -30px; animation: floatGentle 7s ease-in-out infinite; }
.book-deco-br { bottom: -16px; right: -20px; animation: floatGentle 6s ease-in-out -3s infinite; }

.book-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.book-caption {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
  text-align: center;
}

.book-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars-mini {
  color: var(--coral);
  font-size: 18px;
  letter-spacing: 2px;
}
.rating-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}

.book-copy { max-width: 580px; }

.book-lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: var(--space-lg);
}

.book-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
  display: grid;
  gap: 14px;
}
.book-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
  background: var(--ivory-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(31, 42, 68, 0.05);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}
.book-features li div { display: flex; flex-direction: column; gap: 2px; }
.book-features strong {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.book-features span {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.book-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.book-reassurance {
  font-size: 13px;
  color: var(--taupe);
  font-style: italic;
}

/* =====================================================
   8 LIFE CATEGORIES (INSIDE THE GUIDE)
   ===================================================== */
.categories {
  padding: var(--space-3xl) 0;
  background: var(--ivory-soft);
  border-top: 1px solid rgba(61, 31, 45, 0.06);
  border-bottom: 1px solid rgba(61, 31, 45, 0.06);
  position: relative;
  overflow: hidden;
}

.categories-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: var(--space-xl);
}

.category-card {
  background: var(--ivory-soft);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 31, 45, 0.05);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.category-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--gold-soft);
  opacity: 0.4;
  transition: transform 0.4s var(--ease);
}
.category-card:hover::before { transform: scale(1.4); }

.category-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.cat-1 .category-icon { background: var(--blush-soft); color: var(--coral); }
.cat-2 .category-icon { background: var(--gold-soft); color: #B4831C; }
.cat-3 .category-icon { background: var(--sage-soft); color: #4F6B4B; }
.cat-4 .category-icon { background: var(--blush-soft); color: var(--coral); }
.cat-5 .category-icon { background: var(--gold-soft); color: #B4831C; }
.cat-6 .category-icon { background: var(--sage-soft); color: #4F6B4B; }
.cat-7 .category-icon { background: var(--blush-soft); color: var(--coral); }
.cat-8 .category-icon { background: var(--gold-soft); color: #B4831C; }

.category-card h3 {
  font-size: 20px;
  margin: 0;
}
.category-card p {
  font-family: var(--font-display);
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.45;
  margin: 0;
}

.categories-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cat-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
}
.cat-cta-text span { color: var(--gold); margin: 0 6px; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials {
  padding: var(--space-3xl) 0;
  background: var(--ivory);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--ivory-soft);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 42, 68, 0.05);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.3s var(--ease);
}
.testimonial-card:hover { transform: translateY(-4px); }

.testimonial-card-feature {
  background: linear-gradient(160deg, var(--blush-soft) 0%, var(--ivory-soft) 100%);
  border-color: rgba(209, 77, 119, 0.2);
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--coral);
  font-size: 16px;
}

.testimonial-card blockquote p {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
}
.testimonial-card blockquote p em {
  font-style: normal;
  font-weight: 600;
  color: var(--coral);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 42, 68, 0.08);
}
.author-initial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 500;
}
.author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.author-role {
  font-size: 12px;
  color: var(--taupe);
  letter-spacing: 0.02em;
}

/* =====================================================
   LEAD MAGNET
   ===================================================== */
.lead-magnet {
  padding: var(--space-2xl) 0;
  background: var(--ivory);
}

.magnet-card {
  position: relative;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  color: var(--ivory);
  box-shadow: 0 20px 50px -16px rgba(209, 77, 119, 0.52);
}

.magnet-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.deco-petal {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
}
.petal-1 { width: 200px; height: 200px; background: var(--gold); top: -50px; right: 10%; }
.petal-2 { width: 280px; height: 280px; background: var(--blush); bottom: -80px; left: -50px; }
.petal-3 { width: 140px; height: 140px; background: var(--ivory); top: 40%; right: -40px; opacity: 0.2; }

.magnet-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.magnet-title {
  color: var(--ivory);
  font-size: clamp(34px, 4.6vw, 52px);
  line-height: 1.05;
  margin-bottom: var(--space-md);
}
.magnet-title em {
  color: var(--gold);
  font-style: italic;
}

.magnet-sub {
  color: var(--ivory);
  opacity: 0.92;
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: var(--space-lg);
}

.magnet-form {
  display: flex;
  gap: 10px;
  background: var(--ivory-soft);
  padding: 8px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  max-width: 540px;
  margin-bottom: 14px;
}
.magnet-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
}
.magnet-form input::placeholder { color: var(--taupe); }
.magnet-form .btn { white-space: nowrap; padding: 14px 22px; }

.magnet-fine {
  font-size: 13px;
  color: var(--ivory);
  opacity: 0.8;
  font-style: italic;
}

/* =====================================================
   ABOUT TIFFANY
   ===================================================== */
.about {
  padding: var(--space-3xl) 0;
  background: var(--ivory-soft);
  border-top: 1px solid rgba(61, 31, 45, 0.06);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

/* Founder letter — illustrated typographic composition (no photo) */
.founder-letter {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.letter-frame {
  position: relative;
  background: var(--ivory-soft);
  border-radius: var(--radius-lg);
  padding: 48px 44px 40px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 32px 64px -20px rgba(61, 31, 45, 0.14),
    0 6px 12px -4px rgba(61, 31, 45, 0.06);
  border: 1px solid rgba(61, 31, 45, 0.08);
  overflow: visible;
}
.letter-frame::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(242, 181, 68, 0.35);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}

.letter-ornament {
  display: block;
  width: 70%;
  max-width: 240px;
  height: auto;
  margin: 0 auto;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.letter-ornament-top { margin-bottom: 24px; }
.letter-ornament-bottom { margin-top: 24px; }

.letter-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  text-align: center;
  margin-bottom: 14px;
}

.letter-closing {
  font-size: 22px !important;
  line-height: 1.4 !important;
  color: var(--ink) !important;
  font-weight: 500 !important;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(209, 77, 119, 0.18);
}
.letter-closing em {
  color: var(--coral) !important;
  font-style: italic;
  font-weight: 500;
}

.letter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.letter-greeting {
  font-family: var(--font-script);
  font-size: 44px;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.letter-body {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 14px;
}
.letter-body em {
  color: var(--coral);
  font-weight: 500;
}

.letter-signature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(209, 77, 119, 0.2);
}
.sig-script {
  font-family: var(--font-script);
  font-size: 38px;
  color: var(--ink);
  line-height: 1;
}
.sig-credential {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe);
}

.letter-seal {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--ivory-soft);
  filter: drop-shadow(0 8px 18px rgba(61, 31, 45, 0.18));
  transform: rotate(-8deg);
  transition: transform 0.4s var(--ease);
  z-index: 2;
}
.letter-seal:hover { transform: rotate(-2deg) scale(1.06); }
.letter-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 720px) {
  .letter-seal { width: 76px; height: 76px; top: -12px; right: -12px; }
}

.letter-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--taupe);
  padding: 0 12px;
}
.meta-mark { color: var(--gold); }
.letter-meta .meta-divider { color: var(--coral-soft); }

.about-lede {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: var(--space-md);
}

.about-copy p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: var(--space-md) 0 var(--space-lg);
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--ivory-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(209, 77, 119, 0.12);
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
}
.credential-item em { color: var(--coral); font-style: italic; font-weight: 500; }
.credential-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: var(--blush-soft);
  color: var(--coral);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-anchor {
  display: block;
  padding: 22px 26px;
  background: var(--ivory-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  margin: var(--space-md) 0 var(--space-lg);
  position: relative;
}
.about-anchor em { font-weight: 500; }
.about-anchor cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}
.anchor-mark {
  color: var(--gold);
  margin-right: 8px;
}

.about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  padding: var(--space-3xl) 0;
  background: var(--ivory);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--ivory-soft);
  border-radius: var(--radius);
  border: 1px solid rgba(31, 42, 68, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] {
  box-shadow: var(--shadow-sm);
  border-color: rgba(209, 77, 119, 0.22);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color 0.2s;
}
.faq-item summary:hover { color: var(--coral); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 300;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-body {
  padding: 0 28px 24px;
}
.faq-body p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-body a {
  color: var(--coral);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

/* =====================================================
   JOURNAL PREVIEW (blog teasers)
   ===================================================== */
.journal {
  padding: var(--space-3xl) 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(252, 208, 216, 0.45), transparent 45%),
    var(--ivory-soft);
}

.journal-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  text-align: left;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}
.journal-head > div { max-width: 640px; }
.journal-head .section-title { margin-bottom: 12px; }
.journal-head .section-sub { margin: 0; }

.journal-all-cta {
  flex-shrink: 0;
  padding: 12px 22px;
  font-size: 14px;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-bottom: var(--space-lg);
}

.journal-card {
  background: var(--ivory-soft);
  border: 1px solid rgba(61, 31, 45, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.journal-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.journal-link {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.journal-card-feature .journal-link { flex-direction: column; }

.journal-image {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.journal-card-feature .journal-image { aspect-ratio: 16 / 8; }

.journal-image-1 {
  background:
    radial-gradient(circle at 30% 30%, var(--coral-soft) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, var(--gold-soft) 0%, transparent 55%),
    linear-gradient(135deg, var(--blush) 0%, var(--blush-soft) 100%);
  color: var(--coral-deep);
}
.journal-image-2 {
  background:
    radial-gradient(circle at 60% 40%, var(--gold-soft) 0%, transparent 60%),
    linear-gradient(160deg, var(--ivory) 0%, var(--gold-soft) 100%);
  color: var(--gold);
}
.journal-image-3 {
  background:
    radial-gradient(circle at 40% 60%, var(--sage-soft) 0%, transparent 55%),
    linear-gradient(135deg, var(--sage-soft) 0%, var(--ivory) 100%);
  color: #4F6B4B;
}

/* Real-photo variant for homepage blog preview */
.journal-image-real {
  position: relative;
  padding: 0;
  background: var(--ivory-soft);
}
.journal-image-real img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.journal-card:hover .journal-image-real img {
  transform: scale(1.05);
}

.journal-image-deco {
  filter: drop-shadow(0 4px 12px rgba(61, 31, 45, 0.12));
  transition: transform 0.5s var(--ease);
}
.journal-card:hover .journal-image-deco { transform: rotate(8deg) scale(1.08); }

.journal-content {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.journal-card-feature .journal-content { padding: 28px 30px 32px; }

.journal-category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}

.journal-content h3 {
  font-size: 22px;
  line-height: 1.18;
  color: var(--ink);
  margin: 0;
}
.journal-card-feature .journal-content h3 { font-size: 28px; }

.journal-card:hover .journal-content h3 { color: var(--coral-deep); }

.journal-content p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  flex: 1;
}
.journal-card-feature .journal-content p { font-size: 15px; }

.journal-meta {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: 4px;
}

.journal-coming-soon {
  text-align: center;
  padding: 20px 24px;
  background: var(--blush-soft);
  border-radius: var(--radius);
  border: 1px dashed var(--coral-soft);
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink-soft);
}
.journal-coming-soon em { color: var(--coral); font-style: italic; }

/* =====================================================
   FINAL CTA
   ===================================================== */
.final-cta {
  padding: var(--space-2xl) 0;
  background: var(--ivory);
}

.final-cta-inner {
  background:
    radial-gradient(circle at 18% 25%, rgba(252, 208, 216, 0.85), transparent 55%),
    radial-gradient(circle at 82% 78%, rgba(251, 227, 163, 0.6), transparent 55%),
    radial-gradient(circle at 50% 110%, rgba(157, 179, 154, 0.35), transparent 60%),
    var(--ivory-soft);
  border-radius: var(--radius-lg);
  padding: clamp(56px, 8vw, 96px) clamp(28px, 5vw, 64px);
  text-align: center;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(209, 77, 119, 0.18);
  box-shadow: 0 24px 56px -16px rgba(61, 31, 45, 0.12);
}

.final-tag {
  font-family: var(--font-script);
  font-size: 30px;
  color: var(--coral);
  margin-bottom: 12px;
}

.final-headline {
  color: var(--ink);
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: var(--space-lg);
}
.final-headline em {
  color: var(--coral);
  font-style: italic;
}

.final-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* =====================================================
   FOOTER (light, complementary to brand palette)
   ===================================================== */
.footer {
  background:
    radial-gradient(circle at 12% 0%, rgba(252, 208, 216, 0.6), transparent 45%),
    radial-gradient(circle at 90% 30%, rgba(251, 227, 163, 0.35), transparent 50%),
    var(--ivory-soft);
  color: var(--ink);
  padding: var(--space-2xl) 0 0;
  border-top: 1px solid rgba(61, 31, 45, 0.08);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: var(--space-xl);
}

.footer-brand { max-width: 340px; }
.footer-brand .brand { color: var(--ink); margin-bottom: 14px; }
.footer-brand .brand-mark { color: var(--coral); }
.footer-brand .brand-name em { color: var(--coral); }

.footer-tag {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 15px;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--coral); }

.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}
.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blush-soft);
  color: var(--coral);
  transition: background 0.2s, transform 0.2s, color 0.2s;
  border: 1px solid rgba(209, 77, 119, 0.15);
}
.social-list a:hover { background: var(--coral); color: var(--ivory); transform: translateY(-2px); }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(61, 31, 45, 0.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--taupe);
}
.footer-verse {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; margin: 0 auto; max-width: 480px; }
  .lifestyle-grid { grid-template-columns: 1fr; }
  .lifestyle-image-wrap { min-height: 360px; }
  .scripture-grid { grid-template-columns: 1fr; text-align: center; }
  .scripture-text { align-items: center; max-width: 640px; margin: 0 auto; }
  .scripture-ornament { align-self: center; }
  .vision-grid { grid-template-columns: 1fr; }
  .vision-pillars { position: static; flex-direction: row; flex-wrap: wrap; }
  .vision-pillars .pillar-card { flex: 1 1 280px; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .tension-grid { grid-template-columns: 1fr; gap: 16px; }
  .tension-card { min-height: auto; flex-direction: row; align-items: center; }
  .tension-card .tension-visual { margin-top: 0; }
  .pathway-steps { grid-template-columns: repeat(2, 1fr); }
  .pathway-steps::before { display: none; }
  .book-grid { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-card-feature { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .vision-pillars { flex-direction: column; }
  .audience-grid { grid-template-columns: 1fr; }
  .pathway-steps { grid-template-columns: 1fr; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card { padding: 20px 14px; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card-feature { grid-column: auto; }
  .journal-head { flex-direction: column; align-items: flex-start; }
  .magnet-form { flex-direction: column; border-radius: var(--radius); }
  .magnet-form .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-headline { font-size: 40px; }
  .section-title { font-size: 32px; }
  .hero-book-image { width: 240px; }
  .hero-card-float { width: 200px; padding: 18px; left: -20px; bottom: 10px; }
  .final-ctas { flex-direction: column; align-items: stretch; }
  .final-ctas .btn { width: 100%; }
}

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