/* ===========================================================
   Kaalimadom Ayurvedics — Design System v4
   Target: Authentic Ayurveda. Timeless Healing.
   =========================================================== */

:root {
  /* Background & surface */
  --bg:          #FAF8F3;
  --paper:       #FFFFFF;
  --cream:       #FAF8F3;
  --cream-soft:  #F8F4EA;
  --cream-deep:  #EFE8D8;

  /* Text */
  --ink:         #1A1A14;
  --ink-soft:    #4A4A42;
  --muted:       #7C7C70;
  --maroon:      #7D2323;

  /* Borders & lines */
  --line:        #E3DCCB;
  --line-soft:   #ECE6D7;

  /* Greens */
  --green:       #1C3828;
  --green-deep:  #102A1A;
  --green-mid:   #2E5A3C;
  --green-soft:  #5C8265;
  --green-exp:   #2E3D2F;   /* experience section dark olive */

  /* Gold */
  --gold:        #C9952A;
  --gold-soft:   #C8A85A;
  --gold-bright: #D4B86A;

  /* Typography */
  --serif: 'Playfair Display', Georgia, serif;
  --sans:  'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  /* Spacing */
  --pad:       clamp(20px, 4.5vw, 64px);
  --section-y: clamp(64px, 6.5vw, 96px);

  /* Radius */
  --r-sm:   6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  26px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100vw;
}

img { display: block; max-width: 100%; }
section { position: relative; }

/* =============================================
   TYPOGRAPHY
============================================= */
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 3.5vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}

/* =============================================
   LAYOUT
============================================= */
.wrap {
  max-width: min(1440px, 94vw);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 200ms cubic-bezier(.2,.7,.3,1);
  white-space: nowrap;
  text-decoration: none;
}

/* Default green fill button */
.btn-primary       { background: var(--green); color: var(--cream-soft); border-radius: 10px; }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-1px); box-shadow: 0 14px 32px -8px rgba(22,58,36,.45); }

/* Hero buttons */
.btn-hero-primary {
  background: var(--green-mid);
  color: #fff;
  border-radius: 8px;
  padding: 16px 32px;
}
.btn-hero-primary:hover {
  background: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -6px rgba(22,58,36,.5);
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.65);
  border-radius: 8px;
  padding: 16px 32px;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Experience section button */
.btn-experience-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 6px;
  width: 100%;
  justify-content: center;
}
.btn-experience-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-1px);
}

/* CTA strip button */
.btn-cta-strip {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.7);
  border-radius: 6px;
}
.btn-cta-strip:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  transform: translateY(-1px);
}

/* Outline utility */
.btn-outline       { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream-soft); transform: translateY(-1px); }

.btn-on-green      { background: transparent; color: var(--cream-soft); border: 1.5px solid rgba(255,255,255,.5); }
.btn-on-green:hover{ background: var(--cream-soft); color: var(--green); border-color: var(--cream-soft); transform: translateY(-1px); }

/* Arrow icon animation */
.arrow-icon { transition: transform 200ms; display: inline-flex; flex-shrink: 0; }
.btn:hover .arrow-icon,
.link-arrow:hover .arrow-icon,
.program-card__link:hover .arrow-icon { transform: translateX(3px); }

/* =============================================
   CARDS
============================================= */
.card {
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 10px 30px -18px rgba(28,40,28,.22);
  transition: transform 240ms cubic-bezier(.2,.7,.3,1), box-shadow 240ms;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -22px rgba(28,40,28,.28); }

.card.treatment-card { overflow: hidden; display: flex; flex-direction: column; }

/* =============================================
   LINK ARROW
============================================= */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--maroon);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 200ms, gap 200ms;
}
.link-arrow .arrow-icon { color: var(--maroon); }
.link-arrow:hover { color: var(--ink); gap: 14px; }

/* =============================================
   SECTION HEADER ROW
============================================= */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 24px;
}

/* =============================================
   REVEAL ON SCROLL
============================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms cubic-bezier(.2,.7,.3,1), transform 700ms cubic-bezier(.2,.7,.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

/* =============================================
   HEADER — Transparent overlay, opaque on scroll
============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 210;
  background: transparent;
  transition: background 350ms ease, box-shadow 350ms ease;
}

/* JS adds this class on scroll */
.site-header.scrolled {
  background: var(--green);
  box-shadow: 0 2px 24px rgba(0,0,0,.28);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: clamp(16px, 2vw, 40px);
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 200ms, transform 200ms;
}
.nav-brand:hover { opacity: .9; transform: scale(1.02); }
.nav-brand__logo { width: 44px; height: 44px; border-radius: 50%; }
.nav-brand__text { line-height: 1; }
.nav-brand__name {
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}
.nav-brand__sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: clamp(10px, 1.4vw, 24px);
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-link {
  position: relative;
  color: rgba(255,255,255,.88);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 200ms;
}
.nav-link:hover { color: #fff; }
.nav-link.active { color: #fff; font-weight: 600; }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-actions .btn-primary {
  background: var(--green-mid);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
}
.nav-actions .btn-primary:hover { background: var(--green); border-color: transparent; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.1);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Mobile drawer */
.mobile-menu {
  display: block !important;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: #3A6B50;
  padding: 80px 24px 32px;
  z-index: 200;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  box-shadow: -8px 0 32px rgba(0,0,0,.3);
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu a {
  color: rgba(255,255,255,.95);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: block;
}
.drawer-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
}
.mobile-menu .btn {
  margin-top: 20px;
  justify-content: center;
  width: 100%;
  background: var(--cream-soft);
  color: var(--green);
  border: none;
}
.mobile-group__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  padding: 20px 4px 6px;
  border-bottom: none !important;
  cursor: default;
  user-select: none;
  display: block;
}
.mobile-sub {
  padding-left: 16px !important;
  color: rgba(255,255,255,.75) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
}

/* Drawer backdrop */
.drawer-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 199;
}
.drawer-backdrop.open { display: block; }

@media (max-width: 1024px) {
  .nav-links  { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn-primary { display: none; }
  .dropdown { display: none !important; }
}

/* =============================================
   DROPDOWN NAVIGATION
============================================= */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item__toggle { display: flex; align-items: center; gap: 5px; }
.nav-caret { flex-shrink: 0; opacity: .65; transition: transform 200ms; }

.dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--paper);
  border-radius: var(--r-md);
  box-shadow: 0 20px 48px -16px rgba(28,40,28,.28), 0 0 0 1px var(--line-soft);
  min-width: 210px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms, transform 180ms, visibility 180ms;
  z-index: 200;
  pointer-events: none;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -5px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px;
  background: var(--paper);
  border-left: 1px solid var(--line-soft);
  border-top: 1px solid var(--line-soft);
}
.dropdown::after {
  content: '';
  position: absolute;
  top: -18px; left: 0; right: 0;
  height: 18px;
}
.nav-item.open .dropdown,
.nav-item:hover .dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(-50%) translateY(0) !important;
  pointer-events: auto !important;
}
.nav-item.open .nav-caret,
.nav-item:hover .nav-caret { transform: rotate(180deg) !important; opacity: 1 !important; }
.dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  transition: background 150ms, color 150ms, padding-left 180ms;
  white-space: nowrap;
}
.dropdown__item:hover { background: var(--cream); color: var(--green); padding-left: 18px; }
.dropdown__icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  background: var(--cream-deep);
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0;
  border: 1px solid var(--line-soft);
  transition: background 200ms, color 200ms;
}
.dropdown__item:hover .dropdown__icon {
  background: var(--green);
  color: var(--cream-soft);
  border-color: var(--green);
}

/* =============================================
   HERO — Full-width, full-height, text bottom-left
============================================= */
.hero-section {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 560px;
  max-height: 900px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(5, 12, 8, 0.72) 0%,
      rgba(5, 12, 8, 0.55) 40%,
      rgba(5, 12, 8, 0.25) 70%,
      rgba(5, 12, 8, 0.15) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 12, 8, 0.15) 0%,
      rgba(5, 12, 8, 0.45) 70%,
      rgba(5, 12, 8, 0.60) 100%
    );
}

.hero-content-wrap {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(160px, 18vh, 210px);
}
/* Align content left with comfortable indent — scales up on wide screens */
.hero-content-wrap .hero-content {
  max-width: min(860px, 60vw);
  margin-left: clamp(24px, 6vw, 140px);
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 22px;
  white-space: nowrap;
}
.hero-headline-line2 {
  display: block;
  color: var(--gold-bright);
  font-style: normal;
}

.hero-subtext {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

/* ── Glitter / shimmer CTA button ── */
@keyframes glitter-sweep {
  0%   { transform: translateX(-120%) skewX(-18deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(240%)  skewX(-18deg); opacity: 0; }
}
@keyframes glitter-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,149,42,.25); }
  50%       { box-shadow: 0 4px 32px rgba(201,149,42,.55), 0 0 0 3px rgba(212,184,106,.18); }
}

.btn-hero-glitter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 32px;
  background: var(--green-mid);
  color: var(--cream-soft);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid rgba(212,184,106,.35);
  animation: glitter-pulse 2.2s ease-in-out infinite;
  transition: transform .2s, background .2s;
  width: auto;
}
.btn-hero-glitter:hover {
  background: var(--green);
  transform: translateY(-1px);
}
.btn-glitter__shimmer {
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(212,184,106,.45) 50%, transparent 100%);
  animation: glitter-sweep 2.2s ease-in-out infinite;
  pointer-events: none;
}

/* =============================================
   STATS BAR — Floating card inside hero, above bottom edge
============================================= */
.hero-stats {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - clamp(40px, 8vw, 128px));
  max-width: 1380px;
  z-index: 15;
  background: rgba(5, 15, 8, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: clamp(18px, 2vw, 28px) 0;
}
.hero-stat-cell {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 6px clamp(20px, 3vw, 40px);
  border-right: 1px solid rgba(255,255,255,.15);
  cursor: default;
}
.hero-stat-cell:last-child { border-right: none; }
.hero-stat-icon {
  color: var(--gold-bright);
  flex-shrink: 0;
  transition: transform 300ms cubic-bezier(.2,.7,.3,1);
}
.hero-stat-cell:hover .hero-stat-icon { transform: scale(1.1); }
.hero-stat-value {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.03em;
}

/* =============================================
   PAGE BANNER — Inner page hero (all non-home pages)
============================================= */
.page-banner {
  background: var(--green);
  padding: clamp(72px,9vw,110px) 0 clamp(48px,6vw,72px);
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-building.jpg') center/cover no-repeat;
  opacity: .08;
  pointer-events: none;
}
.page-banner__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.page-banner__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(36px,5vw,64px);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 16px;
  position: relative;
  z-index: 1;
}
.page-banner__sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* =============================================
   SIGNATURE TREATMENTS — 5 cards
============================================= */
.treatments-section {
  padding-top: clamp(56px, 4.8vw, 80px);
  padding-bottom: var(--section-y);
}
.grid-treatments {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.treatment-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--cream-deep);
  overflow: hidden;
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.treatment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 480ms cubic-bezier(.2,.7,.3,1);
}
.card.treatment-card:hover .treatment-card__media img { transform: scale(1.06); }

.treatment-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22,58,36,0);
  transition: background 350ms;
  pointer-events: none;
  z-index: 1;
}
.card.treatment-card:hover .treatment-card__media::after { background: rgba(22,58,36,.1); }

.treatment-card__badge {
  position: absolute;
  left: 14px; bottom: 14px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px -4px rgba(28,40,28,.35);
  color: var(--green);
  border: 1px solid rgba(255,255,255,.6);
  z-index: 3;
  transition: transform 300ms cubic-bezier(.2,.7,.3,1), background 300ms, color 300ms;
}
.card.treatment-card:hover .treatment-card__badge {
  transform: scale(1.12);
  background: var(--green);
  color: #fff;
}

.treatment-card__body {
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.treatment-card__name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: var(--ink);
  transition: color 250ms;
}
.card.treatment-card:hover .treatment-card__name { color: var(--green); }

.treatment-card__desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.treatment-card__link {
  color: var(--gold);
  display: inline-flex;
  align-self: flex-end;
  text-decoration: none;
  transition: transform 200ms, color 200ms;
  margin-top: auto;
  padding-top: 12px;
}
.treatment-card__link:hover { transform: translateX(3px); color: var(--green); }
.card.treatment-card:hover .treatment-card__link { transform: translateX(4px); color: var(--green); }

/* =============================================
   EXPERIENCE SECTION — Dark olive, text + full photo
============================================= */
.experience-section {
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.experience-inner {
  display: grid;
  grid-template-columns: 40% 60%;
}

.experience-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 4.5vw, 64px) clamp(32px, 4vw, 72px);
  position: relative;
  z-index: 2;
}

.experience-eyebrow { color: var(--gold-bright); }

.experience-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 22px;
}

.experience-body {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  max-width: 380px;
  margin: 0 0 36px;
}

.experience-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.experience-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: brightness 400ms ease, filter 400ms ease;
  background: var(--green-deep);
}
/* Golden shimmer overlay on hover — no zoom */
.experience-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,149,42,0) 0%, rgba(201,149,42,0.14) 50%, rgba(201,149,42,0) 100%);
  opacity: 0;
  transition: opacity 450ms ease;
  pointer-events: none;
}
.experience-section:hover .experience-photo::after { opacity: 1; }
.experience-section:hover .experience-photo img { filter: brightness(1.08); }

/* =============================================
   WELLNESS PROGRAMS — Icon cards, no thumbnail
============================================= */
.programs-section {
  padding-top: clamp(40px, 4vw, 64px);
  padding-bottom: var(--section-y);
}
.grid-programs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.program-card {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  gap: 0;
  border: 1px solid var(--line-soft);
}

.program-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: #EDE5CE;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--line-soft);
  margin-bottom: 20px;
  flex-shrink: 0;
  transition: background 280ms, color 280ms, border-color 280ms;
}
.card.program-card:hover .program-card__icon {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

.program-card__name {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ink);
  transition: color 250ms;
}
.card.program-card:hover .program-card__name { color: var(--green); }

.program-card__duration {
  font-size: 12.5px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.program-card__desc {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.program-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--green);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 200ms, gap 200ms;
}
.program-card__link:hover { color: var(--green-mid); gap: 10px; }

/* =============================================
   CTA STRIP — Begin Your Healing Journey
============================================= */
.cta-strip {
  position: relative;
  background:
    linear-gradient(90deg, rgba(5,15,8,.88) 0%, rgba(5,15,8,.65) 55%, rgba(5,15,8,.40) 100%),
    url('../images/cta-bg.png') center center / cover no-repeat;
  color: #fff;
  padding: clamp(56px, 7vw, 96px) 0;
  overflow: hidden;
}

.cta-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-strip-heading {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}

.cta-strip-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.cta-strip-sub {
  font-size: clamp(14px, 1.2vw, 16px);
  color: rgba(255,255,255,.75);
  line-height: 1.65;
  margin: 0;
  max-width: 400px;
}

/* =============================================
   CTA BAR — Have Questions / Book Consultation
============================================= */
.cta-bar {
  background: linear-gradient(135deg, #1E1308 0%, #2C1C0C 100%);
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(201,149,42,.2);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}

.cta-phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 6px;
}

.cta-phone-link {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  line-height: 1.1;
  transition: color .2s;
}
.cta-phone-link:hover { color: var(--gold-bright); }

.cta-center {
  text-align: center;
  padding: 0 clamp(16px, 2vw, 32px);
  border-left: 1px solid rgba(255,255,255,.15);
  border-right: 1px solid rgba(255,255,255,.15);
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 14px;
  color: rgba(255,255,255,.68);
  line-height: 1.5;
}

.cta-right {
  display: flex;
  justify-content: flex-end;
}

.cta-circle-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  transition: background .2s, transform .2s;
  flex-shrink: 0;
}
.cta-circle-btn:hover {
  background: var(--gold-bright);
  transform: scale(1.07);
}

@media (max-width: 768px) {
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 20px;
  }
  .cta-center {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255,255,255,.15);
    border-bottom: 1px solid rgba(255,255,255,.15);
    padding: 20px 0;
  }
  .cta-right { justify-content: center; }
}

/* =============================================
   CONTACT
============================================= */
.contact-section { padding-top: var(--section-y); padding-bottom: var(--section-y); background: var(--cream-soft); }
.contact-header { text-align: center; margin-bottom: 56px; }
.contact-header .eyebrow { display: block; margin-bottom: 12px; }
.contact-header .section-title { margin-bottom: 14px; }
.contact-header p { font-size: 16px; color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; transition: transform 250ms cubic-bezier(.2,.7,.3,1); }
.contact-item:hover { transform: translateX(6px); }
.contact-item__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream-deep);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0;
  transition: background 250ms, color 250ms, border-color 250ms;
}
.contact-item:hover .contact-item__icon {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.contact-item__icon svg { width: 20px; height: 20px; }
.contact-item__label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item__value { font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.contact-item__value a { color: var(--ink-soft); text-decoration: none; }
.contact-item__value a:hover { color: var(--green); }

.contact-map { border-radius: var(--r-md); overflow: hidden; box-shadow: 0 10px 30px -15px rgba(28,40,28,.2); height: 360px; }
.contact-map iframe { width: 100%; height: 100%; border: none; display: block; }

/* =============================================
   FOOTER
============================================= */
.site-footer { background: var(--green); color: var(--cream-soft); padding-top: 64px; padding-bottom: 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(248,244,234,.14);
}
.footer-brand-row { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-logo { background: var(--cream-soft); border-radius: 50%; padding: 4px; display: inline-flex; }
.footer-brand-name { font-family: var(--serif); font-size: 21px; font-weight: 700; letter-spacing: .04em; }
.footer-brand-sub  { display: block; font-size: 9.5px; letter-spacing: .3em; color: var(--gold-bright); margin-top: 4px; }
.footer-tagline    { color: rgba(248,244,234,.62); font-size: 14px; line-height: 1.7; max-width: 300px; margin: 0; }
.footer-socials    { display: flex; gap: 10px; margin-top: 22px; }
.footer-social {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid rgba(248,244,234,.35);
  display: grid;
  place-items: center;
  color: var(--cream-soft);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 200ms, color 200ms, background 200ms, transform 200ms;
}
.footer-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 16px; }
.footer-col ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(248,244,234,.72); text-decoration: none; font-size: 14px; transition: color 200ms, padding-left 180ms; display: block; }
.footer-col a:hover { color: var(--cream-soft); padding-left: 6px; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(248,244,234,.12); }
.footer-bottom p { font-size: 12.5px; color: rgba(248,244,234,.55); margin: 0; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: rgba(248,244,234,.55); text-decoration: none; font-size: 12.5px; transition: color 200ms; }
.footer-legal a:hover { color: var(--cream-soft); }

/* =============================================
   BACK TO TOP
============================================= */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream-soft);
  display: none;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 8px 20px -8px rgba(28,40,28,.4);
  transition: all 200ms;
  z-index: 100;
}
.back-to-top.visible { display: grid; }
.back-to-top:hover { background: var(--green-deep); transform: translateY(-2px); }

/* =============================================
   RESPONSIVE BREAKPOINTS
============================================= */

/* ── 1440px+ — Large desktop & 1920px ──────────────────────
   The hero stats bar already has max-width on all screens.
   The experience section's green background stays full-bleed;
   we shift the TEXT LEFT-PADDING so it aligns with the wrap
   content column rather than being stuck at the viewport edge.
   ─────────────────────────────────────────────────────────── */
@media (min-width: 1440px) {
  /*
   * Formula: (viewport - 1440) / 2 puts us at the wrap's left edge.
   * Add inner pad (same as --pad at this size) for the content indent.
   * The image column always fills to the right viewport edge (full-bleed).
   */
  .experience-panel {
    padding-left: calc((100vw - 1440px) / 2 + clamp(32px, 4vw, 72px));
  }

  /* Slightly larger hero headline at very wide screens */
  .hero-headline { font-size: clamp(56px, 4.5vw, 76px); }

  /* More stats-bar breathing room at 1920+ */
  .hero-stats { bottom: 36px; }
  .hero-stats-inner { padding: 26px 0; }
}

/* ── 1280px — Large tablet / small desktop ── */
@media (max-width: 1280px) {
  .grid-treatments { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

/* ── 1100px — Intermediate nav ── */
@media (max-width: 1100px) {
  .nav-links { gap: clamp(8px, 1vw, 16px); }
  .nav-link { font-size: 13.5px; }
}

/* ── 1024px — Tablet ── */
@media (max-width: 1024px) {
  .nav-inner { height: 70px; }

  .experience-inner { grid-template-columns: 1fr; }
  .experience-panel {
    padding: clamp(40px, 5vw, 64px) var(--pad);
  }
  .experience-body { max-width: none; }
  .btn-experience-outline { width: auto; max-width: 300px; }
  .experience-photo { min-height: 380px; }

  .grid-programs { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .cta-strip-inner { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .cta-strip-right { align-items: center; }
}

/* ── 900px — Tablet portrait ── */
@media (max-width: 900px) {
  .grid-treatments { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ── 768px — Large mobile ── */
@media (max-width: 768px) {
  .hero-section { height: 100svh; max-height: none; }

  /* Stats bar — 2×2 grid */
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-cell:nth-child(2) { border-right: none; }
  .hero-stat-cell:nth-child(3) {
    border-top: 1px solid rgba(255,255,255,.1);
    border-right: 1px solid rgba(255,255,255,.15);
  }
  .hero-stat-cell:nth-child(4) {
    border-top: 1px solid rgba(255,255,255,.1);
    border-right: none;
  }
  /* Extra padding so hero text clears the taller 2-row stats bar */
  .hero-content-wrap { padding-bottom: clamp(240px, 30vh, 310px); }

  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 28px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 280px; }
  .contact-header { margin-bottom: 32px; }
  .contact-item { gap: 12px; margin-bottom: 20px; }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }

  .experience-photo { min-height: 300px; }
  .grid-programs { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ── 640px — Mobile ── */
@media (max-width: 640px) {
  :root { --section-y: clamp(44px, 6vw, 64px); }

  /* Hero text */
  .hero-headline { font-size: clamp(28px, 8vw, 42px); white-space: normal; }
  .hero-subtext { font-size: 15px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 12px 20px; font-size: 11px; }
  .hero-content-wrap .hero-content { margin-left: clamp(20px, 5vw, 40px); max-width: 90vw; }

  /* Hero stats — smaller icons & text */
  .hero-stat-value { font-size: 18px; }
  .hero-stat-label { font-size: 11px; }
  .hero-stat-icon svg { width: 32px; height: 32px; }

  /* Treatments — single column, landscape image */
  .grid-treatments { grid-template-columns: 1fr; gap: 14px; }
  .treatment-card__media { aspect-ratio: 16 / 9; }
  .treatment-card__name { font-size: 16px; }
  .treatment-card__desc { font-size: 13px; }
  .treatment-card__body { padding: 18px 16px 14px; }

  /* Experience section */
  .experience-photo { min-height: unset; height: 260px; }
  .experience-photo img { object-fit: cover; height: 100%; }
  .experience-panel { padding: 40px 24px; }
  .experience-heading { font-size: clamp(26px, 7vw, 38px); }
  .btn-experience-outline { width: 100%; max-width: none; }

  /* Programs */
  .grid-programs { grid-template-columns: 1fr; gap: 16px; }
  .program-card__name { font-size: 17px; }

  /* CTA / headings */
  .cta-strip-heading { font-size: clamp(24px, 8vw, 36px); }
  .section-title { font-size: clamp(22px, 6vw, 30px); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand-name { font-size: 18px; }

  .back-to-top { width: 40px; height: 40px; bottom: 18px; right: 14px; }
}

/* ── 480px — Small mobile ── */
@media (max-width: 480px) {
  :root { --pad: 16px; }

  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn-hero-glitter { padding: 12px 20px; font-size: 11px; width: 100%; }

  .hero-stat-cell { padding: 10px 14px; gap: 10px; }
  .hero-stat-icon svg { width: 28px; height: 28px; }
  .hero-stat-value { font-size: 16px; }

  .grid-treatments { grid-template-columns: 1fr; gap: 12px; }
  .grid-programs { grid-template-columns: 1fr; }

  .nav-brand__name { font-size: 16px; }
  .nav-brand__logo { width: 36px; height: 36px; }
}

/* =============================================
   COURSES PROMO — Home page section
============================================= */
.courses-promo {
  background: var(--green-deep);
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  overflow: hidden;
  position: relative;
}
.courses-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 100% at 90% 50%, rgba(201,149,42,.07) 0%, transparent 65%);
  pointer-events: none;
}
.courses-promo__inner {
  padding-top: clamp(48px,6vw,80px);
  padding-bottom: clamp(48px,6vw,80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.courses-promo__left { max-width: 600px; }
.courses-promo__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.courses-promo__eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.courses-promo__heading {
  font-family: var(--serif);
  font-size: clamp(30px,3.4vw,48px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--cream-soft);
  margin: 0 0 16px;
}
.courses-promo__heading em {
  font-style: normal;
  color: var(--gold-bright);
}
.courses-promo__sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(248,244,234,.68);
  margin: 0 0 28px;
}
.courses-promo__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.courses-promo__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border: 1px solid rgba(201,149,42,.35);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(248,244,234,.75);
  background: rgba(201,149,42,.07);
}
.courses-promo__tag svg { color: var(--gold-bright); flex-shrink: 0; }
.btn-courses {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: .02em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 20px -8px rgba(201,149,42,.55);
}
.btn-courses:hover {
  background: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px -8px rgba(201,149,42,.6);
}
.btn-courses svg { transition: transform .2s; }
.btn-courses:hover svg { transform: translateX(4px); }
.courses-promo__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 380px;
  flex-shrink: 0;
}
.courses-promo__chip {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
  text-decoration: none;
}
.courses-promo__chip:hover {
  background: rgba(201,149,42,.12);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px -8px rgba(0,0,0,.4);
}
.courses-promo__chip-num {
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: .1em;
}
.courses-promo__chip-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(248,244,234,.9);
  line-height: 1.35;
}
@media (max-width: 900px) {
  .courses-promo__inner { grid-template-columns: 1fr; gap: 36px; }
  .courses-promo__right { width: 100%; grid-template-columns: repeat(4,1fr); }
}
@media (max-width: 640px) {
  .courses-promo__right { grid-template-columns: repeat(2,1fr); }
}

/* ── 360px — Very small mobile ── */
@media (max-width: 360px) {
  .hero-headline { font-size: 26px; white-space: normal; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stat-cell { padding: 8px 10px; gap: 8px; }
  /* Hide icons on very small screens — just show numbers */
  .hero-stat-icon { display: none; }
  .hero-stat-value { font-size: 15px; }
}
