/* ===================================================================
   The Body Works — Manual Lymphatic Drainage, Wilmslow & Alderley Edge
   Rebuilt from the design handoff prototype. Plain CSS, no frameworks.
   =================================================================== */

:root {
  /* Colour tokens (from design handoff) */
  --forest: #24322c;        /* primary dark */
  --forest-dark: #1d2a24;   /* darker bands / footer */
  --sage: #5a7a6b;          /* buttons / links */
  --sage-hover: #46614f;
  --gold: #c9b79a;          /* accent / CTA */
  --gold-dark: #a98d63;
  --cream: #f6f3ec;         /* page background */
  --card-cream: #faf8f3;
  --sand: #ece7df;          /* alt band */
  --text-cream: #f4efe6;
  --body: #5b675f;          /* body text */
  --muted: #8a9088;
  --line-light: #e6e0d3;
  --line-med: #ddd6c8;
  --line-frame: #d8cfbd;
  --line-dark: #34443c;
  --on-dark: #a3b1a7;
  --on-dark-2: #b9c4ba;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --nav-h: 70px;
  --ease: cubic-bezier(.22, .8, .36, 1);
  --ease-wipe: cubic-bezier(.76, 0, .24, 1);
}

* { box-sizing: border-box; -webkit-tap-highlight-color: rgba(0,0,0,0); }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: #2b3a34;
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--sage); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--gold-dark); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; }
em { font-style: italic; font-weight: 400; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--forest); color: var(--text-cream);
  padding: 12px 20px; font-size: 14px; letter-spacing: .04em;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: var(--text-cream); }

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

/* ---------- Shared building blocks ---------- */
.eyebrow {
  font-size: 11px; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 300;
}
.eyebrow--gold { color: var(--gold-dark); }

.section-head { text-align: center; max-width: 560px; margin: 0 auto 70px; }
.section-head h2 { font-size: clamp(32px, 4.5vw, 44px); color: var(--forest); margin: 18px 0 16px; line-height: 1.12; }
.section-head .section-intro { font-weight: 300; font-size: 15px; line-height: 1.8; color: var(--muted); margin: 0; }

.diamond { color: var(--gold); font-size: 9px; flex: none; }

/* Buttons — square, uppercase, tracked */
.btn {
  display: inline-block; cursor: pointer; text-align: center;
  font-family: var(--sans); text-transform: uppercase;
  letter-spacing: .16em; font-size: 11px; font-weight: 400;
  padding: 16px 28px; border: 1px solid transparent;
  transition: background .35s ease, color .35s ease, opacity .3s ease, transform .35s ease;
}
.btn-block { display: block; width: 100%; padding-left: 0; padding-right: 0; }

.btn-gold { background: var(--gold); color: var(--forest); }
.btn-gold:hover { background: #d8c9ae; color: var(--forest); }

.btn-green { background: var(--sage); color: var(--card-cream); font-weight: 500; letter-spacing: .16em; font-size: 11.5px; padding: 15px 22px; }
.btn-green:hover { background: var(--sage-hover); color: var(--card-cream); }

.btn-forest { background: var(--forest); color: var(--text-cream); letter-spacing: .18em; padding: 16px 0; }
.btn-forest:hover { background: #3a4f45; color: var(--text-cream); }

.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); letter-spacing: .18em; font-size: 10.5px; padding: 14px 30px; }
.btn-outline:hover { background: var(--forest); color: var(--text-cream); }
.btn-outline.btn-block { padding: 15px 0; }

/* ===================================================================
   Preloader
   =================================================================== */
.preloader {
  position: fixed; inset: 0; z-index: 200; background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; transition: transform 1s var(--ease-wipe);
}
.preloader-word {
  font-family: var(--serif); font-weight: 500; font-size: 22px;
  letter-spacing: .06em; color: var(--forest);
  opacity: 0; animation: fadedrop 1s .5s ease forwards;
}
.pl-ring { opacity: 0; animation: fadedrop 1s ease forwards; }
.pl-wave { animation: drawline 1.3s ease forwards; stroke-dashoffset: 80; }
.pl-wave-1 { animation-delay: .1s; }
.pl-wave-2 { animation-delay: .35s; }
.pl-wave-3 { animation-delay: .6s; }
.preloader.is-hidden { transform: translateY(-101%); }
.preloader.is-gone { display: none; }

@keyframes drawline { from { stroke-dashoffset: 80; } to { stroke-dashoffset: 0; } }
@keyframes fadedrop { from { opacity: 0; } to { opacity: 1; } }
@keyframes kenburns { 0% { transform: scale(1.02) translateY(0); } 100% { transform: scale(1.12) translateY(-14px); } }
@keyframes breathe { 0%, 100% { transform: scale(1); opacity: .5; } 50% { transform: scale(1.08); opacity: .85; } }

/* ===================================================================
   Lymph-flow scroll spine (desktop only, wide margins)
   =================================================================== */
.spine {
  position: fixed; left: 26px; top: 0; height: 100vh; width: 56px;
  z-index: 40; pointer-events: none; opacity: 0; transition: opacity 1s ease;
  display: none;
}
.spine-svg { height: 100%; }

/* Mobile scroll progress */
.mprog { position: fixed; top: 0; left: 0; right: 0; height: 2.5px; z-index: 70; pointer-events: none; display: none; }
.mprog-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  box-shadow: 0 0 8px rgba(201,183,154,.7);
  transition: width .45s var(--ease);
}

/* Paper grain overlay (added by JS on desktop) */
.grain {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  opacity: .04; mix-blend-mode: multiply;
}

/* ===================================================================
   Nav
   =================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background .5s ease, border-color .5s ease, backdrop-filter .5s ease;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px clamp(16px, 3vw, 32px);
}
.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-brand:hover { color: inherit; }
.brand-mark { width: clamp(32px, 9vw, 40px); height: auto; flex: none; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--serif); font-weight: 500; font-size: clamp(17px, 4.6vw, 20px);
  white-space: nowrap; color: var(--text-cream); line-height: 1;
  transition: color .5s ease;
}
.brand-sub {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-top: 3px; font-weight: 300;
  transition: color .5s ease;
}
.nav-actions { display: flex; align-items: center; gap: clamp(10px, 2.2vw, 28px); flex: none; }
.nav-link {
  color: #e7ddcd; font-weight: 300; font-size: 13px; letter-spacing: .05em;
  padding: 12px 2px; transition: color .5s ease;
}
.nav-cta {
  background: var(--gold); color: var(--forest);
  padding: 13px 22px; letter-spacing: .16em; text-transform: uppercase; font-size: 10.5px;
  transition: background .5s ease, color .5s ease;
}
.nav-cta:hover { color: var(--forest); }

/* Scrolled state */
.nav.is-solid { background: rgba(246,243,236,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom-color: var(--line-light); }
.nav.is-solid .brand-name { color: var(--forest); }
.nav.is-solid .brand-sub { color: var(--muted); }
.nav.is-solid .nav-link { color: #4a574f; }
.nav.is-solid .nav-cta { background: var(--forest); color: var(--text-cream); }
.nav.is-solid .burger-line { background: var(--forest); }

.nav-burger {
  display: none; width: 44px; height: 44px; cursor: pointer;
  background: none; border: 0; padding: 0;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger-line { width: 20px; height: 1.6px; background: #e7ddcd; display: block; transition: background .5s ease, transform .4s ease, opacity .3s ease; }
.nav-burger.is-open .burger-line:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.nav-burger.is-open .burger-line:nth-child(2) { opacity: 0; }
.nav-burger.is-open .burger-line:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: rgba(246,243,236,.97);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  opacity: 0; visibility: hidden; transition: opacity .4s ease, visibility .4s ease;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu-link {
  font-family: var(--serif); font-weight: 500; font-size: 30px; color: var(--forest);
  padding: 12px 40px; text-align: center;
}
.mobile-menu-link:hover { color: var(--gold-dark); }
.mobile-menu-book {
  margin-top: 20px; background: var(--forest); color: var(--text-cream);
  padding: 16px 44px; letter-spacing: .18em; text-transform: uppercase; font-size: 12px;
}
.mobile-menu-book:hover { color: var(--text-cream); }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
  position: relative; height: 100svh; min-height: 600px; overflow: hidden;
  background: var(--forest);
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .55;
  animation: kenburns 24s ease-out both;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,50,44,.25) 0%, rgba(36,50,44,.55) 70%, var(--forest) 100%);
}
.hero-inner {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px); height: 100%;
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
}
.hero-eyebrow {
  font-size: clamp(10px, 2.9vw, 12px); letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); font-weight: 300; white-space: nowrap;
}
.hero-mark { width: clamp(76px, 22vw, 96px); height: auto; margin: 22px 0; animation: fadedrop 1.2s ease both; }
.hero-wave { stroke-dashoffset: 80; animation: drawline 1.6s ease both; }
.hero-wave-1 { animation-delay: .2s; }
.hero-wave-2 { animation-delay: .5s; }
.hero-wave-3 { animation-delay: .8s; }
.hero-method { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 300; }
.hero h1 {
  font-size: clamp(33px, 5.4vw, 70px); line-height: 1.08; color: var(--text-cream);
  margin: 22px 0 0; max-width: 960px;
}
.hero-tagline { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 2.2vw, 27px); color: var(--gold); margin: 16px 0 0; }
.hero-sub { font-weight: 300; font-size: 16.5px; line-height: 1.7; color: #cdd6cd; max-width: 560px; margin: 20px 0 0; }
.hero-actions { display: flex; gap: 16px 18px; margin-top: 38px; align-items: center; flex-wrap: wrap; justify-content: center; }
.hero-link {
  color: #e7ddcd; font-weight: 300; font-size: 13px; letter-spacing: .08em;
  border-bottom: 1px solid rgba(231,221,205,.4); padding: 15px 4px 4px;
}
.hero-link:hover { color: #fff; }

/* Hero line stagger — JS drives the reveal; these are the resting styles */
.hero-line { will-change: opacity, transform; }

/* ===================================================================
   Trust strip
   =================================================================== */
.trust { background: var(--forest-dark); color: var(--on-dark); }
.trust-inner {
  max-width: 1200px; margin: 0 auto; padding: 18px 16px;
  display: flex; justify-content: center; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px; padding: 6px 12px;
  border-right: 1px solid rgba(163,177,167,.18);
  font-weight: 300; font-size: clamp(10px, .95vw, 11px); letter-spacing: .08em;
  text-transform: uppercase; white-space: nowrap;
}

/* ===================================================================
   About
   =================================================================== */
.about {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) clamp(20px, 4vw, 32px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.about-visual { position: relative; }
.about-frame { position: absolute; top: -24px; left: -24px; width: 100%; height: 100%; border: 1px solid var(--line-frame); }
.about-photo { position: relative; overflow: hidden; }
.about-photo img { width: 100%; object-fit: cover; aspect-ratio: 4 / 4.7; }
.about-text .eyebrow { color: var(--gold-dark); }
.about-text h2 { font-size: clamp(32px, 4.5vw, 44px); line-height: 1.12; color: var(--forest); margin: 18px 0 24px; }
.about-text p { font-weight: 300; font-size: 15.5px; line-height: 1.85; color: var(--body); margin: 0 0 18px; }
.about-text p strong { font-weight: 400; color: #3a4a42; }
.about-cta { text-align: center; margin-top: 16px; }

/* ===================================================================
   Approach (dark band)
   =================================================================== */
.approach { background: var(--forest); padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 32px); }
.approach-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(36px, 6vw, 70px); align-items: center;
}
.approach-text .eyebrow { color: var(--gold); }
.approach-text h2 { font-size: 38px; line-height: 1.15; color: var(--text-cream); margin: 18px 0 22px; }
.approach-text p { font-weight: 300; font-size: 15px; line-height: 1.85; color: var(--on-dark-2); margin: 0 0 16px; }
.approach-text p:last-child { margin-bottom: 0; }
.approach-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.approach-list li {
  display: flex; align-items: center; gap: 16px; padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 300; font-size: 14.5px; color: #dfe6df;
}
.approach-list .diamond { color: var(--gold); font-size: 10px; }

/* ===================================================================
   Process
   =================================================================== */
.process { max-width: 1200px; margin: 0 auto; padding: clamp(64px, 9vw, 110px) clamp(20px, 4vw, 32px); }
.process-steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px;
}
.process-step { text-align: center; padding: 0 22px; }
.process-num {
  width: 64px; height: 64px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
  font-family: var(--serif); font-size: 26px; color: var(--gold-dark);
}
.process-step h3 { font-size: 25px; color: var(--forest); margin: 0 0 14px; }
.process-step p { font-weight: 300; font-size: 14.5px; line-height: 1.8; color: var(--body); margin: 0; }

/* ===================================================================
   Treatments
   =================================================================== */
.treatments { background: var(--sand); padding: clamp(64px, 9vw, 110px) 0; }
.treatments-inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }
.treatment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.treatment-card {
  background: var(--card-cream); display: flex; flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s;
}
.treatment-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(36,50,44,.12); }
.treatment-media { overflow: hidden; aspect-ratio: 16 / 10; background: var(--line-med); position: relative; }
.treatment-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.treatment-card:hover .treatment-media img { transform: scale(1.06); }
.treatment-body { padding: 34px 32px 38px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.treatment-meta { display: flex; justify-content: space-between; align-items: baseline; }
.treatment-num { font-family: var(--serif); font-size: 15px; color: var(--gold-dark); }
.treatment-duration { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 300; }
.treatment-body h3 { font-size: 27px; color: var(--forest); margin: 0; line-height: 1.15; }
.treatment-tag { font-family: var(--serif); font-style: italic; font-size: 15.5px; color: #7a8a80; margin-top: -6px; }
.treatment-body p { font-weight: 300; font-size: 14px; line-height: 1.75; color: var(--body); margin: 0; flex: 1; }
.treatment-bestfor { font-weight: 300; font-size: 12.5px; line-height: 1.7; color: var(--muted); }
.treatment-bestfor span { display: block; color: var(--gold-dark); letter-spacing: .1em; text-transform: uppercase; font-size: 10px; margin-bottom: 2px; }
.treatment-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line-light); padding-top: 18px; margin-top: 6px; }
.treatment-price { font-family: var(--serif); font-size: 22px; color: var(--forest); }

/* ===================================================================
   Pricing
   =================================================================== */
.pricing { max-width: 1200px; margin: 0 auto; padding: clamp(64px, 9vw, 110px) clamp(20px, 4vw, 32px); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; align-items: stretch; }
.price-card {
  background: var(--card-cream); border: 1px solid #e4dfd4;
  padding: 44px 38px; display: flex; flex-direction: column; gap: 6px; position: relative;
}
.price-card h3 { font-size: 26px; color: var(--forest); margin: 0; line-height: 1.15; }
.price-duration { font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 300; margin-bottom: 26px; }
.price-tier { display: flex; justify-content: space-between; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--line-light); }
.tier-label { font-weight: 300; font-size: 14px; color: var(--muted); }
.tier-value { display: flex; align-items: baseline; gap: 10px; }
.tier-save { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); }
.tier-amount { font-family: var(--serif); font-size: 24px; color: var(--forest); }
.price-foot { margin-top: auto; padding-top: 32px; }

/* Featured (inverted dark) card */
.price-card--featured { background: var(--forest); border-color: var(--forest); }
.price-card--featured h3 { color: var(--text-cream); }
.price-card--featured .price-duration,
.price-card--featured .tier-label { color: var(--on-dark); }
.price-card--featured .price-tier { border-bottom-color: #3a4a42; }
.price-card--featured .tier-amount { color: var(--text-cream); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--forest);
  font-size: 10px; letter-spacing: .22em; text-transform: uppercase; padding: 7px 18px; white-space: nowrap;
}

/* ===================================================================
   Reviews (rotating pull-quote)
   =================================================================== */
.reviews { background: var(--forest); padding: clamp(70px, 9vw, 120px) clamp(20px, 4vw, 32px); position: relative; overflow: hidden; }
.reviews-mark { position: absolute; right: -100px; top: 50%; margin-top: -210px; opacity: .07; animation: breathe 9s ease-in-out infinite; }
.reviews-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.reviews-stars { color: var(--gold); font-size: 15px; letter-spacing: .4em; margin-bottom: 34px; }
.reviews-stage { min-height: 150px; display: flex; align-items: center; justify-content: center; }
.reviews-quote {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(24px, 3vw, 34px); line-height: 1.45; color: var(--text-cream);
  margin: 0; transition: opacity .8s ease;
}
.reviews-author {
  font-weight: 300; font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--on-dark); margin-top: 30px; transition: opacity .8s ease;
}
.reviews-dots { display: flex; gap: 2px; justify-content: center; margin-top: 24px; }
.review-dot {
  width: 36px; height: 44px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: none; border: 0; padding: 0;
}
.review-dot span { width: 24px; height: 2px; background: #3a4a42; transition: background .4s; display: block; }
.review-dot.is-active span { background: var(--gold); }

/* ===================================================================
   Gallery
   =================================================================== */
.gallery { max-width: 1200px; margin: 0 auto; padding: clamp(64px, 9vw, 110px) clamp(20px, 4vw, 32px); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.gallery-item { overflow: hidden; aspect-ratio: 4 / 3; background: #f1ede4; }
.gallery-item img { width: 100%; height: 100%; object-fit: contain; }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { background: var(--sand); padding: clamp(64px, 9vw, 110px) clamp(20px, 4vw, 32px); }
.faq-inner { max-width: 780px; margin: 0 auto; }
.faq .section-head { margin-bottom: 60px; }
.faq-group { margin-bottom: 44px; }
.faq-group-title { font-size: 24px; color: var(--forest); margin: 0 0 8px; }
.faq-item { border-bottom: 1px solid var(--line-med); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-weight: 400; font-size: 15px; color: #3a4a42;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { font-family: var(--serif); font-size: 22px; color: var(--gold-dark); flex: none; transition: transform .4s ease; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .5s var(--ease), opacity .5s ease;
}
.faq-item[open] .faq-answer { grid-template-rows: 1fr; opacity: 1; }
.faq-answer > * { min-height: 0; }
.faq-answer p { font-weight: 300; font-size: 14.5px; line-height: 1.8; color: var(--body); margin: 0 0 22px; max-width: 640px; }
.faq-disclaimer { font-weight: 300; font-size: 12px; line-height: 1.7; color: #a9a189; margin: 10px 0 0; text-align: center; }

/* ===================================================================
   Booking
   =================================================================== */
.booking { max-width: 1200px; margin: 0 auto; padding: clamp(64px, 9vw, 110px) clamp(20px, 4vw, 32px) 120px; }
.booking .section-head { margin-bottom: 64px; }
.booking-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 5vw, 60px); align-items: start; }
.booking-info { display: flex; flex-direction: column; gap: 26px; }
.info-item { border-left: 1px solid var(--gold); padding-left: 22px; }
.info-label { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-dark); font-weight: 300; margin-bottom: 6px; }
.info-phone { font-family: var(--serif); font-size: 26px; color: var(--forest); display: inline-flex; align-items: center; min-height: 44px; }
.info-phone:hover { color: var(--gold-dark); }
.info-item > a:not(.info-phone):not(.info-directions) { font-weight: 300; font-size: 15px; display: inline-flex; align-items: center; min-height: 44px; }
.info-social { gap: 8px; }
.info-address { font-style: normal; font-weight: 300; font-size: 15px; line-height: 1.7; color: #3a4a42; }
.info-areas { font-weight: 300; font-size: 13.5px; line-height: 1.7; color: var(--body); margin: 0; }
.info-directions { font-weight: 300; font-size: 12.5px; letter-spacing: .08em; display: inline-flex; align-items: center; min-height: 44px; border-bottom: 1px solid #cfc7b6; }

.booking-form { background: var(--card-cream); border: 1px solid #e4dfd4; padding: clamp(26px, 5vw, 44px); }
.form-heading { font-family: var(--serif); font-weight: 500; font-size: 24px; color: var(--forest); margin: 0 0 28px; }
.form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; }
.form-group--full { grid-column: 1 / -1; }
.booking-form input, .booking-form select, .booking-form textarea {
  font-family: var(--sans); font-weight: 300; font-size: 16px;
  padding: 14px 16px; border: 1px solid var(--line-med); background: #fff; color: #2b3a34;
  outline: none; width: 100%;
}
.booking-form select { padding: 14px 12px; color: var(--body); }
.booking-form textarea { resize: vertical; }
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus { border-color: var(--sage); }
.booking-form input.error, .booking-form textarea.error { border-color: #c0603f; }
.form-error { display: block; color: #b45336; font-size: 12px; margin-top: 5px; min-height: 1em; }
.booking-form .btn { margin-top: 24px; }
.form-note { font-weight: 300; font-size: 12.5px; color: var(--muted); margin: 16px 0 0; text-align: center; }
.form-success { background: #eaf1ea; color: #2e4634; padding: 14px 16px; font-size: 14px; margin: 16px 0 0; text-align: center; }
.form-error-msg { background: #f6e7e0; color: #8a3d22; padding: 14px 16px; font-size: 14px; margin: 16px 0 0; text-align: center; }

/* ===================================================================
   Footer
   =================================================================== */
.site-footer { background: var(--forest-dark); padding: 48px 32px; text-align: center; }
.footer-name { font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--text-cream); }
.footer-tagline { font-size: 10.5px; letter-spacing: .26em; text-transform: uppercase; color: #7d8d83; font-weight: 300; margin-top: 8px; }
.footer-details { font-weight: 300; font-size: 12px; color: #5d6f66; margin-top: 20px; line-height: 1.7; }
.footer-social { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; }
.footer-social a { font-weight: 300; font-size: 12px; color: #7d8d83; display: inline-flex; align-items: center; min-height: 44px; }
.footer-copy { font-weight: 300; font-size: 11px; color: #4d5f56; margin: 6px 0 0; letter-spacing: .04em; }

/* ===================================================================
   Sticky mobile action bar
   =================================================================== */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: none; box-shadow: 0 -8px 24px rgba(36,50,44,.2);
}
.mobile-bar a {
  padding: 17px 0 calc(17px + env(safe-area-inset-bottom));
  letter-spacing: .2em; text-transform: uppercase; font-size: 12px; font-weight: 400;
  text-align: center; display: block;
}
.mobile-bar-call { width: 34%; background: var(--forest-dark); color: var(--gold); }
.mobile-bar-call:hover { color: var(--gold); }
.mobile-bar-book { flex: 1; background: var(--gold); color: var(--forest); font-weight: 500; }
.mobile-bar-book:hover { color: var(--forest); }

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

/* Treatment image "unveil" wipe */
.unveil::after {
  content: ''; position: absolute; inset: -1px; background: var(--sand); z-index: 3;
  transform: translateX(0); transition: transform 1.1s var(--ease-wipe);
}
.unveil.is-unveiled::after { transform: translateX(102%); }

/* ===================================================================
   Responsive — mobile layer (<760px)
   =================================================================== */
@media (max-width: 759px) {
  .nav-link, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mprog { display: block; }
  .mobile-bar { display: flex; }

  .hero-inner { padding-top: 84px; padding-bottom: 110px; }

  .trust-inner { flex-direction: column; align-items: center; }
  .trust-item {
    border-right: none; white-space: normal; text-align: center;
    justify-content: center; padding: 7px 0; font-size: 11px;
  }

  .site-footer { padding-bottom: calc(116px + env(safe-area-inset-bottom)); }

  .about-frame { top: -14px; left: -14px; }
}

@media (min-width: 760px) {
  .mobile-menu { display: none; }
}

/* ===================================================================
   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; }
  .hero-bg img { animation: none; transform: none; }
  .reveal { opacity: 1; transform: none; }
  .preloader { display: none; }
  .unveil::after { display: none; }
}
