/* ═══════════════════════════════════════════════════════════
   Becky's Holistic Therapies — Westbury, Wiltshire
   Palette sampled from the real logo (facebook.com/HolisticBecky):
   rose script · cherry blossom · charcoal trunk · teal pot
   ═══════════════════════════════════════════════════════════ */

/* ─────────────── 1. Tokens ─────────────── */
:root {
  /* Surfaces — her logo sits on near-white, not cream */
  --paper:        #FBFAFA;
  --paper-warm:   #F7F2F3;
  --blush-wash:   #FBF1F4;
  --white:        #FFFFFF;

  /* Rose — the script in her logo */
  --rose-100:     #F6E6EB;
  --rose-200:     #E9CBD5;
  --rose-300:     #DCB8C4;
  --rose-400:     #CC96A8;   /* logo script core */
  --rose-600:     #9E5C74;   /* AA on white — links, eyebrows */
  --rose-700:     #834A5F;

  /* Blossom peach — the canopy */
  --blossom-200:  #F6DED4;
  --blossom-400:  #E1A790;
  --blossom-600:  #C77E63;

  /* Teal — the bonsai pot. The one deep accent. */
  --teal-100:     #E4EEEF;
  --teal-500:     #3F777E;   /* AA on white — CTAs, clinical signals */
  --teal-600:     #33646A;
  --teal-700:     #285055;

  /* Ink — the trunk */
  --ink:          #3A3A37;
  --ink-strong:   #2A2A28;
  --ink-muted:    #6B6B67;
  --ink-faint:    #9A9A95;

  --line:         #E8E2E4;
  --line-soft:    #F1ECEE;

  /* Type — script + light geometric, straight off the logo */
  --font-script:  'Great Vibes', 'Brush Script MT', cursive;
  --font-display: 'Jost', 'Century Gothic', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Scale */
  --step--1: clamp(0.80rem, 0.77rem + 0.14vw, 0.875rem);
  --step-0:  clamp(1rem, 0.96rem + 0.20vw, 1.0625rem);
  --step-1:  clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
  --step-2:  clamp(1.45rem, 1.30rem + 0.72vw, 1.95rem);
  --step-3:  clamp(1.85rem, 1.55rem + 1.45vw, 2.80rem);
  --step-4:  clamp(2.30rem, 1.75rem + 2.70vw, 4.05rem);

  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --container: 1160px;

  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(58, 44, 48, .05), 0 2px 6px rgba(58, 44, 48, .04);
  --shadow-md: 0 2px 4px rgba(58, 44, 48, .04), 0 10px 26px -6px rgba(58, 44, 48, .10);
  --shadow-lg: 0 4px 8px rgba(58, 44, 48, .05), 0 26px 60px -14px rgba(58, 44, 48, .18);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 160ms ease-out;
  --t-mid: 340ms var(--ease);

  --header-h: 96px;
}

/* ─────────────── 2. Reset ─────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.66;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* The UA rule for [hidden] is display:none, which ANY author display value
   overrides — so a hidden flex/grid element stays visible. Bitten twice. */
[hidden] { display: none !important; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
blockquote, figure, dl, dd { margin: 0; }

:focus-visible { outline: 2.5px solid var(--teal-500); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--rose-200); color: var(--ink-strong); }

/* Utility label — replaces the monospace; matches "RELAX, RENEW, REVIVE" */
.meta {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.script { font-family: var(--font-script); font-weight: 400; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute; left: 50%; top: -100px;
  transform: translateX(-50%);
  background: var(--ink-strong); color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  z-index: 2000; transition: top var(--t-fast);
}
.skip-link:focus { top: 0; }

/* ─────────────── 3. Typography ─────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.012em;
  color: var(--ink-strong);
  text-wrap: balance;
}

.section-header { max-width: 44rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.section-eyebrow {
  display: inline-block;
  color: var(--rose-600);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  padding-left: 2rem;
  position: relative;
}
.section-eyebrow::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 1.4rem; height: 1px;
  background: var(--rose-400);
}

.section-title { font-size: var(--step-3); margin-bottom: 1.1rem; }
.section-title em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  color: var(--rose-600);
  font-size: 1.22em;
  line-height: 0.9;
}

.section-description {
  font-size: var(--step-1);
  color: var(--ink-muted);
  line-height: 1.62;
  max-width: 38rem;
  font-weight: 300;
  text-wrap: pretty;
}

/* ─────────────── 4. Buttons ─────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.7rem;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: background-color var(--t-fast), border-color var(--t-fast),
              color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--rose-600); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--rose-700); box-shadow: var(--shadow-md); }

.btn-teal { background: var(--teal-500); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-teal:hover { background: var(--teal-600); box-shadow: var(--shadow-md); }

.btn-secondary { background: transparent; color: var(--ink-strong); border-color: var(--rose-300); }
.btn-secondary:hover { background: var(--blush-wash); border-color: var(--rose-400); }

.btn-ghost { background: transparent; color: var(--ink-muted); font-weight: 400; padding: 0.6rem 0; font-size: 0.88rem; }
.btn-ghost:hover { color: var(--rose-600); }

.btn-large { padding: 1.1rem 2.2rem; font-size: 1.02rem; }
/* nowrap suits short inline buttons, but a full-width button with a long
   label has nowhere to go on a phone and clips — let these wrap. */
.btn-block { width: 100%; white-space: normal; text-align: center; }

/* ─────────────── 5. Header ─────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(251, 250, 250, 0.86);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-mid), box-shadow var(--t-mid);
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px -16px rgba(58,44,48,.24); }

.header-container { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }

.logo { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; }
.logo-mark { width: 40px; flex: none; }
.nav-list { display: flex; gap: 0.2rem; }
.nav-link {
  display: block; padding: 0.5rem 0.8rem;
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 400;
  color: var(--ink-muted);
  border-radius: 100px;
  transition: color var(--t-fast), background-color var(--t-fast);
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink-strong); background: var(--paper-warm); }
.nav-link.is-current { color: var(--rose-600); }

.header-actions { display: flex; align-items: center; gap: 1.1rem; }
.header-phone {
  font-family: var(--font-display);
  font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink-muted);
  transition: color var(--t-fast);
}
.header-phone:hover { color: var(--rose-600); }

.header-facebook {
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  color: var(--ink-muted);
  transition: color var(--t-fast);
}
.fb-logo { width: 100%; height: auto; }
.header-facebook { opacity: .9; transition: opacity var(--t-fast), transform var(--t-fast); }
.header-facebook:hover { opacity: 1; transform: translateY(-1px); }

.mobile-nav-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; }
.hamburger, .hamburger::before, .hamburger::after {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink-strong); border-radius: 2px;
  transition: transform var(--t-mid), opacity var(--t-fast);
}
.hamburger { position: relative; }
.hamburger::before, .hamburger::after { content: ''; position: absolute; left: 0; }
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.mobile-nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.mobile-nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(7px) rotate(45deg); }
.mobile-nav-toggle[aria-expanded="true"] .hamburger::after { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────── 6. Hero ─────────────── */
.hero-section { position: relative; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 7vw, 6rem); overflow: hidden; }
.hero-section::before {
  content: '';
  position: absolute; top: -30%; right: -16%;
  width: 60vw; height: 60vw; max-width: 880px; max-height: 880px;
  background: radial-gradient(circle, var(--blush-wash) 0%, rgba(251,241,244,0) 68%);
  z-index: -1;
}

.hero-container {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--teal-500);
  background: var(--teal-100);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.68rem; letter-spacing: 0.2em;
  margin-bottom: 1.6rem;
}

.hero-title { font-size: var(--step-4); line-height: 1.08; letter-spacing: -0.022em; margin-bottom: 1.5rem; }
.hero-title .script-accent {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--rose-400);
  font-size: 1.18em;
  line-height: 1.05;
  letter-spacing: 0;
  margin-top: 0.06em;
}

.hero-subtitle {
  font-size: var(--step-1); color: var(--ink-muted); font-weight: 300;
  max-width: 33rem; line-height: 1.62; margin-bottom: 2.2rem; text-wrap: pretty;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.6rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 0.6rem 1.7rem; padding-top: 1.7rem; border-top: 1px solid var(--line); }
.hero-trust li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.85rem; color: var(--ink-muted); }
.hero-trust svg { width: 15px; flex: none; color: var(--teal-500); }

.hero-image-wrapper { position: relative; }
.hero-image-frame {
  border-radius: 300px 300px var(--r-xl) var(--r-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  background: var(--blush-wash); aspect-ratio: 9 / 11;
}
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%;   /* bias up so the skylight survives the mobile crop */ }

/* ─────────────── 7. Strip ─────────────── */
.strip { background: var(--ink-strong); color: var(--paper); padding-block: 1.1rem; }
.strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.7rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0.94;
}
.strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose-400); flex: none; }

/* ─────────────── 8. Care Explorer ─────────────── */
.care-map-section { padding-block: var(--section-y); }

.care-explorer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.explorer-tabs { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.explorer-tab {
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  padding: 1.2rem 1rem; color: var(--ink-muted); position: relative;
  font-family: var(--font-display);
  transition: background-color var(--t-fast), color var(--t-fast);
}
.explorer-tab + .explorer-tab { border-left: 1px solid var(--line); }
.explorer-tab:hover { background: rgba(255,255,255,.6); color: var(--ink-strong); }
.explorer-tab .tab-label { font-weight: 500; font-size: 0.98rem; }
.explorer-tab .tab-meta { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); }
.explorer-tab.is-active { background: var(--white); color: var(--ink-strong); }
.explorer-tab.is-active::after { content: ''; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--rose-400); }
.explorer-tab.is-active .tab-meta { color: var(--rose-600); }

.explorer-content-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; min-height: 580px; }

.explorer-visual-area {
  position: relative;
  background: radial-gradient(ellipse at 50% 40%, var(--blush-wash) 0%, rgba(251,241,244,0) 65%), var(--paper);
  border-right: 1px solid var(--line);
  display: grid; place-items: center;
  padding: 2rem 1.5rem;
}
.explorer-panel { width: 100%; display: grid; place-items: center; }
.explorer-panel[hidden] { display: none; }

.svg-container { width: 100%; max-width: 300px; }
.svg-map { width: 100%; height: auto; overflow: visible; }

/* ── Anatomical maps ── */
.zone {
  fill: var(--rose-400);
  opacity: 0;
  cursor: pointer;
  transition: opacity var(--t-mid);
}
.zone:hover { opacity: .22; }
.zone.is-active-zone { opacity: .3; }

.zone-group { cursor: pointer; }
.zone-group:focus { outline: none; }

.marker-halo {
  fill: var(--rose-400); opacity: .3;
  transform-box: fill-box; transform-origin: center;
  animation: pulse-ring 2.6s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}
.marker-dot {
  fill: var(--rose-600); stroke: var(--white); stroke-width: 1.5;
  transform-box: fill-box; transform-origin: center;
  transition: transform var(--t-mid), fill var(--t-fast);
}
.zone-group:hover .marker-dot { transform: scale(1.3); }
.zone-group.is-selected .marker-dot { transform: scale(1.45); fill: var(--teal-500); }
.zone-group.is-selected .marker-halo { animation: none; opacity: .45; fill: var(--teal-500); }
.zone-group:focus-visible .marker-halo { animation: none; opacity: .5; stroke: var(--teal-500); stroke-width: 2; stroke-dasharray: 3 3; }

@keyframes pulse-ring {
  0%   { transform: scale(0.55); opacity: .85; }
  70%  { opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.map-caption-label {
  font-family: var(--font-display);
  font-size: 7px; letter-spacing: 0.16em; text-transform: uppercase;
  fill: var(--ink-faint);
}

/* Info side */
.explorer-info-area { padding: clamp(1.75rem, 3vw, 2.75rem); display: flex; }
.info-card { width: 100%; display: flex; flex-direction: column; }

.info-helper { margin: auto; text-align: center; max-width: 25rem; padding-block: 2rem; }
.helper-icon { width: 64px; margin: 0 auto 1.5rem; }
.info-helper-title { font-size: var(--step-2); margin-bottom: 0.8rem; }
.info-helper-body { color: var(--ink-muted); font-weight: 300; line-height: 1.62; margin-bottom: 1.7rem; text-wrap: pretty; }
.info-helper-hint {
  font-family: var(--font-display);
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint);
  border-top: 1px solid var(--line-soft); padding-top: 1.2rem; display: inline-block;
}

.info-dynamic-content { animation: fade-up 520ms var(--ease) both; }
@keyframes fade-up { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.info-tag {
  display: inline-block; background: var(--teal-100); color: var(--teal-600);
  padding: 0.38rem 0.9rem; border-radius: 100px;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: var(--font-display);
  margin-bottom: 1rem;
}
.info-name-heading { font-size: var(--step-2); margin-bottom: 1.7rem; }

.info-field { margin-bottom: 1.5rem; }
.field-label {
  display: block; color: var(--ink-faint);
  font-family: var(--font-display);
  font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.field-text { color: var(--ink-muted); line-height: 1.64; font-size: 0.95rem; font-weight: 300; text-wrap: pretty; }

.info-testimonial {
  background: var(--blush-wash);
  border-left: 2.5px solid var(--rose-300);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 1.2rem 1.35rem; margin-block: 1.7rem;
}
.testimonial-quote { font-size: 1.02rem; line-height: 1.55; color: var(--ink-strong); font-weight: 300; font-style: italic; margin-bottom: 0.6rem; }
.info-testimonial .testimonial-author {
  font-family: var(--font-display);
  font-size: 0.65rem; font-style: normal; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint);
}

/* ─────────────── 9. Services ─────────────── */
.services-section { padding-block: var(--section-y); background: var(--paper-warm); border-block: 1px solid var(--line); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }

.service-category-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 2.6vw, 2rem);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid);
  height: 100%;
}
.service-category-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.category-header { padding-bottom: 1.3rem; border-bottom: 1px solid var(--line-soft); margin-bottom: 0.5rem; }
.category-icon { width: 40px; margin-bottom: 0.9rem; }
.category-title { font-size: var(--step-2); margin-bottom: 0.35rem; }
.category-blurb { font-size: 0.88rem; color: var(--ink-faint); line-height: 1.55; font-weight: 300; }

.service-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.25rem; padding-block: 1.3rem; }
.service-item + .service-item { border-top: 1px solid var(--line-soft); }
.service-name { font-family: var(--font-display); font-size: 1.08rem; font-weight: 500; margin-bottom: 0.3rem; }
.service-desc { font-size: 0.875rem; color: var(--ink-muted); line-height: 1.55; font-weight: 300; text-wrap: pretty; }

.service-price-block { text-align: right; flex: none; }
.service-duration {
  display: block; font-family: var(--font-display);
  font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 0.15rem;
}
.service-price { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--rose-600); }

.services-footer {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.75rem;
  margin-top: 2.5rem; padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.pricing-note { max-width: 34rem; }
.pricing-note-label {
  display: block; color: var(--teal-500);
  font-family: var(--font-display);
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.pricing-note p { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.55; font-weight: 300; }

/* ─────────────── 10. About ─────────────── */
.about-section { padding-block: var(--section-y); }

.about-intro { max-width: 44rem; margin-bottom: 2.5rem; }

/* stats carry the credibility the portrait used to */
.about-stats-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1.5rem clamp(2rem, 6vw, 4.5rem);
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--blush-wash);
  border: 1px solid var(--rose-100);
  border-radius: var(--r-lg);
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.stat-item { text-align: center; }
.stat-divider { width: 1px; align-self: stretch; min-height: 2.5rem; background: var(--rose-200); }
.stat-number {
  display: block; font-family: var(--font-display);
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem);
  font-weight: 300; color: var(--rose-600); line-height: 1.05;
}
.stat-label {
  display: block; font-family: var(--font-display);
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 0.5rem;
}

.about-columns {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem); align-items: start;
}
.about-copy { max-width: 34rem; }
.about-paragraph { color: var(--ink-muted); line-height: 1.75; font-weight: 300; margin-bottom: 1.2rem; text-wrap: pretty; }
.about-lead { font-size: var(--step-1); color: var(--ink); line-height: 1.65; }

.about-facts {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
}
.about-subheading { font-size: 1.2rem; margin-bottom: 1.2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line-soft); }
.credentials-list { display: grid; gap: 0.85rem; }
.credentials-list li {
  position: relative; padding-left: 1.9rem;
  color: var(--ink-muted); font-size: 0.94rem; line-height: 1.55; font-weight: 300;
}
.credentials-list li::before {
  content: ''; position: absolute; left: 0; top: 0.5em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rose-400); box-shadow: 0 0 0 4px var(--rose-100);
}
.credentials-list strong { color: var(--ink-strong); font-weight: 600; }

.about-brand-philosophy {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: var(--blush-wash);
  border: 1px solid var(--rose-100);
  border-radius: var(--r-lg);
  text-align: center;
}
.about-brand-philosophy h4 {
  font-family: var(--font-script); font-size: clamp(2rem, 1.4rem + 2vw, 2.8rem);
  font-weight: 400; color: var(--rose-400); margin-bottom: 0.4rem; line-height: 1.1;
}
.about-brand-philosophy p { color: var(--ink-muted); font-size: 0.95rem; line-height: 1.6; font-weight: 300; }

/* ─────────────── 11. Testimonials ─────────────── */
.testimonials-section { padding-block: var(--section-y); background: var(--ink-strong); color: var(--paper); }
.testimonials-section .section-title { color: var(--paper); }
.testimonials-section .section-title em { color: var(--rose-300); }
.testimonials-section .section-eyebrow { color: var(--rose-300); }
.testimonials-section .section-eyebrow::before { background: var(--rose-400); }

.reviews-badge {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin-top: 1.25rem; padding: 0.55rem 1.1rem;
  border: 1px solid rgba(220, 184, 196, .3); border-radius: 100px;
  font-family: var(--font-display); font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose-200);
}

/* ── Reviews rail ──
   Horizontal, full-bleed, scroll-snapped. Padding is calculated so the first
   card lines up with the container edge while the row still runs off-screen. */
.reviews-rail { position: relative; }

.testimonials-grid {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  padding-block: 0.5rem 1.75rem;
  padding-inline: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  scrollbar-width: none;
}
.testimonials-grid::-webkit-scrollbar { display: none; }

.testimonials-grid > .testimonial-card {
  flex: 0 0 clamp(255px, 74vw, 335px);
}

/* Snap only where a card is roughly a screenful. On desktop the whole row is
   barely wider than the viewport, so snapping just yanks you to the end. */
@media (max-width: 700px) {
  .testimonials-grid { scroll-snap-type: x proximity; }
  .testimonials-grid > .testimonial-card { scroll-snap-align: center; }
}

/* fade the row out at both edges so it reads as continuing */
.reviews-rail::before,
.reviews-rail::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: clamp(1.5rem, 6vw, 5rem);
  pointer-events: none; z-index: 2;
}
.reviews-rail::before { left: 0;  background: linear-gradient(90deg, var(--ink-strong), transparent); }
.reviews-rail::after  { right: 0; background: linear-gradient(270deg, var(--ink-strong), transparent); }

.rail-nav {
  position: absolute; top: calc(50% - 0.9rem);
  transform: translateY(-50%);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(251, 250, 250, .1);
  border: 1px solid rgba(220, 184, 196, .3);
  color: var(--rose-200);
  backdrop-filter: blur(6px);
  z-index: 3;
  transition: background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.rail-nav svg { width: 20px; }
.rail-nav:hover { background: var(--rose-300); border-color: var(--rose-300); color: var(--ink-strong); }
.rail-nav[hidden] { display: none; }
.rail-prev { left: clamp(0.5rem, 2vw, 1.5rem); }
.rail-next { right: clamp(0.5rem, 2vw, 1.5rem); }

/* Review call to action — centred at the foot of the section */
.review-cta {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.85rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.testimonial-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(220, 184, 196, .2);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column;
  transition: background-color var(--t-mid), border-color var(--t-mid), transform var(--t-mid);
}
.testimonial-card:hover { background: rgba(255,255,255,.08); border-color: rgba(220,184,196,.42); transform: translateY(-4px); }

.recommends-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  align-self: flex-start;
  padding: 0.35rem 0.85rem 0.35rem 0.65rem;
  border-radius: 100px;
  background: rgba(220, 184, 196, .14);
  border: 1px solid rgba(220, 184, 196, .3);
  color: var(--rose-200);
  font-family: var(--font-display);
  font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.recommends-tag svg { width: 13px; flex: none; }
.testimonial-title { font-size: 1.3rem; color: var(--white); margin-bottom: 0.9rem; font-weight: 300; }
.testimonial-text { color: rgba(251,250,250,.74); line-height: 1.7; font-size: 0.94rem; font-weight: 300; margin-bottom: 1.5rem; text-wrap: pretty;
  flex: 1;
}
.testimonial-card .testimonial-author {
  font-family: var(--font-display);
  font-size: 0.7rem; font-style: normal; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose-300); padding-top: 1.2rem; border-top: 1px solid rgba(220,184,196,.18);
}

/* Filled, because an outline button disappears against the dark section. */
.btn-on-dark { background: var(--rose-300); color: var(--ink-strong); box-shadow: none; }
.btn-on-dark:hover { background: var(--white); }

/* ─────────────── 12. Contact ─────────────── */
.contact-section { padding-block: var(--section-y); }
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.contact-lead { color: var(--ink-muted); line-height: 1.65; font-weight: 300; margin-bottom: 2.2rem; max-width: 30rem; }

.contact-details { display: grid; gap: 1.5rem; margin-bottom: 2.4rem; }
.detail-item { padding-left: 1.35rem; border-left: 2px solid var(--rose-200); }
.detail-label {
  display: block; color: var(--teal-500);
  font-family: var(--font-display);
  font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 0.3rem;
}
.detail-value { color: var(--ink-strong); font-size: 0.98rem; line-height: 1.55; }
.detail-value a { border-bottom: 1px solid var(--line); transition: border-color var(--t-fast), color var(--t-fast); }
.detail-value a:hover { color: var(--rose-600); border-color: var(--rose-400); }
.detail-note { color: var(--ink-faint); font-size: 0.82rem; }

.map-placeholder { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); background: var(--white); }
.map-figure { position: relative; line-height: 0; }
.map-image { width: 100%; height: auto; display: block; }

/* marker overlaid in code, so it stays animated and sits over the village
   in general rather than pinning the house */
.map-marker {
  position: absolute;
  left: 41%; top: 70%;
  width: 15%;
  transform: translate(-50%, -50%);
  overflow: visible;
  pointer-events: none;
}
.map-marker .marker-halo { fill: var(--teal-500); opacity: .28; }
.map-marker .marker-dot  { fill: var(--teal-500); stroke: var(--white); stroke-width: 5; }
.map-caption { display: flex; align-items: baseline; gap: 0.8rem; flex-wrap: wrap; padding: 1.1rem 1.35rem; border-top: 1px solid var(--line); }
.map-caption .meta { color: var(--ink-strong); font-size: 0.68rem; }
.map-caption-sub { font-size: 0.8rem; color: var(--ink-faint); }

/* ─────────────── 13. Footer ─────────────── */
.site-footer { background: var(--paper-warm); border-top: 1px solid var(--line); }
.footer-container { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-block: clamp(3rem, 6vw, 4.5rem); }

.footer-address { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--ink-faint); }

.footer-heading { font-family: var(--font-display); font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem; }
.footer-nav ul, .footer-contact ul { display: grid; gap: 0.65rem; }
.footer-nav a, .footer-contact a { font-size: 0.9rem; color: var(--ink-muted); font-weight: 300; transition: color var(--t-fast); }
.footer-nav a:hover, .footer-contact a:hover { color: var(--rose-600); }

.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.5rem; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 0.75rem 2rem; font-size: 0.78rem; color: var(--ink-faint); font-weight: 300; }
.footer-disclaimer { max-width: 40rem; line-height: 1.5; }

/* ─────────────── 14. Booking Modal ─────────────── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(42, 42, 40, 0.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem; z-index: 1000;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-mid), visibility var(--t-mid);
}
.modal-overlay.is-active { opacity: 1; visibility: visible; }

.booking-modal-container {
  position: relative; background: var(--paper);
  width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.98); transition: transform var(--t-mid);
}
.modal-overlay.is-active .booking-modal-container { transform: none; }

.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50%; color: var(--ink-muted); background: rgba(255,255,255,.75);
  transition: background-color var(--t-fast), color var(--t-fast); z-index: 2;
}
.modal-close svg { width: 18px; }
.modal-close:hover { background: var(--white); color: var(--ink-strong); }

.booking-modal-header {
  padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem) 1.25rem;
  background: var(--white); border-bottom: 1px solid var(--line);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.booking-badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--teal-100); color: var(--teal-600);
  padding: 0.32rem 0.8rem; border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: 0.85rem;
}
.booking-modal-header h3 { font-size: var(--step-2); margin-bottom: 1.3rem; }

.booking-progress { display: flex; gap: 0.4rem; }
.booking-progress li {
  flex: 1; display: flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-size: 0.72rem; color: var(--ink-faint);
  padding-top: 0.7rem; border-top: 2px solid var(--line);
  transition: color var(--t-mid), border-color var(--t-mid);
}
.booking-progress li span {
  display: grid; place-items: center; width: 19px; height: 19px;
  border-radius: 50%; background: var(--line); color: var(--ink-faint);
  font-size: 0.6rem; flex: none;
  transition: background-color var(--t-mid), color var(--t-mid);
}
.booking-progress li.is-active { color: var(--ink-strong); border-top-color: var(--rose-600); }
.booking-progress li.is-active span { background: var(--rose-600); color: var(--white); }
.booking-progress li.is-done { border-top-color: var(--rose-300); }
.booking-progress li.is-done span { background: var(--rose-300); color: var(--white); }

.booking-modal-body { padding: clamp(1.5rem, 4vw, 2rem); }
.booking-step { animation: fade-up 400ms var(--ease) both; }
.booking-step[hidden] { display: none; }

.step-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-bottom: 1rem; }
.booking-step .step-title:not(:first-child) { margin-top: 1.75rem; }

.booking-services-list { display: grid; gap: 0.65rem; }

/* In gift mode the open-amount voucher leads — burying it under 17 treatments
   made people miss it entirely and pick a treatment by default. */
.booking-services-list [data-gift-only] { order: -1; }
.booking-service-option[data-gift-only] {
  border-color: var(--rose-400);
  background: var(--blush-wash);
}
.booking-service-option[data-gift-only] .opt-name { color: var(--rose-700); }
.booking-service-option[data-gift-only] .opt-duration { color: var(--rose-600); }
.gift-hint {
  font-size: 0.85rem; color: var(--ink-faint); font-weight: 300;
  margin: 0.9rem 0 0.75rem;
}
#gift-continue { margin-top: 0.25rem; }
#switch-to-gift { margin-top: 1rem; color: var(--rose-600); }
#switch-to-gift:hover { color: var(--rose-700); }
.booking-service-option {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; background: var(--white);
  border: 1.5px solid var(--line); border-radius: var(--r-md);
  text-align: left; width: 100%;
  transition: border-color var(--t-fast), background-color var(--t-fast), transform var(--t-fast);
}
.booking-service-option:hover { border-color: var(--rose-300); transform: translateX(3px); }
.booking-service-option.is-selected { border-color: var(--rose-600); background: var(--blush-wash); }
.opt-name { font-family: var(--font-display); font-weight: 500; font-size: 0.97rem; }
.opt-duration { display: block; font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.15rem; }
.opt-price { font-family: var(--font-display); font-size: 1.05rem; color: var(--rose-600); flex: none; }

/* Preferred days / times — chips, not a fake diary */
.booking-slots-grid { display: grid; gap: 1.25rem; margin-bottom: 1.5rem; }
.slot-row { display: grid; gap: 0.6rem; }
.chip-set { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  padding: 0.55rem 1.05rem;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.87rem;
  transition: border-color var(--t-fast), background-color var(--t-fast), color var(--t-fast);
}
.chip:hover { border-color: var(--rose-300); }
.chip.is-selected { border-color: var(--rose-600); background: var(--rose-600); color: var(--white); }

.step-hint { font-size: 0.86rem; color: var(--ink-faint); font-weight: 300; margin: -0.5rem 0 1.1rem; }

/* Composed message */
.message-preview {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--rose-400);
  border-radius: var(--r-md);
  padding: 1.15rem 1.3rem;
  margin-bottom: 0.85rem;
}
.message-preview-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: 0.5rem;
}
.message-preview p { font-size: 0.96rem; line-height: 1.6; color: var(--ink-strong); }

.send-options { display: grid; gap: 0.6rem; margin-top: 1.5rem; }

/* WhatsApp and SMS both carry the message itself; Messenger cannot be
   pre-filled by anyone, so it sits below them. WhatsApp leads because wa.me
   works on desktop as well as phones. */
.send-options #send-whatsapp { order: -2; }
.send-options #send-sms      { order: -1; }
.send-hint {
  font-size: 0.8rem; color: var(--ink-faint); font-weight: 300;
  text-align: center; margin-top: 0.5rem;
}
.send-note {
  font-size: 0.83rem; color: var(--ink-faint); font-weight: 300;
  line-height: 1.55; text-align: center; margin-top: 1.1rem;
  transition: color var(--t-mid);
}
.send-note-active { color: var(--teal-600); }
.send-note-active strong { color: var(--teal-700); font-weight: 600; }

.btn-icon { width: 18px; height: 18px; flex: none; }

.booking-modal-sub {
  font-size: 0.9rem; color: var(--ink-muted); font-weight: 300;
  line-height: 1.55; margin: -0.75rem 0 1.3rem;
}
.booking-group-label {
  font-family: var(--font-display);
  font-size: 0.63rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-faint);
  margin: 1.1rem 0 0.15rem;
}
.booking-group-label:first-child { margin-top: 0; }

body.is-locked { overflow: hidden; }

/* ─────────────── 14b. New sections ─────────────── */

/* Hero booking note */
.hero-booking-note {
  display: flex; align-items: flex-start; gap: 0.65rem;
  background: var(--teal-100);
  border-radius: var(--r-md);
  padding: 0.9rem 1.15rem;
  font-size: 0.88rem; line-height: 1.55; font-weight: 300;
  color: var(--teal-700);
  margin-bottom: 2.2rem;
  max-width: 33rem;
}
.hero-booking-note svg { width: 18px; flex: none; margin-top: 2px; color: var(--teal-500); }
.hero-booking-note-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.hero-booking-note-link:hover { color: var(--teal-500); border-color: var(--teal-500); }

/* A second heading inside a service card */
/* the gift button sits under a blurb, so it needs air above it */
.btn-gift { margin-top: 1.35rem; }

.category-header-inline {
  margin-top: 1.6rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.service-item .service-meta { flex: 1; }

/* Combinations */
.combos {
  margin-top: 2.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.combos-header { margin-bottom: 1.25rem; }
.combos-header .section-eyebrow { margin-bottom: 0.7rem; }
.combos-title { font-size: var(--step-2); margin-bottom: 0.5rem; }
.combos-note { font-size: 0.92rem; color: var(--ink-muted); font-weight: 300; line-height: 1.55; max-width: 32rem; }
.combos-list { display: grid; gap: 0; }
.combo-item {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1.25rem; padding-block: 0.95rem;
  border-top: 1px solid var(--line-soft);
}
.combo-name { font-size: 0.95rem; color: var(--ink-muted); font-weight: 300; line-height: 1.5; }
.combo-name em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-inline: 0.3rem;
  white-space: nowrap;
}
.combo-name strong { color: var(--ink-strong); font-weight: 600; }
.combo-price {
  font-family: var(--font-display); font-size: 1.2rem;
  color: var(--rose-600); flex: none;
}
.combo-item-feature {
  background: var(--blush-wash);
  border-radius: var(--r-md);
  border-top: 0;
  margin-top: 0.75rem;
  padding-inline: 1.15rem;
}
.combo-item-feature .combo-price { font-size: 1.45rem; }

/* Massage styles */
.styles-section { padding-block: var(--section-y); }
.styles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.style-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  display: flex; flex-direction: column;
  transition: transform var(--t-mid), box-shadow var(--t-mid);
}
.style-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.style-number {
  font-family: var(--font-display);
  font-size: 0.72rem; letter-spacing: 0.22em;
  color: var(--rose-400);
  margin-bottom: 1rem;
}
.style-name { font-size: var(--step-2); margin-bottom: 0.8rem; }
.style-body { color: var(--ink-muted); font-weight: 300; line-height: 1.65; font-size: 0.95rem; flex: 1; text-wrap: pretty; }
.style-tag {
  display: inline-block; align-self: flex-start;
  margin-top: 1.5rem; padding: 0.4rem 0.9rem;
  background: var(--blush-wash); color: var(--rose-600);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
}

/* Before you book */
.policy-section {
  padding-block: var(--section-y);
  background: var(--paper-warm);
  border-block: 1px solid var(--line);
}
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  align-items: start;
}
.policy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 1.9rem);
  height: 100%;
}
.policy-card-primary {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: #EAF2F3;
  grid-column: span 2;
}
.policy-card-primary .policy-title { color: var(--white); }
.policy-card-primary a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,.45); }
.policy-card-primary a:hover { border-bottom-color: var(--white); }
.policy-card-primary strong { color: var(--white); font-weight: 600; }

.policy-title {
  font-size: 1.25rem;
  margin-bottom: 0.9rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line-soft);
}
.policy-card-primary .policy-title { border-bottom-color: rgba(255,255,255,.25); }

.policy-card p { font-size: 0.93rem; line-height: 1.65; font-weight: 300; color: var(--ink-muted); }
.policy-card-primary p { color: #E3EEEF; }
.policy-card p + p { margin-top: 0.8rem; }
.policy-card a { color: var(--rose-600); border-bottom: 1px solid var(--rose-200); }

.policy-list { display: grid; gap: 0.7rem; }
.policy-list li {
  position: relative; padding-left: 1.5rem;
  font-size: 0.93rem; line-height: 1.6; font-weight: 300; color: var(--ink-muted);
}
.policy-list li::before {
  content: ''; position: absolute; left: 0; top: 0.62em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--rose-400);
}
.policy-list strong { color: var(--ink-strong); font-weight: 600; }
.policy-note {
  margin-top: 1.1rem; padding-top: 0.9rem;
  border-top: 1px solid var(--line-soft);
  font-family: var(--font-display);
  font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint);
}

/* Real logo artwork */
.logo { display: flex; align-items: center; margin-right: auto; }
.logo-lockup   { height: 66px; width: auto; }
.logo-mark-only{ height: 46px; width: auto; display: none; }
.footer-logo-img { width: 100%; max-width: 300px; height: auto; margin-bottom: 1.25rem; }

/* ─────────────── 15. Scroll reveal ─────────────── */
.reveal > * { opacity: 0; transform: translateY(26px); }
.reveal.is-visible > * { opacity: 1; transform: none; transition: opacity 720ms var(--ease), transform 720ms var(--ease); }
html.no-js .reveal > * { opacity: 1; transform: none; }

/* ─────────────── 16. Responsive ─────────────── */
@media (max-width: 1000px) {
  .hero-container { grid-template-columns: 1fr; }
  .hero-image-wrapper { order: -1; max-width: 460px; }
  .hero-image-frame { aspect-ratio: 4 / 3; border-radius: var(--r-xl); }

  .explorer-content-grid { grid-template-columns: 1fr; min-height: 0; }
  .explorer-visual-area { border-right: 0; border-bottom: 1px solid var(--line); }
  .svg-container { max-width: 210px; }

  .about-columns { grid-template-columns: 1fr; }

  .contact-container { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  :root { --header-h: 74px; }

  .main-nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    padding: 1rem var(--gutter) 1.75rem; display: none;
  }
  .main-nav.is-open { display: block; animation: fade-up 260ms var(--ease) both; }
  .nav-list { flex-direction: column; gap: 0; }
  .nav-link { padding: 0.9rem 0.25rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); border-radius: 0; }
  .nav-link:hover { background: none; }

  .mobile-nav-toggle { display: flex; order: 3; }
  .header-phone { display: none; }
  .header-facebook { display: none; }
  .header-actions { order: 2; gap: 0.5rem; }
  .btn-book { padding: 0.65rem 1.2rem; font-size: 0.88rem; }
  .logo-lockup { display: none; }
  .logo-mark-only { display: block; }

  .explorer-tabs { grid-template-columns: 1fr; }
  .explorer-tab { flex-direction: row; justify-content: space-between; padding: 0.95rem 1.25rem; }
  .explorer-tab + .explorer-tab { border-left: 0; border-top: 1px solid var(--line); }
  .explorer-tab.is-active::after { inset: 0 auto 0 0; width: 3px; height: auto; }

  .services-footer { flex-direction: column; align-items: stretch; }
  .services-footer .btn { width: 100%; }

  /* one tidy scrolling line rather than ragged wraps */
  .strip-inner {
    flex-wrap: nowrap; justify-content: flex-start;
    overflow-x: auto; scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .strip-inner::-webkit-scrollbar { display: none; }
  .strip-inner > span:not(.strip-dot) { white-space: nowrap; }
}

@media (max-width: 780px) {
  .policy-card-primary { grid-column: span 1; }
}

@media (max-width: 700px) {
  /* The stats wrap to one per line here, and a vertical divider tagging along
     beside each one shunts the text off centre. Stack them instead. */
  .about-stats-row { flex-direction: column; gap: 1.4rem; }
  .stat-divider { display: none; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .service-item { flex-direction: column; gap: 0.6rem; }
  .service-price-block { text-align: left; display: flex; align-items: baseline; gap: 0.8rem; }
  .service-duration { margin-bottom: 0; }
  .footer-container { grid-template-columns: 1fr; }
  .about-stats-row { gap: 1.25rem 2rem; }
}

@media (max-width: 400px) {
  .logo-mark-only { height: 40px; }
}

/* ─────────────── 17. Motion & print ─────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal > * { opacity: 1; transform: none; }
  .marker-halo { animation: none; opacity: .4; }
}

@media print {
  .site-header, .modal-overlay, .hero-actions, .services-footer .btn, .btn-book { display: none !important; }
  body { background: #fff; }
  .reveal > * { opacity: 1; transform: none; }
}

/* Authentic Facebook mark — full colour, so it keeps its own blue rather than
   inheriting the link colour like the site's own icons do. */
.fb-logo { width: 20px; height: 20px; flex: none; }
.btn .fb-logo { width: 18px; height: 18px; }
