/* ==========================================================================
   Roong Thai Massage — Egham, Surrey
   Design system: warm-neutral "quiet luxury" spa palette, editorial serif
   display type, airy whitespace, arch image masks, soft scroll reveals.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink:          #17211d;
  --ink-soft:     #3d4b45;
  --muted:        #6d7c75;
  --forest:       #1e3a32;
  --forest-deep:  #13261f;
  --sand:         #f6f1e8;
  --sand-deep:    #ece4d6;
  --cream:        #fffcf7;
  --brass:        #a97f43;
  --brass-lt:     #d6b787;
  --line:         rgba(30, 58, 50, .14);
  --line-soft:    rgba(30, 58, 50, .08);

  --font-display: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap:      1220px;
  --wrap-slim: 800px;
  --gutter:    clamp(1.25rem, 4vw, 3rem);
  --sect:      clamp(4.5rem, 10vw, 9rem);
  --radius:    18px;

  --shadow-sm: 0 2px 10px rgba(19, 38, 31, .06);
  --shadow-md: 0 18px 50px -22px rgba(19, 38, 31, .35);
  --shadow-lg: 0 40px 90px -40px rgba(19, 38, 31, .45);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* `clip` (not `hidden`) — `hidden` would turn <body> into a scroll container
     and break sticky/scroll behaviour in some browsers. */
  overflow-x: clip;
}

img, picture, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding: 0; list-style: none; }

::selection { background: var(--brass-lt); color: var(--forest-deep); }

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

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--forest); color: #fff; padding: .85rem 1.4rem;
  border-radius: 0 0 10px 0; font-size: .9rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--forest-deep);
  line-height: 1.1;
  letter-spacing: -.015em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
  text-wrap: balance;
}

.display-xl { font-size: clamp(2.9rem, 1.6rem + 6vw, 6.2rem); line-height: .98; letter-spacing: -.03em; }
.display-lg { font-size: clamp(2.3rem, 1.5rem + 3.6vw, 4.1rem); line-height: 1.04; letter-spacing: -.025em; }
.display-md { font-size: clamp(1.85rem, 1.35rem + 2.2vw, 3rem); line-height: 1.1; }
.display-sm { font-size: clamp(1.35rem, 1.15rem + .9vw, 1.85rem); line-height: 1.22; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: .55;
}
.eyebrow--center::after {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: .55;
}

.lede {
  font-size: clamp(1.08rem, 1rem + .45vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}

p { text-wrap: pretty; }
p + p { margin-top: 1.1em; }

.prose > * + * { margin-top: 1.15em; }
.prose h2 { margin-top: 2.2em; }
.prose h3 { margin-top: 1.8em; }
.prose a {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-color: var(--brass-lt);
  text-underline-offset: .22em;
  text-decoration-thickness: 1px;
  transition: text-decoration-color .25s var(--ease);
}
.prose a:hover { text-decoration-color: var(--brass); }
.prose strong { color: var(--forest-deep); font-weight: 600; }

/* inline "Related: <article>" pointer at a section break */
.inline-related {
  font-size: .84rem; color: var(--muted);
  padding: .55rem 0 .55rem 1rem;
  border-left: 2px solid var(--brass-lt);
  margin-block: 1.4rem;
}
.inline-related a { color: var(--forest); font-weight: 500; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.container--slim { max-width: var(--wrap-slim); }
.section { padding-block: var(--sect); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--sand { background: var(--sand); }
.section--forest { background: var(--forest-deep); color: rgba(255, 253, 247, .8); }
.section--forest h1, .section--forest h2, .section--forest h3 { color: var(--cream); }
.section--forest .eyebrow { color: var(--brass-lt); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.measure { max-width: 62ch; }
.measure-center { max-width: 62ch; margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  white-space: nowrap;
  padding: 1.02rem 1.9rem;
  font-size: .85rem; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease),
              box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--forest); color: var(--cream); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--forest-deep); box-shadow: var(--shadow-lg); }

.btn--brass { background: var(--brass); color: #fff; }
.btn--brass:hover { background: #946d36; }

.btn--ghost { border-color: currentColor; color: var(--forest); background: transparent; }
.btn--ghost:hover { background: var(--forest); color: var(--cream); border-color: var(--forest); }

.btn--light { border-color: rgba(255, 253, 247, .45); color: var(--cream); background: transparent; }
.btn--light:hover { background: var(--cream); color: var(--forest-deep); border-color: var(--cream); }

.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.2rem; }
.center .btn-row { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brass); text-decoration: none;
  padding-bottom: .3rem;
  border-bottom: 1px solid rgba(169, 127, 67, .35);
  transition: gap .3s var(--ease), border-color .3s var(--ease);
}
.link-arrow:hover { gap: .95rem; border-color: var(--brass); }
.link-arrow svg { flex: none; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 1.15rem;
  transition: background-color .4s var(--ease), padding .4s var(--ease),
              box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.5rem); }

.header.is-scrolled,
.header.is-solid {
  background: rgba(255, 252, 247, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line-soft);
  padding-block: .7rem;
  box-shadow: 0 1px 24px rgba(19, 38, 31, .05);
}

/* flex: none is load-bearing — without it the nav squeezes the lockup */
.brand {
  display: flex; align-items: center; gap: .85rem;
  text-decoration: none; flex: none;
}
.brand__mark { flex: none; width: 46px; height: 46px; transition: transform .5s var(--ease); }
.brand:hover .brand__mark { transform: rotate(-8deg) scale(1.04); }
.brand__text { display: flex; flex-direction: column; line-height: 1; white-space: nowrap; }
.brand__name {
  font-family: var(--font-display); font-size: 1.42rem; color: var(--forest-deep);
  letter-spacing: -.005em; font-weight: 400;
}
.brand__sub {
  font-size: .56rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--brass); font-weight: 600; margin-top: .34rem;
}
.header.is-scrolled .brand__mark, .header.is-solid .brand__mark { width: 42px; height: 42px; }

/* header over dark hero */
.header--over-hero:not(.is-scrolled) .brand__name { color: var(--cream); }
.header--over-hero:not(.is-scrolled) .brand__sub  { color: var(--brass-lt); }
.header--over-hero:not(.is-scrolled) .nav__link   { color: rgba(255, 253, 247, .88); }
.header--over-hero:not(.is-scrolled) .nav__link::after { background: var(--brass-lt); }
.header--over-hero:not(.is-scrolled) .burger span { background: var(--cream); }
.header--over-hero:not(.is-scrolled) .brand__mark path[data-fill="ink"] { fill: var(--cream); }

.nav {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.1rem, 2.2vw, 2.3rem);
  flex: 1 1 auto;
}
.nav__item { position: relative; display: flex; }
.nav__link {
  position: relative;
  display: inline-flex; align-items: center; gap: .42rem;
  font-family: var(--font-body);
  font-size: .84rem; font-weight: 500; letter-spacing: .01em;
  color: var(--ink-soft); text-decoration: none;
  padding: .35rem 0;
  background: none; border: 0; cursor: pointer;
  transition: color .25s var(--ease);
  white-space: nowrap;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--brass);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after,
.nav__link[aria-current="true"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"], .nav__link[aria-current="true"] { color: var(--brass); }
.nav__link:hover { color: var(--brass); }
.nav__chev { transition: transform .3s var(--ease); margin-top: 1px; }

/* --- Treatments dropdown --- */
.submenu {
  position: absolute; top: 100%; left: 50%;
  transform: translate(-50%, 8px);
  margin-top: 1.15rem;
  min-width: 268px;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .28s var(--ease), transform .28s var(--ease), visibility .28s;
  z-index: 10;
}
/* bridges the gap between the trigger and the panel so hover doesn't drop */
.submenu::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1.15rem; height: 1.15rem;
}
.submenu::after {
  content: ""; position: absolute; top: -6px; left: 50%; width: 11px; height: 11px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--cream);
  border-left: 1px solid var(--line-soft); border-top: 1px solid var(--line-soft);
  border-radius: 2px 0 0 0;
}
@media (hover: hover) {
  .nav__item--menu:hover .submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
  .nav__item--menu:hover .nav__chev { transform: rotate(180deg); }
}
.nav__item--menu:focus-within .submenu,
.nav__item--menu.is-open .submenu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav__item--menu.is-open .nav__chev { transform: rotate(180deg); }

.submenu__link {
  display: flex; flex-direction: column; gap: .12rem;
  padding: .72rem .9rem;
  border-radius: 9px;
  text-decoration: none;
  transition: background-color .22s var(--ease);
}
.submenu__link:hover { background: var(--sand); }
.submenu__title {
  font-family: var(--font-display); font-size: 1.02rem; color: var(--forest-deep);
  line-height: 1.2;
}
.submenu__desc { font-size: .74rem; color: var(--muted); letter-spacing: .01em; }
.submenu__link[aria-current="page"] .submenu__title { color: var(--brass); }
.submenu__link[aria-current="page"] { background: var(--sand); }

.header__actions { display: flex; align-items: center; gap: .9rem; flex: none; }
.header .btn { padding: .8rem 1.35rem; font-size: .75rem; letter-spacing: .06em; }
.btn--tel { gap: .5rem; font-variant-numeric: tabular-nums; }
.btn--tel svg { flex: none; opacity: .85; }

.burger {
  display: none; position: relative;
  width: 46px; height: 46px;
  background: none; border: 0; cursor: pointer; padding: 0;
}
.burger span {
  position: absolute; left: 11px; width: 24px; height: 1.5px;
  background: var(--forest-deep); border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s var(--ease), background-color .3s var(--ease);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Breakpoints are chosen so a phone CTA is always on screen:
   >=1001px  full nav + phone pill
   781-1000  burger + phone pill
   <=780px   burger, with the sticky Call/Book bar taking over  */
@media (max-width: 1000px) {
  .nav { display: none; }
  .burger { display: block; }
}
@media (max-width: 780px) {
  .header__actions .btn { display: none; }
}

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99;
  background: var(--forest-deep);
  padding: 6.5rem var(--gutter) 2.5rem;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__link {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 5.4vw, 2rem);
  color: var(--cream); text-decoration: none;
  padding-block: .55rem;
  border-bottom: 1px solid rgba(255, 253, 247, .1);
  transition: color .25s var(--ease), padding-left .3s var(--ease);
}
.drawer__link:hover, .drawer__link[aria-current="page"] { color: var(--brass-lt); padding-left: .5rem; }
.drawer__label {
  font-size: .62rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--brass-lt); margin-top: 1.5rem; margin-bottom: .35rem;
}
.drawer__link--sub {
  font-size: clamp(1.15rem, 4.4vw, 1.5rem);
  padding-left: 1rem;
  color: rgba(255, 253, 247, .84);
  border-bottom-color: rgba(255, 253, 247, .07);
}
.drawer__link--sub:hover, .drawer__link--sub[aria-current="page"] { padding-left: 1.5rem; }
.drawer__nav > .drawer__link--sub + .drawer__link:not(.drawer__link--sub) { margin-top: 1.5rem; }
.drawer__foot { margin-top: auto; padding-top: 2.5rem; color: rgba(255, 253, 247, .65); font-size: .9rem; }
.drawer__foot .btn { width: 100%; margin-top: 1.2rem; }
.drawer__tel {
  font-family: var(--font-display); font-size: 1.6rem; color: var(--cream);
  text-decoration: none; display: block; margin-top: .3rem;
}

body.nav-open { overflow: hidden; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-block: 9rem clamp(3rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--forest-deep);
  isolation: isolate;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  animation: kenburns 26s var(--ease) infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.14); } }
@media (prefers-reduced-motion: reduce) { .hero__media img { animation: none; } }

.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(19, 38, 31, .68) 0%, rgba(19, 38, 31, .30) 34%, rgba(19, 38, 31, .82) 100%),
    radial-gradient(120% 80% at 20% 90%, rgba(19, 38, 31, .55), transparent 65%);
}
.hero__inner { position: relative; z-index: 1; width: 100%; }
.hero .eyebrow { color: var(--brass-lt); }
.hero h1 { color: var(--cream); max-width: 15ch; }
.hero h1 .lineword { display: block; }
.hero h1 em {
  font-style: italic; color: var(--brass-lt);
  font-variation-settings: "SOFT" 40, "WONK" 1;
}
.hero__lede {
  margin-top: 1.8rem; max-width: 46ch;
  color: rgba(255, 253, 247, .84);
  font-size: clamp(1.05rem, .98rem + .45vw, 1.25rem);
}
.hero__meta {
  margin-top: 3rem; padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 253, 247, .18);
  display: flex; flex-wrap: wrap; gap: 1.4rem 3rem;
  color: rgba(255, 253, 247, .72); font-size: .84rem;
}
.hero__meta strong { display: block; color: var(--cream); font-weight: 500; font-size: .95rem; }
.hero__meta span { display: block; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: .3rem; }

.scroll-cue {
  position: absolute; right: var(--gutter); bottom: clamp(3rem, 8vw, 6rem); z-index: 2;
  writing-mode: vertical-rl;
  font-size: .64rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255, 253, 247, .6);
  display: flex; align-items: center; gap: 1rem;
  text-decoration: none;
}
.scroll-cue::after {
  content: ""; width: 1px; height: 54px;
  background: linear-gradient(180deg, var(--brass-lt), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0%, 100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 900px) { .scroll-cue { display: none; } }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; background: var(--forest-deep); isolation: isolate;
  /* Kept deliberately tight: on treatment pages the price bar sits directly
     below this, and it needs to land inside the first screen on a small phone. */
  padding-block: clamp(7.25rem, 12vw, 9.5rem) clamp(2.4rem, 4.5vw, 3.5rem);
  overflow: hidden;
}
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(19, 38, 31, .82), rgba(19, 38, 31, .62) 50%, rgba(19, 38, 31, .88));
}
.page-hero h1 { color: var(--cream); max-width: 18ch; }
.page-hero .eyebrow { color: var(--brass-lt); }
.page-hero__lede { margin-top: 1.4rem; max-width: 55ch; color: rgba(255, 253, 247, .82); }

.crumbs {
  display: flex; flex-wrap: wrap; align-items: center; gap: .55rem;
  font-size: .74rem; letter-spacing: .08em; margin-bottom: 1.6rem;
  color: rgba(255, 253, 247, .55);
}
.crumbs a { color: rgba(255, 253, 247, .8); text-decoration: none; }
.crumbs a:hover { color: var(--brass-lt); }
.crumbs li { display: flex; align-items: center; gap: .55rem; }
.crumbs li + li::before { content: "/"; opacity: .45; }

/* ---------- Price bar (directly under the hero on treatment pages) ---------- */
.price-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(1.3rem, 2.6vw, 2rem);
}
.price-bar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: clamp(1.2rem, 4vw, 3rem); flex-wrap: wrap;
}
.price-bar__prices { display: flex; gap: clamp(1.75rem, 5vw, 4rem); flex-wrap: wrap; }
.price-bar__item { display: flex; flex-direction: column; gap: .3rem; }
.price-bar__item span {
  font-size: .66rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brass);
}
.price-bar__item strong {
  font-family: var(--font-display); font-weight: 400; line-height: 1;
  font-size: clamp(1.85rem, 1.35rem + 1.7vw, 2.6rem);
  color: var(--forest-deep);
}
.price-bar__actions { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.price-bar .btn { padding: .85rem 1.5rem; font-size: .74rem; }
@media (max-width: 760px) {
  /* Compact enough to clear the fold on a 667px-tall phone */
  .price-bar { padding-block: 1.1rem; }
  .price-bar__inner { flex-direction: column; align-items: stretch; gap: 1rem; }
  .price-bar__prices { gap: 2.25rem; }
  .price-bar__item { flex-direction: row; align-items: baseline; gap: .55rem; }
  .price-bar__item strong { font-size: 1.75rem; }
  .price-bar__actions { width: 100%; gap: .6rem; }
  .price-bar__actions .btn { flex: 1 1 auto; justify-content: center; padding: .8rem 1rem; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--forest-deep); color: rgba(255, 253, 247, .55);
  padding-block: 1.05rem; overflow: hidden;
  border-block: 1px solid rgba(255, 253, 247, .08);
}
.marquee__track { display: flex; width: max-content; animation: slide 42s linear infinite; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 2.2rem; padding-inline: 1.1rem;
  font-family: var(--font-display); font-size: 1.02rem; white-space: nowrap;
}
.marquee__item::after { content: "✦"; color: var(--brass); font-size: .6rem; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Split (alternating image + text) ---------- */
.split {
  display: grid; gap: clamp(2.5rem, 6vw, 5.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .split--wide-text { grid-template-columns: .85fr 1fr; }
}
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }

.arch { border-radius: 999px 999px var(--radius) var(--radius) !important; overflow: hidden; }
.arch img { border-radius: inherit; }

.media-badge {
  position: absolute; bottom: -1.4rem; right: -1rem;
  background: var(--cream); border: 1px solid var(--line);
  border-radius: 14px; padding: 1rem 1.3rem;
  box-shadow: var(--shadow-md); text-align: center;
}
.media-badge strong {
  display: block; font-family: var(--font-display); font-size: 1.9rem;
  color: var(--forest-deep); line-height: 1;
}
.media-badge span {
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass);
}
@media (max-width: 560px) { .media-badge { right: .5rem; bottom: -1rem; padding: .8rem 1rem; } }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 1.1rem; margin-top: 2rem; }
.checklist li { position: relative; padding-left: 2.1rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 12px; height: 7px; border-left: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass);
  transform: rotate(-45deg);
}
.checklist strong { color: var(--forest-deep); font-weight: 600; }
.section--forest .checklist li::before { border-color: var(--brass-lt); }
.section--forest .checklist strong { color: var(--cream); }

.bullets { display: grid; gap: .85rem; margin-top: 1.6rem; }
.bullets li { position: relative; padding-left: 1.6rem; }
.bullets li::before {
  content: ""; position: absolute; left: 0; top: .72em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass);
}
.bullets--two { grid-template-columns: 1fr; }
@media (min-width: 760px) { .bullets--two { grid-template-columns: 1fr 1fr; gap: .85rem 2.5rem; } }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: clamp(1.5rem, 3vw, 2.2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.card {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--line); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand-deep); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.7rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 1.4rem; margin-bottom: .7rem; }
.card__text { font-size: .95rem; color: var(--muted); flex: 1; }
.card__foot {
  margin-top: 1.5rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.card__price { font-family: var(--font-display); color: var(--forest-deep); font-size: 1.05rem; }
.card__cta {
  font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--brass);
  display: inline-flex; align-items: center; gap: .45rem;
  transition: gap .3s var(--ease);
}
.card:hover .card__cta { gap: .85rem; }

/* ---------- Numbered feature list ---------- */
.feature { padding-top: 1.9rem; border-top: 1px solid var(--line); }
.feature__num {
  font-family: var(--font-display); font-size: .95rem; color: var(--brass);
  display: block; margin-bottom: .9rem; letter-spacing: .05em;
}
.feature h3 { font-size: 1.25rem; margin-bottom: .6rem; }
.feature p { font-size: .95rem; color: var(--muted); }
.section--forest .feature { border-color: rgba(255, 253, 247, .16); }
.section--forest .feature p { color: rgba(255, 253, 247, .68); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; }
.stat strong {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.4rem, 1.6rem + 2.4vw, 3.4rem); line-height: 1; color: var(--forest-deep);
}
.stat span {
  display: block; margin-top: .7rem; font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--brass);
}
.section--forest .stat strong { color: var(--cream); }
.section--forest .stat span { color: var(--brass-lt); }

/* ---------- Reviews ---------- */
.reviews { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.review {
  background: var(--cream); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 2rem 1.9rem; display: flex; flex-direction: column;
}
.section--sand .review { background: #fff; }
.review__stars { color: var(--brass); letter-spacing: .18em; font-size: .9rem; margin-bottom: 1.1rem; }
.review__text { font-size: .97rem; color: var(--ink-soft); flex: 1; }
.review__who {
  margin-top: 1.5rem; padding-top: 1.1rem; border-top: 1px solid var(--line-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .82rem; color: var(--muted);
}
.review__who strong { color: var(--forest-deep); font-weight: 600; font-size: .9rem; }
.review__src { display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }

/* ---------- Prices ---------- */
.pricing {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-sm);
}
.section--sand .pricing { background: #fff; }
.price-row {
  display: flex; align-items: baseline; gap: 1rem;
  padding-block: 1.15rem; border-bottom: 1px dashed var(--line);
}
.price-row:last-of-type { border-bottom: 0; }
.price-row__name { font-family: var(--font-display); font-size: 1.2rem; color: var(--forest-deep); }
.price-row__dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.price-row__value { font-family: var(--font-display); font-size: 1.45rem; color: var(--brass); }
.price-note { margin-top: 1.5rem; font-size: .85rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding-block: 1.5rem;
  font-family: var(--font-display); font-size: clamp(1.05rem, 1rem + .35vw, 1.28rem);
  color: var(--forest-deep); line-height: 1.35;
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brass); }
.faq summary::after {
  content: ""; flex: none; width: 13px; height: 13px; margin-top: .45em;
  border-right: 1.5px solid var(--brass); border-bottom: 1.5px solid var(--brass);
  transform: rotate(45deg); transition: transform .35s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq__answer { padding-bottom: 1.7rem; max-width: 74ch; color: var(--muted); }
.faq details[open] .faq__answer { animation: fadeUp .45s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--forest-deep); color: rgba(255, 253, 247, .8);
  padding-block: clamp(4rem, 9vw, 7rem);
  text-align: center;
}
.cta-band__media { position: absolute; inset: 0; z-index: -2; opacity: .28; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(80% 120% at 50% 50%, rgba(19, 38, 31, .55), rgba(19, 38, 31, .95));
}
.cta-band h2 { color: var(--cream); }
.cta-band .eyebrow { color: var(--brass-lt); justify-content: center; }
.cta-band p { max-width: 55ch; margin-inline: auto; margin-top: 1.2rem; }

/* ---------- Contact / forms ---------- */
.contact-grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); grid-template-columns: 1fr; }
@media (min-width: 950px) { .contact-grid { grid-template-columns: 1fr 1.05fr; } }

.info-block + .info-block { margin-top: 2.2rem; padding-top: 2.2rem; border-top: 1px solid var(--line); }
.info-block h3 {
  font-family: var(--font-body); font-size: .72rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--brass); margin-bottom: .9rem;
}
.info-block address { font-style: normal; font-size: 1.02rem; line-height: 1.75; color: var(--ink-soft); }
.info-block a { color: var(--forest-deep); text-decoration: none; border-bottom: 1px solid var(--brass-lt); }
.info-block a:hover { color: var(--brass); }
.big-tel {
  font-family: var(--font-display); font-size: clamp(1.7rem, 1.2rem + 2vw, 2.4rem);
  color: var(--forest-deep); text-decoration: none; border: 0 !important; display: inline-block;
  transition: color .25s var(--ease);
}
.big-tel:hover { color: var(--brass); }

.hours { font-size: .98rem; }
.hours li {
  display: flex; justify-content: space-between; gap: 1.5rem;
  padding-block: .55rem; border-bottom: 1px dashed var(--line);
}
.hours li:last-child { border-bottom: 0; }
.hours span:first-child { color: var(--ink-soft); }
.hours span:last-child { color: var(--forest-deep); font-variant-numeric: tabular-nums; }
.section--forest .hours li { border-color: rgba(255, 253, 247, .16); }
.section--forest .hours span:first-child { color: rgba(255, 253, 247, .7); }
.section--forest .hours span:last-child { color: var(--cream); }

/* Panel on the contact page (previously the enquiry form; bookings are by
   phone only, so it now holds the how-to-book steps). */
.form-card {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.7rem, 4vw, 2.8rem);
  box-shadow: var(--shadow-sm);
}
.section--sand .form-card { background: #fff; }
.form-consent {
  font-size: .85rem; color: var(--muted); margin-top: 1.4rem;
  padding-top: 1.3rem; border-top: 1px solid var(--line-soft);
}
.form-consent a { color: var(--forest); text-decoration: underline;
  text-decoration-color: var(--brass-lt); text-underline-offset: .2em; }
.form-card .btn { width: 100%; }

/* Numbered "how to book" steps */
.steps { display: grid; gap: 1.6rem; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step__num {
  flex: none; font-family: var(--font-display); font-size: .92rem;
  color: var(--brass); letter-spacing: .05em;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: .1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.step p { font-size: .93rem; color: var(--muted); }
.step a { color: var(--forest); text-decoration: underline;
  text-decoration-color: var(--brass-lt); text-underline-offset: .2em; }
.step a:hover { text-decoration-color: var(--brass); }

.map-frame {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); line-height: 0; background: var(--sand-deep);
}
.map-frame iframe { width: 100%; height: 420px; border: 0; }

/* ---------- Areas served ---------- */
.areas { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.areas li {
  padding: .5rem 1.05rem; border: 1px solid var(--line); border-radius: 999px;
  font-size: .82rem; color: var(--ink-soft); background: var(--cream);
}
.section--forest .areas li { border-color: rgba(255, 253, 247, .2); color: rgba(255, 253, 247, .8); background: transparent; }

/* ---------- Footer ---------- */
.footer { background: var(--forest-deep); color: rgba(255, 253, 247, .68); padding-block: clamp(3.5rem, 7vw, 5.5rem) 0; }
.footer__grid { display: grid; gap: 2.8rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.3fr 1fr 1fr; } }
@media (min-width: 1050px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.1fr; } }
.footer h4 {
  font-family: var(--font-body); font-size: .7rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--brass-lt); margin-bottom: 1.25rem;
}
.footer a { color: rgba(255, 253, 247, .72); text-decoration: none; transition: color .25s var(--ease); }
.footer a:hover { color: var(--brass-lt); }
.footer address { font-style: normal; line-height: 1.85; font-size: .95rem; }
.footer__links li { padding-block: .3rem; font-size: .95rem; }
.footer .brand__name { color: var(--cream); font-size: 1.5rem; }
.footer__blurb { margin-top: 1.2rem; font-size: .93rem; max-width: 34ch; }
.footer .hours { font-size: .88rem; }
.footer__bottom {
  margin-top: clamp(3rem, 6vw, 4.5rem); padding-block: 1.6rem;
  border-top: 1px solid rgba(255, 253, 247, .12);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .82rem; color: rgba(255, 253, 247, .5);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.mobile-bar.is-visible { transform: none; }
.mobile-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1.05rem .35rem; text-decoration: none;
  font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: var(--cream); color: var(--forest-deep);
  white-space: nowrap;
}
.mobile-bar a.is-accent { background: var(--forest); color: var(--cream); }
/* three items have to survive a 320px screen */
@media (max-width: 360px) {
  .mobile-bar a { font-size: .66rem; letter-spacing: .06em; padding-inline: .2rem; }
}
@media (max-width: 780px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 56px; }
  .footer__bottom { padding-bottom: 1.6rem; }
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); }
.js .reveal { transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .09s; }
.reveal[data-delay="2"] { transition-delay: .18s; }
.reveal[data-delay="3"] { transition-delay: .27s; }
.reveal[data-delay="4"] { transition-delay: .36s; }
html:not(.js) .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.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;
}
.rule { height: 1px; background: var(--line); border: 0; margin-block: clamp(2.5rem, 5vw, 4rem); }
