/* ==========================================================================
   JK Alternative Medical Center — Koh Samui
   Thai-inspired luxury design system + components. Plain modern CSS, no build.
   Brand: gold (#D4AF37 / #FFD700) · deep red (#8B0000) · brown (#3B2F2F) · sand.
   ========================================================================== */

/* ----- Design tokens ----- */
:root {
  /* Brand palette — JK Alternative Medical Center (Thai gold / deep red / brown).
     The semantic token names are kept from the original system for stability;
     only the values change. "forest" = deep red, "sage/sky" = gold, "sand" = ivory. */
  --sand-50:  #faf6ec;   /* page background — warm ivory */
  --sand-100: #f4ecd6;   /* alternating sections — soft sand */
  --sand-200: #ebddbb;   /* soft fills — light gold-sand */
  --sand-300: #ddca9f;   /* hover borders — gold-tan */
  --clay:     #c9a86a;   /* soft gold-tan neutral */
  --sky:      #ffd700;   /* bright gold highlight (logo) — accents on dark */
  --sky-50:   #fbf1d2;   /* light gold tint for icon tiles */
  --sage:     #d4af37;   /* primary brand gold (logo) */
  --sage-600: #9a6a12;   /* deep antique gold — eyebrows, links (contrast on light) */
  --forest:   #8b0000;   /* deep red — headings, dark UI, accents */
  --forest-700:#a51717;  /* brighter red — gradients */
  --forest-800:#3b2f2f;  /* dark brown — footer, darkest sections */
  --ink:      #33272a;   /* warm near-black — body text */
  --muted:    #7a6a5c;   /* warm taupe — secondary text */
  --line:     #ece2cf;   /* warm light border */
  --white:    #ffffff;

  --accent:   var(--forest);
  --accent-soft: var(--sage);

  /* Type */
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Radius & shadow */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(74,40,18,.05);
  --shadow-md: 0 10px 30px -12px rgba(74,40,18,.18);
  --shadow-lg: 0 24px 60px -20px rgba(74,40,18,.28);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);

  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 78px;
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }   /* the hidden attribute must always win over component display rules */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--sand-50);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--sage); outline-offset: 3px; border-radius: 4px; }

/* ----- Headings ----- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; color: var(--forest); letter-spacing: -.01em; }
.section-title { font-size: clamp(2rem, 4vw, 3.05rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.25; }

/* ----- Utilities ----- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand-100); }
.section--forest { background: var(--forest); color: var(--sand-100); }
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--sage-600);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--sky); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.65; color: var(--ink); }
.section--forest .lead, .section--forest p { color: rgba(245,240,232,.82); }

.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--forest); color: #fff; padding: .7rem 1.1rem; border-radius: var(--r-sm);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

.section-head { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head--invert .section-title { color: var(--sand-50); }
.section-intro { color: var(--muted); margin-top: 1rem; font-size: 1.1rem; }
.section--forest .section-intro { color: rgba(245,240,232,.72); }

/* Arrow link */
.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-weight: 600; color: var(--forest); letter-spacing: .01em;
}
.link-arrow svg { width: 1.05rem; height: 1.05rem; transition: transform .3s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }
.section--forest .link-arrow { color: var(--sky); }

/* Generic small icon */
.ic { width: 1.15rem; height: 1.15rem; flex: none; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  --btn-bg: var(--forest);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  padding: .85rem 1.6rem; border-radius: var(--r-pill);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
/* Primary CTA = luxury gold with dark text (JK signature button) */
.btn--primary { background: linear-gradient(135deg, #ffd700, #d4af37); color: #3b2f2f; box-shadow: 0 8px 22px -8px rgba(139,0,0,.4); }
.btn--primary:hover { background: linear-gradient(135deg, #ffe14d, #c89b29); color: #2a1c1c; }
.btn--ghost-light { background: transparent; color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: rgba(255,255,255,.12); box-shadow: inset 0 0 0 1.5px #fff; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.02rem; }
.btn--sm { padding: .62rem 1.2rem; font-size: .9rem; }
.btn--block { width: 100%; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: stretch;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), height .35s var(--ease);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; align-self: stretch; width: 100%; }
.site-header.is-scrolled {
  background: rgba(247,250,252,.92);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  box-shadow: 0 1px 0 var(--line), var(--shadow-sm);
}

.brand { display: inline-flex; align-items: center; gap: .7rem; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-list { display: flex; align-items: center; gap: 1.7rem; }
.nav-list a {
  font-weight: 500; font-size: .96rem; color: var(--ink); position: relative; padding: .3rem 0;
  transition: color .2s var(--ease);
}
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--sage); border-radius: 2px; transition: width .3s var(--ease);
}
.nav-list a:hover, .nav-list a.is-active { color: var(--forest); }
.nav-list a.is-active::after, .nav-list a:hover::after { width: 100%; }
.site-header:not(.is-scrolled) .nav-list a { color: rgba(255,255,255,.92); }
.site-header:not(.is-scrolled) .nav-list a:hover { color: #fff; }
.site-header:not(.is-scrolled) .nav-cta { color: #fff; background: rgba(255,255,255,.16); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.85); }
.site-header:not(.is-scrolled) .nav-cta:hover { color: #2a1c1c; background: linear-gradient(135deg, #ffd700, #d4af37); box-shadow: 0 8px 22px -8px rgba(0,0,0,.4); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px; position: relative;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--forest); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease), background .3s;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
body.nav-open .nav-toggle span { background: var(--forest); }
body.nav-open .nav-toggle span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

.lang-switch { display: flex; align-items: center; gap: .35rem; margin-left: auto; margin-right: .25rem; }
.lang-btn {
  display: inline-flex; align-items: center; gap: .35rem; padding: .35rem .55rem;
  border: 1px solid rgba(59,47,47,.15); border-radius: 8px; background: rgba(255,255,255,.85);
  cursor: pointer; font: inherit; font-size: .78rem; font-weight: 600; color: var(--forest); line-height: 1;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.lang-btn:hover { border-color: var(--cyan); background: #fff; }
.lang-btn.is-active {
  border-color: var(--ocean-700);
  background: linear-gradient(135deg, rgba(0,128,128,.12), rgba(139,0,0,.08));
  box-shadow: 0 0 0 1px rgba(0,128,128,.25);
}
.lang-flag { font-size: 1.05rem; line-height: 1; }
.lang-code { letter-spacing: .03em; }
.site-header:not(.is-scrolled) .lang-btn {
  background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35); color: #fff;
}
.site-header:not(.is-scrolled) .lang-btn.is-active {
  background: rgba(255,255,255,.28); border-color: rgba(255,255,255,.65); color: #fff;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: var(--header-h); color: #fff; isolation: isolate; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 60% center; }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  /* JK brand hero wash: deep red → dark brown, per brand spec (#8B0000 → #3B2F2F) */
  background:
    linear-gradient(105deg, rgba(139,0,0,.92) 0%, rgba(95,12,12,.78) 40%, rgba(59,47,47,.55) 78%),
    linear-gradient(to top, rgba(40,22,18,.6), transparent 42%);
}
.hero-inner { padding-block: clamp(3rem, 8vh, 6rem); max-width: 760px; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: .3em; font-size: .82rem; font-weight: 600; color: var(--sky); margin-bottom: 1.4rem; }
.hero-title { font-size: clamp(2.2rem, 8vw, 5.6rem); color: #fff; font-weight: 300; line-height: 1.04; letter-spacing: -.02em; overflow-wrap: break-word; }
.hero-title-sub {
  display: block; font-size: clamp(1.05rem, 2.4vw, 1.6rem); letter-spacing: .35em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 500; color: var(--sky); margin-top: 1.1rem;
}
.hero-lead { font-size: clamp(1.1rem, 1.9vw, 1.4rem); color: rgba(255,255,255,.9); max-width: 36em; margin-top: 1.6rem; line-height: 1.6; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-trust { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1.8rem; font-size: .95rem; color: rgba(255,255,255,.85); }
.hero-trust .ic { color: var(--sky); }

.hero-strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  background: rgba(40,20,16,.42); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-strip-inner { display: flex; flex-wrap: wrap; gap: 1rem 2.4rem; justify-content: center; padding-block: 1rem; }
.hero-strip span { display: inline-flex; align-items: center; gap: .6rem; font-size: .92rem; font-weight: 500; color: rgba(255,255,255,.9); }
.hero-strip .ic { color: var(--sky); }

.hero-scroll {
  position: absolute; left: 50%; bottom: 5.2rem; transform: translateX(-50%); z-index: 2;
  width: 44px; height: 44px; display: grid; place-items: center; color: #fff;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.4); animation: bob 2.4s var(--ease) infinite;
}
.hero-scroll svg { width: 22px; height: 22px; }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 7px); } }

/* ==========================================================================
   About
   ========================================================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about-media { position: relative; }
.about-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img--main { aspect-ratio: 4/5; }
.about-img--accent {
  position: absolute; right: -8%; bottom: -10%; width: 52%; aspect-ratio: 1/1;
  border: 6px solid var(--sand-50);
}
.about-badge {
  position: absolute; left: -6%; top: 8%;
  background: var(--forest); color: var(--sand-100);
  border-radius: var(--r-md); padding: 1rem 1.2rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .8rem; max-width: 220px;
}
.about-badge-num { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; color: var(--sky); }
.about-badge-text { font-size: .82rem; line-height: 1.3; color: rgba(245,240,232,.9); }
.about-body .lead { margin-top: 1.2rem; }
.about-body p + p { margin-top: 1.1rem; color: var(--muted); }

.pill-list { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.8rem 0; }
.pill {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: .5rem 1rem; font-size: .9rem; font-weight: 500; box-shadow: var(--shadow-sm);
}
.pill span { color: var(--sage-600); font-weight: 600; }
.pill .pill-name { color: inherit; font-weight: inherit; }   /* modality name stays normal weight/colour */
.pill .pill-badge:empty { display: none; }                   /* hide a blank badge (e.g. Kinesio Taping) */

/* ==========================================================================
   Conditions
   ========================================================================== */
.cond-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem;
}
.cond-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.cond-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--sand-300); }
.cond-ic {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: var(--sky-50); color: var(--forest); margin-bottom: 1rem;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.cond-ic svg { width: 26px; height: 26px; }
.cond-card:hover .cond-ic { background: var(--forest); color: var(--sky); }
.cond-card h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.cond-card p { font-size: .92rem; color: var(--muted); line-height: 1.55; }
.cond-foot { text-align: center; margin-top: 2.5rem; color: var(--muted); display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; }

/* ==========================================================================
   Approach / pillars
   ========================================================================== */
.approach-grid { display: grid; grid-template-columns: minmax(280px, .85fr) 1.15fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.approach-media { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.approach-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.approach-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.approach-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2rem 1.6rem 1.4rem;
  background: linear-gradient(to top, rgba(40,20,16,.85), transparent);
  color: #fff; font-family: var(--font-display); font-size: 1.35rem; line-height: 1.25;
}
.approach-caption .eyebrow { margin-bottom: .5rem; }

.pillars { display: grid; gap: .4rem; counter-reset: pillar; }
.pillar {
  display: grid; grid-template-columns: auto auto 1fr; align-items: start; gap: 1.1rem;
  padding: 1.4rem 1.2rem; border-radius: var(--r-md);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease);
}
.pillar:hover { background: var(--sand-100); }
.pillar-num { font-family: var(--font-display); font-size: 1.1rem; color: var(--sage-600); padding-top: .35rem; }
.pillar-ic {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  background: var(--sage); color: #fff; box-shadow: var(--shadow-sm);
}
.pillar-ic svg { width: 25px; height: 25px; }
.pillar h3 { font-size: 1.18rem; margin-bottom: .25rem; }
.pillar p { font-size: .95rem; color: var(--muted); }

/* ==========================================================================
   Services
   ========================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem 1.8rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.svc-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--sky)); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ic {
  display: grid; place-items: center; width: 60px; height: 60px; border-radius: 18px;
  background: linear-gradient(140deg, var(--sand-100), var(--sand-200)); color: var(--forest); margin-bottom: 1.3rem;
}
.svc-ic svg { width: 30px; height: 30px; }
.svc-img { width: 100%; height: 170px; object-fit: cover; border-radius: var(--r-md); margin-bottom: 1.3rem; display: block; }
.svc-card h3 { margin-bottom: .55rem; }
.svc-card p { color: var(--muted); font-size: .96rem; }
.svc-meta { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--line); }
.svc-meta .price-amount { font-size: 2rem; margin: 0 0 .12rem; }
.svc-meta .price-unit { font-size: .85rem; }
.svc-card--wide { grid-column: span 1; }
.svc-foot { text-align: center; margin-top: 2.4rem; color: var(--muted); }
.svc-foot strong { color: var(--forest); font-weight: 600; }

/* ==========================================================================
   Team
   ========================================================================== */
.avatar {
  display: grid; place-items: center; border-radius: 50%;
  background: linear-gradient(140deg, var(--forest-700), var(--forest)); color: var(--sky);
  font-family: var(--font-display); font-weight: 500; width: 76px; height: 76px; font-size: 1.7rem;
  box-shadow: var(--shadow-sm); flex: none;
}
.avatar--lg { width: 150px; height: 150px; font-size: 3.2rem; }
.avatar--xs { width: 40px; height: 40px; font-size: .95rem; }
.avatar--ghost { background: var(--sand-100); color: var(--sage-600); box-shadow: inset 0 0 0 1px var(--line); }
.avatar--ghost svg { width: 34px; height: 34px; }
img.avatar, .avatar-photo { object-fit: cover; padding: 0; }

.founder {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-md); margin-bottom: 1.5rem;
}
.founder-body h3 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin: .2rem 0 .8rem; }
.founder-body p { color: var(--muted); }
.cred-list { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.4rem; margin-top: 1.4rem; }
.cred-list li { display: flex; align-items: center; gap: .6rem; font-size: .95rem; font-weight: 500; color: var(--ink); }
.cred-list svg { width: 1.1rem; height: 1.1rem; color: var(--sage); flex: none; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2.2rem 1.8rem; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.team-card .avatar { margin-bottom: 1.2rem; }
.team-card h3 { font-size: 1.4rem; }
.team-role { color: var(--sage-600); font-weight: 600; font-size: .9rem; margin: .2rem 0 .9rem; }
.team-card p { color: var(--muted); font-size: .95rem; }
.team-card--join { background: var(--sand-100); border-style: dashed; }

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews-viewport { overflow: hidden; }
.reviews-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(min(86vw, 340px), 1fr);
  gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter);
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  scroll-snap-align: start;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r-lg); padding: 2rem 1.9rem; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: flex; flex-direction: column; gap: 1rem;
}
.stars { display: flex; gap: .15rem; color: #e8c87a; }
.stars svg { width: 1.05rem; height: 1.05rem; }
.review-card blockquote { font-size: 1.05rem; line-height: 1.6; color: rgba(245,240,232,.92); }
.review-card blockquote::before { content: "\201C"; }
.review-card blockquote::after { content: "\201D"; }
.review-author { display: flex; align-items: center; gap: .7rem; font-weight: 600; color: var(--sand-50); margin-top: auto; }
.review-author .avatar--xs { background: rgba(255,255,255,.12); color: var(--sky); }
.review-author span { display: block; font-weight: 400; font-size: .85rem; color: var(--sky); }
.reviews-controls { display: flex; gap: .8rem; justify-content: center; margin-top: 1.8rem; }
.rev-btn {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.22); color: #fff;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.rev-btn:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.rev-btn svg { width: 22px; height: 22px; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band { position: relative; isolation: isolate; color: #fff; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(40,20,16,.9), rgba(74,40,18,.7)); }
.cta-inner { padding-block: clamp(4rem, 9vw, 7rem); max-width: 640px; }
.cta-inner h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.cta-inner p { color: rgba(255,255,255,.85); font-size: 1.15rem; margin: 1rem 0 2rem; }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-intro .lead { margin-top: 1rem; }
.contact-info { display: grid; gap: 1.2rem; margin: 2rem 0; }
.contact-info li { display: flex; gap: 1rem; align-items: flex-start; }
.ci-ic {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--sky-50); color: var(--forest);
}
.ci-ic svg { width: 22px; height: 22px; }
.contact-info strong { display: block; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--sage-600); margin-bottom: .15rem; }
.contact-info a, .contact-info span { color: var(--ink); }
.contact-info a:hover { color: var(--forest); text-decoration: underline; }

.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 280px; border: 0; filter: grayscale(.2) contrast(.95); }

.contact-form-wrap {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: clamp(1.6rem, 3.5vw, 2.6rem); box-shadow: var(--shadow-lg);
}
.form-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--forest); margin-bottom: 1.4rem; }
.field { margin-bottom: 1.1rem; display: flex; flex-direction: column; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field label { font-size: .88rem; font-weight: 600; margin-bottom: .4rem; color: var(--ink); }
.field label span { color: #c0735f; }
.field input, .field select, .field textarea {
  background: var(--sand-50); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  padding: .8rem .95rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(212,175,55,.25);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input.invalid, .field textarea.invalid { border-color: #d08a76; box-shadow: 0 0 0 3px rgba(208,138,118,.18); }
.error { color: #bb6a52; font-size: .82rem; min-height: 1rem; margin-top: .25rem; }
.consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .9rem; color: var(--muted); margin: .4rem 0 1.2rem; }
.consent input { margin-top: .25rem; accent-color: var(--sage); width: 1.05rem; height: 1.05rem; flex: none; }
.consent a { color: var(--forest); text-decoration: underline; }
.form-success {
  display: flex; align-items: center; gap: .6rem; margin-top: 1.2rem;
  background: var(--sky-50); color: var(--forest-700); border-radius: var(--r-sm);
  padding: 1rem 1.1rem; font-weight: 500; font-size: .95rem;
}
.form-success svg { width: 1.3rem; height: 1.3rem; color: var(--sage); flex: none; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--forest-800); color: rgba(245,240,232,.72); padding-top: clamp(3.5rem, 7vw, 5.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand > p { max-width: 345px; }
.footer-brand .brand--footer { max-width: 345px; }
.footer-brand p { margin: .2rem 0 1.4rem; font-size: .95rem; }
.social { display: flex; gap: .7rem; }
.social a {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,.07); color: var(--sand-100); transition: background .25s var(--ease), transform .25s var(--ease);
}
.social a:hover { background: var(--sage); transform: translateY(-2px); }
.social svg { width: 20px; height: 20px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 700; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: .6rem; }
.footer-col a { font-size: .94rem; transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--sky); }
.footer-contact li { font-size: .94rem; line-height: 1.5; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-block: 1.6rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .88rem;
}
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a:hover { color: var(--sky); }

/* ==========================================================================
   Back-to-top
   ========================================================================== */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: var(--forest); color: #fff; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--sage-600); }
.to-top svg { width: 22px; height: 22px; }

/* ==========================================================================
   Reveal animations
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .cond-grid { grid-template-columns: repeat(3, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  :root { --header-h: 70px; }
  /* The mobile slide-in panel is a position:fixed child of the header. A
     backdrop-filter ancestor clips fixed descendants to the header box (panel
     too short → links spill onto the page), so disable it at mobile widths. */
  .site-header.is-scrolled { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(247,250,252,.97); }
  body.legal .site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(247,250,252,.98); }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: var(--sand-50); padding: calc(var(--header-h) + 1.5rem) 2rem 2rem;
    box-shadow: -20px 0 60px -20px rgba(74,40,18,.4);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 99;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list li { border-bottom: 1px solid var(--line); }
  .nav-list a { display: block; padding: 1rem 0; font-size: 1.1rem; color: var(--ink) !important; }
  .nav-list a::after { display: none; }
  .nav-cta { margin-top: 1.5rem; text-align: center; }
  .site-header:not(.is-scrolled) .nav-cta { background: linear-gradient(135deg, var(--forest-700), var(--forest)); box-shadow: var(--shadow-sm); }
  .nav-toggle { display: block; z-index: 100; }
  body.nav-open { overflow: hidden; }
  body.nav-open::after { content: ""; position: fixed; inset: 0; background: rgba(40,20,16,.45); z-index: 98; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto 2.5rem; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-media { position: static; max-width: 460px; margin: 0 auto 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
}

@media (max-width: 680px) {
  .cond-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .cred-list { grid-template-columns: 1fr; text-align: left; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-strip { display: none; }
  .hero-scroll { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .cond-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Brand logo (image lockup)
   ========================================================================== */
.brand-logo { display: block; width: auto; height: 56px; }
.brand-logo--dark { display: none; }                                   /* colored — on light header */
.site-header.is-scrolled .brand-logo--light { display: none; }
.site-header.is-scrolled .brand-logo--dark { display: block; }
body.legal .brand-logo--light { display: none; }
body.legal .brand-logo--dark { display: block; }
@media (max-width: 880px) { .brand-logo { height: 46px; } .brand--footer .brand-logo { width: 100%; height: auto; } }

/* ==========================================================================
   Pricing / packages
   ========================================================================== */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; } }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2.3rem 1.9rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card--featured { background: linear-gradient(160deg, var(--forest-700), var(--forest)); color: #fff; border-color: transparent; box-shadow: var(--shadow-lg); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--sky); color: #3b2f2f; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: .4rem .9rem; border-radius: var(--r-pill); white-space: nowrap;
}
.price-name { font-family: var(--font-display); font-size: 1.45rem; color: var(--forest); }
.price-card--featured .price-name { color: #fff; }
.price-desc { color: var(--muted); font-size: .92rem; margin-top: .35rem; min-height: 2.6em; }
.price-card--featured .price-desc { color: rgba(255,255,255,.82); }
.price-amount { font-family: var(--font-display); font-size: 2.7rem; color: var(--forest); margin: 1.2rem 0 .1rem; display: flex; align-items: baseline; gap: .35rem; line-height: 1; }
.price-amount .cur { font-size: 1.05rem; color: var(--sage-600); font-family: var(--font-body); font-weight: 600; }
.price-card--featured .price-amount, .price-card--featured .price-amount .cur { color: #fff; }
.price-unit { font-size: .85rem; color: var(--muted); }
.price-card--featured .price-unit { color: rgba(255,255,255,.75); }
.price-feats { display: grid; gap: .6rem; margin: 1.5rem 0 1.9rem; }
.price-feats li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; }
.price-feats svg { width: 1.1rem; height: 1.1rem; color: var(--sage); flex: none; margin-top: .15rem; }
.price-card--featured .price-feats li { color: rgba(255,255,255,.9); }
.price-card--featured .price-feats svg { color: var(--sky); }
.price-card .btn { margin-top: auto; }
.price-card--featured .btn--primary { background: #fff; color: var(--forest); }
.price-card--featured .btn--primary:hover { background: var(--sky-50); }
.price-note { text-align: center; margin-top: 2rem; color: var(--muted); font-size: .9rem; }
.price-addons { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-top: 1.4rem; }

/* ==========================================================================
   FAQ (native <details> accordion)
   ========================================================================== */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: .9rem; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 1.25rem 1.4rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-family: var(--font-display); font-size: 1.12rem; color: var(--forest); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ic { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--sky-50); color: var(--forest); transition: background .3s var(--ease); }
.faq-ic svg { width: 18px; height: 18px; transition: transform .3s var(--ease); }
.faq-item[open] .faq-ic { background: var(--forest); color: #fff; }
.faq-item[open] .faq-ic svg { transform: rotate(180deg); }
.faq-answer { padding: 0 1.4rem 1.35rem; color: var(--muted); }
.faq-answer p { margin: 0; }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.wa-fab {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 95;
  display: inline-flex; align-items: center; gap: .6rem;
  background: #25d366; color: #fff; padding: .82rem 1.15rem; border-radius: var(--r-pill);
  box-shadow: var(--shadow-md); font-weight: 600;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-fab:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.wa-fab svg { width: 24px; height: 24px; }
.wa-label { font-size: .92rem; }
@media (max-width: 560px) { .wa-label { display: none; } .wa-fab { padding: .9rem; } }

/* ==========================================================================
   Legal pages (privacy / terms)
   ========================================================================== */
.legal-page { padding-top: var(--header-h); }
.legal-hero { background: var(--forest); color: var(--sand-100); padding-block: clamp(3rem, 7vw, 5rem); }
.legal-hero .eyebrow { color: var(--sky); }
.legal-hero h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.4rem); }
.legal-hero p { color: rgba(245,240,232,.7); margin-top: .6rem; }
.legal-body { max-width: 800px; padding-block: clamp(3rem, 6vw, 5rem); }
.legal-body h2 { font-size: 1.5rem; margin: 2.4rem 0 .8rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--muted); margin-bottom: .9rem; }
.legal-body ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; }
.legal-body li { margin-bottom: .5rem; }
.legal-body a { color: var(--forest); text-decoration: underline; }
/* Force a solid header on legal pages (no dark hero behind it) */
body.legal .site-header { background: rgba(247,250,252,.95); -webkit-backdrop-filter: saturate(140%) blur(12px); backdrop-filter: saturate(140%) blur(12px); box-shadow: 0 1px 0 var(--line), var(--shadow-sm); }
body.legal .site-header:not(.is-scrolled) .nav-list a { color: var(--ink); }
body.legal .site-header:not(.is-scrolled) .nav-toggle span { background: var(--forest); }
body.legal .site-header:not(.is-scrolled) .nav-cta { box-shadow: var(--shadow-sm); background: linear-gradient(135deg, var(--forest-700), var(--forest)); }

/* ==========================================================================
   Booking widget (client-facing, multi-step) — assets/js/booking.js
   On-brand, reuses design tokens. Modal dialog + inline section launcher.
   ========================================================================== */

/* ----- Launcher block inside the contact/booking section ----- */
.bk-launch {
  display: grid; gap: 1rem; margin-bottom: 1.6rem;
  background: linear-gradient(135deg, var(--forest-700), var(--forest));
  color: #fff; border-radius: var(--r-xl); padding: clamp(1.5rem, 3.5vw, 2.2rem);
  box-shadow: var(--shadow-lg);
}
.bk-launch h3 { color: #fff; font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
.bk-launch p { color: rgba(245,250,255,.85); margin: 0; font-size: 1rem; }
.bk-launch-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .35rem; }
.bk-launch .btn--primary { background: #fff; color: var(--forest); }
.bk-launch .btn--primary:hover { background: var(--sand-100); color: var(--forest); }
.bk-launch .btn--ghost-light { color: #fff; }
.bk-launch .btn[disabled] { opacity: .6; cursor: progress; pointer-events: none; }
.bk-launch-user { font-size: .92rem; color: rgba(245,250,255,.9); display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.bk-launch-user strong { color: #fff; }
.bk-launch-user button {
  color: #fff; font-weight: 600; font-size: .88rem; text-decoration: underline;
  text-underline-offset: 3px; opacity: .9;
}
.bk-launch-user button:hover { opacity: 1; }

/* ----- Overlay + dialog ----- */
.bk-overlay {
  position: fixed; inset: 0; z-index: 300; display: flex;
  align-items: flex-end; justify-content: center;
  background: rgba(40,20,16,.5); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 0; opacity: 0; transition: opacity .28s var(--ease);
}
@media (min-width: 640px) { .bk-overlay { align-items: center; padding: clamp(1rem, 4vh, 2.5rem) 1rem; } }
.bk-overlay.is-open { opacity: 1; }
.bk-overlay[hidden] { display: none; }

.bk-dialog {
  background: var(--white); width: 100%; max-width: 600px;
  max-height: 100dvh; display: flex; flex-direction: column;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow: var(--shadow-lg); overflow: hidden;
  transform: translateY(24px); transition: transform .3s var(--ease);
}
@media (min-width: 640px) { .bk-dialog { max-height: min(92dvh, 820px); border-radius: var(--r-xl); } }
.bk-overlay.is-open .bk-dialog { transform: translateY(0); }

/* ----- Header / progress ----- */
.bk-head {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 1.8rem); border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: var(--white); z-index: 2;
}
.bk-head h2 { font-size: 1.25rem; flex: 1; line-height: 1.2; }
.bk-eyebrow { font-size: .7rem; }
.bk-close {
  width: 40px; height: 40px; flex: none; border-radius: var(--r-pill);
  display: grid; place-items: center; color: var(--muted);
  background: var(--sand-100); transition: background .2s var(--ease), color .2s var(--ease);
}
.bk-close:hover { background: var(--sand-200); color: var(--forest); }
.bk-close svg { width: 1.2rem; height: 1.2rem; }

.bk-steps {
  display: flex; gap: .4rem; padding: 0 clamp(1.2rem, 4vw, 1.8rem) 1rem;
  background: var(--white);
}
.bk-steps li {
  flex: 1; height: 5px; border-radius: var(--r-pill); background: var(--sand-200);
  transition: background .3s var(--ease);
}
.bk-steps li.is-done { background: var(--sage); }
.bk-steps li.is-current { background: var(--forest); }

/* ----- Scrollable body ----- */
.bk-body { padding: clamp(1.2rem, 4vw, 1.8rem); overflow-y: auto; flex: 1; -webkit-overflow-scrolling: touch; }
.bk-step-title { font-size: 1.35rem; margin-bottom: .35rem; }
.bk-step-intro { color: var(--muted); font-size: .98rem; margin-bottom: 1.3rem; }

/* ----- Selectable cards (services / therapists) ----- */
.bk-options { display: grid; gap: .75rem; }
.bk-option {
  display: flex; align-items: flex-start; gap: .9rem; width: 100%; text-align: left;
  background: var(--sand-50); border: 1.5px solid var(--line); border-radius: var(--r-md);
  padding: 1rem 1.1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.bk-option:hover { border-color: var(--sage-300, var(--sand-300)); background: var(--white); }
.bk-option.is-selected { border-color: var(--sage); box-shadow: 0 0 0 3px rgba(212,175,55,.18); background: var(--white); }
.bk-option-ic {
  width: 46px; height: 46px; flex: none; border-radius: var(--r-sm); display: grid; place-items: center;
  background: var(--sky-50); color: var(--sage);
}
.bk-option-ic svg { width: 1.5rem; height: 1.5rem; }
.bk-option-av {
  width: 46px; height: 46px; flex: none; border-radius: var(--r-pill); display: grid; place-items: center;
  background: var(--forest); color: #fff; font-family: var(--font-display); font-size: 1.15rem;
  object-fit: cover;
}
.bk-option-main { flex: 1; min-width: 0; }
.bk-option-main h4 { font-family: var(--font-display); font-size: 1.08rem; color: var(--forest); margin-bottom: .15rem; }
.bk-option-main p { font-size: .9rem; color: var(--muted); line-height: 1.5; margin: 0; }
.bk-option-meta { display: flex; flex-wrap: wrap; gap: .4rem .8rem; margin-top: .55rem; }
.bk-tag {
  display: inline-flex; align-items: center; gap: .35rem; font-size: .82rem; font-weight: 600;
  color: var(--sage-600); background: var(--sky-50); padding: .25rem .6rem; border-radius: var(--r-pill);
}
.bk-tag svg { width: .95rem; height: .95rem; }
.bk-tag--price { color: var(--forest); background: var(--sand-200); }
.bk-option-check {
  width: 24px; height: 24px; flex: none; border-radius: var(--r-pill); border: 1.5px solid var(--sand-300);
  display: grid; place-items: center; color: #fff; transition: background .2s var(--ease), border-color .2s var(--ease);
  margin-top: .15rem;
}
.bk-option.is-selected .bk-option-check { background: var(--sage); border-color: var(--sage); }
.bk-option-check svg { width: 1rem; height: 1rem; opacity: 0; }
.bk-option.is-selected .bk-option-check svg { opacity: 1; }

/* ----- Date input ----- */
.bk-date-field { max-width: 320px; }
.bk-date-field input { font-size: 1.05rem; }

/* ----- Slot chips ----- */
.bk-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: .6rem; }
.bk-slot {
  padding: .7rem .5rem; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--sand-50); font-weight: 600; font-size: .98rem; color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
}
.bk-slot:hover { border-color: var(--sage); background: var(--white); }
.bk-slot.is-selected { background: linear-gradient(135deg, var(--forest-700), var(--forest)); color: #fff; border-color: var(--forest); box-shadow: var(--shadow-md); }

/* ----- Auth (login / signup) ----- */
.bk-tabs { display: flex; gap: .4rem; background: var(--sand-100); padding: .3rem; border-radius: var(--r-pill); margin-bottom: 1.4rem; }
.bk-tab {
  flex: 1; padding: .6rem 1rem; border-radius: var(--r-pill); font-weight: 600; font-size: .95rem;
  color: var(--muted); transition: background .2s var(--ease), color .2s var(--ease);
}
.bk-tab.is-active { background: var(--white); color: var(--forest); box-shadow: var(--shadow-sm); }
.bk-form .field:last-of-type { margin-bottom: .6rem; }
.bk-pw-hints { list-style: none; padding: 0; margin: .5rem 0 1rem; display: grid; gap: .25rem; }
.bk-pw-hints li { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: .45rem; }
.bk-pw-hints li svg { width: .95rem; height: .95rem; flex: none; color: var(--sand-300); }
.bk-pw-hints li.is-ok { color: var(--sage-600); }
.bk-pw-hints li.is-ok svg { color: var(--sage); }
.bk-form-error {
  background: rgba(187,106,82,.1); color: #a85540; border-radius: var(--r-sm);
  padding: .7rem .9rem; font-size: .9rem; margin-bottom: 1rem;
}

/* ----- Confirm / summary ----- */
.bk-summary { background: var(--sand-100); border-radius: var(--r-md); padding: 1.2rem 1.3rem; margin-bottom: 1.2rem; }
.bk-summary dl { display: grid; grid-template-columns: auto 1fr; gap: .55rem 1rem; margin: 0; }
.bk-summary dt { color: var(--muted); font-size: .9rem; }
.bk-summary dd { color: var(--ink); font-weight: 600; font-size: .95rem; margin: 0; text-align: right; }
.bk-summary dd.bk-summary-total { color: var(--forest); }

/* ----- Result states ----- */
.bk-result { text-align: center; padding: 1.5rem 0; }
.bk-result-ic {
  width: 72px; height: 72px; margin: 0 auto 1.2rem; border-radius: var(--r-pill); display: grid; place-items: center;
}
.bk-result-ic svg { width: 2.2rem; height: 2.2rem; }
.bk-result-ic--ok { background: var(--sky-50); color: var(--sage); }
.bk-result h3 { margin-bottom: .6rem; }
.bk-result p { color: var(--muted); max-width: 40ch; margin: 0 auto 1.4rem; }

/* ----- Loading / empty / error states ----- */
.bk-state { text-align: center; color: var(--muted); padding: 2.2rem 1rem; font-size: .98rem; }
.bk-spinner {
  width: 34px; height: 34px; margin: 0 auto 1rem; border-radius: var(--r-pill);
  border: 3px solid var(--sand-200); border-top-color: var(--sage); animation: bk-spin .7s linear infinite;
}
@keyframes bk-spin { to { transform: rotate(360deg); } }
.bk-retry { margin-top: 1rem; }

/* ----- Footer / nav buttons ----- */
.bk-foot {
  display: flex; gap: .75rem; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.2rem, 4vw, 1.8rem); border-top: 1px solid var(--line);
  position: sticky; bottom: 0; background: var(--white);
}
.bk-foot .btn { flex: 1; }
.bk-foot .bk-back { flex: 0 0 auto; }
.bk-back {
  background: transparent; color: var(--muted); box-shadow: inset 0 0 0 1.5px var(--line);
  font-weight: 600;
}
.bk-back:hover { color: var(--forest); box-shadow: inset 0 0 0 1.5px var(--sand-300); transform: none; }
.bk-foot .btn[disabled], .btn.is-busy { opacity: .65; cursor: progress; pointer-events: none; }

/* ----- My bookings list ----- */
.bk-mybookings { display: grid; gap: .85rem; }
.bk-mybooking {
  background: var(--sand-50); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1rem 1.1rem; display: grid; gap: .5rem;
}
.bk-mybooking-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.bk-mybooking h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--forest); }
.bk-mybooking-when { color: var(--muted); font-size: .9rem; }
.bk-status {
  font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
  padding: .3rem .65rem; border-radius: var(--r-pill); white-space: nowrap; flex: none;
}
.bk-status--pending   { background: #fdf3e0; color: #9a6b16; }
.bk-status--confirmed { background: var(--sky-50); color: var(--sage-600); }
.bk-status--completed { background: var(--sand-200); color: var(--forest); }
.bk-status--cancelled,
.bk-status--rejected  { background: #f6e6e1; color: #a85540; }
.bk-cancel {
  justify-self: start; font-size: .85rem; font-weight: 600; color: #a85540;
  text-decoration: underline; text-underline-offset: 3px;
}
.bk-cancel:hover { color: #8c4634; }
.bk-cancel[disabled] { opacity: .5; pointer-events: none; }
.bk-mybooking-actions { display: flex; gap: 1.1rem; align-items: center; flex-wrap: wrap; }
.bk-change {
  font-size: .85rem; font-weight: 600; color: var(--forest);
  text-decoration: underline; text-underline-offset: 3px;
}
.bk-change:hover { color: var(--forest-700); }

/* keep body from scrolling behind the dialog */
body.bk-locked { overflow: hidden; }

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-scroll { animation: none; }
  .bk-overlay, .bk-dialog { transition: none; }
  .bk-spinner { animation: bk-spin 1s linear infinite; }
}

/* ==========================================================================
   JK — Thai luxury layer
   Gold accents, ornamental separators, Thai pattern overlays & signature band.
   ========================================================================== */

/* ----- Gold gradient helpers ----- */
.text-gold {
  background: linear-gradient(95deg, #f6d774, #d4af37 45%, #b8860b 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ----- Eyebrows: small gold rule before the label ----- */
.eyebrow { display: inline-flex; align-items: center; gap: .7rem; }
.eyebrow::before {
  content: ""; width: 28px; height: 2px; flex: none;
  background: linear-gradient(90deg, var(--sage), transparent);
}
.eyebrow--light::before { background: linear-gradient(90deg, var(--sky), transparent); }
.section-head { text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head--left .eyebrow { justify-content: flex-start; }

/* ----- Thai "kranok" gold flourish under section titles ----- */
.section-head .section-title { position: relative; }
.thai-kranok, .section-head .section-title::after {
  content: ""; display: block; width: 240px; max-width: 70%; height: 26px; margin: 1.1rem auto 0;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='28' viewBox='0 0 260 28'%3E%3Cg fill='none' stroke='%23c9a227' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M8 14H100'/%3E%3Cpath d='M160 14H252'/%3E%3Cpath d='M100 14c8 0 11-7 17-7-4 3-4 11 0 14-6 0-9-7-17-7'/%3E%3Cpath d='M160 14c-8 0-11-7-17-7 4 3 4 11 0 14 6 0 9-7 17-7'/%3E%3C/g%3E%3Cpath d='M130 3c5 7 5 15 0 22-5-7-5-15 0-22' fill='%23d4af37'/%3E%3Ccircle cx='130' cy='14' r='2.4' fill='%23ffd700'/%3E%3C/svg%3E");
}
.section-head--left .section-title::after { margin-inline: 0; background-position: left center; }

/* ----- Subtle Thai lattice pattern (CSS-only, no extra requests) ----- */
.thai-pattern { position: relative; isolation: isolate; }
.thai-pattern::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23ffd700' stroke-width='1.1'%3E%3Cpath d='M32 3 L61 32 L32 61 L3 32 Z'/%3E%3Ccircle cx='32' cy='32' r='7'/%3E%3Cpath d='M32 14 q6 9 0 18 q-6 -9 0 -18 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 64px 64px;
}

/* Dark red sections (reviews + signature) get the gold lattice + gold headings */
.section--forest { position: relative; isolation: isolate; overflow: hidden; }
.section--forest::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .08;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='%23ffd700' stroke-width='1.1'%3E%3Cpath d='M32 3 L61 32 L32 61 L3 32 Z'/%3E%3Ccircle cx='32' cy='32' r='7'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 64px 64px;
}
.section--forest h1, .section--forest h2, .section--forest h3, .section--forest h4 { color: var(--sky); }
.section--forest .section-head--invert .section-title::after { border-top-color: var(--sky); }
.section--forest .section-head--invert .section-title::before { color: var(--sky); }

/* ----- Hero: faint gold ornament wash behind the content ----- */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70'%3E%3Cg fill='none' stroke='%23ffd700' stroke-width='1'%3E%3Cpath d='M35 6 L64 35 L35 64 L6 35 Z'/%3E%3Cpath d='M35 18 q8 11 0 22 q-8 -11 0 -22 Z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 70px 70px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 70%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 70%);
}
.hero-eyebrow { color: var(--sky); }
.hero-title-sub { color: var(--sky); }

/* Centered hero variant — full logo lockup fits above the fold on landing */
.hero--center { align-items: stretch; }
.hero--center .hero-inner {
  max-width: 880px; margin-inline: auto; text-align: center;
  padding-block: 0  clamp(2rem, 6vh, 4rem);
}
.hero--center .hero-intro {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0;
  min-height: calc(100svh - var(--header-h));
  padding-block: clamp(0.35rem, 1.2vh, 0.75rem) clamp(3.5rem, 9vh, 5rem);
  box-sizing: border-box;
}
.hero--center .hero-actions { justify-content: center; }
.hero--center .hero-trust { justify-content: center; }
.hero--center .hero-eyebrow { margin: -0.35rem 0 0; }
.hero-logo {
  display: block;
  width: auto;
  max-width: min(680px, 95vw);
  max-height: calc(100svh - var(--header-h) - 4.25rem);
  height: auto;
  object-fit: contain;
  margin: 0 auto -0.15rem;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.6));
}
.hero--center .hero-lead { margin-top: 0.5rem; }
.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;
}
.brand--footer { display: block; }
.brand--footer .brand-logo { width: 100%; height: auto; background: none; padding: 0; margin: 0 0 .5rem; box-shadow: none; filter: drop-shadow(0 12px 26px rgba(0,0,0,.5)); }
/* Header emblem — dedicated logo-mark asset, fills header bar top-to-bottom */
.site-header .brand { align-self: stretch; display: inline-flex; align-items: stretch; }
.site-header .brand picture { display: flex; align-items: center; height: 100%; }
.site-header .brand-mark {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* ----- Treatments: gold icon tiles + bright-gold hover (per spec) ----- */
.svc-ic { background: linear-gradient(140deg, var(--sky-50), #f3e3b0); color: #8b0000; box-shadow: inset 0 0 0 1px rgba(212,175,55,.35); }
.svc-card::before { background: linear-gradient(90deg, var(--sage), var(--sky)); }
.svc-card:hover .svc-ic { background: linear-gradient(140deg, var(--sage), var(--sky)); color: #3b2f2f; }
.cond-card:hover .cond-ic { background: var(--forest); color: var(--sky); }

/* ----- Signature Thai band (gold on deep red, ornate quote) ----- */
.signature { text-align: center; }
.signature .container { max-width: 920px; }
.signature-mark { color: var(--sky); font-size: 2.4rem; line-height: 1; margin-bottom: 1.1rem; }
.signature blockquote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.3; color: var(--sky);
  letter-spacing: -.01em; margin: 0 auto; max-width: 18ch;
}
.signature blockquote::before { content: "\201C"; }
.signature blockquote::after { content: "\201D"; }
.signature .signature-cite {
  margin-top: 1.6rem; font-family: var(--font-body); font-style: normal;
  text-transform: uppercase; letter-spacing: .25em; font-size: .82rem; font-weight: 600;
  color: rgba(255,215,0,.8);
}
.signature .signature-rule {
  width: 70px; height: 2px; margin: 1.6rem auto 0;
  background: linear-gradient(90deg, transparent, var(--sky), transparent);
}

/* Gold focus ring tuned for the warm palette */
:focus-visible { outline-color: var(--sage); }

/* ==========================================================================
   JK — Traditional Thai / temple ornamentation (redesign layer)
   ========================================================================== */

/* Gold finial + flourish reusable bits */
.thai-finial {
  width: 46px; height: 52px; display: block;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='52' viewBox='0 0 46 52'%3E%3Cg fill='%23d4af37' stroke='%23ffd700' stroke-width='1'%3E%3Cpath d='M23 1c4 9 4 15 0 23-4-8-4-14 0-23z'/%3E%3Cpath d='M23 20c7 3 11 9 11 18-5-2-8-6-11-6-3 0-6 4-11 6 0-9 4-15 11-18z'/%3E%3C/g%3E%3Ccircle cx='23' cy='30' r='2.3' fill='%23fff3c4'/%3E%3C/svg%3E");
  filter: drop-shadow(0 3px 6px rgba(40,20,16,.5));
}

/* ----- About: ornate temple-arch framed founder portrait ----- */
.about-grid { align-items: center; }
.about-portrait { position: relative; display: flex; flex-direction: column; align-items: center; }
.thai-arch-frame {
  position: relative; width: 100%; max-width: 430px; margin-inline: auto;
  padding: 14px; isolation: isolate;
}
.thai-arch-frame::before {  /* outer ornate gold double-rule following the arch */
  content: ""; position: absolute; inset: 0; z-index: -1;
  border: 1.5px solid rgba(212,175,55,.6);
  border-radius: 50% 50% 16px 16px / 32% 32% 16px 16px;
  background: linear-gradient(160deg, rgba(212,175,55,.14), rgba(139,0,0,.06));
}
.thai-arch-frame .thai-finial {
  position: absolute; top: -34px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.thai-arch-frame img {
  width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 48% 48% 12px 12px / 30% 30% 12px 12px;
  border: 3px solid var(--sage);
  box-shadow: 0 26px 60px -26px rgba(40,20,16,.7);
}
.about-seal {
  margin-top: 1.4rem; display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); text-transform: uppercase; letter-spacing: .22em;
  font-size: .72rem; font-weight: 700; color: var(--sage-600);
}
.about-seal::before, .about-seal::after { content: ""; width: 26px; height: 1px; background: var(--sage); }

/* ----- Treatments: ornate gold-framed cards with arched photo ----- */
.services .svc-grid { gap: 1.6rem; }
.svc-card {
  border: 1px solid rgba(212,175,55,.45); border-radius: 6px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    var(--white);
  padding: 1.4rem 1.4rem 1.8rem; text-align: center; overflow: visible;
}
.svc-card::before { display: none; }   /* drop the BTU top-bar */
.svc-card::after {  /* inner gold hairline frame (temple double-rule) */
  content: ""; position: absolute; inset: 7px; border: 1px solid rgba(212,175,55,.4);
  border-radius: 4px; pointer-events: none;
}
.svc-card .svc-img {
  height: 200px; border-radius: 46% 46% 8px 8px / 22% 22% 8px 8px;  /* Thai arch top */
  border: 2px solid var(--sage); margin: .2rem 0 1.1rem;
}
.svc-card h3 { position: relative; }
.svc-card h3::after {  /* small gold flourish under each treatment name */
  content: ""; display: block; width: 64px; height: 12px; margin: .5rem auto 0;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='12' viewBox='0 0 64 12'%3E%3Cg fill='none' stroke='%23c9a227' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M4 6h20'/%3E%3Cpath d='M40 6h20'/%3E%3Cpath d='M24 6c3 0 4-3 6-3 4 0 4 6 0 6-2 0-3-3-6-3'/%3E%3Cpath d='M40 6c-3 0-4-3-6-3-4 0-4 6 0 6 2 0 3-3 6-3'/%3E%3C/g%3E%3C/svg%3E");
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sage); }
.svc-card .svc-meta { border-top: none; }

/* ----- Approach: ornate gold-medallion tiles (replaces BTU sticky list) ----- */
.approach .pillars { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: none; }
.approach .pillar {
  display: block; text-align: center; padding: 2.2rem 1.6rem;
  background: var(--white); border: 1px solid rgba(212,175,55,.45); border-radius: 6px;
  position: relative;
}
.approach .pillar::after {
  content: ""; position: absolute; inset: 7px; border: 1px solid rgba(212,175,55,.32);
  border-radius: 4px; pointer-events: none;
}
.approach .pillar:hover { background: var(--white); transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--sage); }
.approach .pillar-ic {
  width: 66px; height: 66px; margin: 0 auto .9rem; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, #fff3c4, var(--sage) 78%); color: #5e0c0c;
  box-shadow: 0 8px 18px -8px rgba(139,0,0,.45), inset 0 0 0 2px rgba(255,215,0,.55);
}
.approach .pillar-ic svg { width: 30px; height: 30px; }
.approach .pillar-num { display: block; font-family: var(--font-display); color: var(--sage-600); font-size: .82rem; letter-spacing: .28em; margin-bottom: .35rem; }
.approach .pillar h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.approach .pillar p { color: var(--muted); font-size: .95rem; }
@media (max-width: 880px) { .approach .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .approach .pillars { grid-template-columns: 1fr; } }

/* ----- Pricing: ornate temple-framed cards ----- */
.price-card { border: 1px solid rgba(212,175,55,.5); border-radius: 6px; overflow: visible; }
.price-card::after { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(212,175,55,.32); border-radius: 4px; pointer-events: none; }
.price-card--featured { background: linear-gradient(165deg, #7a0c0c, var(--forest-800)); border-color: var(--sage); box-shadow: 0 26px 60px -24px rgba(139,0,0,.6); }
.price-card--featured::after { border-color: rgba(255,215,0,.45); }
.price-card--featured .thai-finial { position: absolute; top: -32px; left: 50%; transform: translateX(-50%); }
.price-name { position: relative; }
.price-name::after {
  content: ""; display: block; width: 56px; height: 11px; margin: .55rem auto .2rem;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='11' viewBox='0 0 56 11'%3E%3Cg fill='none' stroke='%23c9a227' stroke-width='1.3' stroke-linecap='round'%3E%3Cpath d='M4 5.5h16'/%3E%3Cpath d='M36 5.5h16'/%3E%3C/g%3E%3Cpath d='M28 1c3 4 3 6 0 9-3-3-3-5 0-9z' fill='%23d4af37'/%3E%3C/svg%3E"); }
.price-badge { background: linear-gradient(135deg, #ffd700, var(--sage)); color: #5e0c0c; box-shadow: 0 6px 14px -4px rgba(139,0,0,.5); }

/* ==========================================================================
   JK — Thai temple ornamentation: remaining sections
   ========================================================================== */

/* ----- What We Treat: gold-bordered condition cards ----- */
.cond-card { border: 1px solid rgba(212,175,55,.42); border-radius: 6px; }
.cond-card:hover { border-color: var(--sage); }
.cond-ic { background: linear-gradient(140deg, var(--sky-50), #f3e3b0); color: #8b0000; box-shadow: inset 0 0 0 1px rgba(212,175,55,.4); }
.cond-card:hover .cond-ic { background: linear-gradient(140deg, var(--sage), var(--sky)); color: #3b2f2f; }

/* ----- Team: ornate founder + therapist panels ----- */
.founder { border: 1px solid rgba(212,175,55,.5); border-radius: 8px; position: relative; }
.founder::after { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(212,175,55,.3); border-radius: 5px; pointer-events: none; }
.team-card { border: 1px solid rgba(212,175,55,.42); border-radius: 6px; position: relative; }
.team-card::after { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(212,175,55,.26); border-radius: 4px; pointer-events: none; }
.team-card:hover { border-color: var(--sage); }
.team-card .avatar, .founder .avatar { box-shadow: 0 0 0 3px rgba(255,215,0,.45), var(--shadow-md); }

/* ----- Testimonials: gold-framed quote panels on the dark band ----- */
.review-card { border: 1px solid rgba(255,215,0,.34); border-radius: 6px; position: relative; }
.review-card::after { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(255,215,0,.18); border-radius: 4px; pointer-events: none; }

/* ----- Contact: ornate gold frame around the form + map ----- */
.contact-form-wrap { border: 1px solid rgba(212,175,55,.5); border-radius: 8px; position: relative; }
.contact-form-wrap::after { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(212,175,55,.3); border-radius: 5px; pointer-events: none; z-index: 0; }
.contact-form-wrap > * { position: relative; z-index: 1; }
.map-wrap { border: 1.5px solid rgba(212,175,55,.5); border-radius: 8px; }
.bk-launch { box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(255,215,0,.4); }

/* ==========================================================================
   JK — Distinctive flow: Healing Journey stepper + floating dot nav
   ========================================================================== */

/* ----- Healing Journey: numbered process band (unique to JK) ----- */
.journey-steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; position: relative; margin-top: .5rem; padding: 0; }
.journey-steps::before { content: ""; position: absolute; top: 44px; left: 13%; right: 13%; height: 3px; background: repeating-linear-gradient(90deg, var(--sage) 0 9px, transparent 9px 17px); opacity: .75; z-index: 0; }
.journey-step { text-align: center; position: relative; z-index: 1; }
.journey-num { display: grid; place-items: center; width: 88px; height: 88px; margin: 0 auto 1.1rem; border-radius: 50%; background: radial-gradient(circle at 32% 28%, #fff3c4, var(--sage) 76%); color: #5e0c0c; font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; box-shadow: 0 12px 26px -10px rgba(139,0,0,.5), inset 0 0 0 3px rgba(255,215,0,.6); border: 6px solid var(--sand-50); }
.journey-step h3 { font-size: 1.22rem; margin-bottom: .4rem; }
.journey-step p { color: var(--muted); font-size: .95rem; max-width: 24ch; margin: 0 auto; }
@media (max-width: 760px) {
  .journey-steps { grid-template-columns: 1fr; gap: 1.4rem; max-width: 380px; margin-inline: auto; }
  .journey-steps::before { left: 44px; top: 44px; bottom: 44px; right: auto; width: 3px; height: auto; background: repeating-linear-gradient(180deg, var(--sage) 0 9px, transparent 9px 17px); }
  .journey-step { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; text-align: left; align-items: center; }
  .journey-step .journey-num { margin: 0; width: 76px; height: 76px; font-size: 1.8rem; }
  .journey-step p { max-width: none; }
}

/* ----- Floating gold dot navigation (right-side scroll-spy) ----- */
.dot-nav { position: fixed; right: 1.5rem; top: 50%; transform: translateY(-50%); z-index: 88; display: flex; flex-direction: column; gap: .85rem; }
.dot-nav a { width: 12px; height: 12px; border-radius: 50%; border: 2px solid rgba(212,175,55,.65); background: transparent; position: relative; transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease); }
.dot-nav a:hover, .dot-nav a.is-active { background: var(--sage); border-color: var(--sage); transform: scale(1.3); }
.dot-nav a::after { content: attr(data-label); position: absolute; right: 24px; top: 50%; transform: translateY(-50%); background: var(--forest-800); color: var(--sand-50); font-size: .72rem; font-weight: 600; padding: .28rem .65rem; border-radius: var(--r-pill); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s var(--ease); box-shadow: var(--shadow-sm); }
.dot-nav a:hover::after { opacity: 1; }
@media (max-width: 980px) { .dot-nav { display: none; } }

/* ----- "Find your treatment" interactive guide ----- */
.finder-card { max-width: 760px; margin: 0 auto; background: var(--white); border: 1px solid rgba(212,175,55,.5); border-radius: 8px; padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow-lg); position: relative; text-align: center; min-height: 360px; }
.finder-card::after { content: ""; position: absolute; inset: 9px; border: 1px solid rgba(212,175,55,.3); border-radius: 5px; pointer-events: none; }
.finder-card > * { position: relative; z-index: 1; }
.finder-step { text-transform: uppercase; letter-spacing: .22em; font-size: .72rem; font-weight: 700; color: var(--sage-600); margin-bottom: .55rem; }
.finder-q { font-size: clamp(1.4rem, 3vw, 1.95rem); margin-bottom: 1.6rem; }
.finder-options { display: grid; gap: .8rem; max-width: 500px; margin: 0 auto; }
.finder-opt { display: flex; align-items: center; gap: 1rem; width: 100%; text-align: left; background: var(--sand-50); border: 1.5px solid var(--line); border-radius: var(--r-md); padding: 1rem 1.2rem; font-weight: 500; font-size: 1.02rem; color: var(--ink); transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease); }
.finder-opt:hover { border-color: var(--sage); background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.finder-opt-label { flex: 1; }
.finder-opt-ic { width: 46px; height: 46px; flex: none; border-radius: var(--r-sm); display: grid; place-items: center; background: linear-gradient(140deg, var(--sky-50), #f3e3b0); color: #8b0000; }
.finder-opt-ic svg { width: 24px; height: 24px; }
.finder-opt-go { color: var(--sage-600); width: 20px; height: 20px; flex: none; opacity: .5; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.finder-opt:hover .finder-opt-go { opacity: 1; transform: translateX(4px); }
.finder-result-img { width: 100%; max-width: 380px; aspect-ratio: 16/10; object-fit: cover; margin: .4rem auto 1.2rem; display: block; border: 2px solid var(--sage); border-radius: 46% 46% 8px 8px / 26% 26% 8px 8px; box-shadow: var(--shadow-md); }
.finder-result h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.finder-result-meta { color: var(--sage-600); font-weight: 600; margin: .35rem 0 .85rem; }
.finder-result-blurb { color: var(--muted); max-width: 46ch; margin: 0 auto 1.7rem; }
.finder-result-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }
.finder-restart { background: transparent; color: var(--muted); text-decoration: underline; text-underline-offset: 3px; font-weight: 600; padding: .7rem 1rem; }
.finder-restart:hover { color: var(--forest); }

/* ----- Animated trust stats band ----- */
.stats { background: linear-gradient(135deg, var(--forest), var(--forest-800)); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { position: relative; padding: .5rem .5rem; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: linear-gradient(180deg, transparent, rgba(255,215,0,.4), transparent); }
.stat-num { display: block; font-family: var(--font-display); font-weight: 600; line-height: 1; font-size: clamp(2.6rem, 6vw, 4rem);
  background: linear-gradient(180deg, #ffe680, #d4af37); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { display: block; margin-top: .7rem; color: rgba(245,240,232,.85); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 600; }
@media (max-width: 700px) { .stats-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 1rem; } .stat:nth-child(odd)::before { display: none; } }

/* ----- Sticky booking bar (appears after the hero) ----- */
.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
  transform: translateY(115%); transition: transform .38s var(--ease);
  background: linear-gradient(180deg, #fff, var(--sand-50));
  border-top: 2px solid; border-image: linear-gradient(90deg, var(--sage), var(--sky), var(--sage)) 1;
  box-shadow: 0 -12px 32px -14px rgba(40,20,16,.4);
}
.book-bar.is-visible { transform: translateY(0); }
.book-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }
.book-bar-text { font-size: 1rem; color: var(--ink); }
.book-bar-text strong { color: var(--forest); font-family: var(--font-display); font-weight: 600; }
.book-bar-actions { display: flex; align-items: center; gap: .65rem; }
.book-bar-wa { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #25d366; color: #fff; flex: none; transition: transform .2s var(--ease); }
.book-bar-wa:hover { transform: translateY(-2px); }
.book-bar-wa svg { width: 22px; height: 22px; }
/* avoid overlap with the floating buttons */
body.bookbar-on .wa-fab { opacity: 0; visibility: hidden; pointer-events: none; }
body.bookbar-on .to-top { bottom: calc(1.4rem + 62px); }
@media (max-width: 560px) {
  .book-bar-text { display: none; }
  .book-bar-inner { gap: .6rem; }
  .book-bar-actions { flex: 1; }
  .book-bar-actions .btn { flex: 1; }
}

/* Ornate section divider between major bands */
.thai-band-divider {
  height: 46px; margin: 0; border: 0; background: var(--sand-50);
  display: flex; align-items: center; justify-content: center;
}
.thai-band-divider::before {
  content: ""; width: min(420px, 80%); height: 26px;
  background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='28' viewBox='0 0 420 28'%3E%3Cg fill='none' stroke='%23c9a227' stroke-width='1.4' stroke-linecap='round'%3E%3Cpath d='M10 14H180'/%3E%3Cpath d='M240 14H410'/%3E%3Cpath d='M180 14c10 0 13-8 20-8-5 4-5 12 0 16-7 0-10-8-20-8'/%3E%3Cpath d='M240 14c-10 0-13-8-20-8 5 4 5 12 0 16 7 0 10-8 20-8'/%3E%3C/g%3E%3Cpath d='M210 2c6 8 6 16 0 24-6-8-6-16 0-24z' fill='%23d4af37'/%3E%3Ccircle cx='210' cy='14' r='3' fill='%23ffd700'/%3E%3C/svg%3E");
}
