/* ==========================================================================
   The Stillwater Wellness Center — stillwater.css
   Single stylesheet. No external dependencies, no webfonts.
   ========================================================================== */

:root {
  /* REPLACEABLE IMAGES
     Swap any file in assets/ with your own to change these backgrounds.
     Keep the same file name, or edit the URL here. */
  --img-hero-texture: url("assets/stones-petals-bg.jpg");
  --img-band-massage: url("assets/massage-back-2.jpg");
  --img-band-facial: url("assets/facial-massage.jpg");
  --img-band-waxing: url("assets/waxing-honey.jpg");
  /* END REPLACEABLE IMAGES */

  --ink: #13272c;
  --ink-soft: #41565c;
  --ink-faint: #57696f;
  --teal: #2f6d78;
  --teal-dark: #1d4c55;
  --teal-deep: #12343b;
  --teal-wash: #e6f0f1;
  --sand: #f6efe4;
  --cream: #fdfaf6;
  --brass: #8c6229;
  --line: #e4dacb;
  --white: #ffffff;

  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --wrap: 1160px;
  --wrap-narrow: 780px;
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(19, 39, 44, .07);
  --shadow-md: 0 10px 34px rgba(19, 39, 44, .11);
  --shadow-lg: 0 22px 60px rgba(19, 39, 44, .16);
  --header-h: 66px;
}

/* --------------------------------------------------------- reset & 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; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-dark); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brass); }
:focus-visible { outline: 3px solid var(--brass); outline-offset: 2px; border-radius: 3px; }
/* The brass ring only reaches 2.5:1 against the deep-teal surfaces, below the
   3:1 WCAG 2.4.11 floor — use a light ring wherever the background is dark. */
.page-hero :focus-visible, .cta-band :focus-visible, .section-teal :focus-visible,
.trustbar :focus-visible, .site-footer :focus-visible { outline-color: #f0c674; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.16;
  margin: 0 0 .55em;
  font-weight: 600;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.05rem, 1.35rem + 2.9vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 1.2rem + 1.7vw, 2.35rem); }
h3 { font-size: clamp(1.18rem, 1.06rem + .5vw, 1.4rem); }
h4 { font-size: 1.03rem; font-family: var(--font-body); font-weight: 700; letter-spacing: .01em; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
strong { color: var(--ink); }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: var(--wrap-narrow); }
.eyebrow {
  font-family: var(--font-body);
  font-size: .76rem; font-weight: 700; letter-spacing: .17em;
  text-transform: uppercase; color: var(--teal); margin: 0 0 .85rem;
}
.lead { font-size: clamp(1.05rem, .98rem + .35vw, 1.22rem); color: var(--ink-soft); }
.center { text-align: center; }
.sr-only {
  position: absolute !important; 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: 12px; top: -60px; z-index: 200;
  background: var(--teal-deep); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 8px;
  text-decoration: none; transition: top .15s;
}
.skip-link:focus { top: 0; color: #fff; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-size: .95rem; font-weight: 700; letter-spacing: .015em;
  padding: .88em 1.6em; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: background-color .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s;
}
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 6px 18px rgba(47, 109, 120, .28); }
.btn-primary:hover { background: var(--teal-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(47, 109, 120, .34); }
.btn-outline { background: transparent; color: var(--teal-dark); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal-wash); color: var(--teal-deep); transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--teal-deep); }
.btn-light:hover { background: var(--sand); color: var(--teal-deep); transform: translateY(-2px); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); color: #fff; border-color: #fff; transform: translateY(-2px); }
.btn-lg { font-size: 1.02rem; padding: 1.02em 2em; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.btn-row.center { justify-content: center; }

.textlink {
  font-weight: 700; font-size: .93rem; letter-spacing: .01em;
  text-decoration: none; color: var(--teal-dark);
  border-bottom: 2px solid var(--teal-wash); padding-bottom: 2px;
}
.textlink:hover { border-bottom-color: var(--brass); color: var(--brass); }
.textlink::after { content: " \2192"; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; flex-shrink: 0; }
.brand img { width: 46px; height: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: var(--font-display); font-size: 1.06rem; font-weight: 600;
  color: var(--ink); letter-spacing: .005em;
}
.brand-sub { font-size: .64rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-faint); }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.header-tel {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 700; font-size: .93rem; color: var(--teal-dark); text-decoration: none;
  white-space: nowrap;
}
.header-tel:hover { color: var(--brass); }
.header-tel svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }
.header-tel .tel-label { display: none; }

.nav-toggle {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--teal-wash); color: var(--teal-deep); border: 0; cursor: pointer;
  font-family: var(--font-body); font-size: .82rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: .6em .9em; border-radius: 999px;
}
.nav-toggle:hover { background: #d6e6e8; }
.nav-toggle .bars { display: block; width: 16px; height: 2px; background: currentColor; position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 16px; height: 2px; background: currentColor;
}
.nav-toggle .bars::before { top: -5px; } .nav-toggle .bars::after { top: 5px; }
.no-js .nav-toggle { display: none; }

/* nav */
.site-nav { font-size: .95rem; }
.site-nav ul { list-style: none; margin: 0; padding: 0; }
.site-nav a {
  display: block; text-decoration: none; color: var(--ink);
  font-weight: 600; padding: .55rem 0;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--teal); }
.site-nav a[aria-current="page"] { text-decoration: underline; text-decoration-color: var(--brass); text-decoration-thickness: 2px; }
.nav-group > span {
  display: block; font-weight: 700; color: var(--ink-faint); padding: .55rem 0 .2rem;
  font-size: .74rem; letter-spacing: .15em; text-transform: uppercase;
}
.nav-group ul { padding-left: .9rem; border-left: 2px solid var(--line); }
.nav-group ul a { font-weight: 500; font-size: .92rem; color: var(--ink-soft); }

@media (max-width: 1023px) {
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--white); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md); max-height: calc(100vh - var(--header-h));
    overflow-y: auto; padding: .6rem 20px 1.6rem;
  }
  .site-nav.is-open { display: block; }
  /* Without JavaScript the toggle is hidden, so the menu sits in the flow
     rather than as an overlay, and the header stops being sticky. */
  .no-js .site-header { position: static; }
  .no-js .header-inner { flex-wrap: wrap; }
  .no-js .site-nav {
    display: block; position: static; flex-basis: 100%; order: 3;
    max-height: none; overflow: visible; box-shadow: none;
    border-bottom: 0; padding: .2rem 0 1rem;
  }
  .site-nav > ul > li { border-bottom: 1px solid #f0eae0; padding: .2rem 0; }
  .nav-cta-mobile { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.1rem; }
  .nav-cta-mobile .btn { flex: 1 1 45%; }
}
@media (min-width: 1024px) {
  :root { --header-h: 78px; }
  .site-nav { display: block !important; }
  .site-nav > ul { display: flex; align-items: center; gap: 1.5rem; }
  .site-nav > ul > li { position: relative; }
  .site-nav > ul > li > a, .nav-group > span {
    padding: 1.4rem 0; font-size: .93rem; text-transform: none; letter-spacing: 0;
    color: var(--ink); font-weight: 600; cursor: default; white-space: nowrap;
  }
  .nav-group > span::after { content: " \25BE"; color: var(--ink-faint); font-size: .8em; }
  .nav-group > span:hover { color: var(--teal); }
  .nav-group ul {
    position: absolute; top: 100%; left: -1.1rem; min-width: 240px;
    background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
    box-shadow: var(--shadow-md); padding: .6rem; opacity: 0; visibility: hidden;
    transform: translateY(6px); transition: opacity .16s, transform .16s, visibility .16s;
  }
  .nav-group:hover ul, .nav-group:focus-within ul { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-group > span:focus-visible { outline-offset: -4px; }
  .nav-group ul a { padding: .5rem .75rem; border-radius: var(--r-sm); font-size: .92rem; }
  .nav-group ul a:hover { background: var(--teal-wash); }
  .nav-cta-mobile { display: none; }
  .header-tel .tel-label { display: inline; }
}
@media (max-width: 479px) {
  .brand-sub { display: none; }
  .brand-name { font-size: .97rem; }
  .header-tel span:not(.tel-label) { display: none; }
  .header-tel { padding: .55em; background: var(--teal-wash); border-radius: 999px; }
}
.header-actions .btn { padding: .68em 1.15em; font-size: .88rem; }
@media (max-width: 767px) { .header-actions .btn-book { display: none; } }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; background: var(--sand);
  background-image: linear-gradient(to bottom, rgba(246,239,228,.92), rgba(246,239,228,.99)), var(--img-hero-texture);
  background-size: cover; background-position: center;
  padding: clamp(2.4rem, 1.4rem + 4vw, 4.5rem) 0 clamp(2.4rem, 1.4rem + 4vw, 4.5rem);
  overflow: hidden;
}
.hero-grid { display: grid; gap: clamp(1.8rem, 1rem + 3vw, 3.4rem); align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr .95fr; } }
.hero h1 { margin-bottom: .4em; }
.hero .lead { max-width: 33rem; }
.hero-cta { margin: 1.7rem 0 1.2rem; }
.hero-assure { font-size: .88rem; color: var(--ink-faint); margin: 0; }
.hero-assure strong { color: var(--teal-dark); }

.hero-figure { position: relative; margin: 0; }
.hero-figure img {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.hero-figure figcaption {
  background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: .85rem 1.1rem; font-size: .84rem; color: var(--ink-soft); line-height: 1.45;
  margin: -1.6rem 1rem 0; position: relative; z-index: 2;
}
.hero-figure figcaption strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1rem; }

/* page hero (inner pages) */
.page-hero {
  background: var(--teal-deep); color: #fff;
  padding: clamp(2.6rem, 1.8rem + 3.2vw, 4.6rem) 0 clamp(2.4rem, 1.6rem + 3vw, 4rem);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 120% at 85% 10%, rgba(47,109,120,.55), transparent 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero .eyebrow { color: #9fc8cd; }
.page-hero p { color: #cfe0e2; max-width: 56ch; font-size: clamp(1rem, .95rem + .3vw, 1.15rem); }
.page-hero .btn-row { margin-top: 1.6rem; }
.breadcrumbs { font-size: .8rem; color: #b9d4d8; margin-bottom: 1rem; }
.breadcrumbs a { color: #cfe0e2; text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs span { margin: 0 .4rem; opacity: .6; }

/* --------------------------------------------------------------- sections */
.section { padding: clamp(2.8rem, 1.8rem + 4vw, 5.2rem) 0; }
.section-tight { padding: clamp(2rem, 1.4rem + 2.6vw, 3.4rem) 0; }
.section-sand { background: var(--sand); }
.section-cream { background: var(--cream); }
.section-teal { background: var(--teal-deep); color: #cfe0e2; }
.section-teal h2, .section-teal h3 { color: #fff; }
.section-teal .eyebrow { color: #9fc8cd; }
.section-head { max-width: 62ch; margin-bottom: clamp(1.8rem, 1.2rem + 2vw, 2.8rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p:last-child { margin-bottom: 0; }

/* trust bar */
.trustbar { background: var(--teal-deep); color: #cfe0e2; padding: 1.5rem 0; }
.trustbar ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem 1.8rem; grid-template-columns: 1fr;
}
@media (min-width: 620px) { .trustbar ul { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .trustbar ul { grid-template-columns: repeat(4, 1fr); } }
.trustbar li { margin: 0; display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; line-height: 1.45; }
.trustbar strong { display: block; color: #fff; font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; }
.trustbar .tick {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(159,200,205,.18); color: #9fc8cd; display: grid; place-items: center;
  font-size: .75rem; margin-top: 2px;
}

/* grids */
.grid { display: grid; gap: 1.4rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* service cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d3c7b3; }
.card-media { margin: 0; background: var(--teal-wash); }
.card-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card-body { padding: 1.3rem 1.35rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { margin-bottom: .4em; }
.card-body h3 a { color: inherit; text-decoration: none; }
.card-body h3 a:hover { color: var(--teal); }
.card-body p { font-size: .95rem; margin-bottom: 1rem; }
.card-body .textlink { margin-top: auto; align-self: flex-start; }
.card .price { display: block; font-weight: 700; color: var(--brass); margin-bottom: .8rem; }

/* plain list cards (benefits) */
.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.35rem 1.4rem;
}
.section-sand .tile, .section-cream .tile { background: #fff; }
.tile h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; margin-bottom: .45em; color: var(--ink); }
.tile p:last-child { margin-bottom: 0; }
.tile .num {
  display: inline-grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
  background: var(--teal-wash); color: var(--teal-dark); font-weight: 700; font-size: .9rem;
  margin-bottom: .8rem;
}
.section-teal .tile { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.section-teal .tile p { color: #cfe0e2; }
.section-teal .tile .num { background: rgba(159,200,205,.16); color: #9fc8cd; }

/* split feature */
.split { display: grid; gap: clamp(1.6rem, 1rem + 2.6vw, 3.2rem); align-items: center; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } .split.split-wide-text { grid-template-columns: 1.15fr .85fr; } }
.split img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; }
@media (min-width: 880px) { .split.reverse .split-media { order: 2; } }
.split-body > :last-child { margin-bottom: 0; }

/* checklist */
.checks { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.checks li { position: relative; padding-left: 1.85rem; margin-bottom: .7rem; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--teal); box-shadow: 0 0 0 4px var(--teal-wash);
}
.section-teal .checks li::before { background: #9fc8cd; box-shadow: 0 0 0 4px rgba(159,200,205,.18); }

/* ------------------------------------------------------------------ team */
.team-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.person {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  display: flex; flex-direction: column; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.person:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.person-photo {
  margin: 0; background: var(--sand); display: flex; align-items: flex-start; justify-content: center;
}
.person-photo img { width: 100%; height: auto; }
.person-body { padding: 1.25rem 1.3rem 1.45rem; display: flex; flex-direction: column; flex: 1; }
.person-body h3 { margin-bottom: .15em; font-size: 1.2rem; }
.person-role {
  font-size: .82rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--teal); margin: 0 0 .85rem; line-height: 1.45;
}
.person-services { font-size: .93rem; margin-bottom: 1.1rem; }
.person-services strong { display: block; font-size: .76rem; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: .3rem; }
.person-actions { margin-top: auto; display: flex; flex-wrap: wrap; gap: .55rem; align-items: center; }
.person-actions .btn { font-size: .84rem; padding: .62em 1.1em; }
.person-tel { font-size: .88rem; font-weight: 700; color: var(--teal-dark); text-decoration: none; white-space: nowrap; }
.person-tel:hover { color: var(--brass); }

.notice {
  background: var(--teal-wash); border-left: 4px solid var(--teal);
  padding: 1.1rem 1.3rem; border-radius: 0 var(--r-md) var(--r-md) 0; font-size: .95rem;
}
.notice p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------- testimonials */
.quotes { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 680px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.6rem 1.5rem 1.4rem; display: flex; flex-direction: column;
  position: relative;
}
.quote::before {
  content: "\201C"; font-family: var(--font-display); font-size: 4rem; line-height: 1;
  color: var(--teal-wash); position: absolute; top: .35rem; right: 1rem;
}
.quote blockquote { margin: 0 0 1.1rem; font-size: .98rem; color: var(--ink-soft); position: relative; z-index: 1; }
.quote figcaption { margin-top: auto; }
.quote .q-author { font-weight: 700; color: var(--ink); display: block; }
.quote .q-source { font-size: .8rem; color: var(--ink-faint); }
.stars { color: var(--brass); letter-spacing: .12em; font-size: .95rem; margin-bottom: .75rem; }

/* ------------------------------------------------------------------ blog */
.post-list { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .post-list { grid-template-columns: repeat(3, 1fr); } }
.post-card .card-body .tag {
  font-size: .72rem; letter-spacing: .13em; text-transform: uppercase;
  color: var(--brass); font-weight: 700; margin-bottom: .5rem;
}
.article-body { max-width: 72ch; }
.article-body h2 { margin-top: 2.2rem; }
.article-body h3 { margin-top: 1.8rem; }
.article-body ul { padding-left: 1.2em; }
.article-body .byline { font-size: .88rem; color: var(--ink-faint); font-style: italic; }

/* ---------------------------------------------------------------- bands */
.cta-band {
  position: relative; color: #fff; overflow: hidden;
  padding: clamp(2.8rem, 2rem + 3.4vw, 4.8rem) 0;
  background-color: var(--teal-deep);
  background-image: linear-gradient(rgba(18,52,59,.9), rgba(18,52,59,.93)), var(--img-band-massage);
  background-size: cover; background-position: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #d5e4e6; max-width: 55ch; }
.cta-band .btn-row { margin-top: 1.7rem; }
.cta-facial { background-image: linear-gradient(rgba(18,52,59,.9), rgba(18,52,59,.93)), var(--img-band-facial); }
.cta-waxing { background-image: linear-gradient(rgba(18,52,59,.9), rgba(18,52,59,.93)), var(--img-band-waxing); }

/* --------------------------------------------------------------- contact */
.contact-grid { display: grid; gap: 2.2rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: .92fr 1.08fr; } }
.info-list { list-style: none; margin: 0 0 1.8rem; padding: 0; }
.info-list li { display: flex; gap: .9rem; margin-bottom: 1.15rem; }
.info-list .ic {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; background: var(--teal-wash);
  display: grid; place-items: center; color: var(--teal-dark);
}
.info-list .ic svg { width: 17px; height: 17px; fill: currentColor; }
.info-list dt, .info-list .lbl {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint);
  font-weight: 700; margin-bottom: .1rem;
}
.info-list a { font-weight: 700; color: var(--teal-dark); text-decoration: none; }
.info-list a:hover { color: var(--brass); }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.4rem, 1rem + 1.4vw, 2.2rem); box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink); margin-bottom: .38rem; }
.field .req { color: var(--brass); }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .78em .95em; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); transition: border-color .16s, box-shadow .16s, background-color .16s;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 3px rgba(47,109,120,.16);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; gap: 0 1rem; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.form-note { font-size: .84rem; color: var(--ink-faint); margin: .9rem 0 0; }
.form-status { margin: 1rem 0 0; padding: .95rem 1.1rem; border-radius: var(--r-sm); font-size: .94rem; }
.form-status[hidden] { display: none; }
.form-status.ok { background: var(--teal-wash); border-left: 4px solid var(--teal); color: var(--teal-deep); }
.form-status.err { background: #fdf0e6; border-left: 4px solid var(--brass); color: #6f4c1c; }
.cf-turnstile { margin: .4rem 0 1.1rem; }

/* ------------------------------------------------------------ price list */
.pricelist { list-style: none; margin: 0; padding: 0; }
.pricelist li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: .4rem 1rem;
  padding: .95rem 0; border-bottom: 1px solid var(--line); margin: 0;
}
.pricelist .pl-name { font-weight: 700; color: var(--ink); }
.pricelist .pl-desc { flex: 1 1 100%; font-size: .92rem; margin: .25rem 0 0; }

/* ------------------------------------------------------------------- faq */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
.faq-item h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; margin-bottom: .5em; }
.faq-item p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ misc */
.linkgrid { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem 1.5rem; }
@media (min-width: 620px) { .linkgrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px) { .linkgrid { grid-template-columns: repeat(3, 1fr); } }
.linkgrid a { font-weight: 600; text-decoration: none; }
.linkgrid a:hover { text-decoration: underline; }

.figure-note { font-size: .82rem; color: var(--ink-faint); margin-top: .6rem; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--teal-deep); color: #b9cfd2; padding: clamp(2.6rem, 2rem + 2.4vw, 4rem) 0 1.8rem; font-size: .94rem; }
.footer-top { display: grid; gap: 2rem; margin-bottom: 2.4rem; }
@media (min-width: 700px) { .footer-top { grid-template-columns: 1.3fr 1fr; } }
@media (min-width: 1000px) { .footer-top { grid-template-columns: 1.4fr .8fr .8fr 1.1fr; } }
.site-footer h2, .site-footer h3 { color: #fff; }
.footer-col h3 {
  font-family: var(--font-body); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: #9fc8cd; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a { color: #cfe0e2; text-decoration: none; }
.footer-col a:hover { color: #fff; text-decoration: underline; }
.footer-brand img { width: 56px; margin-bottom: 1rem; }
.footer-brand p { color: #b9cfd2; max-width: 36ch; }
.footer-brand .tagline { font-family: var(--font-display); font-size: 1.12rem; color: #fff; margin-bottom: .7rem; }
.footer-contact address { font-style: normal; }
.footer-contact a { color: #fff; font-weight: 700; }
.footer-sub { font-size: .86rem; color: #93b0b4; margin-top: .3rem; display: block; }
.social-links { display: flex; gap: .6rem; margin-top: 1.1rem; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.09); color: #fff;
}
.social-links a:hover { background: var(--teal); }
.social-links svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.13); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; justify-content: space-between; align-items: center;
  font-size: .84rem; color: #8ba9ad;
}
.footer-bottom a { color: #b9cfd2; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; }
[data-ss-credit] { color: #7e9ca0; }
[data-ss-credit] a { color: #9fc8cd; text-decoration: underline; }

/* print */
@media print {
  .site-header, .cta-band, .site-footer nav, .nav-toggle { display: none !important; }
  body { color: #000; }
}
