/* ==========================================================================
   Healastic Registered Massage Therapy — site styles
   Brand palette derived from the logo: indigo wordmark, teal-blue mark.
   ========================================================================== */

@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/fonts/playfair-display-latin.woff2') format('woff2-variations'),
       url('/assets/fonts/playfair-display-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Source Sans 3';
  src: url('/assets/fonts/source-sans-3-latin.woff2') format('woff2-variations'),
       url('/assets/fonts/source-sans-3-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink:        #241f3d;
  --ink-2:      #3b3560;
  --muted:      #66607e;
  --accent:     #14618f;
  --accent-dk:  #0e4a6e;
  --accent-lt:  #e8f1f7;
  --bg:         #fbfaf8;
  --surface:    #ffffff;
  --surface-2:  #f4f2ef;
  --line:       #e5e2ec;
  --gold:       #b08d57;

  --wrap: 1140px;
  --gap: clamp(1rem, 3vw, 2rem);
  --radius: 14px;
  --shadow-sm: 0 1px 2px rgba(36,31,61,.06), 0 2px 8px rgba(36,31,61,.05);
  --shadow-md: 0 4px 12px rgba(36,31,61,.08), 0 12px 32px rgba(36,31,61,.07);

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::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: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.18; color: var(--ink); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 1.4rem + 2.8vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 1.25rem + 1.6vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); }
h4 { font-size: clamp(1.08rem, 1rem + .35vw, 1.25rem); font-weight: 600; }
p  { margin: 0 0 1.1em; }
p:last-child, ul:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-dk); }

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

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

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }
.narrow { width: min(100% - 2.5rem, 760px); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

.eyebrow {
  font-family: var(--font-body); font-size: .78rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin: 0 0 .8rem;
}
.eyebrow.on-dark { color: #bfe0f2; }

/* ----- buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .82rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-on-dark { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(4px); }
.btn-on-dark:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ----- header ----- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 72px; }
.brand { display: flex; align-items: center; gap: .65rem; text-decoration: none; margin-right: auto; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.24rem; color: var(--ink); letter-spacing: .01em; }
.brand-sub { font-size: .66rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); }

.nav { display: flex; align-items: center; gap: .15rem; }
/* :not(.btn) matters — a bare `.nav a` rule out-specifies .btn-primary and
   strips the CTA's background, leaving white text on a white header. */
.nav a:not(.btn), .nav .nav-btn {
  font-size: .82rem; font-weight: 500; color: var(--ink-2); text-decoration: none;
  text-transform: uppercase; letter-spacing: .071em;   /* matches the original site */
  padding: .5rem .7rem; border-radius: 8px; background: none; border: 0;
  font-family: var(--font-body); cursor: pointer; line-height: 1.4; white-space: nowrap;
}
.nav a:not(.btn):hover, .nav .nav-btn:hover { background: var(--surface-2); color: var(--ink); }
.nav a[aria-current="page"] { color: var(--accent); }
.nav .btn { margin-left: .55rem; padding: .62rem 1.2rem; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .071em; }
.nav a.btn-primary { color: #fff; background: var(--accent); }
.nav a.btn-primary:hover { color: #fff; background: var(--accent-dk); }
.nav .nav-phone { color: var(--ink); font-weight: 700; white-space: nowrap; margin-left: .5rem;
  letter-spacing: .04em; }
.nav .nav-phone:hover { color: var(--accent); background: transparent; }

/* ----- dropdowns ----- */
.nav-item { position: relative; }
.nav-btn { display: inline-flex; align-items: center; gap: .35rem; }
/* clickable parent + its own caret toggle, so the label still navigates */
.nav-item > .nav-parent { padding-right: .3rem; }
.nav-caret-btn { background: none; border: 0; cursor: pointer; padding: .5rem .5rem .5rem .2rem;
  display: inline-flex; align-items: center; color: var(--ink-2); border-radius: 8px; }
.nav-caret-btn:hover { color: var(--accent); background: var(--surface-2); }
.nav-item[data-active="true"] > .nav-parent { color: var(--accent); }
.nav-item[data-active="true"] > .nav-btn { color: var(--accent); }

.nav-menu {
  position: absolute; top: calc(100% + .45rem); left: 0; min-width: 15rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 2px 4px rgba(36,31,61,.05), 0 14px 34px rgba(36,31,61,.12);
  padding: .4rem; display: flex; flex-direction: column; gap: .1rem; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-item:hover > .nav-menu,
.nav-item[data-open="true"] > .nav-menu,
.nav-menu:focus-within {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-menu { min-width: 17.5rem; }
/* .nav a:not(.btn) is (0,2,1) — a bare `.nav-menu a` loses to it and the rows
   inherit the uppercase nav treatment. Match the weight to win it back. */
.nav .nav-menu a:not(.btn) { display: block; padding: .6rem .75rem; border-radius: 8px;
  white-space: nowrap; text-transform: none; letter-spacing: normal; }
.nav .nav-menu a:not(.btn):hover { background: var(--accent-lt); }
.nm-name { display: block; font-weight: 600; font-size: .95rem; color: var(--ink); line-height: 1.35; }
.nm-desc { display: block; font-size: .8rem; color: var(--muted); line-height: 1.35; }
.nav-menu a:hover .nm-name { color: var(--accent-dk); }
.nav-menu a[aria-current="page"] .nm-name { color: var(--accent); }

@media (max-width: 900px) {
  .nav-item { position: static; }
  .nav-btn, .nav-item > .nav-parent { width: 100%; justify-content: space-between;
    padding: .75rem .4rem; border-bottom: 1px solid var(--line); border-radius: 0; display: block; }
  .nav-caret, .nav-caret-btn { display: none; }
  /* groups stay open on mobile - no disclosure inside a disclosure */
  .nav-menu { position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; padding: 0 0 .5rem .7rem; min-width: 0;
    border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-menu a { padding: .55rem .4rem; border-bottom: 0; font-weight: 500; }
}

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 9px;
  width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; position: relative;
}
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; inset: 72px 0 auto; flex-direction: column; align-items: stretch;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: .6rem 1.25rem 1.1rem; gap: .1rem; box-shadow: var(--shadow-md);
    display: none;
  }
  .nav[data-open="true"] { display: flex; }
  .nav a { padding: .75rem .4rem; border-radius: 0; border-bottom: 1px solid var(--line); }
  .nav .btn { margin: .7rem 0 0; justify-content: center; border-bottom: 0; }
}

/* ----- hero ----- */
.hero { position: relative; min-height: clamp(460px, 74vh, 680px); display: grid; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,17,38,.62) 0%, rgba(20,17,38,.48) 45%, rgba(20,17,38,.72) 100%);
}
.hero-content { position: relative; padding: clamp(3rem, 8vw, 6rem) 0; color: #fff; max-width: 46rem; }
.hero-content h1 { color: #fff; text-wrap: balance; }
.hero-tag { font-size: clamp(1.05rem, .98rem + .45vw, 1.3rem); color: #ece9f5; margin-bottom: 1.8rem; max-width: 34rem; }

/* ----- sections ----- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--surface-2); }
.section-ink { background: var(--ink); color: #ddd9ec; }
.section-ink h2, .section-ink h3 { color: #fff; }
.section-head { max-width: 44rem; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.no-gap { margin-bottom: 0; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section-ink .section-head p { color: #b9b3d0; }

.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); }
.service-group .grid { align-items: start; }
.grid-2x2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); line-height: 0; }
.map-embed iframe { display: block; width: 100%; }

/* ----- nav phone ----- */
.nav .nav-phone { color: var(--ink); font-weight: 700; white-space: nowrap; }
.nav .nav-phone:hover { color: var(--accent); background: transparent; }

/* ----- full-bleed split (matches the original site's about layout) ----- */
.split-bleed { display: grid; gap: 0; align-items: stretch; }
@media (min-width: 880px) { .split-bleed { grid-template-columns: 1.2fr 0.8fr; } }
.split-bleed .bleed-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3.5rem);
  padding-left: max(1.25rem, calc((100vw - var(--wrap)) / 2));
}
@media (max-width: 879px) { .split-bleed .bleed-text { padding-left: 1.25rem; } }
.split-bleed .bleed-media { margin: 0; min-height: 340px; }
.split-bleed .bleed-media img { width: 100%; height: 100%; object-fit: cover; }

/* ----- Google reviews band ----- */
.reviews-bar { background: var(--surface-2); padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.6rem, 6vw, 4rem);
  overflow: hidden; }

.rv-intro { text-align: center; max-width: 44rem; margin-inline: auto;
  margin-bottom: clamp(2rem, 4vw, 2.8rem); }
.rv-score { display: flex; align-items: center; justify-content: center; gap: .5rem;
  flex-wrap: wrap; margin: 0 0 .9rem; }
.g-word { font-family: var(--font-body); font-weight: 600; font-size: 1.28rem; letter-spacing: -.01em; }
.rv-rw { font-family: var(--font-body); font-weight: 700; font-size: 1.28rem; color: var(--ink);
  margin-right: .25rem; }
.rv-num { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.rv-intro h2 { margin: 0 0 .5rem; }
.rv-sub { color: var(--muted); margin: 0; font-size: 1.05rem; }

.rv-marquee { position: relative; }
.rv-marquee::before, .rv-marquee::after { content: ''; position: absolute; top: 0; bottom: 0;
  width: clamp(28px, 8vw, 120px); z-index: 2; pointer-events: none; }
.rv-marquee::before { left: 0; background: linear-gradient(90deg, var(--surface-2), transparent); }
.rv-marquee::after { right: 0; background: linear-gradient(270deg, var(--surface-2), transparent); }

.rv-track { display: flex; gap: 1.25rem; width: max-content; padding: .5rem 0;
  animation: rv-scroll var(--rv-dur, 60s) linear infinite; }
.rv-marquee:hover .rv-track, .rv-track:focus-within { animation-play-state: paused; }
@keyframes rv-scroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }

.rv-card { flex: 0 0 auto; width: min(86vw, 380px); margin: 0;
  background: var(--surface); border: 1px solid var(--line); border-radius: 18px;
  padding: 1.5rem 1.6rem 1.6rem;
  box-shadow: 0 1px 2px rgba(36,31,61,.05), 0 10px 28px rgba(36,31,61,.06);
  display: flex; flex-direction: column; gap: .85rem; }

.rv-head { display: flex; align-items: center; gap: .8rem; }
.rv-face { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex: 0 0 auto;
  background: var(--surface-2); }
.rv-face-ph { display: grid; place-items: center; font-family: var(--font-head); font-weight: 700;
  color: var(--accent); background: var(--accent-lt); font-size: 1.2rem; }
.rv-who { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.rv-name { font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.rv-role { font-size: .85rem; color: var(--muted); }
.g-mark { width: 1.25rem; height: 1.25rem; margin-left: auto; flex: 0 0 auto; opacity: .85; }

.rv-card .stars, .rv-score .stars { color: #FBBC04; letter-spacing: .08em; font-size: 1.05rem;
  line-height: 1; }
.rv-quote { margin: 0; color: var(--ink-2); font-size: 1rem; line-height: 1.68;
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden; }
.rv-quote::before { content: '\201C'; }
.rv-quote::after  { content: '\201D'; }

.rv-foot { text-align: center; margin-top: clamp(1.8rem, 4vw, 2.6rem); }
.rv-foot .btn-ghost { background: var(--surface); }

@media (prefers-reduced-motion: reduce) {
  .rv-track { animation: none; width: 100%; overflow-x: auto; scroll-snap-type: x mandatory; }
  .rv-card { scroll-snap-align: start; }
  .rv-marquee::before, .rv-marquee::after { display: none; }
}

/* ----- reviews ----- */
.reviews { background: var(--surface-2); }
.stars { color: var(--gold); letter-spacing: .1em; font-size: 1.05rem; }
.review { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.7rem); box-shadow: var(--shadow-sm); display: flex;
  flex-direction: column; gap: .7rem; }
.review blockquote { margin: 0; color: var(--ink-2); }
.review cite { font-style: normal; font-weight: 600; font-size: .93rem; color: var(--muted); }
.rating-line { font-weight: 600; color: var(--ink-2); margin-top: .3rem; }
.rating-line .stars { margin-right: .35rem; }
.trust-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2.4rem;
  text-align: center; color: var(--ink-2); font-weight: 600; }
.trust-strip span { display: inline-flex; align-items: center; gap: .55rem; }
.footer-map { margin-bottom: 1rem; border-color: rgba(255,255,255,.15); }
/* ----- visit block (map + details) ----- */
.visit-grid { display: grid; gap: var(--gap); align-items: stretch;
  grid-template-columns: 1fr; }
@media (min-width: 900px) { .visit-grid { grid-template-columns: 1.05fr .95fr; } }
.visit-map { min-height: 380px; }
.visit-map iframe { display: block; width: 100%; height: 100%; min-height: 380px; }
.visit-details { background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.visit-details .contact-list dd { font-size: 1rem; }
.vd-sub { color: var(--muted); font-size: .92rem; }

.loc-svc-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.loc-svc-list li { display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem; padding: .75rem .2rem; border-bottom: 1px solid var(--line); }
.loc-svc-name { font-weight: 600; color: var(--ink); }
.loc-svc-name a { color: inherit; text-decoration: none; }
.loc-svc-name a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.loc-svc-meta { font-family: var(--font-body); font-size: .88rem; color: var(--muted);
  white-space: nowrap; font-variant-numeric: tabular-nums; }

/* ----- price table ----- */
.price-table-wrap { overflow-x: auto; margin-top: 2rem; border: 1px solid var(--line);
  border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); }
.price-table { width: 100%; border-collapse: collapse; font-size: 1rem; }
.price-table thead th { text-align: left; font-family: var(--font-body); font-size: .74rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 700;
  padding: .9rem 1.2rem; border-bottom: 1px solid var(--line); }
.price-table thead th:last-child { text-align: right; }
.price-table .price-group th { font-family: var(--font-head); font-size: 1.12rem; font-weight: 600;
  color: var(--ink); padding: 1.35rem 1.2rem .55rem; text-align: left; }
.price-table tbody tr:not(.price-group) { border-top: 1px solid var(--line); }
.price-table tbody th { text-align: left; font-weight: 400; padding: .95rem 1.2rem; }
.pr-name { display: block; font-weight: 600; color: var(--ink); }
.pr-name a { color: inherit; text-decoration: none; }
.pr-name a:hover { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.pr-dur { display: block; font-size: .85rem; color: var(--muted); }
.pr-cost { text-align: right; padding: .95rem 1.2rem; font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 700; color: var(--accent); white-space: nowrap; vertical-align: top; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; }

.giftcard { display: flex; flex-wrap: wrap; align-items: center; gap: 1.2rem 2rem;
  justify-content: space-between; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-sm); }
.giftcard > div { flex: 1 1 22rem; }
.giftcard h2 { margin: 0 0 .45rem; font-size: clamp(1.3rem, 1.15rem + .6vw, 1.6rem); }
.giftcard p { margin: 0; color: var(--muted); }
.giftcard .btn { flex: 0 0 auto; }

/* ----- direct billing status ----- */
.status-grid { display: grid; gap: var(--gap); margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); align-items: start; }
.status-card { border-radius: var(--radius); padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-sm); }
.status-card h2 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.55rem); margin-bottom: .6rem; }
.status-card p:last-child { margin-bottom: 0; }
.status-card .ticks + p { margin-top: 1.1rem; }
.status-tag { font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  margin: 0 0 .7rem; display: inline-block; padding: .28rem .6rem; border-radius: 999px; }
.status-now { border-color: #bcd9c9; background: #f4faf6; }
.status-now .status-tag { background: #1f6b45; color: #fff; }
.status-soon .status-tag { background: var(--surface-2); color: var(--muted); }

.ins-callout { background: var(--accent-lt); border-color: #cfe2ef; }
.ins-note { font-size: .95rem; color: var(--ink-2); background: var(--accent-lt);
  border: 1px solid #cfe2ef; border-radius: 10px; padding: .85rem 1rem; }

.insurer-list { list-style: none; padding: 0; margin: 1.2rem 0;
  display: grid; gap: .4rem .9rem; font-size: .95rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); }
.insurer-list li { color: var(--ink-2); padding-left: 1.1rem; position: relative; }
.insurer-list li::before { content: ''; position: absolute; left: 0; top: .62em;
  width: .32rem; height: .32rem; border-radius: 50%; background: var(--accent); }
.small-note { font-size: .88rem; color: var(--muted); }

/* ----- breadcrumbs ----- */
.crumbs { font-size: .88rem; color: var(--muted); margin-bottom: 1.4rem; display: flex;
  flex-wrap: wrap; gap: .45rem; align-items: center; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); text-decoration: underline; }
.crumbs [aria-current] { color: var(--ink); font-weight: 600; }

/* ----- FAQ ----- */
.faq { margin-top: 2.6rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  margin-bottom: .7rem; box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; list-style: none; padding: 1rem 3rem 1rem 1.2rem;
  font-family: var(--font-head); font-size: 1.08rem; font-weight: 600; color: var(--ink);
  position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ''; position: absolute; right: 1.3rem; top: 1.4rem;
  width: .6rem; height: .6rem; border-right: 2.5px solid var(--accent);
  border-bottom: 2.5px solid var(--accent); transform: rotate(45deg); transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(-135deg); top: 1.6rem; }
.faq-item summary:hover { color: var(--accent); }
.faq-answer { padding: 0 1.2rem 1.15rem; color: var(--muted); }
.faq-answer p { margin: 0; }

.trust-strip span::before { content: ''; width: 1rem; height: .5rem; flex: 0 0 auto;
  border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg); }

.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.3rem, 3vw, 1.9rem); box-shadow: var(--shadow-sm);
}
.card h3, .card h4 { margin-bottom: .45rem; }
/* card titles are links, but the underline reads as noise at heading weight */
.card h3 a, .card h4 a, .service h3 a, .service h4 a {
  color: inherit; text-decoration: none;
}
.card h3 a:hover, .card h4 a:hover, .service h3 a:hover, .service h4 a:hover {
  color: var(--accent); text-decoration: underline; text-underline-offset: 3px;
}
.card p { color: var(--muted); }

/* split media + text */
.split { display: grid; gap: clamp(1.6rem, 5vw, 3.4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } .split.narrow-media { grid-template-columns: .85fr 1.15fr; } }
.split figure { margin: 0; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }

/* ----- service list ----- */
.service-group + .service-group { margin-top: clamp(2.2rem, 5vw, 3.2rem); }
.service-group > h3 {
  padding-bottom: .6rem; border-bottom: 2px solid var(--accent-lt); margin-bottom: 1.4rem;
  display: flex; align-items: baseline; gap: .8rem;
}
.service {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.2rem, 3vw, 1.7rem); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .55rem;
}
.service-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.service-top h4 { margin: 0; flex: 1 1 auto; }
.service-top .price { flex: 0 0 auto; }
.price { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; color: var(--accent); white-space: nowrap; }
.service p { margin: 0; color: var(--muted); }
/* Contraindication note. Tinted panel rather than a side-tab accent: the tint
   already separates it, and a thick coloured edge is decoration, not signal. */
.service .note {
  font-size: .89rem; line-height: 1.6; color: #6b5836;
  background: #fbf6ec; border: 1px solid #efe3cd;
  padding: .75rem .95rem; border-radius: 10px;
}
.service .note::before {
  content: 'Please note'; display: block; font-weight: 700; font-size: .74rem;
  letter-spacing: .1em; text-transform: uppercase; color: #94733f; margin-bottom: .25rem;
}

.callout {
  background: var(--accent-lt); border: 1px solid #cfe2ef; border-radius: var(--radius);
  padding: clamp(1.1rem, 3vw, 1.5rem); color: var(--ink-2); font-size: .97rem;
}

/* ----- feature list ----- */
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: .85rem; }
.ticks li { position: relative; padding-left: 2rem; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: .48em;
  width: 1.05rem; height: .55rem; border-left: 2.5px solid var(--accent); border-bottom: 2.5px solid var(--accent);
  transform: rotate(-45deg);
}
.section-ink .ticks li::before { border-color: #7fc4ea; }

/* ----- contact ----- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.15rem; }
.contact-list dt { font-size: .78rem; letter-spacing: .13em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-list dd { margin: .15rem 0 0; font-size: 1.1rem; }
.contact-list a { font-weight: 600; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }

/* ----- CTA band ----- */
.cta-band { background: var(--ink); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c3bdd8; max-width: 38rem; margin-inline: auto; }
.cta-band .btn-row { justify-content: center; margin-top: 1.6rem; }

/* ----- prose ----- */
.prose h2 { margin-top: 2.2rem; }
.prose ul { padding-left: 1.2rem; }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--accent); }

/* ----- footer ----- */
.site-footer { background: var(--ink); color: #b3adc9; padding: clamp(2.6rem, 6vw, 4rem) 0 1.6rem; font-size: .95rem; }
.site-footer .footer-h, .site-footer h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: .9rem; }
.site-footer a { color: #d8d3e8; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-bottom {
  margin-top: 2.4rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,.13);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .87rem; color: #928cab;
}
