/* ============================================
   Holistic Harmony Haven — Global Stylesheet
   ============================================ */

:root {
  /* Palette — warm sage + cream + terracotta */
  --sage-50:  #f3f6f1;
  --sage-100: #e3ebde;
  --sage-200: #c5d3bd;
  --sage-300: #9eb393;
  --sage-400: #7a9270;
  --sage-500: #5e7a55;
  --sage-600: #4a6243;
  --sage-700: #3b4e35;
  --sage-800: #2c3a28;

  --cream-50: #fbf8f2;
  --cream-100: #f6f1e6;
  --cream-200: #ecdfc8;

  --ink-900: #1f2a1c;
  --ink-700: #2f3a2b;
  --ink-500: #4b574a;
  --ink-400: #6b746a;

  --terracotta-400: #d18a5e;
  --terracotta-500: #c2754a;
  --terracotta-600: #a85f38;
  --amber-500: #b88746;

  --bg: var(--cream-50);
  --surface: #ffffff;
  --surface-tint: var(--cream-100);
  --text: var(--ink-900);
  --text-soft: var(--ink-500);
  --accent: var(--terracotta-500);
  --accent-hover: var(--terracotta-600);
  --primary: var(--sage-600);
  --primary-hover: var(--sage-700);
  --line: #e6dfcf;

  /* Type scale */
  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & radius */
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(31,42,28,.06), 0 1px 3px rgba(31,42,28,.05);
  --shadow:    0 4px 14px rgba(31,42,28,.08);
  --shadow-lg: 0 20px 50px -10px rgba(31,42,28,.18);

  --container: 1200px;
  --container-narrow: 880px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-hover); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 .6em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
h4 { font-size: 1.05rem; font-family: var(--sans); font-weight: 600; letter-spacing: .02em; text-transform: uppercase; color: var(--sage-600); }

p { margin: 0 0 1em; color: var(--ink-700); }
p.lead { font-size: 1.18rem; line-height: 1.65; color: var(--ink-700); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sage-600);
  margin-bottom: 1rem;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

section { padding: clamp(60px, 8vw, 110px) 0; }

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .95rem 1.7rem;
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  text-align: center;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { background: var(--sage-600); color: #fff; }
.btn-secondary:hover { background: var(--sage-700); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--sage-700); border-color: var(--sage-300); }
.btn-outline:hover { background: var(--sage-100); color: var(--sage-800); }
.btn-ghost { background: transparent; color: var(--sage-700); }
.btn-ghost:hover { color: var(--sage-800); }

/* ============================================
   Navigation
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(230, 223, 207, .6);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.logo { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink-900); text-decoration: none; }
.logo:hover { color: var(--sage-700); }
.logo svg { flex: 0 0 auto; }
.logo .logo-img { width: 48px; height: 48px; object-fit: contain; flex: 0 0 auto; display: block; border-radius: 6px; background: transparent; }
@media (max-width: 640px) { .logo .logo-img { width: 42px; height: 42px; } }
.logo .logo-text {
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: .005em;
  line-height: 1.1;
}
.logo .logo-text small { display: block; font-family: var(--sans); font-size: .65rem; letter-spacing: .22em; text-transform: uppercase; color: var(--sage-600); font-weight: 500; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block;
  padding: .55rem .9rem;
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink-700);
  border-radius: 8px;
}
.nav-links a:hover, .nav-links a.active { color: var(--sage-700); background: var(--sage-50); }
.nav-cta { margin-left: 12px; }

.hamburger {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: 8px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink-900); position: relative; transition: all .25s ease; }
.hamburger span::before, .hamburger span::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink-900); transition: all .25s ease; }
.hamburger span::before { top: -7px; }
.hamburger span::after  { top:  7px; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { top: 0; transform: rotate(45deg); }
.hamburger.open span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 980px) {
  .nav-links {
    position: fixed; top: 76px; right: 0; left: 0;
    height: calc(100vh - 76px);
    flex-direction: column; align-items: stretch;
    justify-content: flex-start;
    z-index: 60;
    gap: 0;
    background: var(--cream-50);
    padding: 24px;
    transform: translateY(-120%);
    transition: transform .35s ease, visibility .35s ease;
    border-top: 1px solid var(--line);
    overflow-y: auto;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; pointer-events: auto; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-cta { margin: 12px 0 0; }
  .nav-cta a { display: block; text-align: center; }
  .hamburger { display: inline-flex; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--cream-100);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 90px) 0;
}
.hero-text h1 { margin-bottom: 1rem; }
.hero-text p.lead { color: var(--ink-700); margin-bottom: 2rem; max-width: 36ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image { position: relative; }
.hero-image img {
  width: 100%; aspect-ratio: 16/12; object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.hero-image::after {
  content: '';
  position: absolute; inset: 16px -16px -16px 16px;
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-xl);
  z-index: -1;
}
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; padding: 40px 0 56px; }
  .hero-image::after { display: none; }
}

/* Subpage hero (smaller) */
.page-hero { padding: clamp(60px, 8vw, 110px) 0 clamp(30px, 4vw, 50px); text-align: center; background: var(--cream-100); border-bottom: 1px solid var(--line); }
.page-hero h1 { margin-bottom: .5rem; }
.page-hero p { color: var(--text-soft); font-size: 1.1rem; max-width: 60ch; margin: 0 auto; }

/* ============================================
   Trust strip
   ============================================ */
.trust-strip {
  background: var(--sage-700);
  color: var(--cream-100);
  padding: 18px 0;
  font-size: .88rem;
  letter-spacing: .04em;
}
.trust-strip .container { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .35rem 1.4rem; text-align: center; }
.trust-strip .dot { color: var(--sage-300); }

/* ============================================
   Service grid
   ============================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--sage-200); }
.card-media { aspect-ratio: 4/3; overflow: hidden; background: var(--sage-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: .5rem; font-size: 1.4rem; }
.card-body p { color: var(--text-soft); flex: 1; font-size: .98rem; }
.card-link { margin-top: 14px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { color: var(--accent-hover); }
.card-link::after { content: '→'; transition: transform .25s ease; }
.card-link:hover::after { transform: translateX(4px); }

/* ============================================
   Two-column section
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse > :first-child { order: 0; }
}

/* ============================================
   Quote / About preview
   ============================================ */
.quote-block {
  background: var(--sage-50);
  border-left: 4px solid var(--sage-500);
  padding: 36px 40px;
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--ink-900);
}
.quote-block cite { display: block; margin-top: 14px; font-family: var(--sans); font-style: normal; font-size: .9rem; color: var(--sage-700); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* ============================================
   Awards
   ============================================ */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.award-card {
  padding: 36px 32px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.award-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--amber-500), var(--terracotta-500));
}
.award-card .ribbon {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--terracotta-600);
  margin-bottom: .9rem;
}
.award-card h3 { font-size: 1.4rem; margin-bottom: .8rem; }
.award-card p { color: var(--text-soft); }

/* ============================================
   Testimonials
   ============================================ */
.testimonial {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.testimonial .stars { color: var(--amber-500); font-size: .95rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial p { font-family: var(--serif); font-size: 1.15rem; line-height: 1.55; color: var(--ink-900); flex: 1; }
.testimonial cite { display: block; margin-top: 18px; font-style: normal; font-size: .9rem; color: var(--sage-700); font-weight: 600; }

/* ============================================
   How it works
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  counter-reset: stepcount;
}
.step {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: var(--cream-100);
  border: 1px solid var(--line);
  counter-increment: stepcount;
  position: relative;
}
.step::before {
  content: counter(stepcount, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--sage-300);
  line-height: 1;
  display: block;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.step p { color: var(--text-soft); margin: 0; }

/* ============================================
   CTA banner
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--sage-700), var(--sage-600));
  color: var(--cream-100);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 56ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band .btn-primary { background: var(--cream-50); color: var(--ink-900); }
.cta-band .btn-primary:hover { background: #fff; color: var(--ink-900); }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--sage-800);
  color: var(--cream-200);
  padding: 70px 0 30px;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 40px;
  margin-bottom: 50px;
}
.site-footer h4 { color: #fff; font-family: var(--sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.site-footer a { color: var(--cream-200); }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer p { color: var(--cream-200); margin-bottom: .55rem; }
.footer-disclaimer { padding-top: 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer-disclaimer .copyright { margin-top: 16px; }
.footer-logo .logo-text { color: #fff; }
.footer-logo .logo-text small { color: var(--sage-300); }
.footer-tagline { color: var(--cream-200); margin-top: 14px; max-width: 38ch; }
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   Forms
   ============================================ */
.form-wrap {
  max-width: 720px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
@media (max-width: 640px) { .form-row, .form-row.three { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink-700); margin-bottom: 6px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--text);
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sage-500);
  box-shadow: 0 0 0 3px rgba(94,122,85,.15);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input[readonly] { background: var(--cream-100); color: var(--ink-500); }

.consent-box {
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  max-height: 240px;
  overflow-y: auto;
  font-size: .92rem;
  line-height: 1.65;
  color: var(--ink-700);
  margin-bottom: 18px;
}
.consent-box strong { color: var(--ink-900); }

.checkbox-field { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; }
.checkbox-field input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--sage-600); flex: 0 0 18px; }
.checkbox-field label { font-size: .95rem; color: var(--ink-700); font-weight: 500; }

.success-msg {
  margin-top: 22px;
  padding: 18px 22px;
  background: var(--sage-50);
  border: 1px solid var(--sage-200);
  border-left: 4px solid var(--sage-500);
  border-radius: var(--radius);
  color: var(--sage-800);
  font-weight: 500;
  display: none;
}
.success-msg.visible { display: block; }

/* ============================================
   Service detail page
   ============================================ */
.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 7vw, 90px) 0;
}
.service-hero img { aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow); width: 100%; }
@media (max-width: 880px) { .service-hero { grid-template-columns: 1fr; } }

.bullet-list { list-style: none; padding: 0; margin: 0; }
.bullet-list li { position: relative; padding-left: 26px; margin-bottom: 12px; color: var(--ink-700); }
.bullet-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 12px; height: 2px; background: var(--accent);
}

/* ============================================
   Pricing
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex; flex-direction: column;
}
.price-card.featured { background: var(--sage-700); color: var(--cream-100); border-color: var(--sage-700); box-shadow: var(--shadow-lg); transform: scale(1.02); }
.price-card.featured h3, .price-card.featured .price-amount { color: #fff; }
.price-card.featured p, .price-card.featured li { color: rgba(255,255,255,.85); }
.price-card.featured .bullet-list li::before { background: var(--amber-500); }
.price-card .price-amount { font-family: var(--serif); font-size: 2.4rem; margin: .4rem 0 .4rem; color: var(--sage-700); }
.price-card .price-note { font-size: .85rem; color: var(--text-soft); margin-bottom: 1.4rem; }
.price-card .bullet-list { margin: 1rem 0 1.5rem; flex: 1; }
.price-card .btn { width: 100%; margin-top: auto; }

/* ============================================
   Blog
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.blog-card .card-media { background: linear-gradient(135deg, var(--sage-100), var(--cream-200)); aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; }
.blog-card .card-media .badge { font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--sage-700); padding: 6px 12px; background: rgba(255,255,255,.7); border-radius: 999px; }
.blog-card .card-body h3 { font-size: 1.25rem; }
.blog-card .meta { font-size: .8rem; color: var(--text-soft); letter-spacing: .06em; text-transform: uppercase; margin-bottom: .55rem; }

/* ============================================
   Section helpers
   ============================================ */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--text-soft); font-size: 1.08rem; }

.alt-bg { background: var(--cream-100); }
.dark-bg { background: var(--sage-800); color: var(--cream-100); }
.dark-bg h2 { color: #fff; }
.dark-bg p  { color: rgba(255,255,255,.8); }

/* ============================================
   Animations
   ============================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Accessibility */
:focus-visible { outline: 2px solid var(--sage-500); outline-offset: 3px; border-radius: 4px; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================
   Courses
   ============================================ */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
}
.course-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.course-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--sage-200), var(--cream-200));
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.course-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.4) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(94,122,85,.25) 0, transparent 50%);
}
.course-thumb svg { position: relative; z-index: 1; color: var(--sage-700); opacity: .55; width: 64px; height: 64px; }
.course-thumb .badge-soon {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--cream-50);
  color: var(--sage-700);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
  border: 1px solid var(--sage-200);
}
.course-card .card-body h3 { font-size: 1.3rem; }
.course-card .btn { margin-top: 14px; }

.notify-form {
  max-width: 520px; margin: 0 auto;
  display: flex; gap: 10px; flex-wrap: wrap;
}
.notify-form input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--sans); font-size: 1rem;
  background: #fff;
}
.notify-form input[type="email"]:focus { outline: none; border-color: var(--sage-500); box-shadow: 0 0 0 3px rgba(94,122,85,.15); }
.notify-form button { flex: 0 0 auto; }
.notify-form .notify-note { width: 100%; font-size: .85rem; color: var(--text-soft); text-align: center; margin-top: 6px; }

/* Footer social icons */
.footer-socials {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream-200, #f5efe1);
  transition: background .2s, transform .2s, color .2s;
}
.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}
.footer-socials svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Homepage memberships row */
.memberships-row {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: .92rem;
  letter-spacing: .04em;
  color: var(--text-soft, #6a6660);
  border-top: 1px solid var(--border-soft, #e7e2d6);
  border-bottom: 1px solid var(--border-soft, #e7e2d6);
  background: var(--surface-soft, #faf8f2);
}
.memberships-row strong { font-weight: 600; color: var(--text-strong, #2a2823); margin-right: .4rem; }

/* ============================================================
   LEAD MAGNET (Free Guide Section)
   ============================================================ */
.lead-magnet {
  background: linear-gradient(135deg, #f4ede1 0%, #ebe1cf 100%);
  padding: 4rem 0;
}
.lead-magnet-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .lead-magnet-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.lead-magnet-text h2 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.2;
  margin: .5rem 0 1rem;
  color: var(--text-strong, #2a2823);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.check-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: .6rem;
  line-height: 1.5;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7a8f5e;
  font-weight: 700;
  font-size: 1.15rem;
}
.lead-magnet-form {
  background: #fff;
  padding: 2rem;
  border-radius: .75rem;
  box-shadow: 0 8px 32px rgba(60, 50, 30, .12);
  border: 1px solid rgba(0,0,0,.04);
}
.lead-magnet-form h3 {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: 1.4rem;
}
.lead-magnet-form .field { margin-bottom: 1rem; }
.lead-magnet-form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: .35rem;
  color: var(--text-soft, #555);
  letter-spacing: .03em;
  text-transform: uppercase;
}
.lead-magnet-form input {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: .5rem;
  font-family: inherit;
  font-size: 1rem;
  background: #fafaf7;
  box-sizing: border-box;
}
.lead-magnet-form input:focus {
  outline: none;
  border-color: var(--sage-700, #647a4d);
  background: #fff;
}

/* ============================================================
   STICKY MOBILE CTA BAR
   ============================================================ */
.sticky-cta {
  display: none;
}
@media (max-width: 720px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: .65rem .75rem;
    gap: .5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
    z-index: 100;
    border-top: 1px solid rgba(0,0,0,.06);
  }
  .sticky-cta a {
    flex: 1;
    text-align: center;
    padding: .8rem .5rem;
    border-radius: .5rem;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
  }
  .sticky-cta .sc-primary {
    background: var(--terracotta, #b76034);
    color: #fff;
  }
  .sticky-cta .sc-outline {
    border: 1.5px solid var(--text-strong, #2a2823);
    color: var(--text-strong, #2a2823);
  }
  /* Add padding to body bottom so content isn't hidden */
  body { padding-bottom: 70px; }
}

/* ============================================================
   INLINE EMAIL CAPTURE (footer/page CTA strip)
   ============================================================ */
.inline-capture {
  background: var(--surface-soft, #faf8f2);
  border: 1px solid var(--border-soft, #e7e2d6);
  border-radius: .75rem;
  padding: 1.75rem;
  margin: 2.5rem 0;
  text-align: center;
}
.inline-capture h3 {
  margin: 0 0 .5rem;
  font-family: var(--serif);
  font-size: 1.4rem;
}
.inline-capture p { margin: 0 0 1rem; color: var(--text-soft, #555); }
.inline-capture form {
  display: flex;
  gap: .5rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.inline-capture input {
  flex: 1;
  min-width: 200px;
  padding: .75rem 1rem;
  border: 1.5px solid rgba(0,0,0,.12);
  border-radius: .5rem;
  font-family: inherit;
  font-size: 1rem;
}
.inline-capture button {
  padding: .75rem 1.5rem;
  white-space: nowrap;
}

@media (max-width: 720px) {
  /* Why-book strip stacks 2x2 on mobile */
  section .container > div[style*="repeat(4, 1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ============================================================
   GST LINE (pricing card tax breakdown)
   ============================================================ */
.gst-line {
  font-size: .85rem;
  color: var(--text-soft, #666);
  margin: -.25rem 0 .75rem;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: .01em;
}
.gst-line strong {
  color: var(--text-strong, #2a2823);
  font-weight: 600;
}

/* ============================================================
   PAYMENT BUTTONS (Stripe + e-Transfer)
   ============================================================ */
.pay-options {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 1rem 0 0;
}
.pay-options .btn-stripe {
  background: #635bff;
  color: #fff;
  border: none;
}
.pay-options .btn-stripe:hover {
  background: #4f47e0;
}
.pay-options .btn-etransfer {
  background: #fff;
  color: #2a2823;
  border: 1.5px solid #c97f3a;
}
.pay-options .btn-etransfer:hover {
  background: #fdf6ec;
}
.pay-note {
  font-size: .78rem;
  color: var(--text-soft, #666);
  margin-top: .4rem;
  line-height: 1.4;
}

/* ============================================================
   PAYMENT GRID (responsive)
   ============================================================ */
@media (max-width: 720px) {
  .pay-grid {
    grid-template-columns: 1fr !important;
  }
}
