/* ═══════════════════════════════════════════════════════════════
   Vela Health Victoria — site.css
   Single shared stylesheet for all pages
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&family=DM+Mono:wght@400&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  --canvas:        #FAF8F5;
  --ink:           #1A1A1A;
  --accent:        #B5654A;
  --accent-hover:  #9A5239;
  --quiet:         #A8A29E;
  --depth:         #3D2B1F;
  --border:        #E5E0D8;
  --surface:       #F3F0EB;
  --surface-alt:   #EDE9E2;

  --ff-display: 'Fraunces', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --ff-mono:    'DM Mono', 'Courier New', monospace;

  --text-body:     #4A4540;
  --text-secondary:#5A5550;
  --text-tertiary: #7A7570;
  --status-green:  #5A9E6E;

  --max-w:      1200px;
  --max-w-text: 720px;
  --r:          4px;
  --r-lg:       6px;
  --section-v:  96px;
  --section-v-sm: 48px;
  --section-h:  40px;
}

/* ─── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── MOCKUP BADGE (hidden by default, enable for design review) ── */
.mockup-badge {
  display: none;
}

/* ─── UTILITY BAR ───────────────────────────────────────────── */
.util-bar {
  background: var(--depth);
  color: rgba(255,255,255,0.72);
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 10px 40px;
  position: relative;
  z-index: 101;
}
.util-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.util-bar a { color: rgba(255,255,255,0.72); }
.util-bar a:hover { color: #fff; }
.util-sep { color: rgba(255,255,255,0.3); margin: 0 8px; }

/* ─── NAVIGATION ────────────────────────────────────────────── */
/* Default: in-flow, sticky, solid background, dark text (inner pages) */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-logo-vela {
  font-family: var(--ff-display);
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-logo-sub {
  font-family: var(--ff-mono);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--quiet);
  margin-top: 1px;
  transition: color 0.2s;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.active { color: var(--accent); }

/* Hero overlay variant (homepage only — transparent over hero image) */
.site-nav.hero-nav {
  position: absolute;
  left: 0; right: 0;
  top: auto;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-nav.hero-nav .nav-logo img { filter: brightness(0) invert(1); }
.site-nav.hero-nav .nav-logo-vela { color: #fff; }
.site-nav.hero-nav .nav-logo-sub { color: rgba(255,255,255,0.4); }
.site-nav.hero-nav .nav-links a { color: rgba(255,255,255,0.8); }
.site-nav.hero-nav .nav-links a:hover { color: #fff; }
.site-nav.hero-nav .nav-links a.active { color: #fff; }

/* Scrolled state (JS-toggled on homepage when past hero) */
.site-nav.scrolled {
  position: fixed;
  top: 0;
  background: var(--canvas);
  border-bottom: 1px solid var(--border);
}
.site-nav.scrolled .nav-logo-vela { color: var(--ink); }
.site-nav.scrolled .nav-logo-sub { color: var(--quiet); }
.site-nav.scrolled .nav-links a { color: var(--ink); }
.site-nav.scrolled .nav-links a:hover { color: var(--accent); }
.site-nav.scrolled .nav-links a.active { color: var(--accent); }

/* ─── BUTTONS ───────────────────────────────────────────────── */
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 11px 22px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.btn-book:hover { background: var(--accent-hover); }
.btn-book .arr { display: inline-block; transition: transform 0.15s; }
.btn-book:hover .arr { transform: translateX(2px); }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 3px;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--accent-hover); }
.btn-secondary {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.btn-secondary:hover { color: #fff; border-color: rgba(255,255,255,0.6); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--accent); color: #fff; }

/* ─── HERO (full-bleed homepage) ────────────────────────────── */
.hero-fullbleed {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 580px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero_d2.jpg') center 30% / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(12,8,4,0.72) 0%,
    rgba(12,8,4,0.28) 52%,
    rgba(12,8,4,0.05) 100%
  );
}
.hero-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 0 56px;
  max-width: 600px;
  color: #fff;
}
.hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow-rule {
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
}
.hero-headline {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-headline em { font-style: italic; }
.hero-disciplines {
  font-size: 15.5px;
  color: rgba(255,255,255,0.52);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 420px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─── TRUST BAR ─────────────────────────────────────────────── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.trust-item {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent);
}
.trust-text strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 2px;
}
.trust-text span {
  font-size: 13px;
  color: var(--quiet);
  font-family: var(--ff-mono);
  letter-spacing: 0.02em;
}

/* ─── SECTION COMMON ────────────────────────────────────────── */
.section { padding: var(--section-v) var(--section-h); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--quiet);
  max-width: 560px;
  margin-bottom: 56px;
}

/* ─── SERVICES GRID ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.services-grid::after {
  content: '';
  background: var(--canvas);
}
.service-card {
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: pointer;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(61,43,31,0.12);
  transform: translateY(-3px);
  z-index: 1;
  border-radius: 4px;
}
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-name {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.service-card-desc {
  font-size: 14.5px;
  color: var(--quiet);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 20px;
}
.service-card-link {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.service-card:hover .service-card-link { gap: 10px; }

/* ─── ABOUT SECTION (homepage) ──────────────────────────────── */
.about-section {
  padding: var(--section-v) var(--section-h);
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-pullquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
}
.about-body {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 32px;
}
.about-facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.about-fact {
  display: flex;
  flex-direction: column;
}
.about-fact-num {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.about-fact-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--quiet);
}
.about-image {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.about-location-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(61,43,31,0.8);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.9);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
}

/* ─── PRACTITIONERS (homepage grid) ─────────────────────────── */
.practitioners-section { padding: var(--section-v) var(--section-h); }
.practitioners-inner { max-width: var(--max-w); margin: 0 auto; }
.practitioners-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 32px;
}
.practitioners-view-all {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.practitioners-view-all:hover { gap: 10px; }
.practitioners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.practitioner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 20px 28px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--canvas);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.practitioner-card:hover {
  box-shadow: 0 4px 20px rgba(61,43,31,0.1);
  border-color: var(--accent);
}
.practitioner-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.practitioner-avatar::after {
  content: attr(data-label);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 300;
  color: #fff;
}
.practitioner-avatar img,
.team-card-avatar img,
.practitioner-mini-avatar img,
.practitioner-booking-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.practitioner-name {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.practitioner-creds {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--quiet);
  margin-bottom: 6px;
}
.practitioner-title {
  font-size: 13.5px;
  color: var(--text-tertiary);
  line-height: 1.4;
  margin-bottom: 20px;
  min-height: 38px;
}
.practitioner-note {
  font-size: 12px;
  color: var(--quiet);
  font-style: italic;
  margin-bottom: 16px;
  min-height: 18px;
}
.btn-book-practitioner {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-book-practitioner:hover {
  background: var(--accent);
  color: #fff;
}
.btn-unavailable {
  border-color: var(--border);
  color: var(--quiet);
  cursor: default;
  font-size: 12px;
}
.btn-unavailable:hover { background: transparent; color: var(--quiet); }

/* ─── TESTIMONIALS ──────────────────────────────────────────── */
.testimonials-section {
  background: var(--depth);
  padding: var(--section-v) var(--section-h);
}
.testimonials-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonials-label {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.testimonials-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 56px;
  max-width: 520px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 32px;
}
.testimonial-stars {
  color: var(--accent);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-quote {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-attribution {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.38);
}

/* ─── PAGE HERO (inner pages) ───────────────────────────────── */
.page-hero {
  position: relative;
  width: 100%;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero.short { height: 45vh; min-height: 320px; }
.page-hero.shorter { height: 40vh; min-height: 280px; }
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,8,4,0.7) 0%,
    rgba(12,8,4,0.3) 50%,
    rgba(12,8,4,0.1) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 48px 56px;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.page-hero-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
  max-width: 600px;
}
.page-hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  line-height: 1.6;
}

/* ─── BREADCRUMB ────────────────────────────────────────────── */
.breadcrumb {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--quiet);
  padding: 20px var(--section-h);
  max-width: var(--max-w);
  margin: 0 auto;
}
.breadcrumb a { color: var(--quiet); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; color: var(--border); }

/* ─── PROSE ─────────────────────────────────────────────────── */
.prose {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-body);
}
.prose h2 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 20px;
}
.prose h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 12px;
}
.prose p { margin-bottom: 20px; }
.prose p:last-child { margin-bottom: 0; }

/* ─── TWO COLUMN TEXT ───────────────────────────────────────── */
.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ─── CARD GRIDS ────────────────────────────────────────────── */
.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── CONDITION LIST ────────────────────────────────────────── */
.condition-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 48px;
  list-style: none;
  padding: 0;
}
.condition-list li {
  font-size: 16px;
  color: var(--text-body);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}
.condition-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 500;
}

/* ─── STEPS LIST ────────────────────────────────────────────── */
.steps-list {
  list-style: none;
  padding: 0;
  counter-reset: steps;
}
.steps-list li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li::before {
  content: counter(steps);
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.steps-list h3 {
  grid-column: 2;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.steps-list p {
  grid-column: 2;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: var(--accent);
  padding: 64px var(--section-h);
  text-align: center;
}
.cta-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.cta-band h2 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--accent);
}
.cta-band .btn-primary:hover {
  background: rgba(255,255,255,0.9);
}

/* ─── TEAM GRID ─────────────────────────────────────────────── */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.team-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  column-gap: 40px;
  row-gap: 0;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--canvas);
  align-items: start;
  transition: box-shadow 0.2s;
}
.team-card:hover {
  box-shadow: 0 4px 24px rgba(61,43,31,0.08);
}
.team-card-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 38px;
  font-weight: 300;
  color: #fff;
  flex-shrink: 0;
  grid-row: 1 / -1;
  align-self: start;
  margin-top: 4px;
}
.team-card-name,
.team-card-creds,
.team-card-discipline,
.team-card-bio,
.team-card-tags,
.team-card-status,
.team-card > a,
.team-card > span { grid-column: 2; }

.team-card-name {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-card-creds {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--quiet);
  margin-bottom: 4px;
}
.team-card-discipline {
  font-size: 15px;
  color: var(--accent);
  margin-bottom: 16px;
}
.team-card-bio {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.team-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.team-card-status {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--quiet);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.team-card-status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--status-green);
  flex-shrink: 0;
}
.team-card-status .dot.unavailable {
  background: var(--quiet);
}

/* ─── TAG PILL ──────────────────────────────────────────────── */
.tag-pill {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--quiet);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list {
  max-width: var(--max-w-text);
}
.faq-group-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.faq-group-title:first-child { margin-top: 0; }
.faq-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 12px;
}
.faq-answer {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-answer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── JOURNAL ───────────────────────────────────────────────── */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.journal-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--canvas);
  transition: box-shadow 0.2s, transform 0.2s;
}
.journal-card:hover {
  box-shadow: 0 4px 24px rgba(61,43,31,0.1);
  transform: translateY(-2px);
}
.journal-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface);
}
.journal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.journal-card-body {
  padding: 24px 28px 28px;
}
.journal-tag {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.journal-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.journal-excerpt {
  font-size: 14.5px;
  color: var(--quiet);
  line-height: 1.55;
  margin-bottom: 20px;
}
.journal-meta {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--quiet);
}

/* ─── IMAGE FRAME ───────────────────────────────────────────── */
.image-frame {
  border-radius: var(--r);
  overflow: hidden;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── DIVIDER RULE ──────────────────────────────────────────── */
.divider-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* ─── MAP PLACEHOLDER ───────────────────────────────────────── */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--quiet);
}

/* ─── STAT CARDS ────────────────────────────────────────────── */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stat-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  text-align: center;
  background: var(--canvas);
}
.stat-card-num {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 42px;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1;
}
.stat-card-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiet);
}

/* ─── BILLING LOGOS ─────────────────────────────────────────── */
.billing-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px var(--section-h);
}
.billing-band-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}
.billing-band p {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 24px;
}
.billing-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.billing-logo {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  background: var(--canvas);
  border: 1px solid var(--border);
  color: var(--quiet);
  padding: 6px 14px;
  border-radius: 2px;
}

/* ─── RELATED SERVICES ──────────────────────────────────────── */
.related-services {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.related-service-link {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--accent);
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color 0.2s, background 0.2s;
}
.related-service-link:hover {
  border-color: var(--accent);
  background: rgba(181,101,74,0.04);
}

/* ─── SUBSCRIBE PLACEHOLDER ─────────────────────────────────── */
.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}
.subscribe-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: var(--ff-body);
  font-size: 15px;
  background: var(--canvas);
  color: var(--ink);
  outline: none;
}
.subscribe-input:focus {
  border-color: var(--accent);
}
.subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.2s;
}
.subscribe-btn:hover { background: var(--accent-hover); }

/* ─── SAMPLE BADGE ──────────────────────────────────────────── */
.sample-badge {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--quiet);
  background: var(--surface);
  border: 1px dashed var(--border);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 12px;
}

/* ─── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--depth);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 64px 40px 40px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-vela {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 300;
  font-size: 24px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 4px;
}
.footer-logo-sub {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }
.footer-col-title {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }
.footer-address {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
.footer-address strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  margin-bottom: 4px;
}
.footer-phone {
  font-family: var(--ff-mono);
  font-size: 13.5px;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  display: block;
}
.footer-hours {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.25);
}
.footer-billing-note {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 8px;
}
.billing-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── BOOK.HTML SPECIFIC STYLES ─────────────────────────────── */
.book-hero {
  background: var(--depth);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.book-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: url('../images/detail.jpg') center/cover no-repeat;
  opacity: 0.15;
  filter: grayscale(0.3);
}
.book-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.book-hero-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.book-hero-title {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.92);
  margin-bottom: 16px;
  max-width: 600px;
}
.book-hero-title em { font-style: italic; }
.book-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.book-hero-note {
  font-family: var(--ff-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.35);
}
.book-hero-note strong {
  color: var(--accent);
  font-weight: 400;
}

/* Book page layout */
.booking-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 40px 96px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}
.practitioner-booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.practitioner-booking-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--canvas);
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.practitioner-booking-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(181,101,74,0.1);
}
.practitioner-booking-top {
  display: flex;
  gap: 20px;
  padding: 24px;
  align-items: flex-start;
}
.practitioner-booking-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: #fff;
}
.practitioner-booking-name {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}
.practitioner-booking-creds {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--quiet);
  margin-bottom: 8px;
}
.practitioner-booking-specialty {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.practitioner-booking-tags {
  padding: 0 24px 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-family: var(--ff-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--quiet);
  padding: 3px 9px;
  border-radius: 2px;
}
.practitioner-booking-footer {
  margin-top: auto;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.avail-note {
  font-size: 13px;
  color: var(--quiet);
  font-family: var(--ff-mono);
}
.avail-note.limited { color: var(--accent); }
.avail-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--status-green);
  margin-right: 6px;
  vertical-align: middle;
}
.avail-dot.limited { background: var(--accent); }
.btn-book-jane {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 3px;
  white-space: nowrap;
  transition: background 0.2s;
}
.btn-book-jane:hover { background: var(--accent-hover); }
.btn-book-jane-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  color: var(--quiet);
  font-family: var(--ff-body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 3px;
  white-space: nowrap;
}

/* Sidebar */
.sidebar-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--canvas);
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar-card-head {
  background: var(--surface);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quiet);
}
.sidebar-card-body { padding: 20px; }
.sidebar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-item:last-child { border-bottom: none; }
.sidebar-icon {
  width: 30px; height: 30px;
  background: var(--surface);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.sidebar-item-text strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.sidebar-item-text span {
  font-size: 13px;
  color: var(--quiet);
}
.sidebar-help {
  background: rgba(181,101,74,0.06);
  border: 1px solid rgba(181,101,74,0.2);
  border-radius: 4px;
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-help-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--ink);
}
.sidebar-help-text {
  font-size: 13.5px;
  color: var(--quiet);
  line-height: 1.55;
  margin-bottom: 14px;
}
.sidebar-contact-link {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── PRACTITIONER MINI-CARD (for service pages) ────────────── */
.practitioner-mini-card {
  display: flex;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--canvas);
  align-items: center;
  margin-bottom: 16px;
  transition: box-shadow 0.2s;
}
.practitioner-mini-card:hover {
  box-shadow: 0 4px 16px rgba(61,43,31,0.08);
}
.practitioner-mini-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
}
.practitioner-mini-info {
  flex: 1;
}
.practitioner-mini-name {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 2px;
}
.practitioner-mini-creds {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--quiet);
  margin-bottom: 4px;
}
.practitioner-mini-status {
  font-size: 13px;
  color: var(--quiet);
}

/* ─── UTILITY CLASSES ───────────────────────────────────────── */
.section-compact { padding-bottom: var(--section-v-sm); }
.section-no-top { padding-top: 0; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }

/* ─── CALLOUT BOX ───────────────────────────────────────────── */
.callout-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 32px;
}
.callout-box p {
  font-size: 16px;
  color: var(--ink);
  line-height: 1.7;
  margin: 0;
}

/* ─── INFO BOX (icon + text) ────────────────────────────────── */
.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-box-icon {
  color: var(--accent);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}
.info-box .section-label { margin-bottom: 6px; }
.info-box p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── HOMEPAGE HERO ─────────────────────────────────────────── */
.hero-fullbleed { margin-top: -72px; }

/* ─── MOBILE NAV TOGGLE ─────────────────────────────────────── */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}
.nav-toggle svg { display: block; }
.site-nav.hero-nav .nav-toggle { color: #fff; }
.site-nav.scrolled .nav-toggle { color: var(--ink); }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (max-width: 768px)
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ─── Util bar: hide on mobile ─────────────────────────────── */
  .util-bar { display: none; }

  /* ─── Nav: hamburger toggle ────────────────────────────────── */
  .nav-toggle { display: block; }
  .nav-inner { padding: 0 20px; height: 64px; }
  .nav-logo img { height: 32px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--canvas);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    color: var(--ink) !important;
  }
  .nav-links a:last-child { border-bottom: none; }
  .btn-book { display: none; }

  /* Hero-nav mobile: links dropdown still needs solid bg */
  .site-nav.hero-nav .nav-links {
    background: var(--canvas);
  }
  .site-nav.hero-nav .nav-links a { color: var(--ink) !important; }

  /* ─── Homepage hero ────────────────────────────────────────── */
  .hero-fullbleed {
    margin-top: -64px;
    height: 85vh;
    min-height: 480px;
  }
  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }
  .hero-headline { font-size: 36px; margin-bottom: 16px; }
  .hero-disciplines { font-size: 14px; margin-bottom: 28px; }
  .hero-actions { gap: 16px; }
  .btn-primary { font-size: 14px; padding: 12px 24px; }

  /* ─── Page hero (inner pages) ──────────────────────────────── */
  .page-hero { height: 40vh; min-height: 280px; }
  .page-hero.short { height: 35vh; min-height: 260px; }
  .page-hero.shorter { height: 30vh; min-height: 220px; }
  .page-hero-content { padding: 32px 24px; }
  .page-hero-title { font-size: 28px; }
  .page-hero-subtitle { font-size: 14px; }

  /* ─── Sections: tighter spacing ────────────────────────────── */
  .section { padding: 56px 20px; }
  .section-compact { padding-bottom: 32px; }
  .section-title { font-size: 28px; }
  .section-subtitle { font-size: 15px; margin-bottom: 36px; }

  /* ─── Trust bar ────────────────────────────────────────────── */
  .trust-bar-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .trust-item {
    padding: 16px 0;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .trust-item:last-child { border-bottom: none; }

  /* ─── Services grid ────────────────────────────────────────── */
  .services-grid { grid-template-columns: 1fr; }

  /* ─── About section ────────────────────────────────────────── */
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* ─── Practitioners grid (homepage) ────────────────────────── */
  .practitioners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .practitioners-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .practitioner-card { padding: 24px 16px 20px; }
  .practitioner-avatar { width: 64px; height: 64px; }
  .practitioner-avatar::after { font-size: 20px; }

  /* ─── Testimonials ─────────────────────────────────────────── */
  .about-section { padding: 56px 20px; }
  .practitioners-section { padding: 56px 20px; }
  .testimonials-section { padding: 56px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }

  /* ─── Two-col text ─────────────────────────────────────────── */
  .two-col-text { grid-template-columns: 1fr; gap: 32px; }

  /* ─── Card grids ───────────────────────────────────────────── */
  .card-grid-2 { grid-template-columns: 1fr; }
  .card-grid-3 { grid-template-columns: 1fr; }

  /* ─── Stat cards ───────────────────────────────────────────── */
  .stat-cards { grid-template-columns: 1fr; gap: 16px; }

  /* ─── Condition list ───────────────────────────────────────── */
  .condition-list { grid-template-columns: 1fr; }

  /* ─── Steps list ───────────────────────────────────────────── */
  .steps-list li {
    grid-template-columns: 40px 1fr;
    gap: 12px;
    padding: 24px 0;
  }
  .steps-list li::before { font-size: 28px; }

  /* ─── Team grid (team page) ────────────────────────────────── */
  .team-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 24px;
    text-align: center;
  }
  .team-card-name,
  .team-card-creds,
  .team-card-discipline,
  .team-card-bio,
  .team-card-tags,
  .team-card-status,
  .team-card > a,
  .team-card > span { grid-column: 1; }
  .team-card-avatar {
    width: 88px; height: 88px;
    margin: 0 auto;
    font-size: 28px;
  }
  .team-card-tags { justify-content: center; }

  /* ─── Journal grid ─────────────────────────────────────────── */
  .journal-grid { grid-template-columns: 1fr; gap: 24px; }

  /* ─── FAQ ──────────────────────────────────────────────────── */
  .faq-list { max-width: 100%; }

  /* ─── CTA band ─────────────────────────────────────────────── */
  .cta-band { padding: 48px 20px; }
  .cta-band h2 { font-size: 24px; }

  /* ─── Book page layout ─────────────────────────────────────── */
  .book-hero { padding: 48px 20px; }
  .book-hero-title { font-size: 28px; }
  .booking-layout {
    grid-template-columns: 1fr;
    padding: 48px 20px 64px;
    gap: 48px;
  }
  .practitioner-booking-grid { grid-template-columns: 1fr; }

  /* ─── Practitioner mini card (service pages) ───────────────── */
  .practitioner-mini-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .practitioner-mini-card .btn-outline { width: 100%; justify-content: center; }

  /* ─── Breadcrumb ───────────────────────────────────────────── */
  .breadcrumb { padding: 16px 20px; font-size: 11px; }

  /* ─── Prose ────────────────────────────────────────────────── */
  .prose { font-size: 16px; }

  /* ─── Billing band ─────────────────────────────────────────── */
  .billing-band { padding: 36px 20px; }
  .billing-band p { font-size: 15px; }

  /* ─── Related services ─────────────────────────────────────── */
  .related-services { flex-direction: column; }
  .related-service-link { text-align: center; }

  /* ─── Subscribe form ───────────────────────────────────────── */
  .subscribe-form { flex-direction: column; }

  /* ─── Footer ───────────────────────────────────────────────── */
  .site-footer { padding: 48px 20px 32px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 36px;
  }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }

  /* ─── Pullquote ────────────────────────────────────────────── */
  .about-pullquote { font-size: 22px; }
}
