
  :root {
    --sage: #638D69;
    --sage-light: #F0F5F1;
    --sage-dark: #244629;
    --earth: #916F59;
    --earth-light: #FAF6F2;
    --ivory: #FAF8F5;
    --accent-gold: #C2A483;
    --charcoal: #20201F;
    --charcoal-mid: #52524E;
    --charcoal-light: #8E8D88;
    --white: #FFFFFF;
    --border: rgba(36, 70, 41, 0.1);
    --nav-h: 70px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Inter', sans-serif;
    background: var(--ivory);
    color: var(--charcoal);
    font-size: 16px;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* UTILITIES & TYPOGRAPHY */
  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    color: var(--charcoal);
    line-height: 1.2;
  }
  
  .section-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .section-eyebrow::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--accent-gold);
  }

  /* BUTTONS */
  .btn-primary {
    background: var(--sage-dark);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid var(--sage-dark);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(36, 70, 41, 0.08);
  }
  .btn-primary:hover {
    background: var(--sage);
    border-color: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(36, 70, 41, 0.15);
  }
  .btn-secondary {
    color: var(--charcoal);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 14px 4px;
    border-bottom: 1px solid var(--accent-gold);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
  }
  .btn-secondary:hover {
    color: var(--sage-dark);
    border-bottom-color: var(--sage-dark);
    padding-left: 8px;
  }
  .btn-light {
    background: var(--white);
    color: var(--sage-dark);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
  }
  .btn-light:hover {
    background: var(--sage-light);
    border-color: var(--sage);
    transform: translateY(-2px);
  }

  /* HEADER & NAVIGATION */
  #site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    height: var(--nav-h);
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw;
    transition: var(--transition-smooth);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 400; letter-spacing: 0.02em;
    color: var(--charcoal); text-decoration: none;
    cursor: pointer;
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo svg {
    width: 32px; height: 32px; fill: var(--sage-dark);
  }
  .nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
  .nav-links a {
    font-size: 12px; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--charcoal-mid);
    text-decoration: none; cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    padding: 6px 0;
  }
  .nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
    background: var(--accent-gold);
    transition: var(--transition-smooth);
  }
  .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
  .nav-links a:hover, .nav-links a.active { color: var(--sage-dark); }
  
  .nav-cta-container { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
  .nav-cta {
    font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--sage-dark); color: var(--white);
    border: none; padding: 10px 22px; border-radius: 4px;
    cursor: pointer; text-decoration: none;
    transition: var(--transition-smooth);
  }
  .nav-cta:hover { background: var(--sage); transform: translateY(-1px); }

  /* MOBILE BURGER */
  .burger-btn {
    display: none;
    background: none; border: none; cursor: pointer;
    padding: 8px; z-index: 1100;
  }
  .burger-bar {
    display: block; width: 22px; height: 1.5px;
    background: var(--charcoal); margin: 5px 0;
    transition: var(--transition-smooth);
  }
  .burger-btn.open .burger-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .burger-btn.open .burger-bar:nth-child(2) { opacity: 0; }
  .burger-btn.open .burger-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* MOBILE DRAWER OVERLAY */
  .mobile-drawer {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: var(--ivory); z-index: 1001;
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    padding: 100px 40px 40px;
    display: flex; flex-direction: column; gap: 2rem;
    transition: var(--transition-smooth);
  }
  .mobile-drawer.open { right: 0; }
  .mobile-drawer a {
    font-size: 16px; font-weight: 400; letter-spacing: 0.06em;
    text-transform: uppercase; color: var(--charcoal);
    text-decoration: none; font-family: 'Cormorant Garamond', serif;
  }
  .mobile-drawer a.active { color: var(--sage-dark); font-weight: 600; }
  .mobile-overlay {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.3); z-index: 1000; opacity: 0; pointer-events: none;
    transition: var(--transition-smooth);
  }
  .mobile-overlay.open { opacity: 1; pointer-events: auto; }

  /* PAGES */
  .page { display: none; padding-top: var(--nav-h); min-height: 100vh; }
  .page.active { display: block; }

  /* ─── HOME PAGE ─── */
  .hero {
    display: block;
    padding: 1vw 8vw 5rem;
  }
  .hero-text {
    padding: 3.5vw 0 3rem;
    max-width: 860px;
  }
  .hero-title {
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 300; line-height: 1.1;
    color: var(--charcoal);
    margin-bottom: 2rem;
  }
  .hero-title em { font-style: italic; color: var(--sage); font-weight: 400; }
  .hero-body {
    font-size: 18px; color: var(--charcoal-mid);
    max-width: 500px; margin-bottom: 3rem; line-height: 1.8;
  }
  .hero-actions { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }

  .hero-visual {
    position: relative; overflow: hidden;
    width: 100%;
    aspect-ratio: 2154 / 1214;
    border-radius: 18px;
    background: var(--sage-light);
    box-shadow: 0 28px 64px rgba(36, 70, 41, 0.16);
  }
  .hero-photo {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    display: block;
  }
  .hero-quote-band {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 4rem 3.2rem 2.8rem;
    background: linear-gradient(to top, rgba(20,32,31,0.68) 0%, rgba(20,32,31,0.14) 68%, transparent 100%);
    z-index: 5; pointer-events: none;
  }
  .hero-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.4vw, 31px); font-weight: 400; font-style: italic;
    color: #fff; line-height: 1.4; max-width: 460px;
    text-shadow: 0 1px 14px rgba(0,0,0,0.28);
  }

  /* PROBLEMS SECTION */
  .section { padding: 8rem 8vw; }
  .section-title {
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 300; line-height: 1.2;
    margin-bottom: 2.5rem;
    max-width: 700px;
  }

  .problems-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem; margin-top: 4rem;
  }
  .problem-item {
    background: var(--white); padding: 2.5rem 2rem;
    border-radius: 8px; border: 1px solid var(--border);
    transition: var(--transition-smooth);
    position: relative; overflow: hidden;
    cursor: pointer;
  }
  .problem-item::before {
    content: '';
    position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: var(--accent-gold); transform: scaleX(0);
    transition: var(--transition-smooth); transform-origin: left;
  }
  .problem-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(36, 70, 41, 0.05);
    border-color: var(--sage);
  }
  .problem-item:hover::before { transform: scaleX(1); }
  .problem-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px; font-weight: 300; color: transparent;
    line-height: 1; margin-bottom: 1.5rem;
    -webkit-text-stroke: 1px var(--sage);
  }
  .problem-label {
    font-size: 16px; font-weight: 500; color: var(--charcoal);
  }

  /* WHAT GRID & ACCENTS */
  .what-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 6vw; align-items: center; margin-top: 2rem;
  }
  .what-body { font-size: 17px; color: var(--charcoal-mid); line-height: 1.9; }
  .what-body p { margin-bottom: 1.5rem; }
  .what-accent {
    background: var(--white);
    padding: 3.5rem; border-radius: 8px;
    border-left: 4px solid var(--sage);
    box-shadow: 0 10px 30px rgba(36, 70, 41, 0.02);
  }
  .what-accent-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 300; font-style: italic;
    color: var(--sage-dark); line-height: 1.6;
  }

  /* METHOD STEP FLOW */
  .page-hero {
    background: var(--sage-light);
    padding: 8rem 8vw 6rem;
    border-bottom: 1px solid var(--border);
  }
  .page-hero h1 {
    font-size: clamp(44px, 5vw, 68px); font-weight: 300;
    line-height: 1.1; margin-bottom: 1.5rem;
  }
  .page-hero .subtitle {
    font-size: 20px; color: var(--charcoal-mid);
    max-width: 600px; line-height: 1.8;
  }

  .method-flow {
    padding: 6rem 8vw; display: grid;
    grid-template-columns: 1fr; gap: 0;
  }
  .method-step {
    display: grid; grid-template-columns: 120px 1fr;
    gap: 3rem; padding: 4rem 0;
    border-bottom: 1px solid var(--border);
  }
  .method-step:last-child { border-bottom: none; }
  .step-marker {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px; font-weight: 300; color: transparent;
    line-height: 1; -webkit-text-stroke: 1px var(--accent-gold);
    padding-top: 4px;
  }
  .step-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 400;
    margin-bottom: 1rem; color: var(--charcoal);
  }
  .step-content p { color: var(--charcoal-mid); font-size: 16px; line-height: 1.9; }

  .science-band {
    background: var(--earth-light);
    padding: 8rem 8vw;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .science-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem; margin-top: 4rem;
  }
  .science-card {
    background: var(--white);
    padding: 3rem 2.5rem; border-radius: 8px;
    border: 1px solid rgba(145, 111, 89, 0.1);
    box-shadow: 0 5px 15px rgba(145, 111, 89, 0.02);
  }
  .science-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 400;
    margin-bottom: 1rem; color: var(--sage-dark);
  }
  .science-card p { font-size: 15px; color: var(--charcoal-mid); line-height: 1.8; }

  /* EXPANDABLE FAQ */
  .faq-section { padding: 8rem 8vw; background: var(--white); }
  .faq-list { margin-top: 4rem; max-width: 800px; }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-question {
    width: 100%; background: none; border: none; text-align: left;
    padding: 2rem 0; cursor: pointer; display: flex; align-items: center;
    justify-content: space-between; font-family: "Inter", sans-serif;
    font-size: 17px; font-weight: 500; color: var(--charcoal); gap: 2rem;
    transition: var(--transition-smooth);
  }
  .faq-question:hover { color: var(--sage-dark); }
  .faq-icon {
    font-size: 24px; color: var(--sage); flex-shrink: 0;
    transition: var(--transition-smooth); display: inline-block;
    width: 32px; height: 32px; text-align: center; line-height: 28px;
    border-radius: 50%; border: 1px solid var(--border);
  }
  .faq-answer {
    font-size: 16px; color: var(--charcoal-mid); line-height: 1.9;
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
  }
  .faq-item.open .faq-answer { max-height: 350px; padding-bottom: 2rem; }
  .faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--sage); color: var(--sage-dark); }

  /* SYMPTOMS DIRECTORY */
  .symptoms-intro { padding: 5rem 8vw 2rem; max-width: 850px; }
  .symptoms-intro p { font-size: 18px; color: var(--charcoal-mid); line-height: 1.9; margin-bottom: 1.5rem; }
  .symptom-nav { padding: 0 8vw 4rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
  .symptom-nav-btn {
    font-size: 13px; font-weight: 500; padding: 10px 20px;
    border: 1px solid var(--border); background: var(--white);
    color: var(--charcoal-mid); cursor: pointer; border-radius: 4px;
    transition: var(--transition-smooth); text-decoration: none;
    letter-spacing: 0.02em;
  }
  .symptom-nav-btn:hover { background: var(--sage-light); color: var(--sage-dark); border-color: var(--sage); transform: translateY(-1px); }
  
  .symptom-article {
    padding: 6rem 8vw; border-top: 1px solid var(--border);
    display: grid; grid-template-columns: 300px 1fr; gap: 6vw; align-items: start;
  }
  .symptom-article:nth-child(even) { background: var(--white); }
  .symptom-sidebar { position: sticky; top: calc(var(--nav-h) + 2rem); }
  .symptom-tag {
    display: inline-block; background: var(--sage-light); color: var(--sage-dark);
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 16px; margin-bottom: 1.5rem; border-radius: 20px;
  }
  .symptom-sidebar h2 {
    font-size: 36px; font-weight: 300; line-height: 1.2; margin-bottom: 2rem;
    color: var(--charcoal);
  }
  .symptom-meta { font-size: 14px; color: var(--charcoal-mid); line-height: 2.2; border-top: 1px solid var(--border); padding-top: 1.5rem; }
  .symptom-meta strong { color: var(--charcoal); font-weight: 600; display: block; margin-top: 0.5rem; }
  
  .symptom-body h3 {
    font-size: 24px; font-weight: 400; color: var(--charcoal);
    margin-bottom: 1rem; margin-top: 2.5rem;
  }
  .symptom-body h3:first-child { margin-top: 0; }
  .symptom-body p { font-size: 16px; color: var(--charcoal-mid); line-height: 1.9; margin-bottom: 1.25rem; }
  .symptom-body ul { padding-left: 1.5rem; margin-bottom: 1.5rem; }
  .symptom-body ul li { font-size: 16px; color: var(--charcoal-mid); line-height: 1.9; margin-bottom: 0.5rem; }
  
  .healing-highlight {
    background: var(--sage-light); border-left: 4px solid var(--sage);
    padding: 2rem; border-radius: 0 8px 8px 0; margin-top: 2.5rem;
  }
  .healing-highlight p { font-size: 15px; color: var(--sage-dark); line-height: 1.85; margin: 0; }
  .healing-highlight strong { color: var(--sage-dark); font-weight: 600; }
  .symptom-cta { margin-top: 2.5rem; }

  /* ABOUT PAGE LAYOUT */
  .about-layout { display: grid; grid-template-columns: 5fr 7fr; align-items: start; }
  .about-photo-col {
    background: var(--sage-light); min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 4rem 3rem; position: sticky; top: var(--nav-h);
  }
  .about-photo-placeholder {
    width: 100%; max-width: 360px;
    background: var(--white);
    border-radius: 8px; border: 1px solid var(--border);
    padding: 1.5rem; text-align: center;
    box-shadow: 0 15px 40px rgba(36, 70, 41, 0.05);
  }
  .about-content { padding: 8rem 5vw; }
  .about-content h1 { font-size: clamp(40px, 5vw, 64px); font-weight: 300; margin-bottom: 1rem; }
  .about-role { font-size: 14px; color: var(--sage-dark); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3rem; display: block; }
  .about-content p { font-size: 17px; color: var(--charcoal-mid); line-height: 1.9; margin-bottom: 1.5rem; }
  .about-content p strong { color: var(--charcoal); font-weight: 600; }
  
  .about-credentials {
    margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border);
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  }
  .credential-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--charcoal-light); margin-bottom: 0.5rem; }
  .credential-value { font-size: 16px; color: var(--charcoal); font-weight: 500; }

  /* CASE STUDIES & VIDEOS */
  .story-intro { padding: 6rem 8vw 3rem; max-width: 800px; }
  .story-intro p { font-size: 20px; color: var(--charcoal-mid); line-height: 1.8; }
  .story-divider { margin: 0 8vw; border: none; border-top: 1px solid var(--border); }
  
  .story-olivia { display: grid; grid-template-columns: 1fr 2fr; gap: 6vw; padding: 6rem 8vw; }
  .story-sidebar h3 { font-size: 40px; font-weight: 300; margin-bottom: 1.5rem; }
  .story-sidebar .sidebar-tag {
    display: inline-block; background: var(--sage-light); color: var(--sage-dark);
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 6px 16px; margin-bottom: 2rem; border-radius: 20px;
  }
  .story-sidebar p { font-size: 15px; color: var(--charcoal-mid); line-height: 1.8; }
  .story-body p { font-size: 17px; color: var(--charcoal-mid); line-height: 1.95; margin-bottom: 1.5rem; }
  .story-body .pull-quote {
    font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 300; font-style: italic;
    color: var(--sage-dark); line-height: 1.5; border-left: 4px solid var(--sage);
    padding-left: 2rem; margin: 3.5rem 0;
  }

  .videos-section { background: var(--sage-light); padding: 8rem 8vw; border-top: 1px solid var(--border); }
  .video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 4rem; }
  .video-card {
    background: var(--white); border-radius: 8px; border: 1px solid var(--border);
    overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.02); transition: var(--transition-smooth);
  }
  .video-card:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(0,0,0,0.05); }
  .video-frame-container { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--sage-dark); }
  .video-frame-container iframe { width: 100%; height: 100%; border: none; display: block; }
  .video-link { position: relative; display: block; width: 100%; height: 100%; cursor: pointer; text-decoration: none; overflow: hidden; }
  .video-link img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .video-play {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 64px; height: 64px; border-radius: 50%; background: rgba(20, 40, 25, 0.72);
    display: flex; align-items: center; justify-content: center; transition: var(--transition-smooth);
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  }
  .video-play::after {
    content: ''; border-style: solid; border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #fff; margin-left: 4px;
  }
  .video-link:hover .video-play { background: var(--sage-dark); transform: translate(-50%, -50%) scale(1.08); }
  .video-info { padding: 1.75rem; }
  .video-info h4 { font-size: 20px; font-weight: 500; margin-bottom: 0.5rem; color: var(--charcoal); }
  .video-info p { font-size: 14px; color: var(--charcoal-mid); }

  /* INTERACTIVE BOOKING & CONTACT LAYOUT */
  .contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: calc(100vh - var(--nav-h)); }
  .contact-left { background: var(--sage-dark); padding: 8rem 6vw; color: var(--white); }
  .contact-left h1 { font-size: clamp(40px, 5vw, 60px); font-weight: 300; color: var(--white); margin-bottom: 2rem; }
  .contact-left p { color: rgba(255,255,255,0.78); font-size: 18px; line-height: 1.8; margin-bottom: 3rem; max-width: 480px; }
  
  .contact-detail { display: flex; gap: 1.5rem; align-items: flex-start; margin-bottom: 2rem; }
  .contact-detail-icon {
    width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .contact-detail-icon svg { width: 20px; height: 20px; fill: var(--white); }
  .contact-detail-text { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.6; }
  .contact-detail-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.5); margin-bottom: 4px; }

  .contact-right { background: var(--ivory); padding: 8rem 6vw; }
  .contact-right h2 { font-size: 36px; font-weight: 300; margin-bottom: 2rem; }
  
  /* SCHEDULER WIZARD */
  .booking-wizard {
    background: var(--white); border-radius: 8px; border: 1px solid var(--border);
    padding: 3rem 2.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  }
  .wizard-steps { display: flex; justify-content: space-between; margin-bottom: 2.5rem; position: relative; }
  .wizard-steps::before {
    content: ''; position: absolute; top: 15px; left: 0; right: 0; height: 2px;
    background: var(--sage-light); z-index: 1;
  }
  .wizard-step-dot {
    width: 32px; height: 32px; border-radius: 50%; background: var(--white);
    border: 2px solid var(--sage-light); display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 600; color: var(--charcoal-light); z-index: 2;
    transition: var(--transition-smooth);
  }
  .wizard-step-dot.active { border-color: var(--sage-dark); color: var(--sage-dark); background: var(--sage-light); }
  .wizard-step-dot.completed { background: var(--sage-dark); border-color: var(--sage-dark); color: var(--white); }
  
  .wizard-panel { display: none; }
  .wizard-panel.active { display: block; }
  
  .form-group { margin-bottom: 1.75rem; }
  .form-group label {
    display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--charcoal-mid); margin-bottom: 0.75rem;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border);
    background: var(--ivory); font-family: 'Inter', sans-serif;
    font-size: 15px; color: var(--charcoal); outline: none; border-radius: 4px;
    transition: var(--transition-smooth);
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--sage-dark); background: var(--white);
    box-shadow: 0 0 0 3px rgba(99, 141, 105, 0.1);
  }
  .form-group textarea { resize: vertical; min-height: 110px; }
  
  .wizard-navigation { display: flex; justify-content: space-between; margin-top: 2.5rem; gap: 1rem; }
  .btn-wizard-prev {
    background: var(--white); color: var(--charcoal-mid); border: 1px solid var(--border);
    padding: 12px 24px; border-radius: 4px; cursor: pointer; transition: var(--transition-smooth); font-size: 13px; font-weight: 500;
  }
  .btn-wizard-prev:hover { background: var(--sage-light); color: var(--sage-dark); }
  
  /* PRICING ESTIMATOR WIDGET */
  .estimator-block {
    background: var(--sage-light); border-radius: 6px; padding: 1.5rem; margin-top: 2rem;
    border: 1px solid rgba(99, 141, 105, 0.15); display: flex; justify-content: space-between; align-items: center;
  }
  .estimator-value { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600; color: var(--sage-dark); }
  .travel-hint { font-size: 12px; color: var(--charcoal-mid); margin-top: 0.65rem; line-height: 1.5; min-height: 1.4em; }

  /* BANDS & FOOTER */
  .home-cta-band {
    background: var(--sage-dark); padding: 6rem 8vw;
    display: flex; align-items: center; justify-content: space-between;
    gap: 3rem; flex-wrap: wrap; border-radius: 0;
  }
  .home-cta-band h2 { font-size: clamp(32px, 3.5vw, 48px); color: var(--white); line-height: 1.3; }
  
  .meditation-bridge {
    background: var(--earth-light); padding: 4.5rem 8vw;
    border-top: 1px solid var(--border); display: flex; align-items: center;
    justify-content: space-between; gap: 3rem; flex-wrap: wrap;
  }
  .meditation-bridge p { font-size: 16px; color: var(--charcoal-mid); max-width: 580px; line-height: 1.8; }
  .meditation-bridge a { color: var(--sage-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 4px; transition: var(--transition-smooth); }
  .meditation-bridge a:hover { color: var(--sage); }

  footer {
    background: var(--charcoal); color: rgba(255,255,255,0.45);
    padding: 3rem 8vw; display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap; font-size: 13px; border-top: 1px solid rgba(255,255,255,0.05);
  }
  footer a { color: rgba(255,255,255,0.45); text-decoration: none; transition: var(--transition-smooth); }
  footer a:hover { color: var(--white); }

  /* TOAST */
  .toast-success {
    position: fixed; bottom: 30px; right: 30px;
    background: var(--sage-dark); color: var(--white);
    padding: 16px 28px; border-radius: 4px; font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: none; z-index: 2000; align-items: center; gap: 12px;
    animation: slideIn 0.30s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
  }
  @keyframes slideIn {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }

  /* RESPONSIVE DESIGN */
  @media (max-width: 1024px) {
    .about-layout, .contact-layout, .story-olivia, .grounding-container { grid-template-columns: 1fr; }
    .about-photo-col { position: static; min-height: 350px; }
  }
  @media (max-width: 768px) {
    nav { height: 60px; }
    .nav-links, .nav-cta-container .nav-cta { display: none; }
    .burger-btn { display: block; }
    .section { padding: 5rem 6vw; }
    .hero { padding: 0 6vw 3rem; }
    .hero-text { padding: 2rem 0 2.5rem; }
    .what-grid { grid-template-columns: 1fr; }
    .method-step { grid-template-columns: 1fr; gap: 1.5rem; }
    .symptom-article { grid-template-columns: 1fr; padding: 4rem 6vw; }
    .symptom-sidebar { position: static; }
    /* Tidy 2-up grid of jump links so they don't read as crowded / collide
       with the first symptom heading below. */
    .symptom-nav {
      display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
      padding: 0 6vw 2.5rem;
      position: relative; z-index: 3;
    }
    .symptom-article { position: relative; z-index: 1; }
    .symptom-nav-btn {
      display: flex; align-items: center; justify-content: center;
      text-align: center; min-height: 46px; padding: 10px 12px;
      line-height: 1.25;
    }
    .hero-quote-band { padding: 2.5rem 6vw 2rem; }
  }

  /* ─── PREMIUM POLISH ─── */
  .hero-title, .section-title, .page-hero h1, .about-content h1,
  .contact-left h1, .story-sidebar h3, .symptom-sidebar h2 { letter-spacing: -0.015em; }
  ::selection { background: var(--sage); color: #fff; }
  a, button { -webkit-tap-highlight-color: transparent; }
  img, image-slot { max-width: 100%; }
  :focus-visible { outline: 2px solid var(--sage); outline-offset: 3px; border-radius: 2px; }

  /* Photo slots */
  .about-photo-slot {
    width: 100%; max-width: 380px; aspect-ratio: 4 / 5;
    box-shadow: 0 22px 50px rgba(36, 70, 41, 0.14);
  }
  .story-photo-slot {
    width: 100%; aspect-ratio: 4 / 5; margin-bottom: 2rem;
    box-shadow: 0 18px 44px rgba(36, 70, 41, 0.10);
  }
  .billy-photo-slot {
    width: min(340px, 100%); aspect-ratio: 3 / 4; margin-top: 2rem;
    box-shadow: 0 18px 44px rgba(36, 70, 41, 0.10);
  }
  .release-figure { padding: 0 8vw; margin: 0 0 1rem; }
  .release-photo-slot {
    width: 100%; aspect-ratio: 16 / 9;
    box-shadow: 0 20px 48px rgba(36, 70, 41, 0.12);
  }
  .release-caption {
    font-size: 13px; color: var(--charcoal-light);
    margin-top: 1.1rem; letter-spacing: 0.02em; max-width: 720px; line-height: 1.7;
  }
  image-slot { --is-empty-bg: var(--sage-light); }
  .method-feature { padding: 0 8vw; margin: 0; }
  .method-feature-slot { width: 100%; aspect-ratio: 16 / 9; box-shadow: 0 20px 48px rgba(36, 70, 41, 0.12); }
  .method-feature-cap { font-size: 13px; color: var(--charcoal-light); margin-top: 1.1rem; max-width: 720px; line-height: 1.7; }
  .story-inline { margin: 2.5rem 0; }
  .story-inline-slot { width: min(380px, 100%); aspect-ratio: 3 / 4; box-shadow: 0 18px 44px rgba(36, 70, 41, 0.10); }
  .story-inline-video { width: min(340px, 100%); aspect-ratio: 9 / 16; border-radius: 12px; overflow: hidden; box-shadow: 0 18px 44px rgba(36, 70, 41, 0.10); }
  .story-inline-video iframe { width: 100%; height: 100%; border: 0; display: block; }
  .story-inline-cap { font-size: 13px; color: var(--charcoal-light); margin-top: 0.9rem; letter-spacing: 0.02em; }
  .method-video { padding: 2rem 8vw 4rem; }
  .method-video-intro { font-size: 17px; color: var(--charcoal-mid); max-width: 620px; line-height: 1.9; margin-bottom: 3rem; }
  .method-video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; max-width: 1000px; }
  .method-video-frame {
    aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden;
    box-shadow: 0 20px 48px rgba(36, 70, 41, 0.12); background: var(--sage-dark);
  }
  .method-video-frame iframe { width: 100%; height: 100%; border: none; display: block; }
  .method-video-title { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--charcoal); margin: 1.25rem 0 0.4rem; }
  .method-video-desc { font-size: 14px; color: var(--charcoal-mid); line-height: 1.7; }
  .method-hero-note {
    font-family: 'Cormorant Garamond', serif; font-style: italic;
    font-size: 21px; font-weight: 400; color: var(--sage-dark);
    margin-top: 1.5rem; line-height: 1.5;
  }

  /* ─── LANGUAGE TOGGLE ─── */
  .lang-toggle {
    display: inline-flex; align-items: center; flex-shrink: 0;
    border: 1px solid var(--border); border-radius: 999px;
    overflow: hidden; background: var(--white);
  }
  .lang-opt {
    background: none; border: none; padding: 7px 13px;
    font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em; color: var(--charcoal-light); cursor: pointer;
    transition: var(--transition-smooth); line-height: 1;
  }
  .lang-opt.active { background: var(--sage-dark); color: var(--white); }
  .lang-opt:not(.active):hover { color: var(--sage-dark); }
  .mobile-lang { margin-top: 1rem; }


/* ── Multi-page additions ── */
html { scroll-padding-top: calc(var(--nav-h) + 16px); }
.symptom-article, [id^="symptom-"] { scroll-margin-top: calc(var(--nav-h) + 16px); }
.page { display: block; }            /* one page per file — always visible */
a.nav-cta, .lang-opt { text-decoration: none; }


/* ═══════════════════════════════════════════════
   BLOG — index (editorial grid) + post layout
   ═══════════════════════════════════════════════ */

/* —— Index intro —— */
.blog-hero { background: var(--sage-light); padding: 7rem 8vw 3.5rem; border-bottom: 1px solid var(--border); }
.blog-hero h1 { font-size: clamp(44px, 5vw, 68px); font-weight: 300; line-height: 1.08; margin-bottom: 1.25rem; }
.blog-hero .subtitle { font-size: 20px; color: var(--charcoal-mid); max-width: 640px; line-height: 1.75; }

/* —— Tag filter bar —— */
.blog-toolbar { padding: 2.25rem 8vw 0; }
.tag-filter { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.tag-filter-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal-light); margin-right: 0.4rem; }
.tag-chip {
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 500; letter-spacing: 0.02em;
  padding: 8px 16px; border-radius: 999px; cursor: pointer;
  background: var(--white); color: var(--charcoal-mid); border: 1px solid var(--border);
  transition: var(--transition-smooth); text-decoration: none; line-height: 1;
}
.tag-chip:hover { border-color: var(--sage); color: var(--sage-dark); background: var(--sage-light); }
.tag-chip.active { background: var(--sage-dark); color: var(--white); border-color: var(--sage-dark); }

/* —— Featured post —— */
.blog-featured-wrap { padding: 3rem 8vw 1rem; }
.blog-featured {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5vw; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; box-shadow: 0 14px 40px rgba(36, 70, 41, 0.05);
  transition: var(--transition-smooth);
}
.blog-featured:hover { box-shadow: 0 22px 56px rgba(36, 70, 41, 0.10); transform: translateY(-3px); }
.blog-featured-media { position: relative; width: 100%; height: 100%; min-height: 340px; background: var(--sage-light); }
.blog-featured-media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.blog-featured-flag {
  position: absolute; top: 18px; left: 18px; z-index: 4;
  background: var(--accent-gold); color: var(--white);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
}
.blog-featured-body { padding: 3rem 3.2rem 3rem 0; }
.blog-card-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.1rem; }
.blog-card-tag {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--sage-dark); background: var(--sage-light); padding: 5px 12px; border-radius: 999px;
  text-decoration: none; transition: var(--transition-smooth);
}
.blog-card-tag:hover { background: var(--sage); color: var(--white); }
.blog-featured-body h2 { font-size: clamp(28px, 3vw, 40px); font-weight: 300; line-height: 1.18; margin-bottom: 1.1rem; letter-spacing: -0.015em; }
.blog-featured-body h2 a { color: var(--charcoal); text-decoration: none; transition: var(--transition-smooth); }
.blog-featured-body h2 a:hover { color: var(--sage-dark); }
.blog-featured-excerpt { font-size: 17px; color: var(--charcoal-mid); line-height: 1.8; margin-bottom: 1.5rem; max-width: 46ch; }
.blog-meta { font-size: 12.5px; color: var(--charcoal-light); letter-spacing: 0.04em; display: flex; gap: 0.6rem; align-items: center; margin-bottom: 1.5rem; }
.blog-meta span.dot { width: 3px; height: 3px; border-radius: 50%; background: var(--accent-gold); }
.blog-readmore {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage-dark); text-decoration: none;
  border-bottom: 1px solid var(--accent-gold); padding-bottom: 3px; transition: var(--transition-smooth);
}
.blog-readmore:hover { color: var(--sage); border-bottom-color: var(--sage); gap: 12px; }

/* —— Card grid —— */
.blog-grid-wrap { padding: 2.5rem 8vw 6rem; }
.blog-grid-title { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal-light); margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2.5rem; }
.blog-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden;
  transition: var(--transition-smooth);
}
.blog-card.is-hidden { display: none; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(36, 70, 41, 0.08); border-color: var(--sage); }
.blog-card-media { position: relative; width: 100%; aspect-ratio: 16 / 10; background: var(--sage-light); }
.blog-card-media image-slot { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.blog-card-body { padding: 1.75rem 1.75rem 2rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-body h3 { font-size: 24px; font-weight: 400; line-height: 1.25; margin-bottom: 0.85rem; letter-spacing: -0.01em; }
.blog-card-body h3 a { color: var(--charcoal); text-decoration: none; transition: var(--transition-smooth); }
.blog-card-body h3 a:hover { color: var(--sage-dark); }
.blog-card-excerpt { font-size: 15px; color: var(--charcoal-mid); line-height: 1.7; margin-bottom: 1.5rem; flex: 1; }
.blog-card .blog-meta { margin-bottom: 1.1rem; }
.blog-card .blog-readmore { font-size: 12px; align-self: flex-start; }
.blog-empty { display: none; padding: 3rem 0; font-size: 17px; color: var(--charcoal-mid); font-style: italic; font-family: 'Cormorant Garamond', serif; }

/* ═══════════════════════════════════════════════
   BLOG — single post
   ═══════════════════════════════════════════════ */
.post-hero { padding: 4rem 8vw 2.5rem; max-width: 880px; }
.post-breadcrumb { font-size: 12px; letter-spacing: 0.04em; color: var(--charcoal-light); margin-bottom: 1.75rem; }
.post-breadcrumb a { color: var(--charcoal-light); text-decoration: none; transition: var(--transition-smooth); }
.post-breadcrumb a:hover { color: var(--sage-dark); }
.post-hero h1 { font-size: clamp(34px, 4.4vw, 56px); font-weight: 300; line-height: 1.12; letter-spacing: -0.018em; margin-bottom: 1.5rem; }
.post-dek { font-size: 20px; color: var(--charcoal-mid); line-height: 1.7; max-width: 60ch; margin-bottom: 1.75rem; }
.post-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 13px; color: var(--charcoal-light); letter-spacing: 0.04em; }
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--accent-gold); }
.post-meta strong { color: var(--charcoal-mid); font-weight: 600; }

.post-hero-media { padding: 1rem 8vw 0; margin: 0 auto 3.5rem; max-width: 1080px; }
.post-hero-media image-slot { width: 100%; height: auto; aspect-ratio: 3 / 2; display: block; box-shadow: 0 22px 54px rgba(36, 70, 41, 0.13); border-radius: 14px; }
.post-hero-cap { font-size: 13px; color: var(--charcoal-light); margin-top: 1rem; max-width: 760px; line-height: 1.6; }

.post-body { padding: 0 8vw; max-width: 760px; margin: 0 auto; }
.post-body > * { max-width: 68ch; }
.post-body p { font-size: 18px; color: var(--charcoal-mid); line-height: 1.85; margin-bottom: 1.5rem; }
.post-body p strong { color: var(--charcoal); font-weight: 600; }
.post-body p em { font-style: italic; }
.post-body h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(26px, 2.6vw, 34px); font-weight: 400;
  color: var(--charcoal); line-height: 1.25; margin: 3.25rem 0 1.25rem; letter-spacing: -0.01em;
}
.post-body h3 { font-size: 22px; font-weight: 500; color: var(--charcoal); margin: 2.25rem 0 0.85rem; }
.post-body a { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent-gold); transition: var(--transition-smooth); }
.post-body a:hover { color: var(--sage); }
.post-body ul { padding-left: 1.4rem; margin-bottom: 1.5rem; }
.post-body li { font-size: 18px; color: var(--charcoal-mid); line-height: 1.8; margin-bottom: 0.6rem; }
.post-body li strong { color: var(--charcoal); }
.post-divider { border: none; border-top: 1px solid var(--border); max-width: 100% !important; margin: 2.75rem 0; }
.post-pull {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(24px, 2.6vw, 30px); font-weight: 300;
  font-style: italic; color: var(--sage-dark); line-height: 1.45;
  border-left: 4px solid var(--sage); padding-left: 2rem; margin: 2.75rem 0; max-width: 60ch;
}
.post-note {
  background: var(--earth-light); border-radius: 10px; padding: 1.75rem 2rem; margin: 2.5rem 0;
  font-size: 16px; color: var(--charcoal-mid); line-height: 1.8;
}
.post-note strong { color: var(--charcoal); }

/* —— In-body explanation / diagram figures —— */
.post-figure { margin: 2.75rem 0; max-width: 100% !important; }
.post-figure img { width: 100%; height: auto; display: block; border-radius: 12px; box-shadow: 0 14px 36px rgba(36, 70, 41, 0.10); }
.post-figure figcaption { font-size: 14px; color: var(--charcoal-light); line-height: 1.65; margin-top: 0.85rem; font-style: italic; max-width: 60ch; }

/* —— Post tags —— */
.post-tags { padding: 3.25rem 8vw 0; max-width: 760px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; }
.post-tags .post-tags-label { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal-light); margin-right: 0.4rem; }

/* —— Booking CTA band —— */
.post-cta { background: var(--sage-dark); padding: 4.5rem 8vw; margin-top: 4.5rem; text-align: center; }
.post-cta h2 { color: var(--white); font-size: clamp(28px, 3.2vw, 42px); font-weight: 300; line-height: 1.25; margin-bottom: 1rem; }
.post-cta p { color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.75; max-width: 560px; margin: 0 auto 2.25rem; }
.post-cta .cta-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* —— Related posts —— */
.related { padding: 5.5rem 8vw 6rem; background: var(--earth-light); border-top: 1px solid var(--border); }
.related h2 { font-size: 13px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--charcoal-light); margin-bottom: 2.25rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

/* —— Responsive —— */
@media (max-width: 900px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-media { min-height: 240px; aspect-ratio: 16 / 10; }
  .blog-featured-body { padding: 2.25rem 2rem 2.5rem; }
}
@media (max-width: 768px) {
  .blog-hero { padding: 5.5rem 6vw 2.5rem; }
  .blog-toolbar, .blog-featured-wrap, .blog-grid-wrap { padding-left: 6vw; padding-right: 6vw; }
  .post-hero, .post-hero-media, .post-tags { padding-left: 6vw; padding-right: 6vw; }
  .post-body { padding: 0 6vw; }
  .post-cta, .related { padding-left: 6vw; padding-right: 6vw; }
}
