/* =====================================================================
   Holiday Massage & Spa - mockup stylesheet
   Implements 03-design/design-system.md exactly.
   Display: Newsreader. Body: Hanken Grotesk. (Both via Google Fonts.)
   Motif: the still-water line. Every element has border-radius:0.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. Tokens
   --------------------------------------------------------------------- */
:root {
  /* ---- Type ---- */
  --font-display: "Newsreader", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --fs-display: clamp(2.75rem, 1.6rem + 5.1vw, 4.75rem);
  --fs-h1: clamp(2.25rem, 1.5rem + 3.3vw, 3.25rem);
  --fs-h2: clamp(1.875rem, 1.4rem + 2.1vw, 2.5rem);
  --fs-h3: clamp(1.5rem, 1.25rem + 1.1vw, 1.875rem);
  --fs-h4: 1.25rem;
  --fs-h5: 1.0625rem;
  --fs-h6: 0.9375rem;
  --fs-lead: clamp(1.1875rem, 1.05rem + 0.6vw, 1.375rem);
  --fs-body: 1.0625rem;
  --fs-body-sm: 0.9375rem;
  --fs-small: 0.8125rem;
  --fs-xs: 0.75rem;
  --fs-overline: 0.75rem;
  --fs-quote: clamp(1.25rem, 1.1rem + 0.65vw, 1.5rem);

  --lh-tight: 1.04;
  --lh-heading: 1.12;
  --lh-snug: 1.3;
  --lh-body: 1.62;
  --lh-lead: 1.55;

  --ls-display: -0.02em;
  --ls-heading: -0.014em;
  --ls-body: 0;
  --ls-overline: 0.14em;

  --fw-reg: 400;
  --fw-med: 500;
  --fw-semi: 600;
  --fw-bold: 700;

  /* ---- Colour: raw ---- */
  --c-bone: #F6F2EA;
  --c-linen: #FBF8F2;
  --c-shell: #EDE6D8;
  --c-sage-700: #3F4A3C;
  --c-sage-500: #6E7A63;
  --c-sage-300: #A7AE97;
  --c-sage-100: #DDE0D2;
  --c-terracotta-600: #A8442A;
  --c-terracotta-500: #C1543A;
  --c-terracotta-100: #F0DDD4;
  --c-amber-500: #C08A3E;
  --c-amber-100: #EFE0C7;
  --c-bark-900: #2A241F;
  --c-bark-600: #5B5147;
  --c-line: #D8D0C2;
  --c-white: #FFFFFF;
  --c-dark-line: #55624F;

  /* ---- Colour: semantic ---- */
  --bg: var(--c-bone);
  --bg-alt: var(--c-shell);
  --surface: var(--c-linen);
  --surface-sunken: var(--c-sage-100);
  --ink: var(--c-bark-900);
  --ink-muted: var(--c-bark-600);
  --accent: var(--c-terracotta-600);
  --accent-hover: var(--c-terracotta-500);
  --accent-tint: var(--c-terracotta-100);
  --warm: var(--c-amber-500);
  --warm-tint: var(--c-amber-100);
  --line: var(--c-line);
  --dark: var(--c-sage-700);
  --dark-ink: var(--c-bone);
  --dark-muted: var(--c-sage-300);
  --dark-line: var(--c-dark-line);
  --on-accent: var(--c-white);
  --focus: var(--c-terracotta-600);

  /* ---- Space (4px base, 8px rhythm) ---- */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* ---- Layout ---- */
  --container: 1200px;
  --container-narrow: 760px;
  --gutter: clamp(1rem, 0.5rem + 2.4vw, 2.5rem);
  --measure: 64ch;
  --measure-lead: 52ch;

  /* ---- Lines / borders (no radius anywhere) ---- */
  --radius: 0;
  --bw-hair: 1px;
  --bw-rule: 2px;
  --bw-mark: 4px;
  --mark-w: 56px;

  /* ---- Elevation (flat, by border + offset, no glass) ---- */
  --shadow-card: 0 1px 0 0 var(--line);
  --shadow-raise: 0 10px 24px -16px rgba(42, 36, 31, 0.35);

  /* ---- Motion ---- */
  --dur-fast: 120ms;
  --dur: 200ms;
  --ease: cubic-bezier(0.2, 0, 0, 1);

  /* ---- Z ---- */
  --z-header: 100;
  --z-mobilebar: 110;
  --z-menu: 120;
  --z-skip: 200;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

/* ---------------------------------------------------------------------
   2. Base / reset
   --------------------------------------------------------------------- */
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: var(--fw-med);
  color: var(--ink);
  margin: 0 0 var(--sp-4);
}
h1 { font-size: var(--fs-h1); line-height: var(--lh-heading); letter-spacing: var(--ls-heading); }
h2 { font-size: var(--fs-h2); line-height: var(--lh-heading); letter-spacing: var(--ls-heading); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); letter-spacing: -0.01em; }
h4 { font-size: var(--fs-h4); font-weight: var(--fw-semi); line-height: var(--lh-snug); }
h5 { font-family: var(--font-body); font-size: var(--fs-h5); font-weight: var(--fw-semi); margin: 0 0 var(--sp-3); }
h6 { font-family: var(--font-body); font-size: var(--fs-h6); font-weight: var(--fw-bold); letter-spacing: 0.01em; margin: 0 0 var(--sp-2); }

p { margin: 0 0 var(--sp-4); max-width: var(--measure); }
.lead {
  font-family: var(--font-display);
  font-size: var(--fs-lead);
  line-height: var(--lh-lead);
  color: var(--ink);
  max-width: var(--measure-lead);
}
small, .text-small { font-size: var(--fs-small); }
.text-xs { font-size: var(--fs-xs); }
.text-muted { color: var(--ink-muted); }

a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
  transition: color var(--dur) var(--ease);
}
a:hover { color: var(--accent-hover); text-decoration-thickness: 2px; }

img { display: block; max-width: 100%; height: auto; }

ul, ol { margin: 0 0 var(--sp-4); padding-left: 1.25rem; }
li { margin-bottom: var(--sp-2); }

.overline {
  font-family: var(--font-body);
  font-size: var(--fs-overline);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-overline);
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin: 0 0 var(--sp-3);
}

/* Section heading + motif mark */
.section-head { margin-bottom: var(--sp-6); max-width: 60ch; }
.section-head h2 { margin-bottom: var(--sp-3); }
.section-head .mark { display: block; width: var(--mark-w); height: var(--bw-mark); background: var(--accent); }
.section-head .lead { margin-top: var(--sp-4); }

/* Layout helpers */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(var(--sp-7), 5vw, var(--sp-9)); }
.section--alt { background: var(--bg-alt); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--dark); color: var(--dark-ink); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--dark-ink); }
.section--dark p { color: var(--dark-muted); }
.section--dark .overline { color: var(--warm); }
.section--dark a { color: var(--dark-ink); }
.section--dark a:hover { color: var(--warm); }

.flow > * + * { margin-top: var(--sp-4); }
.center { text-align: center; }
.mt-6 { margin-top: var(--sp-6); }

/* ---------------------------------------------------------------------
   3. Accessibility primitives
   --------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100%;
  z-index: var(--z-skip);
  background: var(--ink);
  color: var(--bg);
  padding: var(--sp-3) var(--sp-4);
  font-weight: var(--fw-semi);
  text-decoration: none;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

:where(a, button, input, select, textarea, summary, [tabindex]):focus { outline: none; }
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}
.section--dark :focus-visible { outline-color: var(--warm); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------------------------------------------------------------------
   4. Buttons
   --------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  min-height: 44px;
  padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: var(--fw-semi);
  line-height: 1;
  text-decoration: none;
  border: var(--bw-rule) solid transparent;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
    border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn--primary { background: var(--accent); color: var(--on-accent); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--on-accent); }

.btn--secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--secondary:hover { background: var(--ink); color: var(--bg); }

.btn--ghost { background: transparent; color: var(--accent); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); background: var(--accent-tint); color: var(--accent); }

.section--dark .btn--secondary { color: var(--dark-ink); border-color: var(--dark-ink); }
.section--dark .btn--secondary:hover { background: var(--dark-ink); color: var(--dark); }

.btn--lg { min-height: 52px; padding: var(--sp-4) var(--sp-7); font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* ---------------------------------------------------------------------
   5. Header / navigation
   --------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--bg);
  border-bottom: var(--bw-hair) solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-condensed { box-shadow: var(--shadow-raise); }
.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  min-height: 72px;
  padding-block: var(--sp-3);
  transition: min-height var(--dur) var(--ease), padding-block var(--dur) var(--ease);
}
.site-header.is-condensed .site-header__inner { min-height: 60px; padding-block: var(--sp-2); }

.site-logo {
  font-family: var(--font-display);
  font-weight: var(--fw-semi);
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
  line-height: 1.1;
  display: inline-flex;
  flex-direction: column;
}
.site-logo:hover { color: var(--ink); }
.site-logo span { color: var(--accent); }
.site-logo small {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: var(--sp-5); }
.nav a {
  position: relative;
  font-family: var(--font-body);
  font-weight: var(--fw-med);
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  padding: var(--sp-2) 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav a:hover { color: var(--accent); text-decoration: none; }
.nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: var(--mark-w);
  height: var(--bw-mark);
  background: var(--accent);
}

.header-actions { display: flex; align-items: center; gap: var(--sp-4); }
.nav__tel {
  font-weight: var(--fw-semi);
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav__tel:hover { color: var(--accent); text-decoration: none; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: var(--bw-hair) solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }
.nav-toggle .icon-close { display: none; }
.nav[aria-hidden] { }

@media (max-width: 767px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header__inner .btn--book-desktop { display: none; }
  .header-actions .nav__tel { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg);
    border-bottom: var(--bw-hair) solid var(--line);
    box-shadow: var(--shadow-raise);
    padding: var(--sp-4) var(--gutter) var(--sp-6);
    gap: 0;
    z-index: var(--z-menu);
  }
  .nav.is-open a {
    min-height: 48px;
    border-bottom: var(--bw-hair) solid var(--line);
    font-size: 1.0625rem;
  }
  .nav.is-open a[aria-current="page"]::after { display: none; }
  .nav.is-open a[aria-current="page"] { color: var(--accent); }
  .nav.is-open .nav__tel-mobile {
    margin-top: var(--sp-4);
    border-bottom: 0;
    color: var(--ink);
    font-weight: var(--fw-semi);
  }
}

/* Mobile sticky Book bar */
.book-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-mobilebar);
  background: var(--bg);
  border-top: var(--bw-hair) solid var(--line);
}
@media (max-width: 767px) {
  .book-bar { display: grid; grid-template-columns: 1fr auto; gap: 0; }
  .book-bar .btn { height: 56px; min-height: 56px; border-width: 0; }
  .book-bar .btn--call {
    background: var(--surface);
    color: var(--ink);
    border-left: var(--bw-hair) solid var(--line);
    width: 56px;
    padding: 0;
  }
  body { padding-bottom: 56px; }
}

/* ---------------------------------------------------------------------
   6. Hero
   --------------------------------------------------------------------- */
.hero { background: var(--bg); border-bottom: var(--bw-hair) solid var(--line); }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 70vh;
}
.hero__copy {
  padding: clamp(var(--sp-6), 5vw, var(--sp-9)) var(--gutter);
  align-self: center;
  max-width: 38rem;
  margin-left: auto;
  margin-right: var(--sp-7);
}
.hero h1 {
  font-size: var(--fs-display);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  margin-bottom: 0;
}
.hero .lead { margin-top: var(--sp-4); }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }

/* Hero media: CSS-only flat sage/bone treatment with the motif.
   No stock person; the real room photo is a client-supplied asset gap. */
.hero__media {
  position: relative;
  min-height: 360px;
  background: var(--dark);
  overflow: hidden;
}
.hero__media-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: var(--sp-7);
}
.hero__media-panel {
  width: 100%;
  max-width: 360px;
  background: var(--surface-sunken);
  border: var(--bw-hair) solid var(--dark-line);
  padding: var(--sp-7) var(--sp-6);
}
.hero__media-line { position: relative; height: var(--bw-rule); background: var(--c-sage-500); margin-bottom: var(--sp-5); }
.hero__media-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: var(--mark-w);
  height: var(--bw-mark);
  background: var(--accent);
}
.hero__media-line:last-of-type { margin-bottom: 0; margin-top: var(--sp-5); }
.hero__media-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
}
.hero__media-sub {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: var(--sp-3);
}

/* Award badge overlay, solid chip, no glass */
.hero__badge {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  background: var(--bg);
  border: var(--bw-hair) solid var(--line);
  padding: var(--sp-2) var(--sp-3);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  max-width: 280px;
}
.hero__badge img { width: 44px; height: auto; }
.hero__badge-text { font-size: var(--fs-xs); line-height: 1.3; color: var(--ink); }
.hero__badge-text strong { display: block; font-family: var(--font-display); font-size: 0.9375rem; font-weight: var(--fw-semi); }

@media (max-width: 767px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; }
  .hero__media { order: -1; min-height: 240px; }
  .hero__copy { margin: 0; max-width: none; }
}

/* ---------------------------------------------------------------------
   7. Proof strip
   --------------------------------------------------------------------- */
.proof { background: var(--surface); border-block: var(--bw-hair) solid var(--line); }
.proof__row { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof__cell { padding: var(--sp-5) var(--sp-4); border-left: var(--bw-hair) solid var(--line); }
.proof__cell:first-child { border-left: 0; }
.proof__stat {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: var(--fw-semi);
  color: var(--ink);
  line-height: 1.1;
}
.proof__label { font-size: var(--fs-small); color: var(--ink-muted); margin-top: var(--sp-1); }
@media (max-width: 767px) {
  .proof__row { grid-template-columns: 1fr 1fr; }
  .proof__cell:nth-child(odd) { border-left: 0; }
  .proof__cell:nth-child(n+3) { border-top: var(--bw-hair) solid var(--line); }
}
@media (max-width: 360px) {
  .proof__row { grid-template-columns: 1fr; }
  .proof__cell { border-left: 0; border-top: var(--bw-hair) solid var(--line); }
  .proof__cell:first-child { border-top: 0; }
}

/* ---------------------------------------------------------------------
   8. Cards (treatment overview)
   --------------------------------------------------------------------- */
.card {
  background: var(--surface);
  border: var(--bw-hair) solid var(--line);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: var(--mark-w);
  height: var(--bw-mark);
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.card:hover, .card:focus-within { border-color: var(--ink); box-shadow: var(--shadow-raise); }
.card:hover::before, .card:focus-within::before { transform: scaleX(1); }
.card__from {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--sp-2);
}
.card h3 { margin-bottom: var(--sp-3); }
.card p { font-size: var(--fs-body-sm); color: var(--ink-muted); flex: 1 0 auto; max-width: none; }
.card__link {
  margin-top: var(--sp-4);
  font-weight: var(--fw-semi);
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  min-height: 44px;
}
.card__link:hover { text-decoration: underline; text-underline-offset: 0.18em; }

.card-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1080px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   9. Category cards (services jump nav)
   --------------------------------------------------------------------- */
.cat-grid { display: grid; gap: var(--sp-3); grid-template-columns: repeat(4, 1fr); }
.cat-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-4);
  background: var(--bg);
  border: var(--bw-hair) solid var(--line);
  color: var(--ink);
  text-decoration: none;
  min-height: 64px;
  justify-content: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.cat-card:hover { background: var(--accent-tint); border-color: var(--accent); color: var(--ink); text-decoration: none; }
.cat-card__name { font-family: var(--font-display); font-size: 1.125rem; }
.cat-card__count { font-size: var(--fs-xs); color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.08em; }
@media (max-width: 767px) { .cat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 360px) { .cat-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   10. Menu rows (priced treatment list)
   --------------------------------------------------------------------- */
.menu-group { margin-bottom: var(--sp-8); scroll-margin-top: 96px; }
.menu-group > h4 {
  padding-bottom: var(--sp-3);
  border-bottom: var(--bw-rule) solid var(--ink);
  margin-bottom: 0;
}
.menu-group__intro { font-size: var(--fs-body-sm); color: var(--ink-muted); margin-top: var(--sp-3); margin-bottom: 0; }

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4) var(--sp-6);
  padding: var(--sp-5) 0;
  border-bottom: var(--bw-hair) solid var(--line);
  align-items: start;
}
.menu-row__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: var(--fw-semi);
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  flex-wrap: wrap;
}
.menu-row__desc { font-size: var(--fs-body-sm); color: var(--ink-muted); max-width: 54ch; margin: 0; }
.menu-row__note {
  display: block;
  font-size: var(--fs-small);
  font-style: italic;
  color: var(--ink-muted);
  margin-top: var(--sp-2);
}
.menu-row__prices { display: flex; flex-direction: column; gap: var(--sp-1); text-align: right; }
.menu-price {
  font-family: var(--font-body);
  font-weight: var(--fw-semi);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.menu-price .dur { color: var(--ink-muted); font-weight: var(--fw-reg); margin-right: var(--sp-2); }
.menu-row__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm);
}
@media (max-width: 560px) {
  .menu-row { grid-template-columns: 1fr; }
  .menu-row__prices { text-align: left; flex-flow: row wrap; gap: var(--sp-2) var(--sp-5); }
}

/* ---------------------------------------------------------------------
   11. Offer cards
   --------------------------------------------------------------------- */
.offer-card {
  background: var(--surface);
  border: var(--bw-hair) solid var(--line);
  border-top: var(--bw-mark) solid var(--warm);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
}
.offer-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.offer-card h3 { margin: 0; }
.offer-card__price { font-family: var(--font-display); font-size: 1.5rem; font-weight: var(--fw-semi); white-space: nowrap; }
.offer-card__meta {
  font-size: var(--fs-small);
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-4);
}
.offer-card ul { list-style: none; margin: 0 0 var(--sp-5); padding: 0; }
.offer-card li {
  padding: var(--sp-2) 0;
  border-bottom: var(--bw-hair) solid var(--line);
  font-size: var(--fs-body-sm);
  margin: 0;
}
.offer-card li::before { content: "–"; color: var(--accent); margin-right: var(--sp-2); }
.offer-card .btn { margin-top: auto; }
.offer-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1080px) { .offer-grid { grid-template-columns: 1fr; max-width: var(--measure); } }

/* ---------------------------------------------------------------------
   12. Still-water line (motif divider)
   --------------------------------------------------------------------- */
.still-line { position: relative; height: var(--bw-rule); background: var(--line); border: 0; margin: 0; }
.still-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: var(--mark-w);
  height: var(--bw-mark);
  background: var(--accent);
}
.divider { padding-block: var(--sp-7); }
.divider .still-line { width: 100%; }
.section--dark .still-line { background: var(--dark-line); }
.section--dark .still-line::before { background: var(--warm); }

/* ---------------------------------------------------------------------
   13. Testimonials
   --------------------------------------------------------------------- */
.quote-grid { display: grid; gap: var(--sp-6); grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1080px) { .quote-grid { grid-template-columns: 1fr; max-width: var(--measure); } }

.testimonial { padding-top: var(--sp-4); border-top: var(--bw-rule) solid var(--accent); }
.testimonial blockquote { margin: 0; }
.testimonial q { quotes: none; }
.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-quote);
  line-height: 1.45;
  color: var(--ink);
  max-width: none;
}
.testimonial figcaption {
  margin-top: var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semi);
  color: var(--ink);
}
.testimonial cite { font-style: normal; color: var(--ink-muted); font-weight: var(--fw-reg); }
.testimonial cite::before { content: " · "; color: var(--line); }

.section--dark .testimonial { border-top-color: var(--warm); }
.section--dark .testimonial p { color: var(--dark-ink); }
.section--dark .testimonial figcaption { color: var(--dark-ink); }
.section--dark .testimonial cite { color: var(--dark-muted); }

/* A single inline pull-quote (used inside prose blocks) */
.pullquote {
  border-left: var(--bw-mark) solid var(--accent);
  padding: var(--sp-2) 0 var(--sp-2) var(--sp-5);
  margin: var(--sp-6) 0;
}
.pullquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-quote);
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: var(--sp-3);
}
.pullquote cite { font-style: normal; font-family: var(--font-body); font-size: var(--fs-small); color: var(--ink-muted); }

/* ---------------------------------------------------------------------
   14. Award block
   --------------------------------------------------------------------- */
.award {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-6);
  align-items: center;
  background: var(--surface-sunken);
  border: var(--bw-hair) solid var(--line);
  padding: clamp(var(--sp-5), 4vw, var(--sp-7));
}
.award__badge {
  width: clamp(120px, 18vw, 168px);
  height: auto;
  padding: var(--sp-3);
  background: var(--bg);
  border: var(--bw-rule) solid var(--warm);
}
.award__copy h2 { margin-bottom: var(--sp-3); }
.award__copy p:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .award { grid-template-columns: 1fr; text-align: left; } }

/* ---------------------------------------------------------------------
   15. Media + text (skincare / partner blocks)
   --------------------------------------------------------------------- */
.media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-6), 5vw, var(--sp-8));
  align-items: center;
}
.media-text--reverse .media-text__media { order: 2; }
.media-text__media {
  border: var(--bw-hair) solid var(--line);
  background: var(--surface-sunken);
}
.media-text__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.media-text__body p:last-child { margin-bottom: 0; }
.media-text figcaption { font-size: var(--fs-small); color: var(--ink-muted); margin-top: var(--sp-2); }
@media (max-width: 767px) {
  .media-text { grid-template-columns: 1fr; }
  .media-text--reverse .media-text__media { order: 0; }
}

/* ---------------------------------------------------------------------
   16. Team cards
   --------------------------------------------------------------------- */
.team-grid { display: grid; gap: var(--sp-5); grid-template-columns: repeat(3, 1fr); }
.team-card { background: var(--surface); border: var(--bw-hair) solid var(--line); }
.team-card__photo {
  aspect-ratio: 4 / 5;
  background: var(--surface-sunken);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--c-sage-500);
  border-bottom: var(--bw-hair) solid var(--line);
}
.team-card__body { padding: var(--sp-4) var(--sp-5) var(--sp-5); }
.team-card__name { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: var(--sp-1); }
.team-card__role { font-size: var(--fs-small); color: var(--ink-muted); text-transform: uppercase; letter-spacing: 0.06em; margin: 0; }
@media (max-width: 767px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 360px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   17. Closing CTA band
   --------------------------------------------------------------------- */
.cta-band { background: var(--dark); color: var(--dark-ink); text-align: center; padding-block: var(--sp-9); }
.cta-band h2 { color: var(--dark-ink); }
.cta-band p { color: var(--dark-muted); margin-inline: auto; max-width: 52ch; }
.cta-band .overline { color: var(--warm); }
.cta-band .actions { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; margin-top: var(--sp-6); }

/* ---------------------------------------------------------------------
   18. Page header (interior pages)
   --------------------------------------------------------------------- */
.page-head { background: var(--bg-alt); border-bottom: var(--bw-hair) solid var(--line); padding-block: clamp(var(--sp-7), 5vw, var(--sp-8)); }
.page-head h1 { margin-bottom: var(--sp-4); }
.page-head .lead { margin-bottom: var(--sp-5); max-width: 60ch; }
.page-head .mark { display: block; width: var(--mark-w); height: var(--bw-mark); background: var(--accent); margin-bottom: var(--sp-5); }
.page-head__jump { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5); }
.page-head__jump a {
  font-size: var(--fs-small);
  font-weight: var(--fw-semi);
  color: var(--accent);
  text-decoration: none;
  border: var(--bw-hair) solid var(--line);
  padding: var(--sp-2) var(--sp-4);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.page-head__jump a:hover { background: var(--accent-tint); border-color: var(--accent); }

/* ---------------------------------------------------------------------
   19. Info blocks (hours, address, list facts)
   --------------------------------------------------------------------- */
.info-grid { display: grid; gap: clamp(var(--sp-6), 5vw, var(--sp-8)); grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 767px) { .info-grid { grid-template-columns: 1fr; } }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table caption { text-align: left; font-weight: var(--fw-semi); margin-bottom: var(--sp-3); }
.hours-table th, .hours-table td {
  text-align: left;
  padding: var(--sp-3) 0;
  border-bottom: var(--bw-hair) solid var(--line);
  font-variant-numeric: tabular-nums;
}
.hours-table th { font-weight: var(--fw-med); }
.hours-table td { text-align: right; color: var(--ink-muted); }
.hours-table tr.is-closed td { color: var(--accent); font-weight: var(--fw-semi); }

.fact-list { list-style: none; padding: 0; margin: 0; }
.fact-list li { padding: var(--sp-4) 0; border-bottom: var(--bw-hair) solid var(--line); margin: 0; }
.fact-list li:first-child { padding-top: 0; }
.fact-list strong { font-family: var(--font-display); font-weight: var(--fw-semi); display: block; margin-bottom: var(--sp-1); font-size: 1.0625rem; }

.detail-card { background: var(--surface); border: var(--bw-hair) solid var(--line); padding: var(--sp-6); }
.detail-card h2 { font-size: var(--fs-h3); }
.detail-card h3 { font-size: 1.25rem; }
.detail-card address { font-style: normal; line-height: var(--lh-body); }

/* numbered "how it works" steps */
.steps { list-style: none; counter-reset: step; padding: 0; margin: var(--sp-5) 0 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 var(--sp-5) var(--sp-8);
  margin: 0;
  border: 0;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-display);
  font-weight: var(--fw-semi);
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li strong { display: block; font-family: var(--font-display); font-weight: var(--fw-semi); margin-bottom: var(--sp-1); }

/* ---------------------------------------------------------------------
   20. Forms
   --------------------------------------------------------------------- */
.form-field { margin-bottom: var(--sp-5); }
.form-field label { display: block; font-weight: var(--fw-semi); font-size: var(--fs-body-sm); margin-bottom: var(--sp-2); }
.form-field .req { color: var(--accent); font-weight: var(--fw-bold); }
.form-field .hint { display: block; font-size: var(--fs-small); color: var(--ink-muted); margin-top: var(--sp-2); }
.input, .textarea, select {
  width: 100%;
  min-height: 48px;
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background: var(--surface);
  border: var(--bw-hair) solid var(--line);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.textarea { min-height: 140px; resize: vertical; line-height: var(--lh-body); }
.input:hover, .textarea:hover, select:hover { border-color: var(--ink-muted); }
.input:focus-visible, .textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-color: var(--accent);
}
.input::placeholder, .textarea::placeholder { color: var(--ink-muted); opacity: 0.7; }
.form-error { color: var(--accent); font-size: var(--fs-small); margin-top: var(--sp-2); }
.form-note { font-size: var(--fs-small); color: var(--ink-muted); margin-top: var(--sp-4); }
fieldset { border: var(--bw-hair) solid var(--line); padding: var(--sp-5); margin: 0 0 var(--sp-5); }
legend { padding-inline: var(--sp-2); font-weight: var(--fw-semi); }

/* ---------------------------------------------------------------------
   21. Map placeholder (honest, CSS-only, no fabricated embed)
   --------------------------------------------------------------------- */
.map-placeholder {
  position: relative;
  background: var(--surface-sunken);
  border: var(--bw-hair) solid var(--line);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  text-align: center;
}
.map-placeholder__inner { max-width: 36ch; }
.map-placeholder .still-line { width: 80px; margin: var(--sp-4) auto 0; }
.map-placeholder p { margin: 0 auto; }

/* ---------------------------------------------------------------------
   22. Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--dark); color: var(--dark-ink); padding-block: var(--sp-8) var(--sp-6); }
.site-footer a { color: var(--dark-ink); text-decoration: none; }
.site-footer a:hover { color: var(--warm); text-decoration: underline; text-underline-offset: 0.18em; }
.footer-grid { display: grid; gap: var(--sp-6); grid-template-columns: 1.4fr 1fr 1fr 1fr; }
.footer-col h2, .footer-col h3 {
  font-family: var(--font-body);
  font-size: var(--fs-h6);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark-muted);
  margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { padding: var(--sp-1) 0; margin: 0; }
.footer-col li a, .footer-col li.footer-line { min-height: 44px; display: flex; align-items: center; }
.footer-brand__line { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: var(--sp-3); color: var(--dark-ink); line-height: 1.2; }
.footer-brand__line span { color: var(--warm); }
.footer-brand p { color: var(--dark-muted); font-size: var(--fs-body-sm); max-width: 36ch; }
.footer-brand__badge { display: flex; align-items: center; gap: var(--sp-3); margin-top: var(--sp-5); }
.footer-brand__badge img { width: 56px; height: auto; background: var(--bg); padding: var(--sp-2); border: var(--bw-hair) solid var(--warm); }
.footer-brand__badge span { font-size: var(--fs-xs); color: var(--dark-muted); line-height: 1.4; }
.footer-hours dl { margin: 0; }
.footer-hours dt { font-weight: var(--fw-semi); margin-top: var(--sp-3); }
.footer-hours dt:first-child { margin-top: 0; }
.footer-hours dd { margin: 0; color: var(--dark-muted); font-size: var(--fs-body-sm); }
.footer-bottom {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: var(--bw-hair) solid var(--dark-line);
  font-size: var(--fs-small);
  color: var(--dark-muted);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-5);
  justify-content: space-between;
}
.footer-bottom a { color: var(--dark-muted); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------------------
   23. Scroll-reveal (one effect, reduced-motion safe)
   --------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---------------------------------------------------------------------
   24. Print (treatment menu is print-worthy)
   --------------------------------------------------------------------- */
@media print {
  .site-header, .book-bar, .nav-toggle, .cta-band, .hero__cta, .skip-link { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; padding-bottom: 0; }
  a { color: #000; text-decoration: none; }
  .menu-row { break-inside: avoid; }
  .still-line::before, .section-head .mark, .page-head .mark { background: #000; }
  [data-reveal] { opacity: 1; transform: none; }
}
