/* ============================================
   Resurrected Worth — Constance André
   Brand-aligned stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Montserrat:wght@300;400;500;600;700&family=Style+Script&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  /* Brand palette (from Resurrected Worth Brand Guide 2026) */
  --c-teal:    #0d3b44;
  --c-slate:   #54666d;
  --c-purple:  #7a5ca8;
  --c-blue:    #6690b1;
  --c-rose:    #ac857a;
  --c-peach:   #f3a28c;
  --c-gold:    #fcce77;
  --c-cream:   #f4f4f4;

  /* Derived */
  --c-teal-soft:  #1a4e58;
  --c-slate-soft: #707f86;
  --c-cream-deep: #ece7dc;
  --c-line:       rgba(13, 59, 68, 0.12);

  /* Text */
  --c-ink:       #1f2a2e;
  --c-ink-muted: #56646a;
  --c-paper:     #ffffff;
  --c-on-dark:        #ffffff;
  --c-on-dark-muted:  rgba(255,255,255,0.82);

  /* Type stack */
  --f-display: 'Cinzel Decorative', 'Trajan Pro', Georgia, serif;
  --f-body:    'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --f-script:  'Style Script', 'Brush Script MT', cursive;
  --f-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  /* Layout */
  --w-max:        1200px;
  --w-text:       720px;
  --w-text-wide:  860px;
  --pad-x:        clamp(1rem, 4vw, 2rem);
  --section-pad:  clamp(3.5rem, 8vw, 6rem);
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(13,59,68,0.06);
  --shadow:    0 8px 24px rgba(13,59,68,0.1);
  --shadow-lg: 0 18px 48px rgba(13,59,68,0.18);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------- Base ----------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
input, textarea, select, button { font: inherit; }
/* Prevent iOS auto-zoom on form focus by ensuring inputs >= 16px */
input, textarea, select { font-size: max(16px, 1rem); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

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

/* ----------- Layout ----------- */
.container        { width: 100%; max-width: var(--w-max);       margin-inline: auto; padding-inline: var(--pad-x); }
.container-narrow { width: 100%; max-width: var(--w-text);      margin-inline: auto; padding-inline: var(--pad-x); }
.container-wide   { width: 100%; max-width: var(--w-text-wide); margin-inline: auto; padding-inline: var(--pad-x); }

section { padding-block: var(--section-pad); }
section.section-tight { padding-block: clamp(2rem, 5vw, 3.5rem); }
section.bg-cream { background: var(--c-cream); }
section.bg-cream-deep { background: var(--c-cream-deep); }
section.bg-teal { background: var(--c-teal); color: var(--c-on-dark); }
section.bg-teal h1, section.bg-teal h2, section.bg-teal h3 { color: var(--c-on-dark); }
section.bg-slate { background: var(--c-slate); color: var(--c-on-dark); }
section.bg-slate h1, section.bg-slate h2, section.bg-slate h3 { color: var(--c-on-dark); }

.section-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-eyebrow {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 0.75rem;
}
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem;
  margin: 1rem auto 1.5rem;
  color: var(--c-rose);
}
.section-divider::before, .section-divider::after {
  content: ''; flex: 0 0 60px; height: 1px; background: currentColor; opacity: 0.5;
}
.section-divider svg { width: 28px; height: auto; }

/* ----------- Typography ----------- */
h1, .h1, h2, .h2 {
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-teal);
  margin: 0 0 1rem;
  letter-spacing: 0.01em;
}
h1, .h1 { font-size: clamp(2rem, 5.5vw, 3.75rem); }
h2, .h2 { font-size: clamp(1.625rem, 4vw, 2.5rem); }

h3, .h3 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: clamp(1.125rem, 2.25vw, 1.375rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin: 0 0 0.75rem;
}

h4, .h4 {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--c-slate);
  margin: 0 0 0.5rem;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--c-blue); text-decoration: none; transition: color .15s var(--ease); }
a:hover { color: var(--c-teal); text-decoration: underline; }

.text-script { font-family: var(--f-script); font-weight: 400; }
.text-serif  { font-family: var(--f-serif); }
.text-italic { font-style: italic; }
.text-center { text-align: center; }
.text-muted  { color: var(--c-ink-muted); }
.text-on-dark { color: var(--c-on-dark); }
.text-on-dark-muted { color: var(--c-on-dark-muted); }

.lead {
  font-family: var(--f-serif);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  color: var(--c-ink-muted);
}

/* ----------- Header / Nav ----------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.site-header .container { position: relative; } /* containing block for mobile dropdown */
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}
.brand-link { display: flex; align-items: center; gap: 0.75rem; }
.brand-link img { height: 44px; width: auto; }
.brand-link .brand-name {
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--c-teal);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  line-height: 1;
}
.brand-link .brand-sub {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--c-slate);
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.brand-link:hover { text-decoration: none; }

.primary-nav ul {
  display: flex; gap: clamp(0.75rem, 2vw, 1.75rem);
  list-style: none; margin: 0; padding: 0;
}
.primary-nav a {
  color: var(--c-teal);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-block: 0.35rem;
  position: relative;
}
.primary-nav a:hover { color: var(--c-purple); text-decoration: none; }
.primary-nav a.active::after,
.primary-nav a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--c-purple); border-radius: 1px;
}

.nav-toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;        /* WCAG 2.5.5 tap target */
  align-items: center; justify-content: center;
  color: var(--c-teal);
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--c-line);
    display: none;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { flex-direction: column; align-items: stretch; padding: 0.5rem var(--pad-x) 1rem; gap: 0; }
  .primary-nav a {
    padding: 0.9rem 0.5rem;
    display: block;
    border-bottom: 1px solid var(--c-line);
    min-height: 44px;
  }
  .primary-nav li:last-child a { border-bottom: 0; }
  .primary-nav a.active::after, .primary-nav a:hover::after { display: none; }
  .primary-nav a.active { color: var(--c-purple); background: var(--c-cream); border-radius: var(--radius-sm); }
  .brand-link .brand-sub { display: none; }
  .brand-link img { height: 38px; }
  .brand-link .brand-name { font-size: 0.95rem; }
}

/* ----------- Buttons ----------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  min-height: 44px;        /* WCAG 2.5.5 tap target */
  border-radius: 999px;
  font-family: var(--f-body); font-weight: 600;
  font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; border: 2px solid transparent;
  transition: all .2s var(--ease);
  text-decoration: none;
  line-height: 1;
  text-align: center;
}
@media (max-width: 480px) {
  .btn { padding: 0.95rem 1.4rem; font-size: 0.85rem; letter-spacing: 0.1em; }
  .btn-row .btn { flex: 1 1 auto; }    /* fill width on small screens */
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-primary   { background: var(--c-teal);   color: var(--c-on-dark); }
.btn-primary:hover   { background: var(--c-purple); color: var(--c-on-dark); }
.btn-secondary { background: transparent;     color: var(--c-teal); border-color: var(--c-teal); }
.btn-secondary:hover { background: var(--c-teal); color: var(--c-on-dark); }
.btn-light     { background: var(--c-on-dark);     color: var(--c-teal); }
.btn-light:hover     { background: var(--c-gold); color: var(--c-teal); }
.btn-ghost     { background: transparent;     color: var(--c-on-dark); border-color: var(--c-on-dark); }
.btn-ghost:hover     { background: var(--c-on-dark); color: var(--c-teal); }
.btn-lg        { padding: 1.15rem 2.25rem; font-size: 0.95rem; }

.btn-row { display: flex; gap: 0.875rem; flex-wrap: wrap; }
.btn-row.is-center { justify-content: center; }

/* ----------- Hero (generic) ----------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 9vw, 7rem);
  background: linear-gradient(180deg, var(--c-cream) 0%, #fff 100%);
}
.hero-dark {
  background: radial-gradient(circle at 30% 0%, var(--c-teal-soft) 0%, var(--c-teal) 70%);
  color: var(--c-on-dark);
}
.hero-dark h1, .hero-dark h2 { color: var(--c-on-dark); }
.hero-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) {
  .hero-grid.has-image { grid-template-columns: 1.1fr 0.9fr; }
}

/* ----------- Pull quotes ----------- */
.pull-quote {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.55;
  color: var(--c-teal);
  text-align: center;
  margin-inline: auto;
  max-width: 880px;
}
.pull-quote.is-light { color: var(--c-on-dark); }
.pull-quote--script {
  font-family: var(--f-script);
  font-style: normal;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.2;
}
.pull-quote cite {
  display: block;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-slate);
  margin-top: 1.5rem;
}
.pull-quote.is-light cite { color: var(--c-on-dark-muted); }
.pull-quote::before, .pull-quote::after {
  content: ''; display: block; width: 56px; height: 2px;
  background: var(--c-rose); margin-inline: auto; opacity: 0.6;
}
.pull-quote::before { margin-bottom: 1.5rem; }
.pull-quote::after { margin-top: 1.5rem; }
.pull-quote.is-light::before, .pull-quote.is-light::after { background: var(--c-gold); }

/* ----------- Scripture callout ----------- */
.scripture {
  background: var(--c-cream-deep);
  border-left: 4px solid var(--c-gold);
  padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--c-teal);
  max-width: 740px;
  margin-inline: auto;
}
.scripture .ref {
  display: block;
  font-style: normal;
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-slate);
  margin-top: 1rem;
  font-weight: 600;
}

/* ----------- Dove-bulleted list ----------- */
.dove-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.625rem;
}
.dove-list.cols-2 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .dove-list.cols-2 { grid-template-columns: repeat(2, 1fr); column-gap: 2rem; }
}
.dove-list li {
  position: relative;
  padding-left: 2.25rem;
  line-height: 1.5;
  color: var(--c-ink);
}
.dove-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.4em;
  width: 1.5rem; height: 0.95rem;
  background-color: var(--c-rose);
  -webkit-mask: url('../assets/icons/dove.svg') no-repeat center / contain;
          mask: url('../assets/icons/dove.svg') no-repeat center / contain;
}
.dove-list.on-dark li { color: var(--c-on-dark); }
.dove-list.on-dark li::before { background-color: var(--c-gold); }

/* ----------- Awards grid (Resurrected Worth page) ----------- */
.awards-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 820px) {
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
}
.award-card {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  border: 1px solid var(--c-line);
}
.award-card .cert-img {
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  border: 1px solid var(--c-line);
  background: var(--c-cream);
}
.award-card h3 { color: var(--c-teal); font-size: 1.125rem; }
.award-card .award-meta {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-purple);
  margin-bottom: 0.35rem;
}
.award-card .award-category {
  display: inline-block;
  background: var(--c-cream-deep);
  color: var(--c-teal);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin: 0.15rem 0.3rem 0.15rem 0;
}

/* ----------- Hero seal stack ----------- */
.seal-stack {
  display: flex; justify-content: center; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}
.seal-stack img {
  height: clamp(120px, 18vw, 200px);
  width: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25));
}

/* ----------- Reviews (hover-to-expand) ----------- */
.reviews-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  --collapsed-h: 240px;
  position: relative;
  background: var(--c-cream);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.25rem;
  border: 1px solid var(--c-line);
  cursor: pointer;
  transition: box-shadow .25s var(--ease), background .25s var(--ease);
  overflow: hidden;
  height: var(--collapsed-h);
  display: flex; flex-direction: column;
}
.review-card:hover,
.review-card.is-open {
  background: #fff;
  box-shadow: var(--shadow-lg);
  height: auto;
}
.review-card .review-stars {
  color: var(--c-gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}
.review-card .review-title {
  font-family: var(--f-display);
  font-size: 1.125rem;
  color: var(--c-teal);
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.review-card .review-body {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--c-ink);
  flex: 1;
}
.review-card .review-attr {
  margin-top: 1rem;
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-slate);
}
.review-card::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
  background: linear-gradient(180deg, rgba(244,244,244,0) 0%, var(--c-cream) 100%);
  pointer-events: none;
  transition: opacity .25s var(--ease);
}
.review-card:hover::after,
.review-card.is-open::after { opacity: 0; }
.review-card .review-expand {
  position: absolute; right: 0.875rem; bottom: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--c-blue); font-weight: 600;
  background: rgba(255,255,255,0.85);
  padding: 0.3rem 0.6rem; border-radius: 999px;
  transition: opacity .2s var(--ease);
}
.review-card:hover .review-expand,
.review-card.is-open .review-expand { opacity: 0; }

/* ----------- Coaching framework section ----------- */
.framework-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .framework-grid { grid-template-columns: 0.9fr 1.1fr; }
}
.framework-image img {
  max-width: 460px;
  margin-inline: auto;
  filter: drop-shadow(0 12px 28px rgba(0,0,0,0.25));
}
.framework-steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 1rem;
}
.framework-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.framework-step:last-child { border-bottom: 0; }
.framework-step .step-letter {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 0.9;
  color: var(--c-gold);
  font-weight: 900;
  width: 3.25rem;
}
.framework-step h3 {
  color: var(--c-on-dark);
  letter-spacing: 0.18em;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.framework-step p {
  color: var(--c-on-dark-muted);
  margin: 0;
  font-family: var(--f-serif);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* ----------- Pricing cards ----------- */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.25rem, 3vw, 1.5rem);
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.price-card.is-featured {
  background: var(--c-teal); color: var(--c-on-dark);
  border-color: var(--c-teal);
  box-shadow: var(--shadow-lg);
}
.price-card.is-featured h3 { color: var(--c-on-dark); }
.price-card.is-featured .price-label { color: var(--c-gold); }
.price-card.is-featured .price-amount { color: var(--c-on-dark); }
.price-card.is-featured .price-unit { color: var(--c-on-dark-muted); }
.price-card.is-featured .feature-list li { color: var(--c-on-dark); }
.price-card.is-featured .feature-list li::before { background-color: var(--c-gold); }

.price-tag-featured {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--c-gold); color: var(--c-teal);
  font-family: var(--f-body);
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

.price-label {
  font-family: var(--f-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.price-card h3 {
  font-family: var(--f-display);
  font-size: 1.375rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 0.875rem;
}
.price-amounts { display: flex; align-items: baseline; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.25rem; }
.price-amount { font-family: var(--f-display); font-size: 2rem; font-weight: 700; color: var(--c-teal); }
.price-unit { font-size: 0.85rem; color: var(--c-ink-muted); }
.price-amount-alt {
  font-size: 0.85rem; color: var(--c-ink-muted);
  margin-bottom: 1.25rem;
}
.price-card.is-featured .price-amount-alt { color: var(--c-on-dark-muted); }
.price-desc {
  font-family: var(--f-serif);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.feature-list {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: grid; gap: 0.5rem;
}
.feature-list li {
  position: relative; padding-left: 1.75rem;
  font-size: 0.95rem; line-height: 1.45;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.4em;
  width: 1.1rem; height: 0.7rem;
  background-color: var(--c-rose);
  -webkit-mask: url('../assets/icons/dove.svg') no-repeat center / contain;
          mask: url('../assets/icons/dove.svg') no-repeat center / contain;
}
.price-card .btn { margin-top: auto; }

/* ----------- Approach pill list (Trauma-informed Coaching) ----------- */
.approach-pills {
  display: flex; flex-wrap: wrap; gap: 0.625rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.approach-pills li {
  list-style: none;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  color: var(--c-teal);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* ----------- Heart CTA buttons (coaching page) ----------- */
.heart-cta-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 760px) { .heart-cta-grid { grid-template-columns: repeat(3, 1fr); } }

.heart-cta {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform .2s var(--ease);
}
.heart-cta:hover { transform: translateY(-4px); text-decoration: none; }
.heart-cta .heart-img-wrap {
  position: relative;
  width: clamp(120px, 18vw, 160px);
  height: clamp(120px, 18vw, 160px);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 20px rgba(220,30,30,0.3));
}
.heart-cta .heart-img-wrap img { width: 100%; height: 100%; object-fit: contain; }
.heart-cta h3 {
  color: var(--c-teal);
  font-family: var(--f-body);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.heart-cta p { color: var(--c-ink-muted); font-size: 0.95rem; max-width: 260px; margin: 0 auto; }

/* ----------- Testimony / journey copy ----------- */
.testimony p {
  font-family: var(--f-serif);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--c-ink);
}
.testimony p:first-of-type::first-letter {
  font-family: var(--f-display);
  font-size: 3.5rem;
  line-height: 0.9;
  float: left;
  padding: 0.25rem 0.5rem 0 0;
  color: var(--c-purple);
}

/* ----------- "For You" checklist ----------- */
.foryou-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 0.875rem;
  max-width: 640px; margin-inline: auto;
}
.foryou-list li {
  display: flex; align-items: flex-start; gap: 0.875rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--c-line);
  font-family: var(--f-serif);
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--c-ink);
}
.foryou-list li::before {
  content: '';
  flex: 0 0 auto;
  width: 1.5rem; height: 0.95rem;
  margin-top: 0.35rem;
  background-color: var(--c-rose);
  -webkit-mask: url('../assets/icons/dove.svg') no-repeat center / contain;
          mask: url('../assets/icons/dove.svg') no-repeat center / contain;
}

/* ----------- Disclaimer / cancellation accordion ----------- */
.disclosure {
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.disclosure summary {
  font-family: var(--f-body);
  font-weight: 600;
  color: var(--c-teal);
  cursor: pointer;
  font-size: 1rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.disclosure summary::-webkit-details-marker { display: none; }
.disclosure summary::after {
  content: '+';
  font-size: 1.5rem; line-height: 1;
  color: var(--c-blue);
  transition: transform .2s var(--ease);
}
.disclosure[open] summary::after { content: '–'; }
.disclosure[open] summary { margin-bottom: 0.75rem; }
.disclosure p { font-family: var(--f-serif); font-size: 1rem; line-height: 1.55; color: var(--c-ink-muted); }
.disclosure p:last-child { margin-bottom: 0; }

/* ----------- Playlist / QR card ----------- */
.qr-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
}
@media (min-width: 720px) {
  .qr-card { grid-template-columns: auto 1fr; text-align: left; }
}
.qr-placeholder {
  width: 160px; height: 160px;
  background: repeating-conic-gradient(var(--c-teal) 0% 25%, #fff 0% 50%) 50% / 24px 24px;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  margin-inline: auto;
  position: relative;
}
.qr-placeholder::after {
  content: 'QR';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.85);
  font-family: var(--f-body); font-weight: 700;
  color: var(--c-teal); letter-spacing: 0.15em;
  border-radius: var(--radius-sm);
  margin: 30%;
}

/* ----------- Book hero block (resurrected-worth) ----------- */
.book-hero-grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .book-hero-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.book-cover-stage {
  position: relative;
  display: flex; justify-content: center;
  padding: 1rem 0;        /* room for floating seal on mobile */
}
.book-cover-stage img.book {
  max-width: 320px;
  width: 100%;
  border-radius: 4px;
  box-shadow:
    0 24px 48px rgba(0,0,0,0.35),
    -8px 0 16px rgba(0,0,0,0.2);
  transform: rotate(-2deg);
  transition: transform .4s var(--ease);
}
.book-cover-stage img.book:hover { transform: rotate(0deg) scale(1.02); }
.book-cover-stage .floating-seal {
  position: absolute;
  width: clamp(70px, 14vw, 130px);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
  pointer-events: none;
}
.book-cover-stage .floating-seal.is-winner { right: max(2%, calc(50% - 200px)); bottom: 4%; }
.book-cover-stage .floating-seal.is-finalist { left: max(2%, calc(50% - 200px)); top: 4%; }
@media (max-width: 480px) {
  .book-cover-stage .floating-seal.is-winner { right: 4%; bottom: 2%; }
  .book-cover-stage .floating-seal.is-finalist { left: 4%; top: 2%; }
}

/* ----------- Testimonials placeholder ----------- */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }

/* ----------- Site footer ----------- */
.site-footer {
  background: var(--c-teal);
  color: var(--c-on-dark);
  padding-block: 3rem 2rem;
}
.site-footer a { color: var(--c-on-dark-muted); }
.site-footer a:hover { color: var(--c-gold); text-decoration: none; }
.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  align-items: start;
  margin-bottom: 2.5rem;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { color: var(--c-on-dark-muted); font-family: var(--f-serif); font-size: 1.05rem; line-height: 1.5; max-width: 360px; }
.footer-col h4 {
  color: var(--c-gold);
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem; color: var(--c-on-dark-muted);
}
.footer-bottom a { font-size: inherit; }

/* ----------- Decorative chapter icon divider ----------- */
.chapter-divider {
  display: flex; justify-content: center; align-items: center;
  margin-block: clamp(2rem, 5vw, 3.5rem);
}
.chapter-divider img { width: clamp(60px, 8vw, 90px); opacity: 0.7; }

/* ----------- Utility helpers ----------- */
.mt-0 { margin-top: 0 !important; }
.mt-sm { margin-top: 0.75rem; }
.mt-md { margin-top: 1.5rem; }
.mt-lg { margin-top: 2.5rem; }
.mb-0 { margin-bottom: 0 !important; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2.5rem; }

.hide-mobile { display: initial; }
@media (max-width: 640px) { .hide-mobile { display: none; } }

/* ----------- Hero variant for coaching page ----------- */
.coaching-hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(122, 92, 168, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(102, 144, 177, 0.18) 0%, transparent 50%),
    linear-gradient(180deg, var(--c-cream) 0%, #fff 100%);
  overflow: hidden;
}
.coaching-hero .hero-grid { align-items: center; }
.coaching-hero .tagline {
  font-family: var(--f-script);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: var(--c-purple);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.coaching-hero h1 .em-line {
  display: block; font-family: var(--f-script); color: var(--c-purple); font-weight: 400;
  font-size: 0.65em; line-height: 1.1; margin-top: 0.25rem;
}
.coaching-hero .hero-heart {
  max-width: 360px; margin-inline: auto;
  filter: drop-shadow(0 18px 40px rgba(220, 30, 30, 0.3));
  animation: heart-pulse 4s var(--ease) infinite;
}
@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
  .coaching-hero .hero-heart { animation: none; }
}

/* ----------- Section anchor offset for sticky header ----------- */
section[id] { scroll-margin-top: 80px; }

/* ----------- Skip-to-content link (a11y) ----------- */
.skip-link {
  position: absolute;
  top: -100px; left: 0.5rem;
  background: var(--c-teal); color: var(--c-on-dark);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  z-index: 1000;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0.5rem; text-decoration: none; color: var(--c-on-dark); outline: 3px solid var(--c-gold); outline-offset: 2px; }

/* ----------- Focus styles (a11y) ----------- */
a:focus-visible, button:focus-visible, summary:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--c-gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ----------- Back-to-top floating button ----------- */
.to-top {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(1rem + env(safe-area-inset-bottom));
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-teal);
  color: var(--c-on-dark);
  border: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s var(--ease);
  z-index: 90;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--c-purple); transform: translateY(-2px); }
.to-top svg { width: 20px; height: 20px; }

/* ----------- Currency toggle ----------- */
.currency-toggle {
  display: inline-flex;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 0.25rem;
  gap: 0.25rem;
}
.currency-btn {
  background: transparent;
  border: 0;
  color: var(--c-slate);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.currency-btn.is-active {
  background: var(--c-teal);
  color: var(--c-on-dark);
}
.currency-btn:hover:not(.is-active) {
  color: var(--c-teal);
}

/* ----------- Scroll-reveal animations ----------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Defer reveal for nested elements with delay attr */
[data-reveal][data-reveal-delay] { transition-delay: 0ms; }
[data-reveal][data-reveal-delay].is-revealed { transition-delay: var(--reveal-delay, 0ms); }

/* When JS hasn't loaded, show everything */
.no-js [data-reveal] { opacity: 1; transform: none; }

/* ----------- Anchored mini-nav (coaching page) ----------- */
.section-nav {
  position: sticky; top: 64px; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-line);
  border-top: 1px solid var(--c-line);
}
.section-nav-inner {
  display: flex; gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.6rem 0;
}
.section-nav-inner::-webkit-scrollbar { display: none; }
.section-nav-inner a {
  flex: 0 0 auto;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--c-slate);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.section-nav-inner a:hover {
  background: var(--c-cream); color: var(--c-teal); text-decoration: none;
}
@media (max-width: 860px) { .section-nav { display: none; } }
