:root {
  /* Honey palette — refined, restrained */
  --ink:        #18160F;
  --ink-soft:   #2C2820;
  --bone:       #FAF6EC;
  --bone-warm:  #F4EEDD;
  --paper:      #FFFFFF;
  --rule:       #E5DFCD;
  --rule-soft:  #EFE9D8;
  --muted:      #6F6855;
  --amber:      #FCCD18;
  --honey:      #E8C56B;
  --honey-pale: #F6E4A8;

  --serif: "Fraunces", "Tiempos", Georgia, serif;
  --sans:  "DM Sans", "Söhne", system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bone);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--ink);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.display em {
  font-variation-settings: "SOFT" 80, "opsz" 144, "WONK" 1;
}
.pullquote {
  font-variation-settings: "SOFT" 50, "opsz" 144, "WONK" 1;
}
.serif  { font-family: var(--serif); }
.sans   { font-family: var(--sans); }
.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--bone); }

/* ─── Frame ────────────────────────────────────────────────────────── */
.frame { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .frame { padding: 0 20px; } }

/* ─── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  cursor: pointer;
}
.btn-ink     { background: var(--ink); color: var(--bone); }
.btn-ink:hover { background: var(--ink-soft); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn-honey   { background: var(--honey); color: var(--ink); border-color: var(--ink); }
.btn-honey:hover { background: var(--honey-pale); }

/* ─── Eyebrow chip with hex bullet ─────────────────────────────────── */
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-weight: 500;
}
.chip::before {
  content: ""; width: 8px; height: 9px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.chip-honey { color: var(--honey); }
.chip-honey::before { background: var(--honey); }

/* ─── Hex outline marker ───────────────────────────────────────────── */
.hex {
  width: 14px; height: 16px;
  background: currentColor;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hex-outline {
  width: 16px; height: 18px;
  background: var(--ink);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  position: relative;
}
.hex-outline::after {
  content: ""; position: absolute; inset: 1.5px;
  background: var(--bone);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* ─── Reveal animation ─────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(10px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.on { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Arrow link ───────────────────────────────────────────────────── */
.arrow-link { display: inline-flex; align-items: center; gap: 8px; }
.arrow-link .arr { transition: transform .25s ease; display: inline-block; }
.arrow-link:hover .arr { transform: translateX(4px); }

/* ─── Image placeholder ────────────────────────────────────────────── */
.placeholder {
  width: 100%; aspect-ratio: 4/5; position: relative;
  background:
    repeating-linear-gradient(135deg,
      rgba(252,205,24,0.06) 0 14px,
      rgba(252,205,24,0.0) 14px 28px),
    var(--bone-warm);
  border: 1px solid var(--rule);
  overflow: hidden;
}
.placeholder .ph-label {
  position: absolute; left: 18px; bottom: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bone);
  padding: 4px 8px;
  border: 1px solid var(--rule);
}

/* ─── Honeycomb texture ────────────────────────────────────────────── */
.honeycomb-bg {
  background-image:
    radial-gradient(circle at 0 0, var(--rule) 1px, transparent 1.5px),
    radial-gradient(circle at 28px 16px, var(--rule) 1px, transparent 1.5px);
  background-size: 56px 32px;
  background-position: 0 0;
}

/* ─── Service row hover ────────────────────────────────────────────── */
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 8px;
  border-bottom: 1px solid var(--rule);
  transition: background .25s ease, padding-left .25s ease;
  cursor: pointer;
}
.service-row:hover {
  background: var(--bone-warm);
  padding-left: 20px;
}
.service-row:hover .service-arr { transform: translateX(6px); color: var(--amber); }
.service-arr { transition: transform .25s ease, color .25s ease; }

/* ─── Pull quote ───────────────────────────────────────────────────── */
.pullquote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: pretty;
}

/* ─── Accessibility widget ─────────────────────────────────────────── */
.a11y-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%;
  padding: 0;
  background: var(--ink); color: var(--bone);
  border: none;
  box-shadow: 0 0 0 3px var(--amber), 0 12px 32px rgba(24,22,15,0.32);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.a11y-toggle svg { display: block; width: 100%; height: 100%; }
.a11y-toggle:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px var(--amber), 0 16px 36px rgba(24,22,15,0.38);
}
.a11y-toggle:focus-visible { outline: 2px solid var(--ink); outline-offset: 5px; }

.a11y-panel {
  position: fixed; bottom: 96px; right: 24px; z-index: 79;
  background: var(--paper);
  border: 1px solid var(--rule);
  width: 240px;
  padding: 12px;
  display: none;
  box-shadow: 0 12px 32px rgba(24,22,15,0.18);
}
.a11y-panel[data-open="true"] { display: block; }
.a11y-panel-title {
  font-family: var(--mono);
  color: var(--amber);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 6px 10px 12px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 6px;
}
.a11y-option {
  display: flex; align-items: center; gap: 12px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: none;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background .15s ease;
}
.a11y-option:hover { background: var(--bone-warm); }
.a11y-option:focus-visible { outline: 2px solid var(--amber); outline-offset: -2px; }
.a11y-option[aria-pressed="true"] { background: var(--bone-warm); }
.a11y-option[aria-pressed="true"]::after {
  content: "✓"; margin-left: auto; color: var(--amber); font-weight: 600;
}
.a11y-option-icon {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 15px;
  width: 24px; text-align: center;
  color: var(--amber);
}
.a11y-option-reset { border-top: 1px solid var(--rule); margin-top: 6px; padding-top: 14px; }
.a11y-option-reset .a11y-option-icon { color: var(--muted); }

@media (max-width: 720px) {
  .a11y-toggle { bottom: 16px; right: 16px; width: 48px; height: 48px; }
  .a11y-panel { bottom: 76px; right: 16px; width: calc(100vw - 32px); max-width: 280px; }
}

/* Accessibility body classes */
body.a11y-font-large  { font-size: 18px; }
body.a11y-font-larger { font-size: 20px; }
body.a11y-high-contrast {
  --ink:        #000000;
  --ink-soft:   #000000;
  --bone:       #FFFFFF;
  --bone-warm:  #F4F4F4;
  --paper:      #FFFFFF;
  --rule:       #000000;
  --rule-soft:  #555555;
  --muted:      #333333;
  --amber:      #8a5a00;
}
body.a11y-underline a:not(.btn):not(.topnav-logo):not(.a11y-toggle):not(.a11y-option) {
  text-decoration: underline;
}

/* ─── Skip-to-content link (keyboard a11y) ─────────────────────────── */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--ink); color: var(--bone);
  padding: 12px 20px; text-decoration: none; font-weight: 600;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  border: 2px solid var(--amber);
}
.skip-link:focus { left: 8px; top: 8px; }

/* ─── Sticky nav ───────────────────────────────────────────────────── */
.topnav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,246,236,0.92);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  border-bottom: 1px solid var(--rule);
}

.dot { display: inline-block; width: 4px; height: 4px; background: currentColor; border-radius: 50%; vertical-align: middle; margin: 0 10px 3px; opacity: 0.5; }

/* ─── Header / Nav ─────────────────────────────────────────────────── */
.topnav-bar {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; height: 76px; gap: 24px;
}
.topnav-locality {
  color: var(--muted); letter-spacing: 0.18em;
  display: inline-flex; align-items: center;
}
.topnav-locality .hex-bullet {
  display: inline-block;
  width: 9px; height: 10px;
  background: var(--amber);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  margin-right: 10px;
  transform: translateY(1px);
}
.topnav-logo {
  display: inline-flex; align-items: center; justify-self: center;
}
.topnav-logo img { display: block; height: 36px; width: auto; }
.topnav-actions {
  display: flex; align-items: center; justify-content: flex-end; gap: 18px;
}
.topnav-actions .phone { color: var(--ink); }
.topnav-nav {
  border-top: 1px solid var(--rule);
  background: rgba(250,246,236,0.92);
}
.topnav-nav-inner {
  display: flex; justify-content: center; align-items: center;
  height: 48px;
}
.topnav-nav-inner a {
  padding: 0 22px; height: 100%; display: inline-flex; align-items: center;
  font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-soft);
}
.topnav-nav-inner a:not(:last-child) { border-right: 1px solid var(--rule); }

@media (max-width: 720px) {
  .topnav-bar { grid-template-columns: auto auto; height: auto; padding: 16px 0; gap: 12px; }
  .topnav-locality { display: none; }
  .topnav-logo { justify-self: start; }
  .topnav-actions .phone { display: none; }
  .topnav-nav-inner { flex-wrap: wrap; height: auto; padding: 8px 0; }
  .topnav-nav-inner a { padding: 8px 12px; font-size: 11px; }
  .topnav-nav-inner a:not(:last-child) { border-right: none; }
}

/* ─── Hero ─────────────────────────────────────────────────────────── */
.hero { padding: 88px 0 56px; }
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: start;
}
.hero-headline {
  font-size: clamp(52px, 7.6vw, 116px); margin: 0; font-weight: 400;
}
.hero-headline em { font-style: italic; color: var(--amber); font-weight: 500; }
.hero-note {
  margin-top: 40px;
  display: grid; grid-template-columns: auto 1fr;
  gap: 32px; align-items: start; max-width: 720px;
}
.hero-note .label { color: var(--muted); padding-top: 6px; }
.hero-note p {
  margin: 0; font-size: 19px; line-height: 1.55; color: var(--ink-soft);
  font-weight: 400; max-width: 540px; text-wrap: pretty;
}
.hero-cta { margin-top: 44px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-portrait-caption {
  margin-top: 12px; color: var(--muted);
  display: flex; justify-content: space-between;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-note { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── Doctor / Practice ────────────────────────────────────────────── */
.doctor {
  padding: 112px 0;
  border-top: 1px solid var(--rule);
  background: var(--bone-warm);
}
.doctor-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 96px; align-items: start;
}
.doctor-portrait { position: sticky; top: 140px; }
.doctor-portrait .placeholder { aspect-ratio: 3/4; }
.doctor-portrait-caption {
  margin-top: 14px; display: flex; justify-content: space-between;
  color: var(--muted);
}
.doctor-headline {
  font-size: clamp(40px, 5.6vw, 76px); margin: 0 0 36px; font-weight: 400;
}
.doctor-headline em { font-style: italic; color: var(--amber); }
.doctor-lede {
  font-size: 22px; line-height: 1.5; color: var(--ink-soft);
  font-weight: 300; font-style: italic; max-width: 580px;
  margin-bottom: 36px; text-wrap: pretty;
}
.stats {
  margin-top: 48px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px; border-top: 1px solid var(--rule);
}
.stat { padding: 28px 0; border-bottom: 1px solid var(--rule); }
.stat-num { font-size: 56px; line-height: 1; color: var(--ink); font-weight: 400; }
.stat-label { margin-top: 14px; font-size: 13.5px; color: var(--muted); max-width: 180px; line-height: 1.5; }

.bio-link {
  margin-top: 40px; display: inline-flex;
  font-family: var(--mono); font-size: 11px; color: var(--amber);
  letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid var(--amber); padding-bottom: 4px;
}

@media (max-width: 900px) {
  .doctor-grid { grid-template-columns: 1fr; gap: 48px; }
  .doctor-portrait { position: static; }
}

/* ─── Services ─────────────────────────────────────────────────────── */
.services { padding: 112px 0; }
.services-header {
  display: flex; justify-content: space-between; align-items: end;
  gap: 32px; flex-wrap: wrap; margin-bottom: 56px;
}
.services-headline {
  font-size: clamp(40px, 5.4vw, 76px); margin: 0; font-weight: 400;
}
.services-headline em { font-style: italic; color: var(--amber); }
.services-blurb {
  max-width: 380px; font-size: 18px; line-height: 1.55;
  font-style: italic; color: var(--ink-soft); margin: 0; font-weight: 300;
  font-family: var(--serif);
}
.services-list { border-top: 1px solid var(--rule); }
.service-num { color: var(--amber); }
.service-label {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--ink); margin-bottom: 4px; letter-spacing: -0.02em; line-height: 1.02;
}
.service-note { font-size: 14.5px; color: var(--muted); }
.service-arr { color: var(--ink-soft); }

@media (max-width: 720px) {
  .service-row { grid-template-columns: 50px 1fr; gap: 16px; padding: 20px 4px; }
  .service-arr { display: none; }
  .service-label { font-size: 22px; }
}

/* ─── Visit ────────────────────────────────────────────────────────── */
.visit {
  padding: 112px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.visit-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 96px; align-items: start;
}
.visit-headline {
  font-size: clamp(36px, 5vw, 64px); margin: 0 0 28px; font-weight: 400;
}
.visit-headline em { font-style: italic; color: var(--amber); }
.visit-lede {
  font-size: 18px; line-height: 1.6; color: var(--ink-soft);
  font-style: italic; font-weight: 300; max-width: 360px; margin-bottom: 36px;
  font-family: var(--serif);
}
.hours { border-top: 1px solid var(--rule); padding-top: 24px; max-width: 380px; }
.hours-title { color: var(--amber); margin-bottom: 12px; }
.hours-rows { font-family: var(--serif); font-size: 17px; line-height: 1.85; color: var(--ink); font-weight: 400; }
.hours-row {
  display: grid; grid-template-columns: 120px 1fr;
  padding-bottom: 4px; color: var(--ink);
}
.hours-row.muted { color: var(--muted); }
.hours-row .k {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); padding-top: 4px;
}

.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--rule); }
.step {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--rule);
  align-items: start;
}
.step-num {
  font-family: var(--serif); font-size: 28px; font-style: italic;
  color: var(--amber); font-weight: 400; line-height: 1;
}
.step-title { font-family: var(--serif); font-size: 30px; margin: 0 0 12px; font-weight: 400; letter-spacing: -0.02em; line-height: 1.02; color: var(--ink); }
.step-body { margin: 0; font-size: 16px; line-height: 1.65; color: var(--ink-soft); }

@media (max-width: 900px) {
  .visit-grid { grid-template-columns: 1fr; gap: 48px; }
  .step { grid-template-columns: 60px 1fr; gap: 16px; padding: 28px 0; }
}

/* ─── Reviews ──────────────────────────────────────────────────────── */
.reviews {
  padding: 120px 0; background: var(--ink); color: var(--bone);
}
.reviews-header {
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: end; margin-bottom: 72px;
}
.reviews-headline {
  font-size: clamp(40px, 5.4vw, 76px); margin: 0; font-weight: 400; color: var(--bone);
}
.reviews-headline em { font-style: italic; color: var(--honey); }
.reviews-rating { color: var(--honey); text-align: right; }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.review {
  margin: 0; height: 100%; display: flex; flex-direction: column;
}
.review-mark {
  font-family: var(--serif); font-size: 88px; line-height: 0.6;
  color: var(--honey); font-weight: 400; font-style: italic; margin-bottom: 8px;
}
.review-body {
  margin: 0; font-size: clamp(22px, 2.2vw, 30px); color: var(--bone); flex: 1;
  font-family: var(--serif); font-weight: 300; font-style: italic;
  line-height: 1.18; letter-spacing: -0.012em; text-wrap: pretty;
}
.review-cap {
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid rgba(232,197,107,0.24);
}
.review-author { font-family: var(--serif); font-size: 18px; color: var(--bone); margin-bottom: 4px; }
.review-meta { color: var(--honey); }
.reviews-cta { margin-top: 80px; display: flex; justify-content: center; }

@media (max-width: 900px) {
  .reviews-header { grid-template-columns: 1fr; }
  .reviews-rating { text-align: left; }
  .reviews-grid { grid-template-columns: 1fr; gap: 56px; }
}

/* ─── Contact ──────────────────────────────────────────────────────── */
.contact { padding: 112px 0; }
.contact-head { margin-bottom: 56px; max-width: 880px; }
.contact-headline {
  font-size: clamp(40px, 5.6vw, 80px); margin: 0; font-weight: 400;
}
.contact-headline em { font-style: italic; color: var(--amber); }
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 64px; align-items: stretch;
}
.contact-map {
  display: block; aspect-ratio: 5/4; padding: 48px;
  background: var(--bone-warm); border: 1px solid var(--rule);
  color: var(--ink); position: relative; overflow: hidden;
}
.contact-map .honey-tex {
  position: absolute; top: -40px; right: -60px; width: 300px; height: 240px;
  opacity: 0.22; pointer-events: none;
  background-image:
    radial-gradient(circle at 0 0, var(--amber) 1.5px, transparent 2px),
    radial-gradient(circle at 28px 16px, var(--amber) 1.5px, transparent 2px);
  background-size: 56px 32px;
}
.contact-map .label { color: var(--amber); margin-bottom: 40px; }
.contact-map .name {
  font-family: var(--serif); font-size: 44px; margin: 0 0 24px; font-weight: 400;
  letter-spacing: -0.02em; line-height: 1.02; color: var(--ink);
}
.contact-map .addr {
  font-family: var(--serif); font-size: 22px; line-height: 1.45; color: var(--ink-soft);
  margin: 0; font-style: italic; font-weight: 300; max-width: 320px;
}
.contact-map .cta { position: absolute; bottom: 48px; left: 48px; }

/* Embedded Google Map (replaces card placeholder) */
.contact-map-wrap {
  position: relative; aspect-ratio: 5/4;
  background: var(--bone-warm); border: 1px solid var(--rule);
  overflow: hidden;
}
.contact-map-frame {
  width: 100%; height: 100%; border: 0; display: block;
}
.contact-map-cta {
  position: absolute; bottom: 16px; left: 16px;
  text-decoration: none;
}

.contact-list { display: flex; flex-direction: column; gap: 28px; }
.citem { padding-bottom: 22px; border-bottom: 1px solid var(--rule); }
.citem .label { color: var(--amber); margin-bottom: 8px; }
.citem .v {
  font-family: var(--serif); font-size: 19px; color: var(--ink); line-height: 1.5; font-weight: 400;
}
.citem .v a {
  color: var(--ink); border-bottom: 1px solid var(--amber); padding-bottom: 1px; font-weight: 500;
}
.contact-actions { margin-top: 8px; display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { aspect-ratio: auto; padding: 32px; }
  .contact-map .cta { position: static; margin-top: 32px; display: inline-flex; }
  .contact-map-wrap { aspect-ratio: 4/3; }
}

/* ─── Service pages ────────────────────────────────────────────────── */
.service-hero { padding: 88px 0 72px; }
.service-breadcrumb {
  color: var(--muted); display: inline-flex; align-items: center; gap: 12px;
}
.service-breadcrumb a { color: var(--muted); border-bottom: 1px solid transparent; transition: border-color .2s ease, color .2s ease; }
.service-breadcrumb a:hover { color: var(--ink); border-bottom-color: var(--amber); }
.service-breadcrumb .sep { opacity: 0.5; }
.service-breadcrumb .current { color: var(--ink); }
.service-hero-headline {
  font-size: clamp(56px, 8vw, 128px); margin: 0; font-weight: 400;
}
.service-hero-headline em { font-style: italic; color: var(--amber); font-weight: 500; }
.service-hero-sub {
  margin-top: 36px; max-width: 620px; font-size: 21px; line-height: 1.5;
  color: var(--ink-soft); font-weight: 300; font-style: italic; text-wrap: pretty;
}

.service-intro {
  padding: 96px 0;
  border-top: 1px solid var(--rule);
  background: var(--bone-warm);
}
.service-intro-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 96px; align-items: start;
}
.service-h2 {
  font-size: clamp(36px, 5vw, 60px); margin: 0 0 28px; font-weight: 400;
}
.service-h2 em { font-style: italic; color: var(--amber); }
.service-lede {
  font-size: 19px; line-height: 1.6; color: var(--ink-soft);
  font-weight: 300; font-style: italic; max-width: 580px; margin: 0 0 24px; text-wrap: pretty;
}
.service-body {
  font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin: 0;
  max-width: 580px; text-wrap: pretty;
}

.treatments { padding: 112px 0; }
.treatment-row {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 28px; align-items: start;
  padding: 28px 8px;
  border-bottom: 1px solid var(--rule);
}
.treatment-row .service-num { padding-top: 4px; }

.related {
  padding: 96px 0;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}
.related-head { margin-bottom: 56px; max-width: 760px; }
.related-headline { font-size: clamp(36px, 4.6vw, 56px); margin: 0; font-weight: 400; }
.related-headline em { font-style: italic; color: var(--amber); }
.related-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.related-card {
  padding: 32px;
  background: var(--bone-warm);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 16px;
  transition: background .25s ease, transform .25s ease;
}
.related-card:hover { background: var(--bone); transform: translateY(-2px); }
.related-num { color: var(--amber); }
.related-title {
  font-family: var(--serif); font-size: 28px; font-weight: 400;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.05;
}
.related-desc { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; flex: 1; }
.related-arr {
  font-family: var(--mono); font-size: 11px; color: var(--amber);
  letter-spacing: 0.18em; text-transform: uppercase;
  border-bottom: 1px solid var(--amber); padding-bottom: 4px; align-self: flex-start;
}

.service-cta {
  padding: 120px 0; background: var(--ink); color: var(--bone);
}
.service-cta-block { max-width: 760px; }
.service-cta-headline {
  font-size: clamp(40px, 5.6vw, 76px); margin: 0 0 28px; font-weight: 400; color: var(--bone);
}
.service-cta-headline em { font-style: italic; color: var(--honey); }
.service-cta-body {
  font-size: 21px; line-height: 1.5; color: rgba(250,246,236,0.78);
  font-style: italic; font-weight: 300; max-width: 580px; margin: 0 0 40px; text-wrap: pretty;
}
.service-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-outline-bone {
  background: transparent; color: var(--bone); border-color: var(--bone);
}
.btn-outline-bone:hover { background: var(--bone); color: var(--ink); }

@media (max-width: 900px) {
  .service-intro-grid { grid-template-columns: 1fr; gap: 48px; }
  .related-grid { grid-template-columns: 1fr; }
  .treatment-row { grid-template-columns: 50px 1fr; gap: 16px; padding: 20px 4px; }
}

/* ─── Bee flight ───────────────────────────────────────────────────── */
.bee-section {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 64px 0;
  background: var(--bone);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.bee-trail {
  display: block;
  width: min(600px, 90%);
  height: 200px;
  pointer-events: none;
}
.trail-reveal {
  stroke-dasharray: 566;
  stroke-dashoffset: 566;
}
.bee-trail.animate .trail-reveal {
  animation: drawTrail 3s linear forwards;
}
@keyframes drawTrail {
  to { stroke-dashoffset: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .bee-trail.animate .trail-reveal { animation: none; stroke-dashoffset: 0; }
  .bee-icon-fly animateMotion { display: none; }
}

/* ─── Footer ───────────────────────────────────────────────────────── */
.footer {
  background: var(--ink); color: var(--bone); padding: 88px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(232,197,107,0.16);
}
.footer-word { display: inline-flex; align-items: center; }
.footer-word img { display: block; height: 56px; width: auto; }
.footer-tagline {
  margin-top: 22px; color: rgba(250,246,236,0.7);
  font-family: var(--serif); font-size: 17px; line-height: 1.55;
  font-style: italic; max-width: 320px; font-weight: 300;
}
.footer-col-title { color: var(--honey); margin-bottom: 14px; }
.footer-col-body { font-size: 14px; color: rgba(250,246,236,0.85); line-height: 1.65; }
.footer-col-body a { color: var(--bone); line-height: 1.7; }
.footer-social {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(232,197,107,0.16);
  display: flex; gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(250,246,236,0.3);
  border-radius: 50%;
  color: var(--bone);
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social a:hover {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--ink);
  transform: translateY(-1px);
}
.footer-social a:focus-visible { outline: 2px solid var(--honey); outline-offset: 3px; }
.footer-base {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  margin-top: 28px; font-size: 11px; color: rgba(250,246,236,0.5);
  font-family: var(--mono); letter-spacing: 0.1em;
  gap: 8px;
}
.footer-base .links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 22px; }

/* Legacy footer-bottom 3-line variant (matches Rahill layout) */
.footer-bottom .footer-bottom-line,
.footer-bottom .footer-bottom-links {
  text-align: center;
  margin: 0 0 6px;
}
.footer-bottom .footer-bottom-links a { white-space: nowrap; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}


/* Accessibility utilities (added 2026-05-04) */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
:focus-visible{outline:3px solid currentColor;outline-offset:2px}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important}
}

/* ─── Secondary page template bridge ─────────────────────────────────
   These pages use the simpler header/content markup but should still
   feel like the same warm editorial Busby system. */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,246,236,0.94);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 84px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.logo,
.topnav-logo {
  min-width: 0;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo-image {
  display: block;
  height: 38px;
  width: auto;
}
.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.nav-link {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-link:hover {
  color: var(--ink);
}
.nav-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.nav-icon:hover {
  background: var(--bone-warm);
}
.btn-primary {
  background: var(--ink);
  color: var(--bone);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink-soft);
}
.btn-lg {
  padding: 16px 28px;
  font-size: 13px;
}
.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  background: transparent;
  color: var(--ink);
  padding: 10px;
}
.mobile-menu-btn span {
  display: block;
  height: 1.5px;
  background: currentColor;
  margin: 5px 0;
  transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.service-hero-inner,
.treatments-inner,
.legal-inner,
.service-cta-inner,
.faq-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
}
.service-hero-inner {
  max-width: 980px;
}
.breadcrumb {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a {
  border-bottom: 1px solid transparent;
}
.breadcrumb a:hover {
  color: var(--ink);
  border-bottom-color: var(--amber);
}
.breadcrumb-sep {
  opacity: .5;
}
.breadcrumb-current {
  color: var(--ink);
}
.service-hero-heading {
  margin: 0;
  max-width: 900px;
  font-family: var(--serif);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "SOFT" 60, "opsz" 144;
}
.service-hero-sub {
  margin-top: 28px;
}

.service-intro-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 72px;
  align-items: center;
}
.service-intro-text p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.section-heading {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-heading--center {
  text-align: center;
  margin-bottom: 44px;
}
.image-placeholder {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: end;
  padding: 18px;
  background:
    repeating-linear-gradient(135deg,
      rgba(252,205,24,0.07) 0 14px,
      rgba(252,205,24,0.0) 14px 28px),
    var(--bone-warm);
  border: 1px solid var(--rule);
}
.image-placeholder--tall {
  aspect-ratio: 3/4;
}
.image-placeholder span {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--bone);
  border: 1px solid var(--rule);
  padding: 5px 9px;
}

.treatments-section {
  padding: 96px 0;
  background: var(--bone);
  border-top: 1px solid var(--rule);
}
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.treatment-card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--rule);
  background: var(--paper);
}
.treatment-title {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
}
.treatment-desc {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}
.treatment-desc a,
.legal-inner a,
.faq-answer a {
  color: var(--ink);
  border-bottom: 1px solid var(--amber);
}

.legal-section {
  padding: 88px 0;
  border-top: 1px solid var(--rule);
  background: var(--paper);
}
.legal-inner {
  max-width: 860px;
}
.legal-inner h2,
.faq-group-heading {
  margin: 36px 0 14px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink);
}
.legal-inner h2:first-child {
  margin-top: 0;
}
.legal-inner p,
.legal-inner li {
  font-size: 17px;
  line-height: 1.72;
}
.legal-list {
  padding-left: 22px;
}
.legal-updated {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-section {
  padding: 88px 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.faq-item {
  border-top: 1px solid var(--rule);
}
.faq-question {
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
}
.faq-answer {
  padding: 0 0 24px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.service-cta-inner {
  max-width: 860px;
}
.cta-heading {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone);
}
.cta-text {
  max-width: 620px;
  margin: 0 0 34px;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.5;
  font-style: italic;
  color: rgba(250,246,236,0.78);
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}
.logo-text {
  font-family: var(--serif);
  color: var(--bone);
  line-height: .9;
  letter-spacing: -0.04em;
}
.logo-text--lg {
  font-size: 34px;
}
.footer-col h3 {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--honey);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.footer-col--services {
  min-width: 0;
}
.footer-col p,
.footer-col li {
  color: rgba(250,246,236,0.78);
}
.footer-col a {
  color: var(--bone);
}
.footer-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.footer-bottom {
  margin-top: 32px;
  text-align: center;
  color: rgba(250,246,236,0.55);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.service-intro-image {
  min-width: 0;
}
.legal-list--contact {
  list-style: none;
  padding-left: 0;
}
.legal-list--contact li {
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
}

/* Older secondary pages still include this inline accessibility widget. */
.a11y-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
}
.a11y-fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--ink);
  color: var(--bone);
  box-shadow: 0 0 0 3px var(--amber), 0 12px 32px rgba(24,22,15,0.32);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.a11y-panel--open {
  display: block;
}
.bee-motion,
.bee-wing-flap {
  transform-box: fill-box;
}

@media (max-width: 900px) {
  .header-inner {
    padding: 14px 20px;
    grid-template-columns: 1fr auto;
  }
  .nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav.nav--open {
    display: flex;
  }
  .nav-link,
  .nav-icon,
  .nav-btn {
    width: 100%;
    justify-content: center;
    margin: 0;
    padding: 13px 12px;
    border-bottom: 1px solid var(--rule);
  }
  .mobile-menu-btn {
    display: block;
  }
  .service-hero-inner,
  .treatments-inner,
  .legal-inner,
  .service-cta-inner,
  .faq-inner,
  .service-intro-inner {
    padding: 0 20px;
  }
  .service-intro-inner,
  .treatments-grid {
    grid-template-columns: 1fr;
  }
  .footer-services-grid {
    grid-template-columns: 1fr;
  }
}
