/* ========================================================================
   EDHINI AYURVEDA — Forest Sanatorium aesthetic
   Deep moss + warm sand + porcelain. NOT cream-dominant.
   ======================================================================== */

:root {
  --moss-deep:   #1A2820;
  --moss:        #2A3A2E;
  --moss-soft:   #3F5A3A;
  --moss-tint:   #4F6E47;
  --sand:        #D9CCB3;
  --sand-light:  #E8DFC8;
  --porcelain:   #FAF8F3;
  --cream:       #F5F1E8;
  --ink:         #131611;
  --ink-soft:    #2B3128;
  --brass:       #B8853A;
  --turmeric:    #C4862F;
  --line:        rgba(26, 40, 32, 0.14);
  --line-strong: rgba(26, 40, 32, 0.28);
  --shadow-soft: 0 14px 40px -18px rgba(26, 40, 32, 0.32);
  --shadow-deep: 0 30px 80px -30px rgba(26, 40, 32, 0.55);

  --f-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --f-body:    "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--f-body);
  background: var(--porcelain);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- Typography scale ---------- */
.display, h1, h2, h3 {
  font-family: var(--f-display);
  font-variation-settings: "SOFT" 50, "wght" 460, "opsz" 144;
  font-weight: 460;
  letter-spacing: -0.015em;
  line-height: 1.04;
  color: var(--moss-deep);
}
h1 { font-size: clamp(2.6rem, 7.2vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.2; }
em, .italic { font-style: italic; font-variation-settings: "SOFT" 100, "wght" 420, "opsz" 144; color: var(--moss-soft); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss-soft);
  font-weight: 500;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
}

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
.container-narrow {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
}
section { padding: clamp(72px, 9vw, 140px) 0; }
section.tight { padding: clamp(48px, 6vw, 90px) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--moss-deep); color: var(--porcelain); }
.btn-primary:hover { background: var(--moss); }
.btn-outline { background: transparent; color: var(--moss-deep); border-color: var(--moss-deep); }
.btn-outline:hover { background: var(--moss-deep); color: var(--porcelain); }
.btn-light { background: var(--porcelain); color: var(--moss-deep); }
.btn-light:hover { background: var(--sand-light); }
.btn-ghost { background: rgba(250, 248, 243, 0.06); color: var(--porcelain); border-color: rgba(250, 248, 243, 0.3); }
.btn-ghost:hover { background: rgba(250, 248, 243, 0.16); }
.btn .arr { display: inline-block; transition: transform 0.3s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
  padding: 12px 0;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--moss-deep);
}
.brand-mark .mark-svg { width: 32px; height: 32px; }
.brand-mark .wordmark {
  font-family: var(--f-display);
  font-variation-settings: "SOFT" 50, "wght" 500;
  font-size: 1.32rem;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color 0.2s ease;
  font-weight: 450;
}
.nav-links a:hover, .nav-links a.active { color: var(--moss-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.88rem; }
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--moss-deep);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-cta .btn:not(.btn-primary) { display: none; }
  .mobile-menu.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--porcelain);
    padding: 24px;
    gap: 18px;
    box-shadow: var(--shadow-soft);
  }
}

/* ---------- HERO (full-bleed, real dusk portico) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--moss-deep);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: -4% -4% -4% -4%;
  z-index: -2;
  background-size: cover;
  background-position: center 38%;
  will-change: transform;
  animation: hero-kenburns 24s ease-in-out infinite alternate;
}
@keyframes hero-kenburns {
  from { transform: scale(1.0) translateY(0); }
  to   { transform: scale(1.12) translateY(-1.5%); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(19,22,17,0.55) 0%, rgba(19,22,17,0.10) 32%, rgba(19,22,17,0.30) 64%, rgba(19,22,17,0.86) 100%),
    linear-gradient(95deg, rgba(26,40,32,0.55) 0%, rgba(26,40,32,0.05) 55%);
  pointer-events: none;
}
.hero-inner {
  width: 100%;
  padding-bottom: clamp(56px, 9vh, 130px);
  padding-top: 140px;
}
.hero-copy { max-width: 56rem; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--sand);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero-eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--sand);
  opacity: 0.7;
}
.hero h1 {
  font-size: clamp(2.7rem, 7.4vw, 5.6rem);
  margin-bottom: 26px;
  color: var(--porcelain);
  text-shadow: 0 2px 30px rgba(19,22,17,0.4);
}
.hero h1 .em-soft {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "wght" 380, "opsz" 144;
  color: var(--sand);
}
.hero-sub {
  font-size: clamp(1.02rem, 1.25vw, 1.18rem);
  color: rgba(250, 248, 243, 0.9);
  max-width: 52ch;
  margin-bottom: 38px;
  line-height: 1.65;
  text-shadow: 0 1px 16px rgba(19,22,17,0.5);
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Hero stat chips */
.hero-chips {
  display: flex;
  gap: 14px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 22px 14px 20px;
  background: rgba(250, 248, 243, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(250, 248, 243, 0.16);
  border-radius: 4px;
  border-left: 2px solid var(--brass);
}
.hero-chip .v {
  font-family: var(--f-display);
  font-variation-settings: "SOFT" 50, "wght" 500;
  font-size: 1.5rem;
  color: var(--porcelain);
  line-height: 1;
}
.hero-chip .l {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.7);
}
.hero-scrollhint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.62);
}
.hero-scrollhint .line {
  width: 1px; height: 38px;
  background: linear-gradient(180deg, rgba(250,248,243,0.06), rgba(250,248,243,0.7));
  animation: scrollpulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollpulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (max-width: 700px) {
  .hero-scrollhint { display: none; }
  .hero h1 { font-size: clamp(2.3rem, 10vw, 3.6rem); }
  .hero-chips { gap: 10px; margin-top: 36px; }
  .hero-chip { padding: 10px 16px; }
  .hero-chip .v { font-size: 1.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .hero-scrollhint .line { animation: none; }
}

/* ---------- Trust Bar ---------- */
.trustbar {
  background: var(--moss-deep);
  color: var(--porcelain);
  padding: 36px 0;
}
.trustbar-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
}
.trust-item { text-align: center; }
.trust-item .v {
  font-family: var(--f-display);
  font-variation-settings: "SOFT" 50, "wght" 500;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--sand);
  line-height: 1;
  margin-bottom: 8px;
}
.trust-item .l {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.74);
}
@media (max-width: 700px) {
  .trustbar-row { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

/* ---------- Section header ---------- */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 88px);
}
.sec-head h2 { max-width: 14ch; }
.sec-head .sec-lead { color: var(--ink-soft); font-size: 1.05rem; max-width: 50ch; line-height: 1.65; }
.sec-head.center { grid-template-columns: 1fr; justify-items: center; text-align: center; }
.sec-head.center h2 { margin: 12px 0 16px; }
.sec-head.center .sec-lead { margin: 0 auto; }
@media (max-width: 800px) {
  .sec-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
}

/* ---------- The Doctor section ---------- */
.doctor {
  background: var(--porcelain);
  position: relative;
}
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.doctor-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sand-light);
}
.doctor-img img { width: 100%; height: 100%; object-fit: cover; }
.doctor-img::after {
  content: "";
  position: absolute;
  bottom: -20px; left: -20px;
  width: 90px; height: 90px;
  border: 1px solid var(--brass);
  border-radius: 50%;
  pointer-events: none;
}
.doctor-meta {
  position: absolute;
  bottom: 18px; left: 18px;
  background: rgba(26, 40, 32, 0.86);
  color: var(--sand-light);
  padding: 10px 16px;
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.doctor-info .eyebrow { margin-bottom: 24px; display: inline-block; }
.doctor-info h2 { margin-bottom: 14px; }
.doctor-credentials {
  display: flex;
  gap: 24px;
  margin: 24px 0 32px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.cred {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cred .k {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-soft);
}
.cred .v {
  font-family: var(--f-display);
  font-variation-settings: "SOFT" 60, "wght" 480;
  font-size: 1.08rem;
  color: var(--moss-deep);
}
.doctor-bio p { margin-bottom: 14px; color: var(--ink-soft); line-height: 1.7; max-width: 58ch; }
.doctor-bio p strong { color: var(--moss-deep); font-weight: 600; }
.doctor-cta { margin-top: 32px; }
@media (max-width: 800px) {
  .doctor-grid { grid-template-columns: 1fr; }
  .doctor-img { aspect-ratio: 3/4; max-width: 100%; }
}

/* ---------- Conditions Grid ---------- */
.conditions { background: var(--cream); }
.cond-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cond-card {
  background: var(--cream);
  padding: 36px 32px;
  cursor: pointer;
  transition: background 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  text-align: left;
  width: 100%;
}
.cond-card:hover { background: var(--porcelain); }
.cond-card .cond-num {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--brass);
}
.cond-card h3 { font-size: 1.32rem; }
.cond-card p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; flex-grow: 1; }
.cond-card .arr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-top: auto;
}
.cond-card .arr svg { transition: transform 0.3s ease; }
.cond-card:hover .arr svg { transform: translateX(4px); }
.cond-card .leaf-bg {
  position: absolute;
  bottom: -10px; right: -10px;
  width: 90px; height: 90px;
  opacity: 0.08;
  pointer-events: none;
}
@media (max-width: 1000px) {
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cond-grid { grid-template-columns: 1fr; }
  .cond-card { min-height: 180px; padding: 28px 24px; }
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(19, 22, 17, 0.62);
  backdrop-filter: blur(6px);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: var(--porcelain);
  max-width: 620px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 44px 40px;
  border-radius: 4px;
  position: relative;
  box-shadow: var(--shadow-deep);
}
.modal .close-x {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss-deep);
  font-size: 1.4rem;
  line-height: 1;
}
.modal .m-num {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--brass);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.modal h3 { font-size: 1.8rem; margin-bottom: 18px; }
.modal .m-summary { font-size: 1.05rem; color: var(--ink-soft); margin-bottom: 18px; line-height: 1.6; }
.modal .m-detail { color: var(--ink-soft); line-height: 1.7; margin-bottom: 24px; }
.modal .m-dur {
  display: inline-block;
  padding: 8px 18px;
  background: var(--sand-light);
  border-radius: 100px;
  font-family: var(--f-mono);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--moss-deep);
  text-transform: uppercase;
}

/* ---------- Treatments ---------- */
.treatments {
  background: var(--moss-deep);
  color: var(--sand-light);
}
.treatments h2, .treatments .eyebrow, .treatments .cred .v { color: var(--sand-light); }
.treatments .eyebrow { color: var(--sand); }
.treatments .sec-lead { color: rgba(250, 248, 243, 0.7); }
.treat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(250, 248, 243, 0.1);
  border-top: 1px solid rgba(250, 248, 243, 0.1);
  border-bottom: 1px solid rgba(250, 248, 243, 0.1);
}
.treat-card {
  background: var(--moss-deep);
  padding: 36px 32px;
  position: relative;
  transition: background 0.3s ease;
}
.treat-card:hover { background: var(--moss); }
.treat-card .cat {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 14px;
}
.treat-card h3 {
  font-family: var(--f-display);
  font-variation-settings: "SOFT" 50, "wght" 460;
  font-size: 1.5rem;
  color: var(--sand-light);
  margin-bottom: 12px;
}
.treat-card p { color: rgba(250, 248, 243, 0.72); font-size: 0.92rem; line-height: 1.6; margin-bottom: 22px; }
.treat-card .dur {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--sand);
  border-top: 1px solid rgba(250, 248, 243, 0.18);
  padding-top: 14px;
  margin-top: auto;
  text-transform: uppercase;
}
@media (max-width: 900px) { .treat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .treat-grid { grid-template-columns: 1fr; } }

/* ---------- Retreats ---------- */
.retreats { background: var(--porcelain); }
.retreat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.retreat-card {
  background: var(--cream);
  padding: 40px 36px;
  border-radius: 4px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.retreat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}
.retreat-card .rcap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-strong);
}
.retreat-card .rdur {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.retreat-card .rcat {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss-soft);
}
.retreat-card h3 { font-size: 1.7rem; }
.retreat-card .rtag {
  font-family: var(--f-display);
  font-variation-settings: "SOFT" 100, "wght" 420;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--moss-soft);
  line-height: 1.4;
}
.retreat-card .rfor {
  font-size: 0.82rem;
  color: var(--moss);
  border-left: 2px solid var(--brass);
  padding-left: 12px;
}
.retreat-card ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.retreat-card li {
  font-size: 0.91rem;
  color: var(--ink-soft);
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}
.retreat-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--brass);
}
.retreat-card .rcta { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.retreat-card .rcta a {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss-deep);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 1000px) {
  .retreat-grid { grid-template-columns: 1fr; }
}

/* ---------- Property gallery ---------- */
.property { background: var(--moss-deep); color: var(--sand-light); position: relative; }
.property h2, .property .eyebrow { color: var(--sand-light); }
.property .eyebrow { color: var(--sand); }
.property .sec-lead { color: rgba(250, 248, 243, 0.74); }
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
.gal { position: relative; overflow: hidden; border-radius: 4px; background: var(--moss); }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.gal:hover img { transform: scale(1.06); }
.gal-1 { grid-column: span 7; grid-row: span 2; }
.gal-2 { grid-column: span 5; grid-row: span 1; }
.gal-3 { grid-column: span 5; grid-row: span 1; }
.gal-4 { grid-column: span 4; grid-row: span 1; }
.gal-5 { grid-column: span 4; grid-row: span 2; }
.gal-6 { grid-column: span 4; grid-row: span 1; }
.gal-cap {
  position: absolute;
  bottom: 14px; left: 14px;
  background: rgba(19, 22, 17, 0.7);
  color: var(--sand-light);
  padding: 6px 12px;
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 100px;
}
@media (max-width: 800px) {
  .gallery { grid-auto-rows: 160px; grid-template-columns: repeat(6, 1fr); }
  .gal-1 { grid-column: span 6; grid-row: span 2; }
  .gal-2, .gal-3 { grid-column: span 3; grid-row: span 1; }
  .gal-4, .gal-5, .gal-6 { grid-column: span 2; grid-row: span 1; }
}

/* ---------- Testimonials ---------- */
.voices { background: var(--cream); }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.voice-card {
  background: var(--porcelain);
  padding: 36px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.voice-card .stars {
  font-family: var(--f-mono);
  letter-spacing: 0.1em;
  color: var(--brass);
  font-size: 0.95rem;
}
.voice-card .quote {
  font-family: var(--f-display);
  font-variation-settings: "SOFT" 70, "wght" 420;
  font-size: 1.12rem;
  line-height: 1.5;
  color: var(--moss-deep);
  font-style: italic;
}
.voice-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.voice-card .av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--moss-soft);
  color: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: 0.95rem;
}
.voice-card .name {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.93rem;
  color: var(--moss-deep);
  line-height: 1.2;
}
.voice-card .meta {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss-soft);
}
@media (max-width: 900px) { .voice-grid { grid-template-columns: 1fr; gap: 20px; } }

/* ---------- Visit / Book form ---------- */
.visit { background: var(--porcelain); }
.visit-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.visit-form {
  background: var(--moss-deep);
  color: var(--sand-light);
  padding: clamp(36px, 5vw, 56px);
  border-radius: 4px;
  box-shadow: var(--shadow-soft);
}
.visit-form h3 { color: var(--sand-light); font-size: 1.8rem; margin-bottom: 8px; }
.visit-form .sub { font-size: 0.95rem; color: rgba(250, 248, 243, 0.7); margin-bottom: 26px; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row label {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sand);
}
.form-row input,
.form-row select,
.form-row textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(250, 248, 243, 0.28);
  color: var(--porcelain);
  padding: 12px 0;
  font-family: var(--f-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-bottom-color: var(--brass); }
.form-row textarea { resize: vertical; min-height: 70px; }
.form-row select { appearance: none; -webkit-appearance: none; background: transparent; cursor: pointer; }
.form-row select option { color: var(--ink); background: var(--porcelain); }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.visit-form .btn { margin-top: 18px; width: auto; }
.visit-side h2 { margin-bottom: 18px; }
.visit-side .lead { margin-bottom: 28px; }
.visit-quick {
  background: var(--cream);
  padding: 28px;
  border-radius: 4px;
  border: 1px solid var(--line);
  margin-top: 28px;
}
.visit-quick h4 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss-soft);
  margin-bottom: 18px;
}
.visit-quick ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.visit-quick li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--moss-deep);
}
.visit-quick li svg { color: var(--brass); flex-shrink: 0; }
@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row-2 { grid-template-columns: 1fr; }
}

/* ---------- Map + Contact ---------- */
.contact { background: var(--cream); padding: 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 460px; }
.contact-side {
  padding: clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.contact-side h2 { margin-bottom: 4px; }
.contact-info { display: flex; flex-direction: column; gap: 18px; margin: 20px 0; }
.contact-info .ci {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-info .ci .ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--moss-deep);
  color: var(--sand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info .ci .k {
  font-family: var(--f-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss-soft);
  margin-bottom: 4px;
}
.contact-info .ci .v {
  color: var(--moss-deep);
  font-size: 1rem;
  line-height: 1.5;
}
.contact-info .ci .v a:hover { color: var(--brass); }
.contact-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.contact-map { background: var(--sand); min-height: 460px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; min-height: 460px; display: block; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 360px; }
}

/* ---------- Footer ---------- */
footer {
  background: var(--moss-deep);
  color: var(--sand-light);
  padding: 80px 0 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.foot-brand .brand-mark { color: var(--sand-light); }
.foot-brand p {
  color: rgba(250, 248, 243, 0.62);
  margin-top: 18px;
  line-height: 1.6;
  font-size: 0.92rem;
  max-width: 38ch;
}
.foot-col h5 {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
  font-weight: 500;
}
.foot-col a, .foot-col p {
  display: block;
  font-size: 0.92rem;
  color: rgba(250, 248, 243, 0.74);
  margin-bottom: 10px;
  line-height: 1.5;
  transition: color 0.2s ease;
}
.foot-col a:hover { color: var(--sand-light); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(250, 248, 243, 0.14);
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 248, 243, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}
.foot-bottom a:hover { color: var(--sand-light); }
@media (max-width: 800px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .foot-bottom { justify-content: center; text-align: center; }
}
@media (max-width: 500px) {
  .foot-grid { grid-template-columns: 1fr; }
}

/* ---------- Botanical divider ---------- */
.bot-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 0;
  color: var(--moss-soft);
}
.bot-divider .ln { flex: 1; max-width: 120px; height: 1px; background: currentColor; opacity: 0.4; }
.bot-divider svg { width: 24px; height: 24px; flex-shrink: 0; }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  padding: 28px 0;
  background: var(--moss-deep);
  color: var(--sand);
  border-top: 1px solid rgba(250, 248, 243, 0.08);
  border-bottom: 1px solid rgba(250, 248, 243, 0.08);
}
.marquee-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-track span {
  font-family: var(--f-display);
  font-variation-settings: "SOFT" 80, "wght" 420;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--sand);
}
.marquee-track .dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brass);
  align-self: center;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Reveals (fail-safe) ---------- */
.reveal { opacity: 1; transform: none; transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal--hidden { opacity: 0; transform: translateY(28px); }

/* ---------- WhatsApp floating ---------- */
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.fab-wa:hover { transform: scale(1.08); }

/* ========================================================================
   PREMIUM PASS — real-photo components, refined motion
   ======================================================================== */

/* Logo image in nav + footer */
.brand-logo { height: 40px; width: auto; display: block; transition: opacity 0.3s ease; }
.nav.scrolled .brand-logo { height: 34px; }
.foot-brand .brand-logo { height: 52px; margin-bottom: 6px; }
@media (max-width: 540px) { .brand-logo { height: 34px; } }

/* Doctor section — real portrait + consultation inset */
.doctor-img img { transition: transform 1.2s ease; }
.doctor-img:hover img { transform: scale(1.04); }
.doctor-inset {
  position: absolute;
  right: -28px; bottom: 36px;
  width: 46%;
  max-width: 220px;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  border: 5px solid var(--porcelain);
  box-shadow: var(--shadow-deep);
  background: var(--sand-light);
}
.doctor-inset img { width: 100%; height: 100%; object-fit: cover; }
.doctor-inset .ins-cap {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 12px 8px;
  background: linear-gradient(transparent, rgba(19,22,17,0.78));
  color: var(--sand-light);
  font-family: var(--f-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
@media (max-width: 800px) {
  .doctor-inset { right: 12px; bottom: 12px; width: 42%; max-width: 160px; border-width: 4px; }
}

/* Doctor quote pull */
.doctor-quote {
  margin: 28px 0 0;
  padding: 22px 26px;
  background: var(--cream);
  border-left: 3px solid var(--brass);
  border-radius: 0 4px 4px 0;
}
.doctor-quote p {
  font-family: var(--f-display);
  font-variation-settings: "SOFT" 90, "wght" 420, "opsz" 144;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--moss-deep);
  line-height: 1.45;
  margin: 0;
  max-width: none;
}

/* Therapy-room real-photo band */
.therapy-band { background: var(--moss); padding: 0; }
.therapy-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.therapy-cell {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--moss-deep);
}
.therapy-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s ease, filter 0.6s ease;
  filter: saturate(0.95);
}
.therapy-cell:hover img { transform: scale(1.07); filter: saturate(1.08); }
.therapy-cell::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(transparent 45%, rgba(19,22,17,0.85));
  pointer-events: none;
}
.therapy-cap {
  position: absolute;
  bottom: 18px; left: 18px; right: 18px;
  z-index: 1;
}
.therapy-cap .t-name {
  font-family: var(--f-display);
  font-variation-settings: "SOFT" 60, "wght" 460;
  font-size: 1.2rem;
  color: var(--porcelain);
  line-height: 1.1;
}
.therapy-cap .t-sub {
  font-family: var(--f-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 6px;
}
.therapy-note {
  text-align: center;
  padding: 22px;
  background: var(--moss-deep);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,243,0.6);
}
.therapy-note span { color: var(--brass); }
@media (max-width: 800px) {
  .therapy-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Modal real image */
.modal .m-img {
  width: calc(100% + 80px);
  margin: -44px -40px 22px;
  height: 220px;
  object-fit: cover;
  display: block;
}
@media (max-width: 560px) {
  .modal { padding: 32px 24px; }
  .modal .m-img { width: calc(100% + 48px); margin: -32px -24px 18px; height: 180px; }
}

/* Real-photo avatars in testimonials */
.voice-card .av.av-img { padding: 0; overflow: hidden; }
.voice-card .av.av-img img { width: 100%; height: 100%; object-fit: cover; }

/* Retreat botanical accent */
.retreats { position: relative; overflow: hidden; }
.retreats-accent {
  position: absolute;
  top: -40px; right: -60px;
  width: 320px; height: 320px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.16;
  pointer-events: none;
  filter: saturate(1.1);
}
.retreats-accent img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .retreats-accent { display: none; } }

/* Visit side real image */
.visit-photo {
  margin-top: 28px;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: var(--shadow-soft);
}
.visit-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.visit-photo:hover img { transform: scale(1.05); }

/* Directional + stagger reveals (fail-open: visible by default) */
.reveal-l { opacity: 1; transform: none; transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-l.reveal--hidden { opacity: 0; transform: translateX(-32px); }
.reveal-r { opacity: 1; transform: none; transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal-r.reveal--hidden { opacity: 0; transform: translateX(32px); }
.reveal-scale { opacity: 1; transform: none; transition: opacity 1s ease, transform 1s ease; }
.reveal-scale.reveal--hidden { opacity: 0; transform: scale(0.94); }
[data-stagger] > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* Heading underline draw */
.uline { position: relative; display: inline-block; }
.uline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  height: 2px;
  width: 100%;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.9s cubic-bezier(0.7,0,0.2,1);
}
.uline.drawn::after { transform: scaleX(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r, .reveal-scale { opacity: 1 !important; transform: none !important; }
  .uline::after { transform: scaleX(1); }
  .gal img, .therapy-cell img, .doctor-img img, .visit-photo img { transition: none; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
