/* ==========================================================================
   At Yours Massages — stylesheet
   Calm, coastal, unhurried. Two typefaces, a warm linen palette,
   soft arches and plenty of breathing room.

   Colours live in :root below. Change them there and the whole site follows.
   ========================================================================== */

/* ---- fonts (self-hosted, no Google calls) ------------------------------- */
@font-face {
  font-family: "Cormorant";
  src: url("../fonts/cormorant.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("../fonts/cormorant-italic.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost.woff2") format("woff2");
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --linen:  #f7f1e9;   /* page background            */
  --shell:  #efe5d8;   /* soft panels                */
  --sand:   #dab396;   /* the original brand tan     */
  --clay:   #8c5a3c;   /* accent text, links         */
  --clay-2: #b07a58;   /* accent graphics            */
  --ink:    #2b2724;   /* body text                  */
  --muted:  #6d645c;   /* secondary text             */
  --line:   #e2d5c5;   /* hairlines                  */
  --deep:   #1f2c2b;   /* dark sections (sea at dusk)*/
  --deep-2: #2a3b39;
  --sage:   #a7b3a1;
  --white:  #fffdf9;
  --wa:     #25d366;   /* WhatsApp green             */

  --serif: "Cormorant", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 18px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --shadow: 0 24px 60px -30px rgba(43, 39, 36, .35);
}

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

body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 350;
  font-size: clamp(1rem, .96rem + .2vw, 1.1rem);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clay); text-decoration-thickness: 1px; text-underline-offset: .2em; }
a:hover { color: var(--ink); }
p { margin: 0 0 1.1em; }
strong { font-weight: 500; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.9rem, 1.6rem + 5.2vw, 5.6rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 1.5rem + 2.8vw, 3.6rem); font-weight: 300; }
h3 { font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); }
h1 em, h2 em, h3 em, .serif-em { font-style: italic; color: var(--clay); font-weight: 400; }

::selection { background: var(--sand); color: var(--ink); }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 4px; }

.wrap { width: min(100% - 2 * var(--gut), var(--wrap)); margin-inline: auto; }
.wrap--narrow { width: min(100% - 2 * var(--gut), 780px); margin-inline: auto; }

.skip {
  position: absolute; left: -999px; top: .5rem; z-index: 100;
  background: var(--ink); color: var(--white); padding: .6rem 1rem; border-radius: 8px;
}
.skip:focus { left: .5rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--clay);
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: ""; width: 2.2rem; height: 1px; background: currentColor; opacity: .6;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 2.2rem; height: 1px; background: currentColor; opacity: .6; }

.lead { font-size: clamp(1.08rem, 1rem + .35vw, 1.28rem); color: var(--muted); max-width: 36em; }

.section { padding-block: clamp(4.5rem, 3rem + 7vw, 9rem); position: relative; }
.section--shell { background: var(--shell); }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---- buttons --------------------------------------------------------------- */
.btn {
  --bg: var(--ink); --fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid var(--bg);
  background: var(--bg); color: var(--fg);
  font-family: var(--sans); font-size: .82rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; line-height: 1.2;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:hover { --bg: var(--clay); color: var(--white); transform: translateY(-1px); }
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(43,39,36,.3); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }
.btn--light { --bg: var(--linen); --fg: var(--ink); }
.btn--light:hover { --bg: var(--sand); color: var(--ink); }
.btn--sm { padding: .7rem 1.2rem; font-size: .74rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .8rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--sand); padding-bottom: .3rem;
  transition: gap .3s var(--ease), color .3s;
}
.link-arrow:hover { gap: .9rem; color: var(--clay); }
.link-arrow svg { width: 1rem; height: 1rem; }

/* ---- header ------------------------------------------------------------ */
.header {
  position: sticky; top: 0; z-index: 50;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.header.is-scrolled {
  background: rgba(247, 241, 233, .86);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 84px; }

.brand { display: inline-flex; align-items: center; gap: .8rem; text-decoration: none; color: var(--ink); }
.brand__mark { width: 46px; height: 46px; }
.brand__name { font-family: var(--serif); font-size: 1.55rem; line-height: 1; font-weight: 500; letter-spacing: .01em; }
.brand__name small {
  display: block; margin-top: .3rem;
  font-family: var(--sans); font-size: .62rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase; color: var(--muted);
}

.nav { display: flex; align-items: center; gap: 2.1rem; }
.nav a:not(.btn) {
  font-size: .8rem; font-weight: 450; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; position: relative; padding-block: .4rem;
}
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--clay); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav a:not(.btn):hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--clay); }

.burger {
  display: none; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
  cursor: pointer; align-items: center; justify-content: center; padding: 0;
}
.burger span, .burger span::before, .burger span::after {
  display: block; width: 18px; height: 1.5px; background: currentColor; position: relative;
  transition: transform .35s var(--ease), background .2s;
}
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; }
.burger span::before { top: -6px; }
.burger span::after  { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: inline-flex; position: relative; z-index: 60; }
  .nav {
    position: fixed; inset: 0; z-index: 55;
    flex-direction: column; justify-content: center; gap: 1.6rem;
    background: var(--linen);
    opacity: 0; visibility: hidden;
    transition: opacity .4s var(--ease), visibility .4s;
  }
  .nav.is-open { opacity: 1; visibility: visible; }
  .nav a:not(.btn) { font-family: var(--serif); font-size: 2.2rem; letter-spacing: 0; text-transform: none; font-weight: 300; }
  .nav .btn { margin-top: 1rem; }
  body.nav-open { overflow: hidden; }
}

/* ---- hero -------------------------------------------------------------- */
.hero { padding-block: clamp(2rem, 1rem + 4vw, 4.5rem) clamp(4rem, 3rem + 5vw, 7rem); position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero h1 { margin-bottom: .35em; }
.hero .lead { margin-bottom: 2.2rem; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; margin-top: 2.6rem;
  font-size: .86rem; color: var(--muted);
}
.hero__meta span { display: inline-flex; align-items: center; gap: .5rem; }
.hero__meta svg { width: 1rem; height: 1rem; color: var(--clay-2); }

.hero__visual { position: relative; justify-self: center; width: min(100%, 460px); }
.arch {
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden; position: relative; background: var(--shell);
  box-shadow: var(--shadow);
}
.arch img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.hero__visual .arch img { aspect-ratio: 4 / 5.4; }
.hero__visual::before {
  /* soft sand halo behind the arch */
  content: ""; position: absolute; inset: 8% -14% -6% 14%;
  border-radius: 999px 999px var(--radius) var(--radius);
  border: 1px solid var(--sand); z-index: -1;
}
.hero__small {
  position: absolute; left: -18%; bottom: 9%; width: 42%;
  border-radius: 50%; overflow: hidden; border: 8px solid var(--linen);
  box-shadow: var(--shadow);
}
.hero__small img { aspect-ratio: 1; object-fit: cover; width: 100%; }

.badge {
  position: absolute; right: -8%; top: 4%; width: 132px; height: 132px;
  color: var(--clay);
}
.badge svg { width: 100%; height: 100%; animation: spin 40s linear infinite; }
.badge__dot { position: absolute; inset: 0; display: grid; place-items: center; }
.badge__dot::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--clay-2); }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .badge svg { animation: none; } }

.hero__wave {
  /* only used on phones - see the 640px block below */
  display: none;
  position: absolute; left: 0; right: 0; bottom: -1px; width: 100%;
  height: clamp(78px, 22vw, 110px);
  color: var(--shell);   /* matches the section directly beneath the hero */
  pointer-events: none; z-index: 3;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { width: min(82%, 400px); margin-top: 1rem; }
  .hero__small { left: -14%; }
  .badge { width: 104px; height: 104px; right: -10%; }
}

/* On phones the stacked hero left the photo stranded below a wall of text.
   Instead the arch photo fills the section behind the words. The photograph is
   dark and moody, so the scrim is dark and the type goes light - a pale scrim
   heavy enough for dark text washes the image out to nothing. The small circle
   and the spinning badge are dropped here; they only crowd this width. */
@media (max-width: 640px) {
  .hero {
    padding-block: clamp(1.5rem, 1rem + 3vw, 2.5rem) clamp(11rem, 6rem + 26vw, 16rem);
  }
  .hero__grid { gap: 0; }
  .hero__visual { position: absolute; inset: 0; width: 100%; margin: 0; z-index: 0; }
  .hero__visual .arch {
    height: 100%; border-radius: 0; box-shadow: none; background: none;
  }
  .hero__visual .arch img {
    height: 100%; width: 100%; aspect-ratio: auto; object-fit: cover;
    object-position: 62% 26%;
  }
  .hero__visual::before,
  .hero__small,
  .badge { display: none; }

  .hero::after {
    content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(to bottom,
      rgba(31,44,43,.88) 0%,
      rgba(31,44,43,.80) 34%,
      rgba(31,44,43,.58) 60%,
      rgba(31,44,43,.34) 82%,
      rgba(31,44,43,.22) 100%);
  }

  .hero__text { position: relative; z-index: 2; }
  .hero__text h1,
  .hero__text .lead { color: var(--white); }
  .hero__text h1 em { color: var(--sand); }
  .hero__text .eyebrow { color: var(--sand); }   /* ::before inherits currentColor */
  .hero__meta { color: rgba(255,253,249,.84); }
  .hero__meta svg { color: var(--sand); }

  /* the primary button is dark by default, which vanishes on a dark scrim */
  .hero__text .btn { --bg: var(--white); --fg: var(--ink); }
  .hero__text .btn--ghost {
    --bg: transparent; color: var(--white); border-color: rgba(255,253,249,.55);
  }
  .hero__text .btn--ghost:hover { background: var(--white); color: var(--ink); }

  .hero__wave { display: block; }

  /* the hero already ends in a big stretch of photograph, so the section that
     follows does not need its full top padding as well */
  .hero + .section { padding-top: clamp(2.25rem, 1.5rem + 4vw, 3.5rem); }
  .hero + .section .ornament { margin-bottom: 1.1rem; }

  /* One left reading edge for everything, with the buttons stretched full
     width - the standard mobile pattern, and it keeps the four-line lead
     legible. Centring only the buttons left them with nothing to align to. */
  .hero__text .btn-row {
    flex-direction: column; align-items: stretch; gap: .75rem;
  }
  .hero__text .btn { width: 100%; }

  /* the three credentials sit centred under the buttons */
  .hero__meta {
    flex-direction: column; align-items: center; gap: .55rem; margin-top: 1.8rem;
  }
}

/* page hero (inner pages) */
.page-hero { padding-block: clamp(3rem, 2rem + 5vw, 6.5rem) clamp(2.5rem, 2rem + 3vw, 4.5rem); text-align: center; }
.page-hero h1 { font-size: clamp(2.7rem, 1.8rem + 4vw, 4.8rem); }
.page-hero .lead { margin-inline: auto; }

/* ---- statement --------------------------------------------------------- */
.statement {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.3rem);
  line-height: 1.22; text-align: center; margin: 0 auto; max-width: 20em;
}
.statement em { font-style: italic; color: var(--clay); }
.ornament { display: block; width: 64px; height: 24px; margin: 0 auto 2rem; color: var(--clay-2); }

/* ---- treatments (cards) ----------------------------------------------- */
.section-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 1.5rem 3rem; margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section-head h2 { margin: 0; max-width: 12em; }
.section-head p { max-width: 30em; margin: 0; color: var(--muted); }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem); }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 1px 0 var(--line);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__img { overflow: hidden; aspect-ratio: 4 / 5; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.card:hover .card__img img { transform: scale(1.04); }
.card__body { padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; flex: 1; }
.card__num { font-family: var(--serif); font-style: italic; color: var(--clay-2); font-size: 1.1rem; margin-bottom: .4rem; }
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--muted); }
.card__foot {
  margin-top: auto; padding-top: 1.4rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
}
.price-from { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.price-from b { font-family: var(--serif); font-size: 1.7rem; letter-spacing: 0; text-transform: none; color: var(--ink); font-weight: 500; margin-left: .3rem; }

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

/* ---- split (image + text) --------------------------------------------- */
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--rev { grid-template-columns: 1.1fr .9fr; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; }
.split__media .arch { max-width: 460px; }
.split__media .frame {
  position: absolute; inset: 7% auto -5% -6%; width: 70%;
  border: 1px solid var(--sand); border-radius: 999px 999px var(--radius) var(--radius); z-index: -1;
}
.signature { font-family: var(--serif); font-style: italic; font-size: 1.9rem; color: var(--clay); margin-top: .5rem; line-height: 1.2; }
.signature small { display: block; font-family: var(--sans); font-style: normal; font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }

blockquote.pull {
  margin: 1.6rem 0 2rem; padding-left: 1.4rem; border-left: 2px solid var(--sand);
  font-family: var(--serif); font-size: clamp(1.35rem, 1.1rem + .8vw, 1.7rem); font-style: italic;
  line-height: 1.4; color: var(--ink);
}

.ticks { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: .7rem; }
.ticks li { position: relative; padding-left: 2rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 1rem; height: 1rem;
  border-radius: 50%; border: 1px solid var(--clay-2);
  background: radial-gradient(circle, var(--clay-2) 0 2.5px, transparent 3px);
}

@media (max-width: 900px) {
  .split, .split--rev { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .split__media { width: min(86%, 420px); margin-inline: auto; }
}

/* ---- quote band ------------------------------------------------------- */
.band { background: var(--deep); color: var(--linen); padding-block: clamp(4.5rem, 3rem + 7vw, 8rem); overflow: hidden; position: relative; isolation: isolate; }
.band::before {
  content: ""; position: absolute; width: 640px; height: 640px; border-radius: 50%;
  border: 1px solid rgba(218,179,150,.18); left: -220px; bottom: -380px; z-index: -1;
}
.band__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.band .eyebrow { color: var(--sand); }
.band blockquote {
  margin: 0 0 1.6rem; font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.6rem, 1.6rem + 4vw, 5rem); line-height: 1.04; color: var(--linen);
}
.band blockquote em { font-style: italic; color: var(--sand); }
.band__text { color: rgba(247,241,233,.72); max-width: 30em; font-size: 1.05rem; }
.band__media .arch { max-width: 380px; margin-left: auto; box-shadow: none; }
.band__media .arch img { aspect-ratio: 835 / 1232; object-position: 50% 0%; }
@media (max-width: 900px) {
  .band__grid { grid-template-columns: 1fr; }
  .band__media .arch { margin: 0 auto; max-width: 300px; }
}

/* ---- areas ------------------------------------------------------------- */
.areas { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.chips { list-style: none; padding: 0; margin: 1.8rem 0 2rem; display: flex; flex-wrap: wrap; gap: .6rem; }
.chips li {
  padding: .55rem 1.1rem; border: 1px solid var(--line); border-radius: 999px; background: var(--white);
  font-size: .9rem;
}
.coast { width: 100%; height: auto; color: var(--clay-2); }
.coast .town { font-family: var(--sans); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; fill: var(--muted); }
.coast .town--home { fill: var(--clay); font-weight: 500; }
.coast .sea { fill: var(--shell); }
@media (max-width: 900px) { .areas { grid-template-columns: 1fr; } }

/* ---- CTA --------------------------------------------------------------- */
.cta {
  background: var(--deep); color: var(--linen);
  border-radius: calc(var(--radius) * 1.6);
  padding: clamp(3rem, 2rem + 5vw, 6rem) clamp(1.5rem, 5vw, 5rem);
  text-align: center; position: relative; overflow: hidden; isolation: isolate;
}
.cta::before, .cta::after {
  content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(218,179,150,.25); z-index: -1;
}
.cta::before { width: 520px; height: 520px; left: -180px; top: -260px; }
.cta::after  { width: 420px; height: 420px; right: -140px; bottom: -240px; }
.cta h2 { color: var(--linen); }
.cta h2 em { color: var(--sand); }
.cta p { color: rgba(247,241,233,.78); max-width: 34em; margin-inline: auto; }
.cta .eyebrow { color: var(--sand); }
.cta .btn-row { justify-content: center; margin-top: 2rem; }
.cta .btn--ghost { color: var(--linen); border-color: rgba(247,241,233,.35); }
.cta .btn--ghost:hover { background: var(--linen); color: var(--ink); border-color: var(--linen); }

.btn--wa { --bg: var(--wa); --fg: #0b2e17; border-color: var(--wa); }
.btn--wa:hover { --bg: #1fb457; color: #06210f; border-color: #1fb457; }

/* ---- prices ------------------------------------------------------------ */
.prices { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem); }
.price-card {
  background: var(--white); border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  box-shadow: 0 1px 0 var(--line);
}
.price-card h3 { margin-bottom: .2rem; }
.price-card > p { color: var(--muted); font-size: .95rem; }
.rates { list-style: none; margin: 1.4rem 0 0; padding: 0; }
.rates li {
  display: flex; align-items: baseline; gap: .8rem; padding: .95rem 0;
  border-bottom: 1px solid var(--line);
}
.rates li:last-child { border-bottom: 0; }
.rates .dur { font-size: .95rem; letter-spacing: .04em; }
.rates .dots { flex: 1; border-bottom: 1px dotted var(--sand); transform: translateY(-.3em); }
.rates .amt { font-family: var(--serif); font-size: 1.65rem; font-weight: 500; }
@media (max-width: 760px) { .prices { grid-template-columns: 1fr; } }
.note { font-size: .9rem; color: var(--muted); margin-top: 1.6rem; }

/* ---- treatment detail -------------------------------------------------- */
.treatment + .treatment { margin-top: clamp(5rem, 9vw, 9rem); }
.treatment__tag { font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--clay-2); }

/* ---- steps ------------------------------------------------------------- */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3rem); counter-reset: s; }
.steps li { counter-increment: s; border-top: 1px solid var(--sand); padding-top: 1.6rem; }
.steps li::before {
  content: "0" counter(s); display: block;
  font-family: var(--serif); font-style: italic; font-size: 2.6rem; line-height: 1; color: var(--clay-2); margin-bottom: 1rem;
}
.steps h3 { font-size: 1.6rem; margin-bottom: .4rem; }
.steps p { color: var(--muted); margin: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }

/* ---- FAQ --------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font-family: var(--serif); font-size: clamp(1.3rem, 1.1rem + .6vw, 1.6rem); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .4rem; top: 50%; width: 14px; height: 14px; margin-top: -7px;
  background:
    linear-gradient(var(--clay), var(--clay)) center / 14px 1.5px no-repeat,
    linear-gradient(var(--clay), var(--clay)) center / 1.5px 14px no-repeat;
  transition: transform .35s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 3rem 1.6rem 0; color: var(--muted); }

/* ---- gallery ----------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(.6rem, 1.4vw, 1.2rem); }
.gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--shell); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.g1 { grid-column: span 5; grid-row: span 2; }
.g2 { grid-column: span 4; }
.g3 { grid-column: span 3; }
.g4 { grid-column: span 3; }
.g5 { grid-column: span 4; }
.g1 img { aspect-ratio: auto; }
.g2 img, .g5 img { aspect-ratio: 4 / 3; }
.g3 img, .g4 img { aspect-ratio: 3 / 4; }
.gallery .g1 { border-radius: 999px 999px var(--radius) var(--radius); }
@media (max-width: 760px) {
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery figure { grid-column: auto; grid-row: auto; }
  .g1 { grid-column: span 2 !important; }
  .g1 img { aspect-ratio: 4 / 5; }
  .g2 img, .g3 img, .g4 img, .g5 img { aspect-ratio: 1; }
  /* g5 used to span both columns at 16/9, which left g4 stranded on its own
     row and letterboxed a portrait photo. As a normal square it pairs with
     g4 and the grid closes cleanly. */
}
.credit { font-size: .8rem; color: var(--muted); margin-top: 1rem; text-align: right; }

/* ---- facts row (about) -------------------------------------------------- */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.4rem; }
.fact { border-top: 1px solid var(--sand); padding-top: 1rem; }
.fact b { display: block; font-family: var(--serif); font-size: 1.5rem; font-weight: 500; line-height: 1.2; }
.fact span { font-size: .88rem; color: var(--muted); }
@media (max-width: 560px) { .facts { grid-template-columns: 1fr; } }

/* ---- booking form ------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.form { background: var(--white); border-radius: calc(var(--radius) * 1.3); padding: clamp(1.6rem, 4vw, 3rem); box-shadow: 0 1px 0 var(--line); }
.form h2 { font-size: clamp(2rem, 1.6rem + 1.5vw, 2.7rem); }
.field { margin-bottom: 1.3rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }
.field label, .field legend {
  display: block; font-size: .74rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: .5rem; padding: 0;
}
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 1rem; color: var(--ink);
  background: var(--linen); border: 1px solid var(--line); border-radius: 12px;
  padding: .85rem 1rem; transition: border-color .25s, background .25s;
  appearance: none; -webkit-appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%238c5a3c' stroke-width='1.5'%3E%3Cpath d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 12px 8px; padding-right: 2.6rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--clay-2); background: var(--white); }
.field textarea { min-height: 110px; resize: vertical; }
fieldset.field { border: 0; margin: 0 0 1.3rem; padding: 0; min-width: 0; }
.pills { display: flex; flex-wrap: wrap; gap: .5rem; }
.pills label { margin: 0; letter-spacing: 0; text-transform: none; font-size: .95rem; font-weight: 400; color: var(--ink); cursor: pointer; }
.pills input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.pills span {
  display: inline-block; padding: .55rem 1.1rem; border-radius: 999px; border: 1px solid var(--line); background: var(--linen);
  transition: background .25s, border-color .25s, color .25s;
}
.pills input:checked + span { background: var(--ink); border-color: var(--ink); color: var(--white); }
.pills input:focus-visible + span { outline: 2px solid var(--clay); outline-offset: 2px; }
.form__hint { font-size: .85rem; color: var(--muted); margin: 1rem 0 0; }

.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.6rem; }
.info-list li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.info-list .ico {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--shell); color: var(--clay);
}
.info-list .ico svg { width: 20px; height: 20px; }
.info-list b { display: block; font-size: .74rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.info-list a, .info-list span { font-family: var(--serif); font-size: 1.45rem; line-height: 1.3; color: var(--ink); text-decoration: none; }
.info-list a:hover { color: var(--clay); }

/* ---- footer ------------------------------------------------------------ */
.footer { background: var(--deep); color: rgba(247,241,233,.75); padding-block: clamp(4rem, 6vw, 6rem) 2rem; margin-top: clamp(4rem, 8vw, 8rem); font-size: .95rem; }
.footer a { color: var(--linen); text-decoration: none; }
.footer a:hover { color: var(--sand); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer__logo { width: 190px; margin-bottom: 1.2rem; }
.footer h4 { font-family: var(--sans); font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; }
.footer__tag { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--linen); line-height: 1.35; max-width: 16em; }
.footer__base {
  margin-top: 3.5rem; padding-top: 1.6rem; border-top: 1px solid rgba(247,241,233,.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem 2rem; font-size: .82rem; color: rgba(247,241,233,.55);
}
.footer__base a { color: rgba(247,241,233,.8); }
.social { display: flex; gap: .6rem; margin-top: 1.4rem; }
.social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(247,241,233,.25); transition: background .3s, border-color .3s, color .3s;
}
.social a:hover { background: var(--sand); border-color: var(--sand); color: var(--deep); }
.social svg { width: 18px; height: 18px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---- floating WhatsApp -------------------------------------------------- */
.wa-float {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center;
  background: var(--wa); color: #fff; box-shadow: 0 14px 30px -10px rgba(0,0,0,.35);
  transition: transform .35s var(--ease);
}
.wa-float:hover { transform: scale(1.07); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }

/* ---- reveal on scroll (only when JS is running) ------------------------- */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .12s; }
.js .reveal[data-delay="2"] { transition-delay: .24s; }
.js .reveal[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ---- 404 --------------------------------------------------------------- */
.nf { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.nf h1 { font-size: clamp(5rem, 3rem + 10vw, 10rem); line-height: 1; margin: 0; color: var(--sand); }

/* ---- small refinements ------------------------------------------------- */
.price-from b, .rates .amt, .fact b, .info-list a, .info-list span, .steps li::before, .card__num, .treatment__tag { font-variant-numeric: lining-nums; }
@media (max-width: 560px) {
  .eyebrow { font-size: .7rem; letter-spacing: .16em; gap: .6rem; }
  .eyebrow::before { width: 1.4rem; }
  .hero__meta { margin-top: 2rem; }
}
/* backdrop-filter on the header would trap the fixed mobile menu inside it */
body.nav-open .header { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--linen); }
.brand__logo { height: 66px; width: auto; }
@media (max-width: 560px) { .brand__logo { height: 52px; } .header__inner { min-height: 74px; } }
@media (max-width: 560px) { .coast .town { font-size: 15px; letter-spacing: .06em; } }
