/* ==========================================================================
   OPTION D — "FOCUS" · scroll-story stylesheet
   Base is fully readable with NO JS and NO motion: every effect below is
   gated behind html.fxon (added by JS only when motion is allowed).
   ========================================================================== */

/* Both roman faces are VARIABLE fonts (verified via fontTools fvar):
   bricolage-grotesque.woff2 carries wght 200–800 (+opsz 12–96),
   mulish-400.woff2 carries wght 200–1000. The weight ranges below match the
   real axes — bold weights are true instances, not synthetic. */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('../assets/fonts/bricolage-grotesque.woff2?v=ad33cbc6d2') format('woff2');
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../assets/fonts/mulish-400.woff2?v=50220d0057') format('woff2');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../assets/fonts/mulish-400-italic.woff2?v=eb38f6f617') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --teal: #58bbc3;          /* brand anchor — graphics only, never small text on white */
  --teal-ink: #1f6b72;      /* AA-safe teal for text */
  --teal-deep: #17565e;     /* CTA surface */
  --ink: #4c4d4e;           /* brand grey */
  --ink-dark: #2b2e30;
  --bg: #fbfdfd;
  --tint: #edf6f7;
  --tint-warm: #fbf6ef;
  --card: #ffffff;
  --line: rgba(76, 77, 78, 0.14);
  --shadow: 0 22px 60px -28px rgba(31, 107, 114, 0.35);
  --radius: 22px;
  --display: 'Bricolage Grotesque', 'Trebuchet MS', sans-serif;
  --body: 'Mulish', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }
a { color: var(--teal-ink); }
h1, h2, h3, h4 { color: var(--ink-dark); font-family: var(--display); line-height: 1.08; }
h3, h4 { font-family: var(--body); font-weight: 700; }

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

.skip-link {
  position: absolute; left: 1rem; top: -4rem; z-index: 200;
  background: var(--teal-deep); color: #fff; padding: 0.8rem 1.4rem;
  border-radius: 999px; text-decoration: none; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0.55rem 1.7rem; border-radius: 999px;
  font-family: var(--body); font-weight: 700; font-size: 1rem;
  text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.btn-primary { background: var(--teal-deep); color: #fff; box-shadow: 0 14px 34px -16px rgba(23, 86, 94, 0.55); }
.btn-primary:hover { background: #1f6b72; transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid rgba(76, 77, 78, 0.35); color: var(--ink-dark); background: rgba(255, 255, 255, 0.65); }
.btn-ghost:hover { border-color: var(--teal-ink); color: var(--teal-ink); transform: translateY(-2px); }
.btn-sm { min-height: 44px; padding: 0.35rem 1.25rem; font-size: 0.95rem; }
.btn-lg { min-height: 56px; padding: 0.7rem 2.2rem; font-size: 1.1rem; }

/* ---------------- header ---------------- */
.topbar {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(251, 253, 253, 0.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.topbar.scrolled { border-color: var(--line); box-shadow: 0 10px 30px -22px rgba(43, 46, 48, 0.35); }
.topbar-in {
  max-width: 1280px; margin: 0 auto; padding: 0.65rem clamp(1rem, 3.5vw, 2.5rem);
  display: flex; align-items: center; gap: 1.6rem;
}
.brand { display: flex; align-items: center; min-height: 44px; }
.brand img { height: 46px; width: auto; }
.topnav { display: flex; gap: clamp(0.7rem, 1.8vw, 1.6rem); margin-left: auto; }
.topnav a {
  color: var(--ink); text-decoration: none; font-weight: 600; font-size: 0.98rem;
  padding: 0.6rem 0.35rem; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.topnav a:hover, .topnav a.active { color: var(--teal-ink); border-color: var(--teal); }
.topbar-actions { display: flex; align-items: center; gap: 0.9rem; margin-left: auto; }
.topnav + .topbar-actions { margin-left: 0; }
.phone-link {
  color: var(--ink-dark); text-decoration: none; font-weight: 700; font-size: 0.98rem;
  display: inline-flex; align-items: center; min-height: 44px; padding: 0 0.3rem;
}
.phone-link:hover { color: var(--teal-ink); }
.phone-link { white-space: nowrap; }
.phone-short { display: none; }
.btn { white-space: nowrap; }
.scroll-progress { height: 2px; background: transparent; }
.scroll-progress span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-ink));
  transform: scaleX(0); transform-origin: 0 50%;
}

/* ---------------- chapter progress nav (keyboard-operable; labels appear on hover/focus) ---------------- */
.dots { display: none; }
@media (min-width: 1100px) and (pointer: fine) {
  .dots {
    display: flex; flex-direction: column; gap: 14px;
    position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 90;
  }
  .dots a { display: flex; align-items: center; gap: 10px; flex-direction: row-reverse; text-decoration: none; padding: 8px; margin: -6px 0; border-radius: 999px; }
  .dots i {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(76, 77, 78, 0.35); transition: background 0.25s, transform 0.25s;
  }
  .dots b {
    font: 700 0.72rem var(--body); color: var(--teal-ink);
    opacity: 0; transform: translateX(6px); transition: opacity 0.25s, transform 0.25s;
    background: rgba(255,255,255,0.92); padding: 2px 8px; border-radius: 999px;
  }
  .dots a:hover b, .dots a.active b, .dots a:focus-visible b { opacity: 1; transform: none; }
  .dots a.active i { background: var(--teal-ink); transform: scale(1.5); }
}

/* ---------------- hero ---------------- */
/* No fx engine (JS-off / reduced motion): the hero is one plain viewport-tall
   scene with zero pinned dead-scroll. With motion on, a SHORT pin (22vh of
   travel) drives the focus-pull — short enough that the very first wheel notch
   both moves the copy dramatically and nearly releases the hero. */
.hero { height: 100vh; height: 100svh; position: relative; }
.fxon .hero { height: 122vh; }
.hero-pin {
  position: sticky; top: 0; height: 100vh; height: 100svh;
  overflow: clip; display: flex; align-items: center;
  background: linear-gradient(165deg, #ffffff 0%, #f2fafa 45%, #e4f3f4 100%);
}
.hero-photo, .hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo img { object-fit: cover; object-position: 70% 50%; }
.hero-photo video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 70% 50%;
  opacity: 0; transition: opacity 0.9s ease;
}
.hero-photo video.on { opacity: 1; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,0.88) 0%, rgba(255,255,255,0.55) 38%, rgba(255,255,255,0.05) 70%);
}
.hero-scene { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bokeh {
  position: absolute; border-radius: 50%; filter: blur(2px); opacity: 0.55;
}
.bk-1 { width: 30vw; height: 30vw; left: -8vw; top: -10vw; background: radial-gradient(circle, rgba(88,187,195,0.5), rgba(88,187,195,0) 70%); }
.bk-2 { width: 16vw; height: 16vw; right: 12vw; top: 8vh; background: radial-gradient(circle, rgba(244,193,120,0.45), rgba(244,193,120,0) 70%); }
.bk-3 { width: 22vw; height: 22vw; right: -6vw; bottom: -4vw; background: radial-gradient(circle, rgba(240,150,128,0.4), rgba(240,150,128,0) 70%); }
.bk-4 { width: 10vw; height: 10vw; left: 30vw; bottom: 16vh; background: radial-gradient(circle, rgba(88,187,195,0.42), rgba(88,187,195,0) 70%); }
.hero-beam {
  position: absolute; left: 18%; top: -20%; width: 8vw; height: 150%;
  transform: rotate(24deg);
  background: linear-gradient(90deg, rgba(88,187,195,0) 0%, rgba(88,187,195,0.16) 30%, rgba(255,214,160,0.18) 55%, rgba(240,150,128,0.12) 75%, rgba(255,255,255,0) 100%);
  filter: blur(6px);
}
.hero-copy {
  position: relative; z-index: 3;
  max-width: 700px; padding: clamp(5.5rem, 12vh, 8rem) clamp(1.2rem, 5vw, 4.5rem) 2rem;
}
.trust-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-ink); background: rgba(255,255,255,0.75);
  border: 1px solid rgba(88,187,195,0.45); border-radius: 999px;
  padding: 0.45rem 1rem; margin-bottom: 1.6rem;
}
.trust-chip img { width: 28px; height: auto; }
.hero-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2.9rem, 7.6vw, 6.2rem);
  letter-spacing: -0.025em; line-height: 0.98; color: var(--ink-dark);
  margin-bottom: 1.4rem;
}
.ht-line { display: block; }
.ht-w { display: inline-block; }
.hero-title .accent { color: var(--teal-ink); }
.ht-dot { color: var(--teal); }
.hero-sub { max-width: 34rem; font-size: clamp(1.05rem, 1.6vw, 1.2rem); margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.scroll-cue {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%); z-index: 3;
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--teal-ink);
}
.cue-ring {
  width: 26px; height: 40px; border: 2px solid rgba(31,107,114,0.55); border-radius: 999px;
  position: relative;
}
.cue-ring::after {
  content: ""; position: absolute; left: 50%; top: 7px; width: 4px; height: 8px;
  margin-left: -2px; border-radius: 4px; background: var(--teal-ink);
}

/* hero load-in + scroll-away defocus — motion users only */
.fxon .ht-w { opacity: 0; filter: blur(16px); transform: translateY(0.35em); animation: ht-in 0.95s cubic-bezier(0.2, 0.6, 0.2, 1) forwards; }
.fxon .w2 { animation-delay: 0.18s; }
.fxon .w3 { animation-delay: 0.36s; }
.fxon .trust-chip, .fxon .hero-sub, .fxon .hero-ctas { opacity: 0; animation: soft-in 0.9s ease 0.55s forwards; }
.fxon .trust-chip { animation-delay: 0.05s; }
@keyframes ht-in { to { opacity: 1; filter: blur(0); transform: none; } }
@keyframes soft-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.fxon .bokeh { animation: drift 16s ease-in-out infinite alternate; }
.fxon .bk-2 { animation-duration: 21s; animation-delay: -6s; }
.fxon .bk-3 { animation-duration: 18s; animation-delay: -11s; }
.fxon .bk-4 { animation-duration: 13s; animation-delay: -3s; }
@keyframes drift { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(3vw, -3vh, 0) scale(1.12); } }
.fxon .hero-copy {
  filter: blur(calc(var(--hp, 0) * 14px));
  opacity: calc(1 - var(--hp, 0) * 0.92);
  /* big, immediate upward travel so the first pixels of scroll read as motion */
  transform: translateY(calc(var(--hp, 0) * -18vh));
}
.fxon .hero-photo {
  filter: blur(calc(var(--hp, 0) * 10px));
  transform: scale(calc(1 + var(--hp, 0) * 0.05));
}
.fxon .scroll-cue { opacity: calc(1 - var(--hp, 0) * 2); }
.fxon .cue-ring::after { animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%, 100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: 0.2; } }

/* ---------------- chapters ---------------- */
.chapter { padding: clamp(5rem, 14vh, 9.5rem) clamp(1.2rem, 5vw, 4.5rem) clamp(4rem, 10vh, 7rem); position: relative; }
.ch-care { background: linear-gradient(180deg, #e4f3f4 0%, var(--bg) 22%); }
.ch-boutique { background: linear-gradient(180deg, var(--bg) 0%, var(--tint-warm) 30%, var(--bg) 100%); }
.ch-medical { background: linear-gradient(180deg, var(--bg) 0%, var(--tint) 28%, var(--bg) 100%); }
.ch-doctors { background: var(--bg); }
.ch-visit { background: linear-gradient(180deg, var(--bg) 0%, var(--tint) 55%); }

.ch-head { max-width: 1160px; margin: 0 auto clamp(2.5rem, 6vh, 4.5rem); position: relative; }
.ch-head::before {
  content: ""; position: absolute; left: -9rem; top: -7rem; z-index: -1;
  width: 24rem; height: 24rem; border-radius: 50%;
  border: 2.6rem solid rgba(88, 187, 195, 0.09); filter: blur(2px);
}
.ch-kicker {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal-ink); margin-bottom: 1rem;
}
.ch-index {
  font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: 0;
  color: var(--teal-deep); background: rgba(88, 187, 195, 0.16);
  border-radius: 10px; padding: 0.25rem 0.6rem;
}
.ch-title {
  font-weight: 800; font-size: clamp(2.9rem, 7vw, 5.6rem);
  letter-spacing: -0.025em; margin-bottom: 1.4rem;
}
.ch-lede { max-width: 44rem; font-size: clamp(1.05rem, 1.55vw, 1.22rem); }

/* the focus-pull: JS drives --f from 0 (defocused) to 1 (sharp) */
.fxon .ch-head .ch-title {
  filter: blur(calc((1 - var(--f, 1)) * 14px));
  opacity: calc(0.15 + var(--f, 1) * 0.85);
  transform: translateY(calc((1 - var(--f, 1)) * 34px));
}
.fxon .scene-card .scene-img,
.fxon .film .film-video {
  filter: blur(calc((1 - var(--f, 1)) * 16px));
  transform: scale(calc(1.07 - var(--f, 1) * 0.07));
}
.fxon .closing .closing-title {
  filter: blur(calc((1 - var(--f, 1)) * 12px));
  opacity: calc(0.2 + var(--f, 1) * 0.8);
}

/* generic reveal */
.fxon .fx {
  opacity: 0; transform: translateY(26px); filter: blur(10px);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.6, 0.2, 1), filter 0.85s ease;
}
.fxon .fx.in { opacity: 1; transform: none; filter: blur(0); }
.fxon li.fx:nth-child(2), .fxon .doc.fx:nth-child(2) { transition-delay: 0.1s; }
.fxon li.fx:nth-child(3), .fxon .doc.fx:nth-child(3) { transition-delay: 0.2s; }
.fxon li.fx:nth-child(4), .fxon .doc.fx:nth-child(4) { transition-delay: 0.3s; }
.fxon li.fx:nth-child(5) { transition-delay: 0.4s; }
.fxon li.fx:nth-child(6) { transition-delay: 0.5s; }

.ch-body { max-width: 1160px; margin: 0 auto; }
.split { display: grid; grid-template-columns: minmax(0, 46fr) minmax(0, 54fr); gap: clamp(1.6rem, 4vw, 3.5rem); align-items: start; }
.split.rev { grid-template-columns: minmax(0, 42fr) minmax(0, 58fr); }

.scene-card { position: relative; }
@media (min-width: 861px) {
  .split .scene-card { position: sticky; top: 110px; }
}
.scene-card .scene-img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.scene-tag {
  margin-top: 0.9rem; font-size: 0.9rem; font-style: italic; color: var(--teal-ink);
}

/* service + condition lists */
.svc-list, .cond-list { list-style: none; display: grid; gap: 1rem; }
.svc-list { grid-template-columns: 1fr 1fr; }
.cond-list { grid-template-columns: 1fr 1fr; }
.svc, .cond {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem; transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.svc:hover, .cond:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(88,187,195,0.5); }
.svc h3, .cond h3 { font-size: 1.08rem; margin-bottom: 0.45rem; }
.svc p, .cond p { font-size: 0.96rem; }

/* boutique film */
.film { max-width: 1160px; margin: 0 auto clamp(2.5rem, 6vh, 4rem); }
.film-video { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); background: var(--tint); }

.brand-board { max-width: 1160px; margin: 0 auto; }
.board-title { font-size: 0.92rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-ink); margin-bottom: 1.4rem; }
.brand-grid {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem 1.6rem; margin-bottom: 1.6rem;
}
.brand-grid li {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.25rem, 2.3vw, 1.9rem);
  color: var(--ink-dark); padding: 0.4rem 0; border-bottom: 1px solid var(--line);
  transition: color 0.25s, padding-left 0.25s;
}
.brand-grid li:hover { color: var(--teal-ink); padding-left: 0.5rem; }
.board-note { max-width: 52rem; font-size: 0.95rem; color: var(--ink); }

/* sun interlude */
.sun-panel {
  max-width: 1160px; margin: clamp(3rem, 8vh, 5rem) auto; padding-bottom: 0;
  display: grid; grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
  gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center;
}
.sun-title { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.02em; margin-bottom: 1rem; }
.sun-copy p { margin-bottom: 0.9rem; }
.sun-more { font-size: 0.95rem; }

/* diagnostics strip */
.diag-strip {
  max-width: 1160px; margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  background: var(--ink-dark); color: #fff; border-radius: var(--radius);
  padding: 1.8rem clamp(1.4rem, 3vw, 2.6rem);
}
.diag-title { font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal); margin-bottom: 1rem; font-weight: 700; }
.diag-row { display: flex; flex-wrap: wrap; gap: 0.7rem 2.2rem; }
.diag-row span { font-size: 0.98rem; color: rgba(255,255,255,0.85); }
.diag-row b { color: #fff; font-family: var(--display); font-weight: 700; }

/* mid cta */
.mid-cta {
  max-width: 1160px; margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem;
  border: 1.5px solid rgba(88,187,195,0.5); border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(88,187,195,0.10), rgba(255,255,255,0.6));
  padding: 1.8rem clamp(1.4rem, 3vw, 2.6rem);
}
.mid-cta-line { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2.6vw, 1.9rem); color: var(--ink-dark); }

/* doctors */
.doc-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem;
}
.doc {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.doc:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.doc img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.doc h3 { font-size: 1.06rem; padding: 1.1rem 1.2rem 0.15rem; }
.doc-role { padding: 0 1.2rem; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-ink); }
.doc-cred { padding: 0.6rem 1.2rem 0; font-size: 0.88rem; color: var(--ink-dark); font-weight: 600; }
.doc-bio { padding: 0.5rem 1.2rem 1.3rem; font-size: 0.92rem; }

/* visit */
.visit-grid {
  max-width: 1160px; margin: 0 auto clamp(2.5rem, 6vh, 4rem);
  display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 1.4rem;
}
.visit-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.7rem 1.5rem;
}
.visit-card h3 { margin-bottom: 0.8rem; font-size: 1.12rem; }
.visit-card.emergency { background: linear-gradient(140deg, rgba(88,187,195,0.14), #fff 65%); border-color: rgba(88,187,195,0.55); }
.visitor-note { margin-top: 0.8rem; font-size: 0.95rem; font-style: italic; color: var(--teal-ink); }
.hours { border-collapse: collapse; width: 100%; }
.hours th { text-align: left; font-weight: 600; color: var(--ink-dark); padding: 0.45rem 0; }
.hours td { text-align: right; padding: 0.45rem 0; }
.hours tr + tr { border-top: 1px solid var(--line); }
address { font-style: normal; margin-bottom: 0.8rem; }
.visit-links a { display: inline-block; margin: 0 1rem 0.3rem 0; font-weight: 700; padding: 0.6rem 0; }
.visit-tel a { font-weight: 800; font-size: 1.15rem; text-decoration: none; color: var(--ink-dark); padding: 0.55rem 0; display: inline-block; }
.visit-tel a:hover { color: var(--teal-ink); }
.fax { font-size: 0.9rem; }

.ins-block { max-width: 1160px; margin: 0 auto clamp(3rem, 8vh, 5rem); }
.ins-block h3 { margin-bottom: 1.1rem; }
.ins-grid { list-style: none; display: flex; flex-wrap: wrap; gap: 0.55rem; }
.ins-grid li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.45rem 1.05rem; font-size: 0.92rem; font-weight: 600; color: var(--ink-dark);
}

/* closing */
.closing { max-width: 900px; margin: 0 auto; text-align: center; padding: clamp(2rem, 6vh, 4rem) 0 2rem; }
.closing-kicker { font-size: 0.88rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--teal-ink); margin-bottom: 0.8rem; }
.closing-title { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -0.025em; color: var(--ink-dark); margin-bottom: 1rem; }
.closing-sub { margin-bottom: 2rem; font-size: 1.1rem; }
.closing .hero-ctas { justify-content: center; }

/* ---------------- footer ---------------- */
.site-foot { background: #26292b; color: rgba(255,255,255,0.82); padding: clamp(3rem, 7vh, 4.5rem) clamp(1.2rem, 5vw, 4.5rem) 1.6rem; }
.foot-in { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: minmax(240px, 1fr) 2.4fr; gap: clamp(2rem, 5vw, 4rem); }
.foot-brand img { width: min(260px, 70vw); height: auto; }
.foot-tag { margin-top: 1rem; font-style: italic; color: var(--teal); }
.foot-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.foot-col h3 { color: #fff; font-family: var(--body); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.9rem; }
.foot-col p, .foot-col address { font-size: 0.95rem; line-height: 2; font-style: normal; }
.foot-col a { color: rgba(255,255,255,0.88); text-decoration: none; padding: 0.55rem 0; margin: -0.35rem 0; display: inline-block; }
.foot-col a:hover { color: var(--teal); text-decoration: underline; }
.foot-legal { max-width: 1240px; margin: 2.6rem auto 0; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.14); font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.foot-legal a { color: rgba(255,255,255,0.88); text-decoration: underline; padding: 0.55rem 0.15rem; margin: -0.35rem 0; display: inline-block; }
.foot-legal a:hover { color: var(--teal); }
.site-foot :focus-visible { outline-color: #fff; }

/* ---------------- responsive ---------------- */
@media (max-width: 1000px) {
  .doc-grid { grid-template-columns: 1fr 1fr; }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .visit-grid { grid-template-columns: 1fr 1fr; }
  .visit-card.emergency { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .topnav { display: none; }
  .split, .split.rev, .sun-panel { grid-template-columns: 1fr; }
  .foot-in { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .fxon .hero { height: 114vh; }
  .hero-photo img, .hero-photo video { object-position: 70% 68%; }
  /* phones: the subject fills the frame, so the wash runs vertically —
     strong behind the copy up top, clearing toward the bottom */
  .hero-photo::after {
    background: linear-gradient(180deg, rgba(255,255,255,0.93) 0%, rgba(255,255,255,0.82) 52%, rgba(255,255,255,0.22) 100%);
  }
}
@media (max-width: 640px) {
  body { font-size: 1rem; }
  .brand img { height: 36px; }
  .phone-full { display: none; }
  .phone-short { display: inline; font-weight: 700; color: var(--teal-ink); text-decoration: underline; }
  .topbar-actions { gap: 0.6rem; }
  .svc-list, .cond-list { grid-template-columns: 1fr; }
  .doc-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: 1fr 1fr; }
  .btn-sm { padding: 0.35rem 0.95rem; font-size: 0.9rem; }
  .topbar-in { gap: 0.8rem; }
  .scroll-cue { display: none; }
}

/* ---------------- touch devices: lighter blur budget, same story ---------------- */
.lite .ch-head .ch-title { filter: blur(calc((1 - var(--f, 1)) * 7px)); }
.lite .scene-card .scene-img,
.lite .film .film-video { filter: blur(calc((1 - var(--f, 1)) * 8px)); transform: scale(calc(1.04 - var(--f, 1) * 0.04)); }
.lite .fx { filter: blur(5px); }
.lite .fx.in { filter: blur(0); }
.lite .hero-copy { filter: blur(calc(var(--hp, 0) * 7px)); }
.lite .hero-photo { filter: none; }
.lite .hero-beam { display: none; }

/* ==========================================================================
   WAVE 2 — reviews · closure banners · interior pages · trilingual
   ========================================================================== */

.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;
}

/* ---------------- Google reviews band ---------------- */
.ch-reviews { background: linear-gradient(180deg, var(--bg) 0%, var(--tint-warm) 45%, var(--bg) 100%); }
.rev-agg {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 1.1rem;
  margin-bottom: clamp(1.8rem, 4vh, 2.6rem);
}
.rev-agg .rev-score { font-family: var(--display); font-weight: 800; font-size: clamp(2.6rem, 5vw, 3.6rem); color: var(--ink-dark); letter-spacing: -0.02em; }
.rev-agg .stars { font-size: 1.5rem; letter-spacing: 0.1em; }
.stars { color: #9a6a08; }
.rev-agg .rev-count { font-size: 1.05rem; font-weight: 600; color: var(--ink); }
.rev-grid {
  list-style: none; max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem;
}
.rev-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem; display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.rev-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(88,187,195,0.5); }
.rev-card .stars { font-size: 1rem; margin-bottom: 0.6rem; }
.rev-card blockquote { margin: 0 0 0.9rem; font-size: 0.96rem; }
.rev-card blockquote p::before { content: "\201C"; color: var(--teal); font-family: var(--display); font-weight: 800; }
.rev-card blockquote p::after { content: "\201D"; color: var(--teal); font-family: var(--display); font-weight: 800; }
.rev-card footer { margin-top: auto; font-size: 0.88rem; font-weight: 700; color: var(--teal-ink); }
.ch-more { max-width: 1160px; margin: clamp(1.6rem, 3vh, 2.2rem) auto 0; }
.ch-more a { font-weight: 700; padding: 0.6rem 0; display: inline-block; }
.ch-doctors .ch-more { max-width: 1240px; }
@media (max-width: 1000px) { .rev-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .rev-grid { grid-template-columns: 1fr; } }

/* ---------------- closure ribbon (advance notice) ---------------- */
.closure-ribbon, .closure-overlay { --accent: var(--teal); }
.theme-summer-sun { --accent: #d99a2b; }
.theme-labor-day { --accent: #58bbc3; }
.theme-autumn { --accent: #c07a3a; }
.theme-winter-frost { --accent: #8fd0d8; }
.theme-new-year { --accent: #cdad55; }
.theme-spring-memorial { --accent: #7c8a99; }

.closure-ribbon {
  position: fixed; left: 0; right: 0; z-index: 95;
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
  padding: 0.28rem clamp(0.6rem, 3vw, 2rem);
  background: rgba(237, 246, 247, 0.94);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--accent);
  box-shadow: 0 14px 34px -24px rgba(23, 86, 94, 0.5);
}
.closure-ribbon .cr-art { display: inline-flex; flex: none; }
.closure-ribbon .cr-art svg { width: 40px; height: 18px; }
.closure-ribbon p { margin: 0; font-size: 0.92rem; font-weight: 600; color: var(--ink-dark); line-height: 1.4; padding: 0.45rem 0.3rem; }
.cr-close {
  flex: none; min-width: 44px; min-height: 44px; margin-left: 0.2rem;
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; background: transparent; border-radius: 999px; cursor: pointer;
  font-size: 1.5rem; line-height: 1; color: var(--teal-ink); font-family: var(--body);
}
.cr-close:hover { background: rgba(88, 187, 195, 0.18); }
.fxon .closure-ribbon { animation: rib-in 0.55s cubic-bezier(0.2, 0.6, 0.2, 1) both; }
@keyframes rib-in { from { opacity: 0; transform: translateY(-8px); filter: blur(6px); } to { opacity: 1; transform: none; filter: blur(0); } }

/* the round-glasses motif (per-theme accents) */
.cl-glasses .lens { fill: none; stroke: var(--accent); stroke-width: 2.4; }
.cl-glasses .bridge, .cl-glasses .temple { fill: none; stroke: var(--accent); stroke-width: 2.4; stroke-linecap: round; }
.cl-glasses .glint { fill: var(--accent); opacity: 0; }
.theme-summer-sun .cl-glasses .lens { fill: rgba(217, 154, 43, 0.18); }
.theme-summer-sun .cl-glasses .glint, .theme-new-year .cl-glasses .glint,
.theme-winter-frost .cl-glasses .glint { opacity: 0.9; }
.theme-autumn .cl-glasses .lens { fill: rgba(192, 122, 58, 0.12); }
.theme-spring-memorial .cl-glasses .glint { opacity: 0.6; }

/* ---------------- closure day-of overlay ---------------- */
.closure-overlay {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem;
  background: rgba(23, 86, 94, 0.30);
  -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
}
.closure-card {
  background: #fff; border-radius: var(--radius); border-top: 5px solid var(--accent);
  box-shadow: 0 44px 110px -34px rgba(23, 86, 94, 0.55);
  max-width: 33rem; width: 100%; max-height: 88vh; overflow: auto;
  padding: 2.1rem clamp(1.3rem, 4vw, 2.5rem) 1.9rem; text-align: center;
}
.closure-card .cr-art svg { width: 64px; height: 28px; margin: 0 auto 0.9rem; }
.closure-card .cl-kicker {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--teal-ink); margin-bottom: 0.7rem;
}
.closure-card h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 4.5vw, 2.1rem); letter-spacing: -0.02em; margin-bottom: 0.9rem; }
.closure-card .cl-msg { margin-bottom: 0.8rem; }
.closure-card .cl-urgent { font-size: 0.95rem; margin-bottom: 0.4rem; }
.closure-card .cl-urgent a { font-weight: 700; }
.cl-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.3rem; }
.fxon .closure-card { animation: card-in 0.6s cubic-bezier(0.2, 0.6, 0.2, 1) both; }
@keyframes card-in { from { opacity: 0; transform: translateY(16px) scale(0.98); filter: blur(12px); } to { opacity: 1; transform: none; filter: blur(0); } }
.closure-lock { overflow: hidden; }

/* ---------------- interior pages ---------------- */
.page-hero {
  padding-top: clamp(7.5rem, 16vh, 10.5rem);
  background: linear-gradient(165deg, #ffffff 0%, #f2fafa 45%, #e4f3f4 100%);
}
.crumbs { max-width: 1160px; margin: 0 auto 1.2rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; font-size: 0.88rem; font-weight: 600; }
.crumbs li + li::before { content: "/"; margin-right: 0.45rem; color: rgba(76, 77, 78, 0.45); }
.crumbs a { text-decoration: none; padding: 0.35rem 0; display: inline-block; }
.crumbs a:hover { text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--ink); }
.page-hero .hero-ctas { max-width: 1160px; margin: 1.8rem auto 0; }
.topnav a[aria-current="page"] { color: var(--teal-ink); border-color: var(--teal); }

/* doctors page profiles */
.doc-profiles { max-width: 1160px; margin: 0 auto; display: grid; gap: 1.6rem; }
.doc-profile {
  display: grid; grid-template-columns: minmax(0, 34fr) minmax(0, 66fr);
  gap: 0; align-items: stretch;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.doc-profile figure { margin: 0; position: relative; }
.doc-profile img { width: 100%; height: 100%; object-fit: cover; min-height: 100%; }
.doc-profile .dp-body { padding: clamp(1.4rem, 3vw, 2.2rem); }
.doc-profile:nth-child(even) { grid-template-columns: minmax(0, 66fr) minmax(0, 34fr); }
.doc-profile:nth-child(even) figure { order: 2; }
.dp-body h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; letter-spacing: -0.015em; margin-bottom: 0.2rem; }
.dp-role { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-ink); margin-bottom: 0.9rem; }
.dp-cred { font-size: 0.94rem; font-weight: 600; color: var(--ink-dark); margin-bottom: 0.8rem; }
.dp-body p { margin-bottom: 0.7rem; }
.dp-quote {
  margin: 0.9rem 0 0.4rem; padding-left: 1.1rem; border-left: 3px solid var(--teal);
  font-style: italic; color: var(--teal-ink); font-size: 1.05rem;
}
.dp-lang { font-size: 0.92rem; font-weight: 700; color: var(--teal-ink); }
.doc-lang { padding: 0 1.2rem 1.2rem; font-size: 0.88rem; font-weight: 700; color: var(--teal-ink); }
@media (max-width: 860px) {
  .doc-profile, .doc-profile:nth-child(even) { grid-template-columns: 1fr; }
  .doc-profile:nth-child(even) figure { order: 0; }
  .doc-profile img { aspect-ratio: 1.6; }
}

/* visit page: what to expect + tour */
.step-list { list-style: none; max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; counter-reset: step; }
.step-list li {
  counter-increment: step; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.5rem 1.4rem;
}
.step-list li::before {
  content: "0" counter(step); display: inline-block;
  font-family: var(--display); font-weight: 800; font-size: 1.05rem;
  color: var(--teal-deep); background: rgba(88, 187, 195, 0.16);
  border-radius: 10px; padding: 0.25rem 0.6rem; margin-bottom: 0.8rem;
}
.step-list h3 { font-size: 1.06rem; margin-bottom: 0.45rem; }
.step-list p { font-size: 0.95rem; }
@media (max-width: 1000px) { .step-list { grid-template-columns: 1fr; } }
.expect-photo { margin-top: clamp(1.8rem, 4vw, 3rem); }
.expect-photo.two { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(0.9rem, 2.5vw, 1.4rem); align-items: start; }
@media (max-width: 820px) { .expect-photo.two { grid-template-columns: 1fr; } }

.tour-panel {
  max-width: 1160px; margin: clamp(2.5rem, 6vh, 4rem) auto;
  border-radius: var(--radius); overflow: hidden; position: relative;
  background: linear-gradient(120deg, var(--tint) 0%, #ffffff 55%, var(--tint-warm) 100%);
  border: 1.5px solid rgba(88, 187, 195, 0.5);
  padding: clamp(1.8rem, 5vw, 3rem);
}
.tour-panel::after {
  content: ""; position: absolute; right: -6rem; top: -6rem; width: 20rem; height: 20rem;
  border-radius: 50%; border: 2.2rem solid rgba(88, 187, 195, 0.10); filter: blur(2px); pointer-events: none;
}
.tour-panel h3 { font-family: var(--display); font-weight: 800; font-size: clamp(1.5rem, 3.4vw, 2.3rem); letter-spacing: -0.02em; margin-bottom: 0.7rem; }
.tour-panel p { max-width: 40rem; margin-bottom: 1.4rem; }

.ins-note { margin-top: 1rem; }

/* long-form prose (privacy) */
.prose { max-width: 800px; margin: 0 auto; padding: clamp(2.5rem, 6vh, 4rem) clamp(1.2rem, 5vw, 4.5rem) clamp(4rem, 8vh, 6rem); }
.prose h2 { font-size: 1.35rem; margin: 2.2rem 0 0.7rem; }
.prose p, .prose li { margin-bottom: 0.9rem; }
.prose ul { margin: 0 0 1rem 1.3rem; }
.prose .contact-card { background: var(--tint); border-radius: 18px; padding: 1.5rem 1.7rem; margin: 1.4rem 0; }
.prose .contact-card p { margin-bottom: 0.4rem; }
.prose .updated { font-size: 0.9rem; color: #5d6a6c; margin-top: 2.6rem; }

/* ---------------- Learn (article library) ---------------- */
.learn-grid {
  list-style: none; max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
}
.learn-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.7rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.learn-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(88,187,195,0.5); }
.learn-card h2, .learn-card h3 { font-family: var(--display); font-weight: 700; font-size: 1.28rem; letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 0.6rem; }
.learn-card h2 a, .learn-card h3 a { color: var(--ink-dark); text-decoration: none; }
/* whole-card click target */
.learn-card h2 a::after, .learn-card h3 a::after { content: ""; position: absolute; inset: 0; border-radius: var(--radius); }
.learn-card h2 a:hover, .learn-card h3 a:hover { color: var(--teal-ink); }
.learn-card > p { font-size: 0.95rem; margin-bottom: 1rem; }
.topic-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.9rem; }
.topic-chips li {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--teal-ink); background: rgba(88, 187, 195, 0.14);
  border-radius: 999px; padding: 0.22rem 0.7rem;
}
.learn-meta { margin-top: auto; font-size: 0.85rem; font-weight: 700; color: var(--teal-ink); }
@media (max-width: 860px) { .learn-grid { grid-template-columns: 1fr; } }

/* article reading page */
.article-hero .ch-title { font-size: clamp(2rem, 4.6vw, 3.5rem); max-width: 24ch; }
.article-meta { font-size: 0.92rem; font-weight: 600; color: var(--ink); margin-top: 0.5rem; }
.article-wrap { max-width: 46rem; margin: 0 auto; padding: clamp(2.5rem, 6vh, 4rem) clamp(1.2rem, 5vw, 4.5rem) clamp(3rem, 6vh, 4.5rem); }
.article-body { font-size: 1.0625rem; }
.article-body p { margin-bottom: 1.15rem; }
.article-body h2 {
  font-family: var(--display); font-weight: 700; font-size: clamp(1.35rem, 2.6vw, 1.7rem);
  letter-spacing: -0.015em; margin: 2.4rem 0 0.9rem;
}
.article-body ul, .article-body ol { margin: 0 0 1.15rem 1.35rem; }
.article-body li { margin-bottom: 0.55rem; }
.article-body strong { color: var(--ink-dark); }
.article-body a { font-weight: 600; }

/* article closing CTA */
.article-cta {
  max-width: 46rem; margin: 0 auto clamp(3rem, 7vh, 4.5rem);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1.5px solid rgba(88, 187, 195, 0.5); border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(88, 187, 195, 0.10), rgba(255, 255, 255, 0.65));
  text-align: center;
}
.article-cta h2 { font-family: var(--display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: -0.02em; margin-bottom: 0.6rem; }
.article-cta p { max-width: 34rem; margin: 0 auto 1.3rem; }
.article-cta .hero-ctas { justify-content: center; }

/* more-from-learn strip */
.more-learn .ch-title { font-size: clamp(1.8rem, 4vw, 2.8rem); }
.more-learn .learn-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1000px) { .more-learn .learn-grid { grid-template-columns: 1fr; } }

/* contextual learn links on service pages */
.learn-links {
  max-width: 1160px; margin: clamp(2rem, 5vh, 3rem) auto 0;
  border-top: 1px solid var(--line); padding-top: 1.4rem;
  font-size: 0.98rem;
}
.learn-links .ll-label { font-weight: 700; color: var(--ink-dark); margin-bottom: 0.4rem; }
.learn-links a { font-weight: 700; display: inline-block; padding: 0.45rem 1.1rem 0.45rem 0; }

/* footer additions */
.foot-lang { margin-top: 0.5rem; font-size: 0.92rem; color: rgba(255, 255, 255, 0.82); }
@media (min-width: 861px) { .foot-cols { grid-template-columns: repeat(5, 1fr); } }

/* ==========================================================================
   CLIENT POLISH — colorful page-tops for /eyewear and /medical
   All text colors below are AA on the RAW background color (scrims/glows
   only ever lighten toward the text's favor).
   ========================================================================== */

/* ----- /eyewear: the coral-on-teal acetate world.
   The hero image's flat teal (#58b6be) doubles as the section background so
   the photograph melts seamlessly into a full-bleed field of color. ----- */
.page-hero.ph-eyewear {
  position: relative; overflow: hidden;
  background: #58b6be;
}
.page-hero.ph-eyewear::before {
  /* luminous wash behind the copy — fades out before the image */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(112deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.5) 40%, rgba(255,255,255,0) 68%);
}
.ph-eyewear .crumbs, .ph-medical .crumbs { position: relative; }
.ph-grid {
  max-width: 1160px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center;
}
.ph-visual { margin: 0; }
.ph-visual img { width: 100%; height: auto; }
.ph-eyewear .ch-head { margin-bottom: clamp(1.4rem, 3vh, 2rem); }
.ph-eyewear .hero-ctas { margin: 1.8rem 0 0; }
.ph-eyewear .ch-kicker, .ph-eyewear .ch-lede { color: var(--ink-dark); }
.ph-eyewear .ch-index { background: rgba(255,255,255,0.72); color: var(--teal-deep); }
.ph-eyewear .crumbs a, .ph-eyewear .crumbs [aria-current="page"] { color: var(--ink-dark); }
.ph-eyewear .crumbs li + li::before { color: rgba(43, 46, 48, 0.55); }
.ph-eyewear .ch-head::before { border-color: rgba(255, 255, 255, 0.22); }
.ph-eyewear :focus-visible { outline-color: var(--teal-deep); }
@media (max-width: 860px) {
  .ph-grid { grid-template-columns: 1fr; }
  .ph-visual { max-width: min(100%, 24rem); margin: 0 auto; }
  .page-hero.ph-eyewear::before {
    background: linear-gradient(180deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.45) 46%, rgba(255,255,255,0) 78%);
  }
}

/* ----- /medical: a deep-teal luminous field — color with calm authority ----- */
.page-hero.ph-medical {
  position: relative; overflow: hidden;
  background:
    radial-gradient(58rem 34rem at 84% -12%, rgba(88, 187, 195, 0.38), rgba(88, 187, 195, 0) 62%),
    linear-gradient(160deg, #10393f 0%, #17565e 52%, #1f6b72 100%);
}
.ph-medical .ph-scene { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ph-medical .mb { position: absolute; border-radius: 50%; filter: blur(2px); }
.ph-medical .mb-1 { width: 24vw; height: 24vw; right: 6vw; top: -8vw; background: radial-gradient(circle, rgba(88,187,195,0.4), rgba(88,187,195,0) 70%); }
.ph-medical .mb-2 { width: 11vw; height: 11vw; right: 26vw; bottom: 4vh; background: radial-gradient(circle, rgba(244,193,120,0.28), rgba(244,193,120,0) 70%); }
.ph-medical .mb-3 { width: 18vw; height: 18vw; left: -6vw; bottom: -8vw; background: radial-gradient(circle, rgba(143,208,216,0.3), rgba(143,208,216,0) 70%); }
.ph-medical .mb-ring {
  position: absolute; right: -7rem; top: -8rem; width: 26rem; height: 26rem;
  border-radius: 50%; border: 2.6rem solid rgba(255, 255, 255, 0.07); filter: blur(2px);
}
.fxon .ph-medical .mb { animation: drift 18s ease-in-out infinite alternate; }
.fxon .ph-medical .mb-2 { animation-duration: 14s; animation-delay: -5s; }
.fxon .ph-medical .mb-3 { animation-duration: 22s; animation-delay: -9s; }
.ph-medical .ch-head::before { border-color: rgba(255, 255, 255, 0.08); }
.ph-medical .ch-title { color: #fff; }
.ph-medical .ch-kicker { color: #bfe6ea; }
.ph-medical .ch-index { color: #fff; background: rgba(255, 255, 255, 0.1); }
.ph-medical .ch-lede { color: rgba(255, 255, 255, 0.93); }
.ph-medical .crumbs a { color: #bfe6ea; }
.ph-medical .crumbs li + li::before { color: rgba(255, 255, 255, 0.45); }
.ph-medical .crumbs [aria-current="page"] { color: rgba(255, 255, 255, 0.88); }
.ph-medical :focus-visible { outline-color: #fff; }
.ph-medical .btn-primary { background: #fff; color: var(--teal-deep); box-shadow: 0 14px 34px -16px rgba(0, 0, 0, 0.5); }
.ph-medical .btn-primary:hover { background: #e2f3f5; }
.ph-medical .btn-ghost { border-color: rgba(255, 255, 255, 0.65); color: #fff; background: rgba(255, 255, 255, 0.08); }
.ph-medical .btn-ghost:hover { border-color: #fff; color: #fff; }

/* ==========================================================================
   WAVE 5 — editorial art direction: visual moments on every page + /learn
   ========================================================================== */

/* ----- page-hero variants: /visit (Blue Ridge photo), /doctors + /learn (warm tint + bokeh) ----- */
.page-hero.ph-visit { position: relative; overflow: hidden; }
.ph-visit .ph-bg, .ph-visit .ph-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ph-visit .ph-bg img { object-fit: cover; object-position: center 38%; }
.ph-visit .ph-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(237,246,247,0) 78%, rgba(237,246,247,0.9) 100%),
    linear-gradient(100deg, rgba(255,255,255,0.93) 0%, rgba(255,255,255,0.74) 46%, rgba(255,255,255,0.30) 100%);
}
.ph-visit .crumbs, .ph-visit .ch-head, .ph-visit .hero-ctas { position: relative; }

/* /doctors — a calm clinical-teal band (medical, never cheesy): the same soft
   glow the /medical hero uses, kept light so the dark headline stays crisp. */
.page-hero.ph-doctors { position: relative; overflow: hidden;
  background:
    radial-gradient(52rem 30rem at 82% -14%, rgba(88,187,195,0.32), rgba(88,187,195,0) 60%),
    linear-gradient(162deg, #c7e5e8 0%, #d9edee 46%, #eef6f4 100%); }
/* /learn — a warmer "reading room" band: teal at the top easing into cream,
   with a soft teal glow so the top section reads richer, not washed-out. */
.page-hero.ph-learn { position: relative; overflow: hidden;
  background:
    radial-gradient(46rem 26rem at 18% -12%, rgba(88,187,195,0.24), rgba(88,187,195,0) 60%),
    linear-gradient(162deg, #cfe8ea 0%, #e7f2ec 44%, #f6ead1 100%); }
.ph-doctors .crumbs, .ph-learn .crumbs { position: relative; }
.ph-scene-light { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ph-scene-light i { position: absolute; border-radius: 50%; filter: blur(2px); }
.ph-scene-light .lb-1 { width: 22vw; height: 22vw; right: 8vw; top: -6vw; background: radial-gradient(circle, rgba(88,187,195,0.34), rgba(88,187,195,0) 70%); }
.ph-scene-light .lb-2 { width: 12vw; height: 12vw; right: 26vw; bottom: 0; background: radial-gradient(circle, rgba(244,193,120,0.4), rgba(244,193,120,0) 70%); }
.ph-scene-light .lb-3 { width: 15vw; height: 15vw; left: -5vw; bottom: -6vw; background: radial-gradient(circle, rgba(240,150,128,0.25), rgba(240,150,128,0) 70%); }
.fxon .ph-scene-light i { animation: drift 19s ease-in-out infinite alternate; }
.fxon .ph-scene-light .lb-2 { animation-duration: 15s; animation-delay: -6s; }
.fxon .ph-scene-light .lb-3 { animation-duration: 23s; animation-delay: -10s; }

/* ----- deep-teal quote band (doctors): portrait + editorial pull-quote ----- */
.quote-band {
  background: linear-gradient(160deg, #123f46 0%, #17565e 55%, #1f6b72 100%);
  padding: clamp(3.5rem, 10vh, 6rem) clamp(1.2rem, 5vw, 4.5rem);
  position: relative; overflow: hidden;
}
.quote-band::before {
  content: ""; position: absolute; right: -8rem; top: -9rem; width: 28rem; height: 28rem;
  border-radius: 50%; border: 2.8rem solid rgba(255,255,255,0.06); filter: blur(2px);
}
.qb-in {
  max-width: 1160px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.qb-quote .qb-kicker {
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: #bfe6ea; margin-bottom: 1.1rem;
}
.qb-quote blockquote { margin: 0; }
.qb-quote blockquote p {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.015em;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem); line-height: 1.25; color: #fff;
}
.qb-quote blockquote p::before { content: "“"; color: var(--teal); }
.qb-quote blockquote p::after { content: "”"; color: var(--teal); }
.qb-quote cite { display: block; margin-top: 1.2rem; font-style: normal; font-weight: 700; color: #bfe6ea; }
.qb-photo { margin: 0; }
.qb-photo img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.55); }
@media (max-width: 860px) {
  .qb-in { grid-template-columns: 1fr; }
  .qb-photo { max-width: 22rem; }
}

/* ----- /medical: diagnostics strip + OCT photo duo ----- */
.diag-duo {
  max-width: 1160px; margin: clamp(2.5rem, 6vh, 4rem) auto 0;
  display: grid; grid-template-columns: minmax(0, 58fr) minmax(0, 42fr);
  gap: 1.2rem; align-items: stretch;
}
.diag-duo .diag-strip { margin: 0; display: flex; flex-direction: column; justify-content: center; }
.diag-photo { margin: 0; position: relative; }
.diag-photo img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; object-position: center 40%; border-radius: var(--radius); box-shadow: var(--shadow); }
.diag-photo .scene-tag { position: absolute; left: 1rem; bottom: 0.8rem; margin: 0; background: rgba(255,255,255,0.88); border-radius: 999px; padding: 0.3rem 0.9rem; }
@media (max-width: 860px) { .diag-duo { grid-template-columns: 1fr; } .diag-photo img { aspect-ratio: 4 / 3; height: auto; } }

/* ----- /eyewear: brand board split image; generic photo card ----- */
.ph-photo { margin: 0; }
.ph-photo img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.split .brand-grid { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 640px) { .split .brand-grid { grid-template-columns: 1fr 1fr; } }

/* ----- /learn: card imagery ----- */
.lc-img {
  margin: -1.7rem -1.7rem 1.1rem; border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden; aspect-ratio: 16 / 9; background: var(--tint);
}
.lc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.learn-card:hover .lc-img img { transform: scale(1.045); }
@media (prefers-reduced-motion: reduce) { .learn-card:hover .lc-img img { transform: none; } }

/* ----- article pages: hero photo, mid-article figures, pull-quotes, callouts ----- */
.article-hero .ph-grid { align-items: center; grid-template-columns: minmax(0, 58fr) minmax(0, 42fr); }
.article-hero .ch-head { margin-bottom: 0; }
.article-hero .ph-photo img { aspect-ratio: 4 / 3; object-fit: cover; height: auto; }
.ph-credit { margin: 0.5rem 0 0; font-size: 0.72rem; line-height: 1.45; color: rgba(76, 77, 78, 0.6); }
.ph-credit a { color: rgba(76, 77, 78, 0.78); text-decoration: underline; text-underline-offset: 2px; }
.ph-credit a:hover { color: var(--teal-ink); }
@media (max-width: 860px) { .article-hero .ph-grid { grid-template-columns: 1fr; } .article-hero .ph-photo { max-width: min(100%, 26rem); } }
.aside-fig { margin: 2.4rem 0; }
.aside-fig img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.aside-fig figcaption { margin-top: 0.7rem; font-size: 0.9rem; font-style: italic; color: var(--teal-ink); }
.pull { margin: 2.6rem 0; padding-left: 1.6rem; border-left: 4px solid var(--teal); }
.pull p {
  font-family: var(--display); font-weight: 700; letter-spacing: -0.01em;
  font-size: clamp(1.35rem, 3vw, 1.7rem); line-height: 1.35; color: var(--teal-deep); margin: 0;
}
.stat-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin: 2.6rem 0; text-align: center; }
.stat-band > div {
  background: linear-gradient(160deg, var(--tint), #ffffff);
  border: 1.5px solid rgba(88, 187, 195, 0.5); border-radius: var(--radius);
  padding: 1.5rem 0.6rem 1.2rem;
}
.stat-band b { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(2.1rem, 6vw, 3.2rem); line-height: 1; color: var(--teal-deep); margin-bottom: 0.35rem; }
.stat-band span { font-size: 0.88rem; font-weight: 700; color: var(--ink-dark); line-height: 1.3; display: block; }
.callout {
  background: linear-gradient(120deg, rgba(88, 187, 195, 0.10), rgba(255, 255, 255, 0.65));
  border: 1.5px solid rgba(88, 187, 195, 0.5); border-radius: var(--radius);
  padding: 1.7rem 1.7rem 0.9rem; margin: 2.4rem 0;
}
.callout > h2:first-child { margin-top: 0.1rem; }
.callout.urgent { border-color: rgba(214, 106, 79, 0.65); background: linear-gradient(120deg, rgba(240, 150, 128, 0.13), rgba(255, 255, 255, 0.7)); }

/* ---------------- "Our optical" — real-photo showcase ---------------- */
.ch-optical { background: linear-gradient(180deg, var(--bg) 0%, var(--tint-warm) 45%, var(--bg) 100%); }
.og-grid {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem;
}
.og-item { margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.og-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.og-item:hover img { transform: scale(1.03); }
.og-wide { grid-column: 1 / -1; } .og-wide img { aspect-ratio: 21 / 9; object-position: 50% 22%; }
.og-land { grid-column: span 2; } .og-land img { aspect-ratio: 16 / 9.8; }
.og-tall { grid-column: span 1; } .og-tall img { aspect-ratio: 4 / 4.9; }
@media (max-width: 640px) {
  .og-grid { grid-template-columns: 1fr; }
  .og-wide img, .og-land img { aspect-ratio: 3 / 2; }
  .og-land, .og-tall { grid-column: auto; }
  .og-tall img { aspect-ratio: 4 / 5; }
}
@media (prefers-reduced-motion: reduce) { .og-item:hover img { transform: none; } }
/* homepage: single real-photo moment closing the boutique chapter */
.og-home {
  max-width: 1160px; margin: clamp(3rem, 8vh, 5rem) auto clamp(2.25rem, 6vh, 4rem);
  display: grid; grid-template-columns: minmax(0, 52fr) minmax(0, 48fr);
  gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center;
}
.og-home .og-item img { aspect-ratio: 3 / 2; }
.og-home-copy p { margin-bottom: 0.9rem; }
@media (max-width: 860px) { .og-home { grid-template-columns: 1fr; } }

/* 404: quick links under the closing block */
.nf-links { margin-top: clamp(2rem, 5vh, 3rem); }
.nf-links h2 { font-size: 1.25rem; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.nf-links a { font-weight: 700; padding: 0.45rem 0.2rem; display: inline-block; }

/* ---------------- reduced motion: everything sharp and still ---------------- */
@media (prefers-reduced-motion: reduce) {
  .fxon .fx, .fxon .ht-w, .fxon .trust-chip, .fxon .hero-sub, .fxon .hero-ctas {
    opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important;
  }
  .bokeh, .cue-ring::after, .ph-medical .mb { animation: none !important; }
  * { transition-duration: 0.01ms !important; }
}


/* ==========================================================================
   Homepage reviews "word cloud" -- built from 1,007 real 5-star Google
   reviews (see review_words.json). Generated by build_wordcloud.py; do not
   hand-edit the word list/sizes, re-run the script instead.

   Uses the FOCUS site's existing tokens (--teal, --teal-ink, --teal-deep,
   --ink, --display). --ink-soft and --amber are not yet defined in
   option-d/css/focus.css, so local fallbacks are supplied via
   var(--token, fallback) -- if those tokens are added to :root later
   (including inside a future dark-mode override), this component adopts
   them automatically with no changes needed here.
   ========================================================================== */

.rev-cloud-intro {
  max-width: 44rem;
  margin: 0 auto clamp(1.2rem, 3vh, 1.8rem);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 600;
  text-align: center;
  color: var(--ink);
}

.review-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem 0.85rem;
  max-width: 900px;
  margin: 0 auto clamp(1.6rem, 3vh, 2.2rem);
  padding: clamp(0.5rem, 2vh, 1rem) 0.5rem;
  text-align: center;
}

.review-cloud .rc-word {
  font-family: var(--display);
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: default;
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* Tier 1 -- the most-said words: strongest teal, heaviest weight. */
.review-cloud .rc-t1 { color: var(--teal-deep); }
/* Tier 2 -- AA-safe teal for text. */
.review-cloud .rc-t2 { color: var(--teal-ink); }
/* Tier 3 -- brand teal. Reserved for words large/bold enough (>=25th
   percentile of this set) to stay legible; never used at the smallest
   sizes per the stylesheet's own "graphics only" guidance for --teal. */
.review-cloud .rc-t3 { color: var(--teal); }
/* Tier 4 -- smallest words: soft ink, local fallback since --ink-soft
   isn't defined in this stylesheet yet. */
.review-cloud .rc-t4 { color: var(--ink-soft, rgba(76, 77, 78, 0.68)); }

/* Restrained warm accent -- used sparingly (6 of 36 words here) for the
   purely emotional/enthusiasm words (love, caring, wonderful...). Local
   fallback since --amber isn't defined in this stylesheet yet. */
.review-cloud .rc-warm { color: var(--amber, #c47d22); }

.review-cloud .rc-word:hover,
.review-cloud .rc-word:focus-visible {
  filter: saturate(1.35) brightness(0.94);
  outline: none;
}

@media (prefers-reduced-motion: no-preference) {
  .review-cloud .rc-word:hover,
  .review-cloud .rc-word:focus-visible {
    transform: translateY(-2px) scale(1.07);
  }
}

@media (max-width: 640px) {
  .review-cloud { gap: 0.25rem 0.6rem; }
}


/* ================= mobile navigation (hamburger menu) ================= */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; margin-left: 0.35rem;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.nav-toggle span { display: block; width: 22px; height: 2px; border-radius: 2px;
  background: var(--ink-dark); transition: transform .28s ease, opacity .2s ease; }
.topbar.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.topbar.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.topbar.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-call { display: none; }
/* anchored sections shouldn't hide under the sticky header */
main [id], section[id] { scroll-margin-top: 82px; }

@media (max-width: 860px) {
  .topbar { background: rgba(251, 253, 253, 0.92); }
  .nav-toggle { display: flex; }
  .phone-link { display: none; }              /* Call moves into the menu */
  .topbar-actions { margin-left: auto; }
  .topbar-in { position: relative; }
  .topnav {
    display: flex; flex-direction: column; gap: 0; margin: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 0 clamp(1.1rem, 5vw, 1.6rem);
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height .32s ease, opacity .2s ease, padding .32s ease;
  }
  .topbar.nav-open .topnav {
    max-height: 80vh; opacity: 1; visibility: visible;
    padding-top: 0.4rem; padding-bottom: 1rem;
  }
  .topnav a { padding: 0.95rem 0.2rem; font-size: 1.08rem; border: 0;
    border-bottom: 1px solid var(--line); color: var(--ink-dark); }
  .topnav a:last-child { border-bottom: 0; }
  .nav-call { display: block; color: var(--teal-ink); font-weight: 700; }
}
@media (prefers-reduced-motion: reduce) {
  .topnav, .nav-toggle span { transition: none; }
}


/* narrow phones: single-column footer so nav labels don't wrap mid-word */
@media (max-width: 560px) {
  .foot-cols { grid-template-columns: 1fr; gap: 1.3rem; }
}


/* ============ homepage "See clearly. Walk right in." (#care) redesign ============ */
.ch-care .care-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; max-width: 1160px; margin: 0 auto; }
.care-photo { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-height: clamp(440px, 46vw, 560px); }
.care-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.care-scrim { position: absolute; inset: 0; background: linear-gradient(135deg, transparent 38%, rgba(18,84,92,0.5) 100%); pointer-events: none; }
.care-badge { position: absolute; top: clamp(12px,1.6vw,20px); left: clamp(12px,1.6vw,20px); background: #fff; color: var(--teal-deep); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; padding: 0.4rem 0.85rem; border-radius: 999px; box-shadow: 0 8px 20px -8px rgba(18,84,92,0.5); }
.care-invite { position: absolute; left: clamp(12px,2vw,24px); bottom: clamp(12px,2vw,24px); max-width: min(340px, 78%); background: var(--cream, #fbf6ef); border: 1px solid rgba(88,187,195,0.35); border-radius: calc(var(--radius) - 4px); box-shadow: 0 18px 40px -18px rgba(18,84,92,0.55); padding: clamp(1.1rem,1.6vw,1.5rem); }
.care-invite::before { content: ""; display: block; width: 32px; height: 3px; background: var(--teal); border-radius: 3px; margin-bottom: 0.7rem; }
.care-invite-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-ink); margin: 0 0 0.3rem; }
.care-invite-h { font-family: var(--display); font-weight: 700; font-size: clamp(1.2rem,1.6vw,1.45rem); letter-spacing: -0.01em; margin: 0 0 0.5rem; color: var(--ink-dark); }
.care-invite-body { font-size: 0.92rem; line-height: 1.5; color: var(--ink); margin: 0 0 0.7rem; }
.care-invite-link { font-weight: 700; color: var(--teal-ink); text-decoration: none; font-size: 0.92rem; }
.care-invite-link:hover { text-decoration: underline; }
.care-svc-list { list-style: none; margin: 0; padding: 0; }
.care-svc { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: baseline; padding: clamp(1rem,1.4vw,1.35rem) 0; border-top: 1px solid rgba(31,107,114,0.14); }
.care-svc:first-child { border-top: 0; padding-top: 0; }
.care-svc-n { font-family: var(--display); font-weight: 700; font-size: 0.95rem; color: var(--teal-ink); font-variant-numeric: tabular-nums; }
.care-svc h3 { font-family: var(--display); font-weight: 700; font-size: clamp(1.15rem,1.5vw,1.4rem); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 0.25rem; }
.care-svc p { font-size: 0.95rem; line-height: 1.55; color: var(--ink-soft, rgba(76,77,78,0.78)); max-width: 46ch; margin: 0; }
.care-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.6rem; }
.care-hours { display: block; margin-top: 0.9rem; font-size: 0.82rem; color: var(--ink-soft, rgba(76,77,78,0.72)); max-width: 52ch; }
.care-hours a { color: var(--teal-ink); font-weight: 700; }
@media (max-width: 900px) {
  .ch-care .care-grid { grid-template-columns: 1fr; gap: 1.3rem; }
  .care-photo { overflow: visible; min-height: 0; box-shadow: none; }
  .care-photo img { aspect-ratio: 3 / 2; border-radius: var(--radius); box-shadow: var(--shadow); }
  .care-scrim { border-radius: var(--radius); inset: 0 0 auto 0; aspect-ratio: 3 / 2; }
  .care-invite { position: static; max-width: none; margin-top: 1rem; }
  .care-cta .btn { flex: 1 1 100%; text-align: center; }
}
