/* ==========================================================================
   PROOF MEDICAL SPA — Spokane, WA
   Fresh site design system (v2) — editorial quiet luxury
   Fonts: ABC Monument Grotesk (display/body) · Namian ExtraBold (labels)
          Luminaire (script accents) · CN Motel (buttons)
   ========================================================================== */

/* ------------------------------- Fonts ------------------------------- */
@font-face {
  font-family: "Monument";
  src: url("../assets/fonts/ABCMonumentGrotesk-Regular-Trial.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Monument";
  src: url("../assets/fonts/ABCMonumentGrotesk-Medium-Trial.otf") format("opentype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Namian";
  src: url("../assets/fonts/Namian-ExtraBold.otf") format("opentype");
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Luminaire";
  src: url("../assets/fonts/Luminaire.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "CN Motel";
  src: url("../assets/fonts/CN-Motel.otf") format("opentype");
  font-weight: 400; font-style: normal; font-display: swap;
}

/* ------------------------------- Tokens ------------------------------- */
:root {
  /* Brand palette */
  --merlot: #462a29;
  --cherry: #5d312c;
  --ruby: #75372e;
  --camel: #a88b71;
  --almond: #d2c4b3;
  --vanilla: #e8e0d4;
  --dove: #f4efe8;
  --linen: #e7e0ce;
  --olive: #a4924f;
  --velvet: #534a24;
  --moss: #67633a;
  --sage: #a4a78a;
  --denim: #9dbcd0;
  --leather: #28211f;
  --white: #ffffff;

  /* Semantic — sage/olive greens lead; merlot family demoted to accents.
     All text pairs verified >= 4.5:1 (WCAG 2.1 AA). Olive fails on light
     backgrounds (2.7:1) so it is decorative-only; moss carries text accents. */
  --bg: var(--dove);
  --bg-light: #fbf8f3;
  --bg-alt: var(--vanilla);
  --ink: var(--leather);
  --ink-muted: #60544b;
  --ink-on-dark: var(--dove);
  --ink-on-dark-muted: #d8d2b8;
  --sage-light: #d8d2b8;
  --primary: var(--velvet);
  --primary-hover: var(--moss);
  --accent: var(--moss);
  --accent-gold: var(--olive);
  --line: #d8cbb9;
  --line-strong: var(--camel);
  --line-on-dark: rgba(244, 239, 232, 0.18);
  --focus: #2f6382;

  /* Type */
  --font-display: "Monument", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Monument", "Helvetica Neue", Arial, sans-serif;
  --font-label: "Namian", "Helvetica Neue", Arial, sans-serif;
  --font-script: "Luminaire", "Snell Roundhand", Georgia, cursive;
  --font-button: "CN Motel", "Helvetica Neue", Arial, sans-serif;

  --text-display: clamp(2.75rem, 6.5vw, 5.25rem);
  --text-h2: clamp(2rem, 4.2vw, 3.25rem);
  --text-h3: clamp(1.375rem, 2.2vw, 1.75rem);
  --text-h4: 1.1875rem;
  --text-lead: clamp(1.125rem, 1.6vw, 1.3125rem);
  --text-body: 1.0625rem;
  --text-small: 0.9375rem;
  --text-eyebrow: 0.75rem;

  /* Space (8pt rhythm) */
  --s-1: 0.5rem;  --s-2: 1rem;   --s-3: 1.5rem; --s-4: 2rem;
  --s-5: 3rem;    --s-6: 4rem;   --s-7: 6rem;   --s-8: 8rem;
  --section: clamp(3rem, 6vw, 5.5rem);
  --section-tight: clamp(2.25rem, 4vw, 3.5rem);

  /* Layout */
  --container: 1240px;
  --narrow: 780px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 28px;
  --r-arch: 999px 999px var(--r-md) var(--r-md);
  --shadow-sm: 0 1px 3px rgba(40, 33, 31, 0.08);
  --shadow-md: 0 10px 30px rgba(40, 33, 31, 0.12);
  --shadow-lg: 0 24px 60px rgba(40, 33, 31, 0.18);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --fast: 160ms;
  --base: 240ms;
  --slow: 420ms;

  --header-h: 84px;
  --annc-h: 40px;
}

/* ------------------------------- Reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
ul[class], ol[class] { list-style: none; padding: 0; }
:focus-visible {
  outline: 3px solid transparent; /* keeps a ring in Windows High Contrast Mode */
  outline-offset: 2px;
  box-shadow: 0 0 0 3px var(--dove), 0 0 0 6px var(--focus);
  border-radius: 4px;
}

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

/* ---------------------------- Typography ---------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
.display { font-size: var(--text-display); }
h2, .h2 { font-size: var(--text-h2); }
h3, .h3 { font-size: var(--text-h3); line-height: 1.2; }
h4, .h4 { font-size: var(--text-h4); line-height: 1.35; }

p { max-width: 68ch; }
.lead { font-size: var(--text-lead); line-height: 1.55; }
.small { font-size: var(--text-small); }
.muted { color: var(--ink-muted); }

.eyebrow {
  font-family: var(--font-label);
  font-size: var(--text-eyebrow);
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 2px;
  background: currentColor;
  flex: none;
}
.eyebrow--bare::before { display: none; }
.eyebrow--merlot { color: var(--primary); }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.15;
  /* Matches the tilt on .script-line and .hero__script so every script
     accent on the site leans the same amount. inline-block is required
     because transforms do not apply to plain inline elements. */
  display: inline-block;
  transform: rotate(-1.5deg);
}
/* Script accent line beneath a heading. A small negative top margin keeps it
   tied to the title; anything deeper (it was -0.5em) drives the script capitals
   into the descenders of the line above. Measured worst case is g + L, which
   clears by ~8px here. Padding below keeps it off the following text. */
.script-line {
  display: block;
  font-family: var(--font-script);
  color: var(--accent);
  letter-spacing: 0.01em;
  transform: rotate(-1.5deg);
  margin-top: -0.05em;
  padding-bottom: 0.32em;
}

/* Every script accent renders at the h2 scale, whatever heading it sits in.
   Sizing it in em made the same cursive render 68px inside a page-hero h1 and
   55px inside a section h2, which read as two different fonts across pages. */
.script-line,
h1 .script,
h2 .script { font-size: var(--text-h2); }

/* ------------------------------ Layout ------------------------------ */
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--narrow); }
.section { padding-block: var(--section); }
.section--tight { padding-block: var(--section-tight); }
.section--light { background: var(--bg-light); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--primary); color: var(--ink-on-dark); }
.section--dark .muted { color: var(--ink-on-dark-muted); }
.section--dark .eyebrow { color: var(--sage-light); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); }
@media (max-width: 980px) {
  .split, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 660px) {
  .split, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head h2 { margin-top: var(--s-2); }
.section-head .lead { margin-top: var(--s-2); color: var(--ink-muted); }
.section--dark .section-head .lead { color: var(--ink-on-dark-muted); }

.text-center { text-align: center; }
.mt-1 { margin-top: var(--s-1); } .mt-2 { margin-top: var(--s-2); }
.mt-3 { margin-top: var(--s-3); } .mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); } .mx-auto { margin-inline: auto; }

.rule { border: 0; border-top: 1px solid var(--line); }

/* ------------------------------ Buttons ------------------------------ */
.btn {
  font-family: var(--font-button);
  font-size: 0.9375rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  min-height: 52px;
  padding: 0.875rem 2.125rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: background var(--base) var(--ease), color var(--base) var(--ease),
              border-color var(--base) var(--ease), transform var(--fast) var(--ease),
              box-shadow var(--base) var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0) scale(0.98); box-shadow: none; }

.btn--primary { background: var(--primary); color: var(--dove); }
.btn--primary:hover { background: var(--primary-hover); }
.btn--ghost { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn--ghost:hover { background: var(--primary); color: var(--dove); }
.btn--on-dark { background: var(--dove); color: var(--primary); }
.btn--on-dark:hover { background: var(--white); }
.btn--ghost-dark { border-color: rgba(244,239,232,0.55); color: var(--dove); background: transparent; }
.btn--ghost-dark:hover { background: rgba(244,239,232,0.12); border-color: var(--dove); }

.text-link {
  font-family: var(--font-label);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--accent-gold);
  transition: gap var(--base) var(--ease), border-color var(--base) var(--ease);
}
.text-link:hover { gap: 1rem; border-color: var(--primary); }
.text-link .icon { width: 17px; height: 17px; }
.section--dark .text-link { color: var(--dove); border-color: var(--sage); }

.icon {
  width: 22px; height: 22px;
  stroke: currentColor; stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  flex: none;
}

/* -------------------------- Announcement bar ------------------------- */
.annc {
  background: var(--leather);
  color: var(--dove);
  font-family: var(--font-label);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.75rem var(--gutter);
  line-height: 1.4;
}
.annc a { color: var(--sage); text-decoration: none; }
.annc a:hover { color: var(--dove); text-decoration: underline; }

/* ------------------------------ Header ------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--dove) 90%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--base) var(--ease), box-shadow var(--base) var(--ease);
}
.header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header .brand-lockup { color: var(--merlot); }

/* Brand lockup: script "Proof" over a one-line MEDICAL SPA label */
.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: var(--dove);
  flex: none;
}
.brand-lockup img { height: 38px; width: auto; display: block; }
.brand-lockup span {
  /* Matches the light, wide-tracked sublabel in the delivered brand marks */
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.5625rem;
  letter-spacing: 0.25em;
  margin-right: -0.25em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
}
.brand-lockup--lg { gap: 10px; }
.brand-lockup--lg img { height: 64px; }
.brand-lockup--lg span { font-size: 0.6875rem; }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  min-height: var(--header-h);
}
.header__logo { display: inline-flex; align-items: center; flex: none; padding-block: 8px; }
.header__logo img { height: 60px; width: auto; }
@media (max-width: 480px) {
  .header__logo img { height: 50px; }
}

.nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.25rem); }
.nav a {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: 0.375rem 0;
  border-bottom: 2px solid transparent;
  transition: color var(--fast), border-color var(--fast);
}
.nav a:hover { color: var(--primary); }
.nav a[aria-current="page"] { color: var(--primary); border-color: var(--accent); }

.header__actions { display: flex; align-items: center; gap: var(--s-2); }
.header__actions .btn { min-height: 46px; padding: 0.625rem 1.625rem; font-size: 0.875rem; }

.nav-toggle {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  transition: background var(--fast);
}
.nav-toggle:hover { background: var(--linen); }

/* Nav collapses to the hamburger below this width. Raised from 1020px when
   Providers became a fifth top-level item, so the row never crowds the logo
   or the Book Now button. Everything in the nav is also in the drawer. */
@media (max-width: 1100px) {
  .nav { display: none; }
}
@media (max-width: 480px) {
  .header__actions .btn { min-height: 42px; padding: 0.5rem 1.125rem; font-size: 0.8125rem; }
}

/* Menu side panel (opens from the right, page stays visible behind a scrim) */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: auto;
  width: min(380px, 92vw);
  z-index: 210;
  background: var(--primary);
  color: var(--dove);
  display: flex;
  flex-direction: column;
  padding: var(--s-2) var(--s-4) var(--s-4);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--slow) var(--ease), visibility 0s linear var(--slow);
}
.drawer.is-open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
.drawer-scrim {
  position: fixed;
  inset: 0;
  z-index: 205;
  background: rgba(40, 33, 31, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--slow) var(--ease), visibility 0s linear var(--slow);
}
.drawer-scrim.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; min-height: 72px; }
.drawer__top .brand-lockup img { height: 26px; }
.drawer__close { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.drawer__close:hover { background: rgba(244,239,232,0.12); }
.drawer__links { display: flex; flex-direction: column; margin-top: var(--s-2); }
.drawer__links a {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line-on-dark);
  display: flex; align-items: center; justify-content: space-between;
}
.drawer__links a:hover { color: var(--sage-light); }
.drawer__links a[aria-current="page"] { color: var(--sage-light); }
.drawer__footer { margin-top: auto; padding-top: var(--s-4); }
.drawer__footer .small { color: var(--ink-on-dark-muted); margin-top: var(--s-3); }

/* ------------------------------- Hero ------------------------------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - var(--annc-h));
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  color: var(--dove);
  overflow: hidden;
  isolation: isolate;
}
.hero__slides { position: absolute; inset: 0; z-index: -2; background: var(--leather); }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1400ms ease;
}
.hero__slide.is-active { opacity: 1; animation: kenburns 9s var(--ease) forwards; }
html:not(.js) .hero__slide:first-child { opacity: 1; }
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(to top, rgba(33, 30, 19, 0.84) 0%, rgba(33, 30, 19, 0.38) 45%, rgba(33, 30, 19, 0.18) 100%);
}
.hero__inner {
  width: 100%;
  padding-block: clamp(3rem, 8vw, 5.5rem);
}
.hero__eyebrow {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--sage-light);
  display: inline-flex; align-items: center; gap: 0.875rem;
}
.hero__eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.hero h1 { font-size: var(--text-display); margin-top: var(--s-3); max-width: 15ch; }
.hero h1 .script-line { color: var(--almond); }

/* Brand line beneath the SEO headline, kept out of the h1 so the heading
   stays a tight, keyword-led phrase for search engines. */
.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--almond);
  letter-spacing: 0.01em;
  transform: rotate(-1.5deg);
  transform-origin: left center;
  margin-top: 0.35rem;
  max-width: none;
}
.hero .lead { margin-top: var(--s-3); max-width: 46ch; color: rgba(244, 239, 232, 0.9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-4); }
.hero__meta {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(244, 239, 232, 0.25);
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5);
  font-family: var(--font-label);
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(244, 239, 232, 0.92);
}

/* ------------------------------ Ticker ------------------------------ */
.ticker {
  background: var(--primary);
  color: var(--sage-light);
  overflow: hidden;
  padding-block: 0.9375rem;
  border-block: 1px solid rgba(0,0,0,0.15);
}
.ticker__track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: ticker 36s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
@keyframes ticker { to { transform: translateX(-50%); } }
.ticker__group { display: flex; align-items: center; flex: none; }
.ticker__item {
  font-family: var(--font-label);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding-inline: 1.75rem;
  display: flex; align-items: center; gap: 3.5rem;
  white-space: nowrap;
}
.ticker__item::after { content: "✦"; color: var(--olive); font-size: 0.75rem; letter-spacing: 0; }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ------------------------------ Imagery ------------------------------ */
.arch {
  border-radius: var(--r-arch);
  overflow: hidden;
  position: relative;
}
.arch img, .arch .ph { width: 100%; height: 100%; object-fit: cover; }
.frame {
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.img-caption {
  font-family: var(--font-label);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: var(--s-2);
  display: flex; align-items: center; gap: 0.75rem;
}
.img-caption::before { content: ""; width: 22px; height: 2px; background: var(--accent); flex: none; }

.zoom-hover img { transition: transform 700ms var(--ease); }
.zoom-hover:hover img { transform: scale(1.04); }

/* Photo placeholder (portraits, gallery) */
.ph {
  background: var(--almond) url("../assets/patterns/pattern-p-almond.png") center / 420px repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ph::after { content: ""; position: absolute; inset: 0; background: rgba(210, 196, 179, 0.55); }
.ph__label {
  position: relative; z-index: 1;
  font-family: var(--font-label);
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--primary);
  background: var(--dove);
  padding: 0.625rem 1.125rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* --------------------------- Service index --------------------------- */
.index-rows { border-top: 1px solid var(--line); }
.index-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 120px 48px;
  gap: var(--s-3);
  align-items: center;
  padding: var(--s-3) var(--s-2);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background var(--base) var(--ease), padding-left var(--base) var(--ease);
}
.index-row:hover { background: var(--bg-light); padding-left: var(--s-3); }
.index-row__title { font-family: var(--font-display); font-weight: 500; font-size: var(--text-h3); line-height: 1.1; }
.index-row__desc { color: var(--ink-muted); font-size: var(--text-small); max-width: 44ch; }
.index-row__thumb {
  width: 120px; height: 84px;
  border-radius: 999px;
  overflow: hidden;
}
.index-row__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms var(--ease);
}
.index-row:hover .index-row__thumb img { transform: scale(1.1); }
.index-row__arrow {
  width: 48px; height: 48px;
  border: 1.5px solid var(--line-strong);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary);
  transition: background var(--base), color var(--base), border-color var(--base), transform var(--base) var(--ease);
}
.index-row:hover .index-row__arrow { background: var(--primary); border-color: var(--primary); color: var(--dove); transform: rotate(-45deg); }
@media (max-width: 860px) {
  .index-row { grid-template-columns: 1fr 48px; }
  .index-row__desc, .index-row__thumb { display: none; }
}

/* ------------------------------- Cards ------------------------------- */
.card {
  background: var(--bg-light);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  transition: transform var(--base) var(--ease), box-shadow var(--base) var(--ease), border-color var(--base);
}
a.card { text-decoration: none; display: block; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card--surface { background: var(--white); }
.card--dark { background: var(--cherry); border-color: transparent; color: var(--ink-on-dark); }

.treatment {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  height: 100%;
}
.treatment h3 { font-size: 1.375rem; }
.treatment__kicker {
  font-family: var(--font-label);
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent);
}
.treatment p { color: var(--ink-muted); font-size: var(--text-small); }
.treatment__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: auto; padding-top: var(--s-1); }
.tag {
  font-family: var(--font-label);
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--velvet);
  background: var(--linen);
  border: 1px solid var(--line);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ------------------------- Steps / numbered list ---------------------- */
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); }
.step {
  padding-block: var(--s-4);
  border-bottom: 1px solid var(--line);
}
.step h3 { margin-bottom: 0.5rem; font-size: var(--text-h4); line-height: 1.35; }
.step p { color: var(--ink-muted); }

.section--dark .steps, .section--dark .step { border-color: var(--line-on-dark); }
.section--dark .step p { color: var(--ink-on-dark-muted); }

/* ------------------------------ Quote ------------------------------ */
.pull-quote {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.3;
  color: var(--primary);
  text-align: center;
  max-width: 24ch;
  margin-inline: auto;
}
.pull-quote__by {
  font-family: var(--font-label);
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  margin-top: var(--s-3);
}

/* ---------------------------- Accordion ---------------------------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-2);
  text-align: left;
  padding: var(--s-3) 0.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1875rem;
  transition: color var(--fast);
}
.acc__btn:hover { color: var(--primary-hover); }
.acc__btn .icon { transition: transform var(--base) var(--ease); }
.acc__btn[aria-expanded="true"] .icon { transform: rotate(45deg); }
.acc__panel { overflow: hidden; max-height: 0; transition: max-height var(--slow) var(--ease); }
.acc__panel p { padding: 0 0.25rem var(--s-3); color: var(--ink-muted); }

/* --------------------------- Gallery tiles --------------------------- */
.ba-tile {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--almond);
}
.ba-tile__half { position: relative; background: var(--almond) url("../assets/patterns/pattern-p-almond.png") center / 360px repeat; }
.ba-tile__half + .ba-tile__half { background-color: var(--linen); background-image: url("../assets/patterns/pattern-p-dove.png"); border-left: 2px solid var(--dove); }
.ba-tile__half::after { content: ""; position: absolute; inset: 0; background: rgba(232, 224, 212, 0.55); }
.ba-tile__tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 1;
  font-family: var(--font-label);
  font-size: 0.625rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--dove); color: var(--primary);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
}
.ba-tile__center {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.ba-tile__center span {
  font-family: var(--font-label);
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dove);
  background: var(--primary);
  padding: 0.625rem 1.125rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}

/* ------------------------------ Footer ------------------------------ */
.footer {
  background: var(--primary);
  color: var(--ink-on-dark);
  padding-top: var(--section-tight);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: var(--s-5);
  padding-bottom: var(--s-6);
}
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__brand p { margin-top: var(--s-3); color: var(--ink-on-dark-muted); font-size: var(--text-small); max-width: 34ch; }
.footer__heading {
  font-family: var(--font-label);
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: var(--s-2);
}
.footer__links { display: grid; gap: 0.625rem; }
.footer__links a { color: var(--ink-on-dark); text-decoration: none; font-size: var(--text-small); }
.footer__links a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.footer__contact { display: grid; gap: var(--s-2); font-size: var(--text-small); }
.footer__contact li { display: flex; gap: 0.75rem; align-items: flex-start; }
.footer__contact .icon { width: 19px; height: 19px; margin-top: 3px; color: var(--sage-light); }
.footer__contact a { color: var(--ink-on-dark); }
.footer__bottom {
  border-top: 1px solid var(--line-on-dark);
  padding-block: var(--s-3);
  display: flex; flex-wrap: wrap; gap: var(--s-1) var(--s-4);
  align-items: center; justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--ink-on-dark-muted);
}
.footer__bottom a { color: inherit; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.footer__legal a {
  color: var(--ink-on-dark-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer__legal a:hover { color: var(--white); }

/* --------------------------- Booking modal --------------------------- */
.modal {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  padding: var(--gutter);
  background: rgba(40, 33, 31, 0.6);
  backdrop-filter: blur(6px);
}
.modal.is-open { display: flex; }
.modal__box {
  background: var(--dove);
  border-radius: var(--r-lg);
  width: min(960px, 100%);
  max-height: min(86vh, 900px);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.modal__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-2) var(--s-3);
  border-bottom: 1px solid var(--line);
}
.modal__head img { height: 22px; width: auto; }
.modal__close { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; }
.modal__close:hover { background: var(--linen); }
.modal__body { flex: 1; min-height: 420px; }
.modal__body iframe { width: 100%; height: 100%; border: 0; min-height: 60vh; }
.modal__fallback { padding: var(--s-6) var(--s-4); text-align: center; }
.modal__fallback p { margin-inline: auto; }

/* ------------------------------ Reveals ------------------------------ */
/* Hidden-until-reveal only applies when JS is running (html.js) so content
   is never lost if scripts fail to load. */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
html.js .reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 90ms; }
.reveal-d2 { transition-delay: 180ms; }
.reveal-d3 { transition-delay: 270ms; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; }
}

/* ---------------------------- Page banners ---------------------------- */
.page-hero {
  background: var(--bg-light);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.page-hero--pattern::before {
  content: "";
  position: absolute; inset: 0;
  background: url("../assets/patterns/pattern-script-dove.png") center / 560px repeat;
  opacity: 0.5;
}
/* Richer almond pattern, faded out behind the text zone (left side of the
   banner) so headlines stay readable. Browsers without mask support keep
   the subtle dove version above. */
@supports ((mask-image: linear-gradient(#000, #000)) or (-webkit-mask-image: linear-gradient(#000, #000))) {
  .page-hero--pattern::before {
    background-image: url("../assets/patterns/pattern-script-almond.png");
    opacity: 0.45;
    -webkit-mask-image: radial-gradient(ellipse 95% 170% at 20% 55%, transparent 36%, rgba(0, 0, 0, 0.4) 58%, #000 80%);
    mask-image: radial-gradient(ellipse 95% 170% at 20% 55%, transparent 36%, rgba(0, 0, 0, 0.4) 58%, #000 80%);
  }
}
@media (max-width: 660px) {
  .page-hero--pattern::before {
    -webkit-mask-image: radial-gradient(ellipse 150% 130% at 35% 50%, transparent 52%, rgba(0, 0, 0, 0.4) 72%, #000 92%);
    mask-image: radial-gradient(ellipse 150% 130% at 35% 50%, transparent 52%, rgba(0, 0, 0, 0.4) 72%, #000 92%);
  }
}
.page-hero .container { position: relative; }
.page-hero h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); margin-top: var(--s-2); max-width: 16ch; }
.page-hero .lead { margin-top: var(--s-2); color: var(--ink-muted); max-width: 52ch; }

/* ------------------------------ Misc ------------------------------ */
.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;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--primary); color: var(--dove);
  padding: 0.75rem 1.25rem; border-radius: 0 0 var(--r-sm) 0;
  z-index: 999; text-decoration: none;
}
.skip-link:focus { left: 0; }

.detail-list { display: grid; gap: var(--s-2); }
.detail-list li { display: flex; gap: 0.875rem; align-items: flex-start; }
.detail-list .icon { color: var(--accent); margin-top: 4px; width: 20px; height: 20px; }

.badge-note {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-label);
  font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--velvet);
  background: var(--linen);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0.625rem 1.25rem;
}
.badge-note .icon { width: 16px; height: 16px; }
