/* ============================================================
   Elisabetta Reist – Shared Stylesheet
   Fonts: Self-hosted (DSGVO-konform) – kein Google Fonts CDN
   Alle Font-Dateien liegen unter /fonts/
   ============================================================ */

/* ─── Cormorant Garamond ─── */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-600.woff2') format('woff2');
}

/* ─── Jost ─── */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/jost-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jost-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/jost-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/jost-v20-latin-600.woff2') format('woff2');
}

/* ─── CSS Variables ─── */
:root {
  --teal:        #1B6B61;
  --teal-dark:   #134D46;
  --teal-light:  #E8F5F3;
  --rose:        #C4837A;
  --rose-light:  #FAF0EF;
  --cream:       #FDF9F4;
  --cream-dark:  #F2EBE0;
  --text:        #2C2C2C;
  --text-muted:  #6B6B6B;
  --white:       #FFFFFF;
  --border:      #E5DDD5;
  --shadow:      rgba(27, 107, 97, 0.10);
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', system-ui, sans-serif;
  --max-w:       1100px;
  --radius:      12px;
  --transition:  0.35s ease;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.8; }

.lead { font-size: 1.15rem; color: var(--text-muted); font-weight: 300; }

/* ─── Utility ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 { margin-bottom: 0.75rem; }
.section-title p  { max-width: 600px; margin: 0 auto; color: var(--text-muted); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px var(--shadow);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-rose {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(196, 131, 122, 0.25);
}
.btn-rose:hover {
  background: #b37069;
  transform: translateY(-2px);
}

/* ─── CMT Cookie Banner ─── */
#cmt-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  display: flex; align-items: flex-end; justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  opacity: 0;
  animation: fadeInOverlay 0.5s 0.8s forwards;
}
@keyframes fadeInOverlay { to { opacity: 1; } }

#cmt-banner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
#cmt-banner h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: var(--teal); }
#cmt-banner p  { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.cmt-actions   { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cmt-actions button {
  flex: 1; min-width: 140px;
  padding: 0.7rem 1.2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}
#cmt-accept  { background: var(--teal); color: #fff; }
#cmt-accept:hover { background: var(--teal-dark); }
#cmt-decline { background: transparent; color: var(--text-muted); border: 1.5px solid var(--border); }
#cmt-decline:hover { border-color: var(--teal); color: var(--teal); }
.cmt-links   { margin-top: 0.75rem; font-size: 0.78rem; color: var(--text-muted); }
.cmt-links a { color: var(--teal); text-decoration: underline; }

/* ─── Header / Navigation ─── */
#header {
  position: sticky; top: 0; z-index: 999;
  background: rgba(253, 249, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1.2;
}
.nav-logo span { display: block; font-size: 0.7rem; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); font-family: var(--font-body); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--teal);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--teal); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* Language Switcher */
.lang-switch {
  display: flex; align-items: center; gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 500;
}
.lang-switch a {
  padding: 0.3rem 0.7rem;
  color: var(--text-muted);
  transition: all 0.2s;
}
.lang-switch a.active,
.lang-switch a:hover {
  background: var(--teal);
  color: var(--white);
}

/* Hamburger for mobile */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 70px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 1rem 1.5rem; border-bottom: 1px solid var(--border); width: 100%; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta-btn { display: none; }
}

/* ─── Hero Section ─── */
.hero {
  min-height: 92vh;
  display: flex; align-items: center;
  background: linear-gradient(145deg, var(--cream) 55%, var(--teal-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,131,122,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(27,107,97,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content {}
.hero-content .tag { margin-bottom: 1.25rem; }
.hero-content h1 { margin-bottom: 1.25rem; }
.hero-content h1 em { font-style: italic; color: var(--teal); }
.hero-content .lead { margin-bottom: 2rem; max-width: 480px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-image-frame {
  width: 420px; height: 520px;
  border-radius: 200px 200px 180px 180px;
  overflow: hidden;
  position: relative;
  background: var(--cream-dark);
  box-shadow: 0 30px 80px rgba(27,107,97,0.2);
}
.hero-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-badge {
  position: absolute;
  bottom: 2rem; left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-body);
}
.hero-badge-icon { font-size: 1.6rem; }
.hero-badge-text strong { display: block; font-size: 0.88rem; color: var(--text); font-weight: 600; }
.hero-badge-text span { font-size: 0.75rem; color: var(--text-muted); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .hero-content .lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-frame { width: 280px; height: 360px; margin: 0 auto; }
  .hero-badge { bottom: 1rem; left: 50%; transform: translateX(-50%); white-space: nowrap; }
}

/* ─── Guide Banner ─── */
.guide-banner {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 2.5rem 0;
}
.guide-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.guide-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.75;
  margin-bottom: 0.4rem;
}
.guide-inner h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.4rem; }
.guide-inner p  { opacity: 0.82; font-size: 0.9rem; max-width: 500px; }
.btn-white {
  background: var(--white);
  color: var(--teal);
  font-weight: 600;
  white-space: nowrap;
}
.btn-white:hover { background: var(--cream); }

/* ─── About Section ─── */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27,107,97,0.15);
  aspect-ratio: 4/5;
}
.about-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-decor {
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px;
  border: 3px solid var(--teal-light);
  border-radius: var(--radius);
  z-index: -1;
}
.about-content .tag { margin-bottom: 1rem; }
.about-content h2 { margin-bottom: 1rem; }
.about-content p  { color: var(--text-muted); margin-bottom: 1rem; }

@media (max-width: 768px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-img-frame { max-width: 340px; margin: 0 auto; }
}

/* ─── Fears / Cards Section ─── */
.fears { background: var(--cream); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27,107,97,0.12);
}
.card-icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; color: var(--teal); }
.card p   { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
}

/* ─── Book Teaser ─── */
.book-teaser {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--cream) 100%);
}
.book-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}
.book-cover {
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(196,131,122,0.3), 0 5px 15px rgba(0,0,0,0.15);
  transform: rotate(-2deg);
  transition: transform var(--transition);
}
.book-cover:hover { transform: rotate(0deg) scale(1.02); }
.book-content .tag { margin-bottom: 1rem; }
.book-content h2  { margin-bottom: 1rem; }
.book-content p   { color: var(--text-muted); margin-bottom: 1.5rem; }
.book-badges      { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.badge {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .book-inner { grid-template-columns: 1fr; text-align: center; }
  .book-cover { max-width: 220px; margin: 0 auto; transform: none; }
  .book-badges { justify-content: center; }
}

/* ─── Testimonials ─── */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--teal);
  transition: transform var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars { color: #F5A623; font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-family: var(--font-head); font-style: italic; font-size: 1.05rem; line-height: 1.7; color: var(--text); margin-bottom: 1.25rem; }
.testimonial-author { font-size: 0.85rem; font-weight: 600; color: var(--teal); }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ─── Case Studies / Fallstudien ─── */
.case-studies { background: var(--cream); }
.accordion-list { display: flex; flex-direction: column; gap: 0.75rem; }
.accordion-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 500;
  color: var(--text);
  transition: background var(--transition);
}
.accordion-trigger:hover { background: var(--teal-light); }
.accordion-trigger .acc-title { display: flex; align-items: center; gap: 0.75rem; }
.acc-badge { background: var(--teal-light); color: var(--teal); font-size: 0.72rem; font-weight: 600; padding: 0.2rem 0.6rem; border-radius: 100px; white-space: nowrap; }
.accordion-trigger .acc-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--teal-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
  font-size: 0.8rem; color: var(--teal);
}
.accordion-trigger[aria-expanded="true"] .acc-icon { transform: rotate(45deg); background: var(--teal); color: #fff; }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body-inner { padding: 0 1.5rem 1.5rem; color: var(--text-muted); font-size: 0.93rem; line-height: 1.8; border-top: 1px solid var(--border); padding-top: 1rem; }

/* ─── Heilkurs Section ─── */
.heilkurs { background: var(--white); }
.heilkurs-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.kurs-steps { display: flex; flex-direction: column; gap: 1.75rem; }
.kurs-step  { display: flex; gap: 1.25rem; align-items: flex-start; }
.kurs-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--teal); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.15rem; font-weight: 600;
}
.kurs-step-content h4 { margin-bottom: 0.35rem; color: var(--text); }
.kurs-step-content p  { font-size: 0.92rem; color: var(--text-muted); }

.kurs-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: sticky; top: 90px;
}
.kurs-card h3 { margin-bottom: 1.5rem; color: var(--teal); }
.kurs-includes { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.kurs-include  { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.92rem; }
.kurs-include-icon { color: var(--teal); margin-top: 0.15rem; font-size: 0.9rem; flex-shrink: 0; }
.kurs-price { text-align: center; padding: 1.5rem; background: var(--white); border-radius: 8px; margin-bottom: 1.5rem; border: 2px solid var(--teal-light); }
.kurs-price .price-amount { font-family: var(--font-head); font-size: 2.5rem; color: var(--teal); font-weight: 600; }
.kurs-price .price-label  { font-size: 0.85rem; color: var(--text-muted); }
.kurs-note { font-size: 0.8rem; color: var(--text-muted); text-align: center; line-height: 1.6; }

@media (max-width: 768px) {
  .heilkurs-inner { grid-template-columns: 1fr; }
  .kurs-card { position: static; }
}

/* ─── Process Section ─── */
.process { background: linear-gradient(145deg, var(--teal) 0%, var(--teal-dark) 100%); color: var(--white); }
.process .section-title h2 { color: var(--white); }
.process .section-title p  { color: rgba(255,255,255,0.75); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  text-align: center;
  padding: 2rem 1.25rem;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute; top: 2.75rem; right: -0.75rem;
  color: rgba(255,255,255,0.3);
  font-size: 1.2rem;
}
.process-num {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 600; color: var(--white);
  margin: 0 auto 1rem;
}
.process-step h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1rem; }
.process-step p  { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

@media (max-width: 768px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step::after { display: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ─── FAQ ─── */
.faq { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.97rem; font-weight: 500;
  color: var(--text);
}
.faq-question:hover { color: var(--teal); }
.faq-chevron { font-size: 1.1rem; color: var(--teal); transition: transform 0.3s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.93rem; color: var(--text-muted); line-height: 1.8; border-top: 1px solid var(--border); padding-top: 1rem; }

/* ─── CTA Section ─── */
.cta-section {
  background: var(--cream);
  text-align: center;
  padding: 6rem 0;
}
.cta-section .tag { margin-bottom: 1.25rem; }
.cta-section h2   { margin-bottom: 1rem; }
.cta-section p    { color: var(--text-muted); max-width: 560px; margin: 0 auto 2rem; }
.cta-quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 600px;
  margin: 3rem auto 0;
  border-left: 4px solid var(--teal);
}
.cta-quote blockquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
}

/* ─── Footer ─── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.75);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .nav-logo { color: var(--white); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; font-family: var(--font-body); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── Scroll Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ─── Subpages ─── */
.page-hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p  { color: rgba(255,255,255,0.8); max-width: 560px; margin: 1rem auto 0; }

.legal-content { background: var(--white); }
.legal-content .container { max-width: 780px; }
.legal-content h2 { font-size: 1.4rem; margin: 2.5rem 0 0.75rem; color: var(--teal); }
.legal-content h3 { font-size: 1.1rem; margin: 1.75rem 0 0.5rem; }
.legal-content p  { color: var(--text-muted); margin-bottom: 0.75rem; }
.legal-content ul { margin: 0.5rem 0 0.75rem 1.5rem; color: var(--text-muted); }
.legal-content ul li { margin-bottom: 0.35rem; list-style: disc; font-size: 0.95rem; }
.legal-content a  { color: var(--teal); text-decoration: underline; }

/* ─── Book Page specific ─── */
.book-hero {
  background: linear-gradient(135deg, var(--rose-light) 0%, var(--cream) 100%);
  padding: 5rem 0;
}
.book-hero-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
}
.book-methods { background: var(--white); }
.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.method-card { background: var(--cream); border-radius: var(--radius); padding: 2rem; text-align: center; }
.method-icon { font-size: 2rem; margin-bottom: 1rem; }
.method-card h3 { font-size: 1.1rem; color: var(--teal); margin-bottom: 0.5rem; }
.method-card p { font-size: 0.9rem; color: var(--text-muted); }

.book-outcomes { background: var(--cream); }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.outcome-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--rose);
}
.outcome-item h4 { color: var(--teal); margin-bottom: 0.5rem; }
.outcome-item p  { font-size: 0.92rem; color: var(--text-muted); }

.book-author { background: var(--white); }
.book-author-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.author-img { border-radius: var(--radius); overflow: hidden; background: var(--cream); }
.author-img img { width: 100%; }
.book-author blockquote {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--teal);
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
  line-height: 1.7;
}

.buy-options { background: var(--cream); text-align: center; }
.buy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  max-width: 700px;
  margin-inline: auto;
}
.buy-option {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  text-align: center;
}
.buy-option .buy-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.buy-option h4 { color: var(--text); margin-bottom: 0.35rem; }
.buy-option p  { font-size: 0.88rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .book-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .methods-grid, .outcomes-grid, .buy-grid { grid-template-columns: 1fr; }
  .book-author-inner { grid-template-columns: 1fr; }
  .author-img { max-width: 200px; margin: 0 auto; }
}
