/* ═══════════════════════════════════════════════════════════════
   OPTION E — NEUTRAL MONOCHROME
   Pure white / near-black. No color accent. All emphasis
   through scale, weight, and spatial contrast alone.
   Closest reference: high-end architecture or publishing brands.
═══════════════════════════════════════════════════════════════ */
:root {
  --paper:      #f9f9f7;
  --paper-2:    #f3f3f1;
  --paper-3:    #e8e8e6;
  --ink:        #111110;
  --ink-soft:   #555553;
  --ink-faint:  #999997;
  --rule:       #e0e0de;
  --rule-soft:  #ebebea;
  /* Logo steel blue, darkened for contrast: 5.2:1 on --paper, 5.4:1 under
     white text. The one chromatic accent — CTAs, text links, focus, stars. */
  --accent:     #3b6e96;
  --accent-d:   #2a5278;

  --serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:    'Plus Jakarta Sans', system-ui, sans-serif;
  --heavy:   'Plus Jakarta Sans', system-ui, sans-serif;

  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --dur:     320ms;
  --max:     1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--serif);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.72;
  font-feature-settings: "kern", "liga", "onum";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
address { font-style: normal; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 2px; }
.skip-to-main {
  position: absolute; left: 16px; top: -100%;
  padding: 12px 22px; background: var(--ink); color: var(--paper);
  font-family: var(--heavy); font-size: 0.86rem; z-index: 200; transition: top 200ms;
}
.skip-to-main:focus { top: 16px; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
}

/* Partial mount points must not create a containing block, or the nav's
   position:sticky is trapped inside a wrapper of its own height. */
#site-nav, #site-footer, #site-visit { display: contents; }

/* No-JS / failed-JS fallback: reveal styles only apply once main.js has
   tagged <html class="js">. Without it, everything stays visible. */
html:not(.js) [data-reveal],
html:not(.js) [data-reveal-stagger] > * { opacity: 1 !important; transform: none !important; filter: none !important; }

/* ── SCROLL REVEAL ── */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transition: opacity 350ms var(--ease), transform 350ms var(--ease), filter 400ms var(--ease);
  }
  [data-reveal="heading"]  { transform: translateY(24px); }
  [data-reveal="lede"]     { transform: translateY(16px); transition-delay: 120ms; }
  [data-reveal="body"]     { transform: translateY(14px); transition-delay: 180ms; }
  [data-reveal="cta"]      { transform: translateY(12px); transition-delay: 240ms; }
  [data-reveal="rule"]     { transform: scaleX(0); transform-origin: left center;
                             transition: transform 400ms var(--ease), opacity 400ms var(--ease); }
  [data-reveal="photo"]    { transform: scale(1.04); filter: saturate(0.3) blur(3px); }
  [data-reveal="kicker"]   { transform: translateY(8px); transition-delay: 60ms; }
  [data-reveal].in-view    { opacity: 1; transform: none; filter: none; }
  [data-reveal="photo"].in-view { filter: saturate(0.78) brightness(1.01); }
  [data-reveal-stagger] > * {
    opacity: 0; transform: translateY(14px);
    transition: opacity 350ms var(--ease), transform 350ms var(--ease);
  }
  [data-reveal-stagger].in-view > * { opacity: 1; transform: none; }
  [data-reveal-stagger].in-view > *:nth-child(1) { transition-delay: 0ms; }
  [data-reveal-stagger].in-view > *:nth-child(2) { transition-delay: 90ms; }
  [data-reveal-stagger].in-view > *:nth-child(3) { transition-delay: 180ms; }
  [data-reveal-stagger].in-view > *:nth-child(4) { transition-delay: 270ms; }
  [data-reveal-stagger].in-view > *:nth-child(5) { transition-delay: 360ms; }
  [data-reveal-stagger].in-view > *:nth-child(6) { transition-delay: 450ms; }
}
.photo-tone { filter: saturate(0.78) brightness(1.01); }

/* ── TOPBAR ── */
.topbar { background: var(--ink); border-bottom: 1px solid #2a2a28; }
.topbar__inner {
  max-width: var(--max); margin: 0 auto; padding: 10px 40px;
  display: flex; align-items: center; gap: 24px;
  font-family: var(--sans); font-size: 0.78rem; color: #888886;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; }
.topbar__item a { color: #aaaaaa; transition: color 200ms; }
.topbar__item a:hover { color: var(--paper); }
.topbar__item--address { margin-right: auto; }
.topbar__doctors { font-family: var(--heavy); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.02em; color: #999999; }
@media (max-width: 768px) {
  .topbar__inner { padding: 9px 20px; gap: 14px; }
  .topbar__item--address, .topbar__doctors { display: none; }
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(249,249,247,0.96);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--dur);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(17,17,16,0.08); }
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 15px 40px;
  display: flex; align-items: center; gap: 32px;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo-img { height: 44px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 24px; margin-left: auto; }
.nav__links > a { font-family: var(--sans); font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); transition: color 200ms; }
.nav__links > a:hover { color: var(--ink); }
.nav__item { position: relative; }
.nav__dropdown-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 500;
  color: var(--ink-soft); padding: 6px 0; transition: color 200ms;
}
.nav__dropdown-trigger:hover,
.nav__item--open .nav__dropdown-trigger { color: var(--ink); }
.nav__dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 190px; background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: 0 8px 32px rgba(17,17,16,0.09);
  padding: 8px 0; opacity: 0; pointer-events: none;
  transition: opacity 180ms var(--ease) 80ms, transform 180ms var(--ease) 80ms;
}
/* Invisible hover bridge — spans the 12px gap between trigger and dropdown
   plus a 4px overlap onto the trigger so cursor handoff is continuous.
   Without this, hovering off the trigger to reach the dropdown crosses
   dead space and the menu closes prematurely. */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -16px; left: -8px; right: -8px;
  height: 16px;
}
.nav__item:hover .nav__dropdown,
.nav__item--open .nav__dropdown {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0ms;
}
.nav__dropdown li a { display: block; padding: 10px 20px; font-family: var(--sans); font-size: 0.86rem; font-weight: 500; color: var(--ink-soft); transition: background 160ms, color 160ms; }
.nav__dropdown li a:hover { background: var(--paper-2); color: var(--ink); }
.nav__cta {
  display: inline-flex; align-items: center; padding: 11px 22px;
  border-radius: 100px; background: var(--accent); color: #ffffff;
  font-family: var(--heavy); font-size: 0.86rem; font-weight: 700;
  letter-spacing: -0.005em; white-space: nowrap;
  transition: background var(--dur), transform 180ms; margin-left: 8px;
  min-height: 48px;
}
.nav__cta:hover { background: var(--accent-d); transform: translateY(-1px); }
.nav__cta-short { display: none; }
.nav__dropdown-trigger > svg { transition: transform 220ms var(--ease); }
.nav__item--open .nav__dropdown-trigger > svg { transform: rotate(180deg); }
.nav__hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; padding: 0; margin-left: auto;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform 240ms var(--ease), opacity 200ms; }
.nav__hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (max-width: 768px) {
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--paper); }
  .nav__inner { padding: 12px 20px; gap: 10px; }
  .nav__logo-img { height: 38px; }
  .nav__links { display: none; flex-direction: column; gap: 0; margin-left: 0; }
  .nav__links.is-open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--rule);
    padding: 6px 0 20px; box-shadow: 0 12px 28px rgba(17,17,16,0.10);
    max-height: calc(100vh - 100px); overflow-y: auto;
  }
  .nav__links > a, .nav__dropdown-trigger {
    padding: 14px 20px; width: 100%;
    min-height: 48px; box-sizing: border-box;
    font-size: 0.95rem; justify-content: space-between;
  }
  .nav__item { width: 100%; border-top: 1px solid var(--rule-soft); }
  .nav__links > a { border-top: 1px solid var(--rule-soft); }
  .nav__links > .nav__item:first-child,
  .nav__links > a:first-child { border-top: none; }
  .nav__dropdown {
    display: none; position: static; transform: none !important;
    opacity: 1; pointer-events: auto;
    box-shadow: none; border: none;
    padding: 4px 0 8px; background: var(--paper-2);
  }
  .nav__item--open .nav__dropdown { display: block; }
  .nav__item--open .nav__dropdown-trigger { color: var(--ink); }
  .nav__dropdown li a {
    padding: 14px 20px 14px 36px;
    min-height: 48px; display: flex; align-items: center;
    font-size: 0.92rem;
  }
  /* Book CTA stays visible on mobile, compact, before hamburger */
  .nav__cta {
    margin-left: auto; margin-right: 6px;
    padding: 9px 14px; font-size: 0.78rem;
    min-height: 44px;
  }
  .nav__cta-full { display: none; }
  .nav__cta-short { display: inline; }
  .nav__hamburger { display: flex; margin-left: 0; }
}
@media (max-width: 360px) {
  .nav__inner { padding: 10px 16px; gap: 8px; }
  .nav__logo-img { height: 34px; }
  .nav__cta { padding: 8px 12px; font-size: 0.75rem; }
}

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--paper); border-bottom: 1px solid var(--rule); }
.breadcrumb__inner { max-width: var(--max); margin: 0 auto; padding: 13px 40px; }
.breadcrumb ol {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; align-items: center;
  font-family: var(--sans); font-size: 0.78rem;
}
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 600; }
.breadcrumb li + li::before { content: '\203A'; color: var(--ink-faint); margin: 0 10px; }
@media (max-width: 760px) {
  .breadcrumb__inner { padding: 11px 24px; }
}

/* ── HERO ── */
.hero {
  width: 100%; height: 88vh; min-height: 600px; max-height: 940px;
  position: relative; overflow: hidden; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; display: block; }
@media (prefers-reduced-motion: no-preference) {
  @keyframes ken-burns { from { transform: scale(1) translate(0, 0); } to { transform: scale(1.06) translate(-1%, -0.5%); } }
  .hero__img { animation: ken-burns 24s linear infinite alternate; }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(17,17,16,0.52) 0%, rgba(17,17,16,0.65) 45%, rgba(17,17,16,0.83) 100%),
    linear-gradient(180deg, rgba(17,17,16,0.20) 0%, transparent 25%, transparent 75%, rgba(17,17,16,0.35) 100%);
}
.hero__center { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 980px; display: flex; flex-direction: column; align-items: center; }
.hero__name { font-family: var(--serif); font-weight: 400; font-size: clamp(3rem, 7.6vw, 6rem); line-height: 1.02; letter-spacing: -0.018em; color: #ffffff; margin: 0; text-wrap: balance; }
.hero__est { display: block; margin-top: 18px; font-family: var(--heavy); font-size: clamp(1rem, 1.4vw, 1.2rem); font-weight: 500; letter-spacing: 0.02em; color: rgba(255,255,255,0.60); }
.hero__tagline { margin-top: 28px; font-family: var(--sans); font-size: clamp(1rem, 1.25vw, 1.16rem); line-height: 1.55; color: rgba(255,255,255,0.76); max-width: 44ch; }
.hero__actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 30px; border-radius: 100px; font-family: var(--sans); font-size: 0.95rem; font-weight: 600; border: none; transition: all var(--dur) var(--ease); white-space: nowrap; cursor: pointer; }
.btn--white { background: #ffffff; color: var(--ink); }
.btn--white:hover { background: #f0f0ee; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: #ffffff; border: 1.5px solid rgba(255,255,255,0.50) !important; }
.btn--ghost:hover { background: rgba(255,255,255,0.10); border-color: #ffffff !important; }
@media (max-width: 768px) { .hero { height: 82vh; min-height: 520px; } }
@media (max-width: 480px) { .hero__actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; } .btn { justify-content: center; } }

/* ── HISTORY (captioned plates + scroll parallax) ── */
.history { background: var(--paper); padding: 140px 40px; border-top: 1px solid var(--rule); }
.history__inner { max-width: var(--max); margin: 0 auto; }
.history__hd { max-width: 760px; margin-bottom: 64px; }
.history__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 4.4vw, 3.6rem); line-height: 1.02; letter-spacing: -0.022em; color: var(--ink); text-wrap: balance; }
.history__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.history__fig { display: flex; flex-direction: column; }
.history__frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--ink); background-color: var(--paper-3); }
.history__img { position: absolute; inset: 0; background-size: cover; background-repeat: no-repeat; transition: filter 400ms ease-out; will-change: transform; transform: scale(1.16); }
@media (hover: hover) { .history__fig:hover .history__img { filter: saturate(0.95) brightness(1.04); } }
.history__stamp { position: absolute; z-index: 2; left: 16px; bottom: 16px; background: var(--paper); padding: 8px 14px; border: 1px solid var(--ink); font-family: var(--serif); font-size: 1rem; color: var(--ink); line-height: 1.2; }
.history__cap { padding-top: 24px; }
.history__lead { font-family: var(--serif); font-weight: 400; font-size: 1.4rem; line-height: 1.25; letter-spacing: -0.01em; color: var(--ink); margin: 0 0 14px; text-wrap: balance; }
.history__copy { font-family: var(--sans); font-size: 1rem; line-height: 1.62; color: var(--ink-soft); text-wrap: pretty; }

/* Tablet/laptop: keep the 3-up grid, tighten the gutter */
@media (max-width: 1080px) { .history { padding: 104px 32px; } .history__grid { gap: 28px; } .history__lead { font-size: 1.28rem; } }

/* Mobile (≤760px): horizontal swipe carousel; 2nd card peeks on the right */
@media (max-width: 760px) {
  .history { padding: 88px 0; }
  .history__inner { max-width: none; }
  .history__hd { padding: 0 24px; margin-bottom: 32px; }
  .history__grid {
    display: flex; gap: 16px;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; scroll-padding-left: 24px;
    padding: 4px 24px 22px;
    -webkit-overflow-scrolling: touch; overscroll-behavior-x: contain;
    scrollbar-width: none;
  }
  .history__grid::-webkit-scrollbar { display: none; }
  .history__fig { flex: 0 0 80%; scroll-snap-align: start; }
  .history__frame { aspect-ratio: 4 / 5; }
  .history__cap { max-width: none; padding-top: 18px; }
}

/* Scroll-linked motion (progressive enhancement; static + visible without it) */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    @keyframes history-parallax { from { transform: translateY(-5%) scale(1.16); } to { transform: translateY(5%) scale(1.16); } }
    @keyframes history-rise { from { opacity: 0; transform: translateY(48px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes history-cap-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
    .history__img { animation: history-parallax linear both; animation-timeline: view(); animation-range: cover 0% cover 100%; }
    .history__fig { animation: history-rise linear both; animation-timeline: view(); animation-range: entry 5% cover 22%; }
    .history__fig:nth-child(2) { animation-range: entry 12% cover 26%; }
    .history__fig:nth-child(3) { animation-range: entry 19% cover 30%; }
    .history__cap { animation: history-cap-rise linear both; animation-timeline: view(); animation-range: entry 18% cover 38%; }
  }
}
/* On the touch carousel the swipe is the motion; drop parallax + rise to avoid clip */
@media (max-width: 760px) and (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .history__fig, .history__cap, .history__img { animation: none; opacity: 1; transform: none; }
  }
}

/* ── SERVICES (grouped menu) ── */
.services { background: var(--paper-2); padding: 140px 40px; border-top: 1px solid var(--rule); }
.services__frame { max-width: var(--max); margin: 0 auto; }
.services__head { display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid var(--ink); }
.services__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 4.4vw, 3.6rem); line-height: 1.02; letter-spacing: -0.022em; color: var(--ink); max-width: 34ch; text-wrap: balance; }
.services__all { font-family: var(--heavy); font-weight: 700; font-size: 0.86rem; white-space: nowrap; display: inline-flex; align-items: center; gap: 10px; min-height: 48px; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px; transition: gap 200ms var(--ease), color 220ms; }
.services__all:hover { gap: 14px; color: var(--accent-d); }
.services__cols { display: grid; grid-template-columns: repeat(3, 1fr); }
.svc-cat { padding: 44px 40px 8px; border-right: 1px solid var(--rule); }
.svc-cat:first-child { padding-left: 0; }
.svc-cat:last-child { border-right: none; padding-right: 0; }
.svc-cat__name { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1; letter-spacing: -0.01em; color: var(--ink); }
.svc-cat__lead { font-family: var(--sans); font-weight: 400; font-size: 0.92rem; line-height: 1.5; color: var(--ink-soft); margin-top: 14px; max-width: 26ch; }
.svc-cat__list { margin-top: 32px; }
.svc-cat__item { font-family: var(--sans); font-weight: 500; font-size: 1.02rem; line-height: 1.3; color: var(--ink); padding: 15px 0; border-top: 1px solid var(--rule); }
.svc-cat__item:last-child { border-bottom: 1px solid var(--rule); }

/* ── PEOPLE ── */
.people { background: var(--paper); padding: 140px 40px; border-top: 1px solid var(--rule); }
.people__inner { max-width: var(--max); margin: 0 auto; }
.people__hd { display: flex; flex-direction: column; margin-bottom: 80px; max-width: 720px; }
.people__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 4.4vw, 3.6rem); line-height: 1.02; letter-spacing: -0.022em; color: var(--ink); }
.conv { display: grid; grid-template-columns: minmax(280px, 0.85fr) 1.15fr; gap: 64px; align-items: center; padding: 64px 0; border-top: 1px solid var(--rule); }
.conv:last-child { border-bottom: 1px solid var(--ink); }
.conv--reverse { direction: rtl; }
.conv--reverse > * { direction: ltr; }
.conv__photo { aspect-ratio: 4 / 5; background-color: var(--paper-3); background-size: cover; background-position: center 22%; background-repeat: no-repeat; }
.conv__copy { display: flex; flex-direction: column; }
.conv__pull { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.24; letter-spacing: -0.016em; color: var(--ink); margin-bottom: 28px; max-width: 34ch; }
.conv__attr { font-family: var(--serif); font-weight: 400; font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.conv__role { font-family: var(--sans); font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 28px; }
.conv__link { font-family: var(--heavy); font-weight: 700; font-size: 0.86rem; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 2px; align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; transition: color 220ms, letter-spacing 220ms; }
.conv__link:hover { color: var(--accent-d); letter-spacing: 0.012em; }

/* ── PULL QUOTE ── */
.quote { background: var(--paper-2); padding: 140px 40px; border-top: 1px solid var(--rule); position: relative; }
.quote::before { content: '"'; position: absolute; top: 70px; left: 50%; transform: translateX(-50%); font-family: var(--serif); font-weight: 300; font-size: 9rem; line-height: 0.5; color: var(--ink); opacity: 0.08; pointer-events: none; user-select: none; }
.quote__inner { max-width: 920px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.quote__stars { display: flex; gap: 5px; margin-bottom: 36px; }
.quote__stars svg { color: var(--accent); }
.quote__text { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.4rem); line-height: 1.3; letter-spacing: -0.014em; color: var(--ink); margin-bottom: 36px; text-wrap: balance; }
.quote__attr { font-family: var(--heavy); font-weight: 500; font-size: 0.86rem; color: var(--ink-soft); margin-bottom: 44px; }
.quote__links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.quote__link { font-family: var(--heavy); font-weight: 700; font-size: 0.86rem; color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 3px; transition: color 220ms; }
.quote__link:hover { color: var(--accent-d); }

/* ── VISIT ── */
.visit { background: var(--paper); padding: 140px 40px; border-top: 1px solid var(--rule); scroll-margin-top: 130px; }
.visit__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 96px; align-items: start; }
.visit__letter { display: flex; flex-direction: column; }
.visit__series { font-family: var(--heavy); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 24px; }
.visit__title { font-family: var(--serif); font-weight: 300; font-size: clamp(2.4rem, 4.4vw, 3.6rem); line-height: 1.02; letter-spacing: -0.022em; color: var(--ink); margin-bottom: 36px; text-wrap: balance; }
.visit__body { font-family: var(--serif); font-weight: 300; font-size: 1.18rem; line-height: 1.55; color: var(--ink-soft); max-width: 54ch; margin-bottom: 32px; }
.visit__sig { font-family: var(--serif); font-weight: 400; font-size: 1rem; color: var(--ink); }
.visit__facts { display: flex; flex-direction: column; padding-top: 12px; border-top: 1px solid var(--ink); }
.visit__fact { padding: 24px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 88px 1fr; gap: 24px; align-items: baseline; }
.visit__fact:last-child { border-bottom: 1px solid var(--ink); }
.visit__fact-key { font-family: var(--heavy); font-weight: 500; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.visit__fact-val { font-family: var(--serif); font-weight: 400; font-size: 1.08rem; line-height: 1.4; color: var(--ink); }
.visit__fact-val small { display: block; font-family: var(--sans); font-size: 0.86rem; color: var(--ink-soft); margin-top: 4px; }
.visit__fact-val a { color: var(--ink); border-bottom: 1px solid var(--rule); transition: border-color 200ms; }
.visit__fact-val a:hover { border-bottom-color: var(--ink); }
.visit__cta { margin-top: 36px; display: inline-flex; align-items: center; gap: 12px; padding: 16px 28px; background: var(--accent); color: #ffffff; font-family: var(--heavy); font-weight: 700; font-size: 0.92rem; align-self: flex-start; transition: background 220ms, gap 220ms var(--ease); }
.visit__cta:hover { background: var(--accent-d); gap: 18px; }

/* ── FOOTER ── */
.b-footer { background: var(--paper-2); padding: 80px 40px 40px; border-top: 1px solid var(--ink); }
.b-footer__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 64px; align-items: start; }
.b-footer__brand { font-family: var(--serif); font-weight: 300; font-size: 1.6rem; line-height: 1.1; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.014em; }
.b-footer__about { font-family: var(--sans); font-size: 0.94rem; line-height: 1.6; color: var(--ink-soft); max-width: 36ch; }
.b-footer__col h4 { font-family: var(--heavy); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 18px; }
.b-footer__col ul li { margin-bottom: 10px; }
.b-footer__col a { font-family: var(--sans); font-size: 0.92rem; color: var(--ink-soft); transition: color 200ms; }
.b-footer__col a:hover { color: var(--ink); }
.b-footer__bottom { max-width: var(--max); margin: 80px auto 0; padding-top: 24px; border-top: 1px solid var(--rule); font-family: var(--sans); font-size: 0.82rem; color: var(--ink-faint); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.b-footer__bottom a { color: var(--ink-soft); }
.b-footer__bottom a:hover { color: var(--ink); }

/* ── RESPONSIVE ── */
@media (max-width: 1080px) {
  .visit__inner { grid-template-columns: 1fr; gap: 48px; }
  .b-footer__inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 860px) {
  .services__cols { grid-template-columns: 1fr; }
  .svc-cat { border-right: none; border-top: 1px solid var(--ink); padding: 36px 0 4px; }
  .svc-cat:first-child { border-top: none; }
}
@media (max-width: 520px) {
  .services__head { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 760px) {
  .services, .people, .quote, .visit { padding: 88px 24px; }
  .conv { grid-template-columns: 1fr; gap: 28px; padding: 48px 0; }
  .conv--reverse { direction: ltr; }
  .conv__photo { aspect-ratio: 4 / 3; }
  .b-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .b-footer__bottom { flex-direction: column; gap: 8px; }
  .visit__fact { grid-template-columns: 1fr; gap: 6px; padding: 20px 0; }
}
