  /* ============================================================
    SANYOM AYURVEDA — Premium Wellness Clinic Stylesheet
    Palette: Herbal Green, Warm Beige, Muted Gold, Off-White
    ============================================================ */

  /* ── Google Fonts are loaded in HTML via <link> ── */

  :root {
    --green-dark:   #2d4a35;
    --green-mid:    #4a7c59;
    --green-light:  #7aad8a;
    --green-pale:   #e8f0ea;
    --gold:         #b8966a;
    --gold-light:   #d4b896;
    --gold-pale:    #f5ede0;
    --beige:        #f0e8d8;
    --beige-mid:    #e8dcc8;
    --cream:        #faf7f2;
    --white:        #ffffff;
    --text-dark:    #1e2e24;
    --text-mid:     #3d5447;
    --text-light:   #6b7c72;
    --text-muted:   #9aab9e;

    --serif:   'Cormorant Garamond', 'Georgia', serif;
    --sans:    'Inter', 'Helvetica Neue', sans-serif;

    --radius-sm:  6px;
    --radius-md:  12px;
    --radius-lg:  24px;
    --radius-xl:  40px;

    --shadow-sm:  0 2px 8px rgba(45,74,53,.10);
    --shadow-md:  0 6px 24px rgba(45,74,53,.14);
    --shadow-lg:  0 16px 48px rgba(45,74,53,.18);

    --transition: .35s cubic-bezier(.4,0,.2,1);
  }

  /* ── RESET & BASE ── */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; }
  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
  }
  img { max-width: 100%; height: auto; display: block; }
  a  { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  button { cursor: pointer; font-family: var(--sans); }

  /* ── TYPOGRAPHY ── */
  h1,h2,h3,h4,h5 {
    font-family: var(--serif);
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 600;
  }
  h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
  h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
  h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
  h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
  p  { color: var(--text-light); font-size: 1rem; }

  .section-label {
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: .75rem;
  }
  .section-title { margin-bottom: 1rem; }
  .section-sub   { font-size: 1.05rem; color: var(--text-light); max-width: 580px; }

  .text-center { text-align: center; }
  .text-center .section-sub { margin-inline: auto; }

  /* ── LAYOUT ── */
  .container { width: 90%; max-width: 1180px; margin-inline: auto; }
  .section    { padding: 100px 0; }
  .section-sm { padding: 60px 0; }

  /* ── BUTTONS ── */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-size: .92rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
  }
  .btn-primary:hover {
    background: var(--green-mid);
    border-color: var(--green-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .btn-secondary {
    background: transparent;
    color: var(--green-dark);
    border-color: var(--green-dark);
  }
  .btn-secondary:hover {
    background: var(--green-dark);
    color: var(--white);
    transform: translateY(-2px);
  }
  .btn-gold {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
  }
  .btn-gold:hover {
    background: #a07d57;
    border-color: #a07d57;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }
  .btn-ghost {
    background: rgba(255,255,255,.15);
    color: var(--white);
    border-color: rgba(255,255,255,.5);
    backdrop-filter: blur(4px);
  }
  .btn-ghost:hover {
    background: rgba(255,255,255,.25);
    transform: translateY(-2px);
  }
  .btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
  }
  .btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; transform: translateY(-2px); }
  .btn-lg { padding: 1rem 2.4rem; font-size: 1rem; }
  .btn-sm { padding: .6rem 1.4rem; font-size: .85rem; }

  /* ── HEADER / NAV ── */
  #main-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(250,247,242,.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    padding: 1.2rem 0;
  }
  #main-header.scrolled {
    background: rgba(250,247,242,.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: .75rem 0;
  }
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-shrink: 0;
  }
  .nav-logo .logo-icon {
    width: 44px; height: 44px;
    background: var(--green-dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-logo .logo-icon svg { width: 22px; fill: var(--gold-light); }
  .logo-text .brand-name {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
  }
  .logo-text .brand-tag {
    font-size: .68rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .nav-links a {
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--transition);
  }
  .nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
  .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
  .nav-cta { display: flex; align-items: center; gap: .75rem; }

  /* Mobile Nav */
  .nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: .4rem;
  }
  .nav-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--green-dark);
    transition: all var(--transition);
    border-radius: 2px;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-dark) 0%, #1e3828 40%, #2d4a35 70%, #3a5e47 100%);
    padding-top: 5rem;
  }
  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
      radial-gradient(circle at 20% 50%, rgba(184,150,106,.12) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(122,173,138,.10) 0%, transparent 40%);
    pointer-events: none;
  }
  .hero-content-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 6rem 0 4rem;
  }
  .hero-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .75rem;
  }
  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px; height: 1.5px;
    background: var(--gold);
  }
  .hero h1 {
    color: var(--white);
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
  }
  .hero h1 em {
    color: var(--gold-light);
    font-style: normal;
  }
  .hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.78);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 460px;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
  }
  .trust-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50px;
    padding: .4rem 1rem;
    font-size: .78rem;
    color: rgba(255,255,255,.88);
    backdrop-filter: blur(4px);
  }
  .trust-badge svg { width: 14px; fill: var(--gold-light); flex-shrink: 0; }

  /* Hero Image */
  .hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .hero-img-main {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
  }
  .hero-img-float {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 200px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  .hero-img-float img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
  .hero-stat-badge {
    position: absolute;
    top: 2rem; right: -1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    min-width: 120px;
  }
  .hero-stat-badge .stat-num {
    font-family: var(--serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
  }
  .hero-stat-badge .stat-label {
    font-size: .72rem;
    color: var(--text-light);
    margin-top: .25rem;
  }

  /* ── WHY US ── */
  .why-section { background: var(--white); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
  }
  .why-card {
    background: var(--cream);
    border: 1px solid rgba(184,150,106,.2);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
  }
  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green-mid));
    transform: scaleX(0);
    transition: transform var(--transition);
  }
  .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .why-card:hover::before { transform: scaleX(1); }
  .why-icon {
    width: 56px; height: 56px;
    background: var(--green-pale);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
  }
  .why-icon svg { width: 26px; fill: var(--green-dark); }
  .why-card h3 {
    font-size: 1.3rem;
    margin-bottom: .75rem;
    color: var(--green-dark);
  }
  .why-card ul { display: flex; flex-direction: column; gap: .5rem; }
  .why-card ul li {
    font-size: .9rem;
    color: var(--text-light);
    display: flex; align-items: center; gap: .5rem;
  }
  .why-card ul li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── SIGNATURE TREATMENTS ── */
  .treatments-preview { background: var(--gold-pale); }
  .treatments-header { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; margin-bottom: 4rem; }
  .treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
  }
  .treatment-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: pointer;
  }
  .treatment-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .treatment-thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
    background: var(--green-pale);
  }
  .treatment-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
  .treatment-card:hover .treatment-thumb img { transform: scale(1.06); }
  .treatment-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-pale), var(--gold-pale));
  }
  .treatment-thumb-placeholder svg { width: 48px; opacity: .5; fill: var(--green-mid); }
  .treatment-body { padding: 1.5rem; }
  .treatment-badge {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .5rem;
  }
  .treatment-body h4 { font-size: 1.15rem; color: var(--green-dark); margin-bottom: .5rem; }
  .treatment-body p  { font-size: .88rem; color: var(--text-light); line-height: 1.6; }

  /* ── PATIENT EXPERIENCES / OUTCOMES ── */
  .outcomes-section { background: var(--green-dark); }
  .outcomes-section .section-label { color: var(--gold-light); }
  .outcomes-section .section-title { color: var(--white); }
  .outcomes-section .section-sub { color: rgba(255,255,255,.7); }
  .outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }
  .outcome-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: background var(--transition);
  }
  .outcome-item:hover { background: rgba(255,255,255,.12); }
  .outcome-icon {
    width: 44px; height: 44px;
    background: rgba(184,150,106,.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .outcome-icon svg { width: 22px; fill: var(--gold-light); }
  .outcome-item h4 { font-size: .98rem; color: var(--white); margin-bottom: .3rem; }
  .outcome-item p  { font-size: .83rem; color: rgba(255,255,255,.6); }

  /* ── THERAPY CATEGORIES ── */
  .categories-section { background: var(--white); }
  .categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
  }
  .category-card {
    border: 1.5px solid var(--beige-mid);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }
  .category-card::after {
    content: '→';
    position: absolute;
    bottom: 1.5rem; right: 1.75rem;
    font-size: 1.2rem;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition);
  }
  .category-card:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }
  .category-card:hover::after { opacity: 1; transform: translateX(0); }
  .cat-icon {
    width: 52px; height: 52px;
    background: var(--green-pale);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    transition: background var(--transition);
  }
  .category-card:hover .cat-icon { background: var(--green-dark); }
  .cat-icon svg { width: 24px; fill: var(--green-mid); transition: fill var(--transition); }
  .category-card:hover .cat-icon svg { fill: var(--white); }
  .category-card h4 { font-size: 1rem; color: var(--green-dark); margin-bottom: .4rem; }
  .category-card p  { font-size: .83rem; color: var(--text-muted); }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--beige); }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
    margin-top: 3.5rem;
  }
  .testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
  }
  .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
  .quote-mark {
    font-family: var(--serif);
    font-size: 4rem;
    color: var(--gold-light);
    line-height: .7;
    margin-bottom: .75rem;
  }
  .testimonial-text {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 1.25rem;
  }
  .testimonial-author { display: flex; align-items: center; gap: .75rem; }
  .author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--green-pale);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--green-dark);
    font-weight: 700;
    flex-shrink: 0;
  }
  .author-name { font-size: .9rem; font-weight: 600; color: var(--green-dark); }
  .author-role { font-size: .78rem; color: var(--text-muted); }
  .stars { color: var(--gold); font-size: .9rem; margin-bottom: .25rem; }

  /* ── CLINIC EXPERIENCE ── */
  .clinic-section { background: var(--cream); }
  .clinic-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .clinic-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .clinic-img-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--green-pale);
  }
  .clinic-img-wrap:first-child {
    grid-column: span 2;
  }
  .clinic-img-wrap img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform .6s ease;
  }
  .clinic-img-wrap:first-child img { aspect-ratio: 16/9; }
  .clinic-img-wrap:hover img { transform: scale(1.04); }
  .clinic-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
  .clinic-feature {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--beige-mid);
    transition: border-color var(--transition);
  }
  .clinic-feature:hover { border-color: var(--gold); }
  .cf-icon {
    width: 40px; height: 40px;
    background: var(--green-pale);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cf-icon svg { width: 18px; fill: var(--green-dark); }
  .cf-text h4 { font-size: .95rem; color: var(--green-dark); margin-bottom: .2rem; }
  .cf-text p  { font-size: .82rem; color: var(--text-light); }

  /* ── FINAL CTA ── */
  .final-cta {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1e3828 50%, #2d4a35 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(184,150,106,.15) 0%, transparent 60%);
    pointer-events: none;
  }
  .final-cta .section-label { color: var(--gold-light); }
  .final-cta h2 { color: var(--white); margin-bottom: 1rem; }
  .final-cta p  { color: rgba(255,255,255,.7); max-width: 500px; margin-inline: auto; margin-bottom: 2.5rem; }
  .cta-buttons { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,.7);
    padding: 4rem 0 1.5rem;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-brand .logo-text .brand-name { color: var(--white); }
  .footer-brand .logo-text .brand-tag { color: var(--gold-light); }
  .footer-brand p { font-size: .88rem; margin-top: 1rem; max-width: 260px; line-height: 1.7; }
  .footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
  .social-link {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition);
  }
  .social-link:hover { background: var(--gold); }
  .social-link svg { width: 16px; fill: rgba(255,255,255,.8); }
  footer h5 {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
  }
  footer ul { display: flex; flex-direction: column; gap: .65rem; }
  footer ul li a {
    font-size: .88rem;
    color: rgba(255,255,255,.6);
    transition: color var(--transition);
  }
  footer ul li a:hover { color: var(--gold-light); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: .82rem;
    color: rgba(255,255,255,.35);
  }
  .footer-contact-item { display: flex; align-items: center; gap: .5rem; margin-bottom: .65rem; font-size: .88rem; }
  .footer-contact-item svg { width: 14px; fill: var(--gold-light); flex-shrink: 0; }

  /* ── FLOATING BUTTONS ── */
  .fab-container {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .75rem;
  }
  .fab {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .75rem 1.25rem;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.2);
    transition: all var(--transition);
    text-decoration: none;
  }
  .fab-whatsapp { background: #25D366; color: var(--white); }
  .fab-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,.4); }
  .fab svg { width: 20px; fill: currentColor; }

  /* Sticky Book Bar */
  .sticky-book-bar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 998;
    background: var(--green-dark);
    padding: .85rem 1.5rem;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,.2);
  }
  .sticky-book-bar.show { display: flex; }
  .sticky-book-bar p { color: rgba(255,255,255,.85); font-size: .88rem; }

  /* ── PAGE HERO (Inner pages) ── */
  .page-hero {
    background: linear-gradient(135deg, var(--green-dark), #1e3828);
    padding: 8rem 0 5rem;
    text-align: center;
  }
  .page-hero .breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    font-size: .8rem; color: rgba(255,255,255,.5);
    margin-bottom: 1.25rem;
  }
  .page-hero .breadcrumb a { color: rgba(255,255,255,.5); transition: color var(--transition); }
  .page-hero .breadcrumb a:hover { color: var(--gold-light); }
  .page-hero .breadcrumb span { color: var(--gold-light); }
  .page-hero h1 { color: var(--white); margin-bottom: 1rem; }
  .page-hero p  { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 600px; margin-inline: auto; }

  /* ── TREATMENTS PAGE ── */
  .treatments-toc {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: 2rem;
  }
  .toc-pill {
    padding: .45rem 1.2rem;
    border-radius: 50px;
    background: var(--green-pale);
    color: var(--green-dark);
    font-size: .82rem;
    font-weight: 600;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    display: block;
  }
  .toc-pill:hover, .toc-pill.active {
    background: var(--green-dark);
    color: var(--white);
    border-color: var(--green-dark);
  }

  .treatment-category-section { padding: 70px 0; border-bottom: 1px solid var(--beige-mid); }
  .treatment-category-section:last-child { border-bottom: none; }
  .treatment-cat-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  .cat-num {
    font-family: var(--serif);
    font-size: 3rem;
    color: var(--beige-mid);
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
    margin-top: -.25rem;
  }
  .treatment-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  .treatment-item {
    background: var(--white);
    border: 1px solid var(--beige-mid);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    transition: all var(--transition);
    border-left: 3px solid var(--gold);
  }
  .treatment-item:hover { border-color: var(--green-mid); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
  .treatment-item h4 { font-size: 1rem; color: var(--green-dark); margin-bottom: .35rem; }
  .treatment-item p  { font-size: .82rem; color: var(--text-light); }
  .treatment-benefits {
    background: var(--green-pale);
    border-radius: var(--radius-sm);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
  }
  .treatment-benefits h5 { color: var(--green-dark); font-size: .9rem; margin-bottom: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .treatment-benefits ul { display: flex; flex-wrap: wrap; gap: .5rem; }
  .treatment-benefits ul li {
    background: var(--white);
    border: 1px solid rgba(184,150,106,.25);
    border-radius: 50px;
    padding: .3rem .9rem;
    font-size: .8rem;
    color: var(--text-mid);
  }

  /* ── CONSULTATION PAGE ── */
  .consultation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .consultation-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
  }
  .form-group { margin-bottom: 1.5rem; }
  .form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: .5rem;
    letter-spacing: .04em;
  }
  .form-control {
    width: 100%;
    padding: .85rem 1.1rem;
    border: 1.5px solid var(--beige-mid);
    border-radius: var(--radius-sm);
    background: var(--cream);
    font-family: var(--sans);
    font-size: .92rem;
    color: var(--text-dark);
    transition: border-color var(--transition);
    outline: none;
  }
  .form-control:focus { border-color: var(--green-mid); background: var(--white); }
  .form-control::placeholder { color: var(--text-muted); }
  textarea.form-control { resize: vertical; min-height: 100px; }
  select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236b7c72'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .75rem center; background-size: 20px; padding-right: 2.5rem; }
  .form-submit { width: 100%; padding: 1rem; font-size: 1rem; border-radius: var(--radius-sm); }
  .form-divider { text-align: center; margin: 1.5rem 0; color: var(--text-muted); font-size: .85rem; position: relative; }
  .form-divider::before, .form-divider::after { content: ''; position: absolute; top: 50%; width: 40%; height: 1px; background: var(--beige-mid); }
  .form-divider::before { left: 0; }
  .form-divider::after  { right: 0; }
  .form-alts { display: flex; gap: 1rem; }
  .form-alts .btn { flex: 1; justify-content: center; }

  .consult-info h3 { margin-bottom: 1rem; }
  .consult-info p  { margin-bottom: 2rem; }
  .consult-includes { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
  .consult-include-item {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--beige-mid);
  }
  .ci-icon {
    width: 38px; height: 38px;
    background: var(--green-pale);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ci-icon svg { width: 18px; fill: var(--green-dark); }
  .ci-text h5 { font-size: .9rem; color: var(--green-dark); margin-bottom: .2rem; }
  .ci-text p  { font-size: .82rem; color: var(--text-light); }

  .who-list { display: flex; flex-direction: column; gap: .6rem; }
  .who-list li {
    display: flex; align-items: center; gap: .75rem;
    font-size: .9rem; color: var(--text-light);
  }
  .who-list li::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--green-mid);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ── CONTACT PAGE ── */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
  }
  .contact-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid var(--beige-mid);
    margin-bottom: 1.5rem;
  }
  .contact-detail {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .contact-detail:last-child { margin-bottom: 0; }
  .cd-icon {
    width: 44px; height: 44px;
    background: var(--green-pale);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .cd-icon svg { width: 20px; fill: var(--green-dark); }
  .cd-text h5 { font-size: .95rem; color: var(--green-dark); font-weight: 700; margin-bottom: .3rem; }
  .cd-text p, .cd-text a { font-size: .9rem; color: var(--text-light); }
  .cd-text a:hover { color: var(--green-dark); }

  .contact-actions { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
  .map-wrap {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--beige-mid);
  }
  .map-wrap iframe { width: 100%; height: 420px; border: none; display: block; }

  /* ── SEO PAGES ── */
  .seo-content-section { background: var(--white); padding: 80px 0; }
  .seo-prose { max-width: 780px; margin-inline: auto; }
  .seo-prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.75rem; }
  .seo-prose h3 { margin-top: 2rem; margin-bottom: .75rem; font-size: 1.35rem; color: var(--green-mid); }
  .seo-prose p  { margin-bottom: 1.25rem; color: var(--text-light); }
  .seo-prose ul { margin-bottom: 1.5rem; padding-left: 1.25rem; }
  .seo-prose ul li { margin-bottom: .5rem; color: var(--text-light); font-size: .95rem; list-style: disc; }

  /* ── TOAST ── */
  .toast {
    position: fixed;
    bottom: 6rem; right: 2rem;
    background: var(--green-dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    font-size: .9rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all .4s ease;
    max-width: 320px;
  }
  .toast.show { opacity: 1; transform: translateY(0); }

  /* ── SCROLL ANIMATIONS ── */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ── DIVIDERS ── */
  .divider-leaf {
    text-align: center;
    padding: 1.5rem 0;
    color: var(--gold-light);
    font-size: 1.4rem;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-content-wrap { gap: 2.5rem; }
  }

  @media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
    .outcomes-grid { grid-template-columns: 1fr 1fr; }
    .clinic-layout { grid-template-columns: 1fr; }
    .consultation-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
  }

  @media (max-width: 768px) {
    .section { padding: 70px 0; }
    .hero-content-wrap { grid-template-columns: 1fr; padding: 5rem 0 3rem; }
    .hero-image-wrap { display: none; }
    .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--cream); flex-direction: column; justify-content: center; gap: 2rem; z-index: 1001; }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1.4rem; color: var(--green-dark); }
    .nav-cta .btn:not(.btn-primary) { display: none; }
    .nav-toggle { display: flex; z-index: 1002; position: relative; }
    .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .why-grid { grid-template-columns: 1fr; }
    .outcomes-grid { grid-template-columns: 1fr; }
    .treatments-header { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stat-badge { display: none; }
    .sticky-book-bar p { display: none; }
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .treatments-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 500px) {
    .categories-grid { grid-template-columns: 1fr; }
    .treatments-grid { grid-template-columns: 1fr; }
    .treatment-list-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .hero h1 { font-size: 2.5rem; }
    .form-alts { flex-direction: column; }
  }
