/* ============================================================================
   seas-site/site.css — authored-code lane (SEAS-D-11), owner: LANE A (append-only).
   Non-owners REQUEST additions (brief §4.2). Lane C appends /directory//contact//404
   route rules below the LANE A blocks; lane B appends service-route rules.

   Provenance: every rule re-authored VERBATIM from the live rendered stylesheet
   (seas-capture/firecrawl/live-built.css — rendered truth, ADR-033 §3), with:
     - rem -> px conversion at 16px/rem (live root is 16px; this instance runs the
       Bricks 62.5% root — battery row 1 ruling: never let a rem through);
     - live var() names mapped to the SEEDED Bricks global variables
       (--ink-indigo -> --color-primary, --warm-ivory -> --color-background,
        --wiregrass -> --color-accent, --wiregrass-deep -> --color-accent-deep,
        --line -> --color-border, --mist -> --color-mist, --ease-out -> --ease-expo-out,
        --ink-indigo-soft -> --c-button-hover-bg, --foreground -> --color-ink);
     - live's own clamp()/min() expressions carried verbatim (rendered truth,
       same standing as the R-10 verbatim containers — NOT authored clamps);
     - later-layer overrides in live-built.css folded in (header min-height 108/96/90,
       logo 103/91/76, drawer top 90px).
   Breakpoints are the live 1080/820/560 max-width (inclusive) system.
   NOTE (ledger 18c): no "*" + "/" sequences inside comments.
   ========================================================================== */

/* ---- LANE A: base -------------------------------------------------------- */

html { scroll-behavior: smooth; }

body {
  background: var(--color-background);
  color: var(--color-ink);
  min-width: 320px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;         /* live body base (live-built.css body) — counters Bricks frontend-layer 15px */
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;        /* live .site-page{overflow:clip} carried to body (McCardle overflow rule) */
}

::selection { color: var(--color-primary); background: #dce4bd; }

h1, h2 { font-family: var(--font-display); font-weight: 600; }

/* Self-hosted faces — SEAS-D-14. BINARIES PENDING [RULING-NEEDED: not in input set;
   live serves Fraunces v38 / Manrope from fonts.gstatic.com]. Files land at
   assets/fonts/ under these names; fallbacks paint until then. No subsetting (O-2). */
@font-face { font-family: Fraunces; font-weight: 600; src: url(assets/fonts/fraunces-600.woff2) format("woff2"); }
@font-face { font-family: Manrope; font-weight: 400; src: url(assets/fonts/manrope-400.woff2) format("woff2"); }
@font-face { font-family: Manrope; font-weight: 700; src: url(assets/fonts/manrope-700.woff2) format("woff2"); }
@font-face { font-family: Manrope; font-weight: 800; src: url(assets/fonts/manrope-800.woff2) format("woff2"); }

/* ---- LANE A: containers (SEAS-D-6 / R-10 — verbatim min()) --------------- */

.page-wrap { width: var(--container-content); margin: 0 auto; }

/* ---- LANE A: skip link (C-05, I-01) -------------------------------------- */

.skip-link {
  z-index: 100;
  background: var(--color-primary);
  color: #fff;
  transition: top var(--motion-base) var(--ease-expo-out);
  padding: 9px 13px;
  font-size: 13.28px;
  font-weight: 800;
  position: fixed;
  top: -80px;
  left: 16px;
}
.skip-link:focus { top: 16px; }

/* ---- LANE A: sticky header (C-20, I-02 — NO scrolled state) --------------- */

/* Bricks owns the <header id="brx-header"> wrapper; sticky must live on it or it
   would only stick within its own height (composition renders .site-header inside). */
#brx-header { position: sticky; top: 0; z-index: 50; }

.site-header {
  z-index: 50;
  background: var(--color-background);
  position: sticky;
  top: 0;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 36, 92, 0.09);
}
@supports (color: color-mix(in lab, red, red)) {
  .site-header { background: color-mix(in srgb, var(--color-background) 92%, transparent); }
}
.site-header__inner {
  align-items: center;
  gap: 30px;
  width: var(--container-header-hero);
  min-height: 108px;
  margin: 0 auto;
  display: flex;
}
.brand-lockup { flex: none; align-items: center; gap: 13px; display: inline-flex; }
.brand-lockup > img { object-fit: contain; width: 103px; max-height: 86px; height: auto; display: block; }

/* ---- LANE A: desktop nav (C-21, I-04/I-05) -------------------------------- */

.desktop-nav { align-items: center; gap: 23px; margin-left: auto; display: flex; }
.nav-link {
  color: var(--c-nav-link-ink);
  letter-spacing: 0.03em;
  white-space: nowrap;
  background: 0 0;
  border: 0;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
  font-size: 12.48px;
  font-weight: 800;
  font-family: var(--font-body);
  display: inline-flex;
  position: relative;
}
.nav-link:after {
  content: "";
  background: var(--color-accent);
  transform-origin: 100%;
  height: 2px;
  transition: transform var(--motion-panel) var(--ease-expo-out);
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  transform: scaleX(0);
}
.nav-link:hover:after,
.nav-link--active:after { transform-origin: 0; transform: scaleX(1); }

/* ---- LANE A: dropdown (C-22, I-06/I-07) ----------------------------------- */

.nav-menu { position: relative; }
.nav-menu__panel {
  /* counter-layer: Bricks frontend-layer.min.css ships [class*=brxe-]{max-width:100%},
     which clamps this absolutely-positioned 260px panel to its 115px trigger parent
     (found at composition, 2026-08-17 — new member of the McCardle 18e(i) family). */
  max-width: none;
  z-index: 60;
  border: 1px solid var(--color-border);
  width: 260px;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--motion-panel) var(--ease-expo-out), transform var(--motion-panel) var(--ease-expo-out);
  background: #fff;
  padding: 18px;
  position: absolute;
  top: 100%;
  left: -18px;
  transform: translateY(-7px);
}
.nav-menu__panel--open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-menu__label {
  color: var(--color-accent-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 10px;
  font-size: 10.56px;
  font-weight: 800;
}
.nav-menu__item {
  color: var(--color-primary);
  transition: padding var(--motion-base) var(--ease-expo-out), color var(--motion-base) var(--ease-expo-out);
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 13.92px;
  font-weight: 700;
  display: flex;
}
.nav-menu__item:hover { color: var(--color-accent-deep); padding-left: 5px; }

/* ---- LANE A: header call (C-02, I-03) ------------------------------------- */

.header-call {
  background: var(--color-primary);
  color: #fff;
  letter-spacing: 0.02em;
  transition: transform var(--motion-base) var(--ease-expo-out), background var(--motion-base) var(--ease-expo-out);
  align-items: center;
  gap: 7px;
  padding: 11px 14px;
  font-size: 11.52px;
  font-weight: 800;
  display: inline-flex;
}
.header-call:hover { background: var(--c-button-hover-bg); transform: translateY(-2px); }
.header-call:active, .button:active, .text-button:active { transform: scale(0.97); }

.mobile-menu-toggle, .mobile-nav { display: none; }

/* ---- LANE A: eyebrow (C-06/C-07) ------------------------------------------ */

.eyebrow {
  color: var(--color-accent-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  font-size: 11.2px;
  font-weight: 800;
  display: inline-flex;
}
.eyebrow__pin {
  border: 2px solid var(--color-accent);
  width: 9px;
  height: 9px;
  box-shadow: 7px 0 0 -4px var(--color-primary);  /* the double-dot trick — control-refusal row 11 */
  border-radius: 50%;
}

/* ---- LANE A: section heading (C-50) --------------------------------------- */

.section-heading { max-width: 710px; }
.section-heading--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2 {
  color: var(--color-primary);
  letter-spacing: -0.055em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36.8px, 4.2vw, 69.6px); /* live clamp(2.3rem,4.2vw,4.35rem) — 60.48 @1440 */
  font-weight: 600;
  line-height: 0.97;
}
.section-heading__intro { color: var(--c-section-intro-ink); margin: 23px 0 0; font-size: 16.48px; line-height: 1.75; }

/* ---- LANE A: buttons (C-01/C-01b/C-01c, C-03/C-11, I-10/11/12) ------------ */

.button, .text-button {
  transition: transform var(--motion-base) var(--ease-expo-out), background var(--motion-base) var(--ease-expo-out), color var(--motion-base) var(--ease-expo-out), border-color var(--motion-base) var(--ease-expo-out);
  border: 1px solid transparent;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-family: var(--font-body);
  display: inline-flex;
}
.button {
  background: var(--color-primary);
  color: #fff;
  letter-spacing: 0.03em;
  min-height: 52px;
  padding: 0 21px;
  font-size: 12.48px;
}
.button:hover { background: var(--c-button-hover-bg); transform: translateY(-2px); }
.button--sage { background: var(--color-accent); color: var(--c-button-sage-ink); }
.button--sage:hover { background: #a8b978; }
.button--light { color: var(--color-primary); background: #fff; }
.button--light:hover { background: var(--c-button-light-hover-bg); }
.text-button { color: var(--color-primary); letter-spacing: 0.035em; background: 0 0; padding: 0; font-size: 12.96px; }
.text-button:hover { color: var(--color-accent-deep); gap: 14px; }

/* ---- LANE A: back-link (C-04, I-13 — consumed by lane B detail heroes) ---- */

.back-link {
  color: var(--c-back-link-ink);
  transition: color var(--motion-fast) var(--ease-expo-out), gap var(--motion-fast) var(--ease-expo-out);
  align-items: center;
  gap: 8px;
  margin-bottom: 36px;
  font-size: 12.48px;
  font-weight: 800;
  display: inline-flex;
}
.back-link:hover { color: var(--color-accent-deep); gap: 12px; }

/* ---- LANE A: C-47 contour-field carrier (NEVER in a Bricks bg control) ---- */

.contour-field { isolation: isolate; position: relative; }
.contour-field:before {
  content: "";
  z-index: -1;
  opacity: 0.72;
  pointer-events: none;
  background-image:
    radial-gradient(55% 82% at 6% 92%, transparent 55%, rgba(147, 166, 90, 0.18), transparent 57%),
    radial-gradient(45% 73% at 5% 91%, transparent 55%, rgba(30, 36, 92, 0.07), transparent 57%),
    radial-gradient(40% 64% at 95% 16%, transparent 57%, rgba(147, 166, 90, 0.13), transparent 59%);
  position: absolute;
  inset: 0;
}
.site-footer__top:before { opacity: 0.48; }

/* ---- LANE A: home hero (C-30) --------------------------------------------- */

.hero { background: var(--color-background); min-height: 694px; position: relative; }
.hero__grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: stretch;
  width: var(--container-header-hero);
  min-height: 694px;
  margin: 0 auto;
  display: grid;
}
.hero__content { flex-direction: column; justify-content: center; padding: 84px 44px 90px 0; display: flex; }
.hero__content h1 {
  max-width: 670px;
  color: var(--color-primary);
  letter-spacing: -0.072em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56.8px, 5.8vw, 105.6px); /* live clamp(3.55rem,5.8vw,6.6rem) — 83.52 @1440 */
  font-weight: 600;
  line-height: 0.89;
}
.hero__content h1 em { color: var(--color-accent-deep); font-style: italic; }
.hero__content > p:not(.eyebrow) { color: var(--c-hero-body-ink); max-width: 570px; margin: 27px 0 0; font-size: 16.8px; line-height: 1.75; }
.hero__actions { flex-wrap: wrap; gap: 12px; margin-top: 33px; display: flex; }
.hero__reassurance { color: #64705e; align-items: center; gap: 10px; margin: 32px 0 0; font-size: 12.48px; font-weight: 700; display: flex; }
.hero__reassurance:before { content: ""; background: var(--color-accent); width: 26px; height: 1px; }
.hero__image-wrap { padding: 29px 0 29px 34px; position: relative; overflow: hidden; }
.hero__image { object-fit: cover; filter: saturate(0.87) contrast(0.96); width: 100%; height: 100%; min-height: 550px; }
.hero__image-wrap:after {
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(251, 250, 246, 0.2), transparent 35%);
  position: absolute;
  inset: 29px 0 29px 34px;
}
.hero__fact {
  z-index: 1;
  background: var(--color-primary);
  color: #fff;
  width: min(262px, 48%);
  box-shadow: var(--shadow-strong);
  padding: 20px 19px;
  position: absolute;
  bottom: 63px;
  left: 0;
}
.hero__fact small {
  color: var(--c-hero-fact-eyebrow);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 9.92px;
  font-weight: 800;
  display: block;
}
.hero__fact strong { font-family: var(--font-display); font-size: 19.2px; font-weight: 600; line-height: 1.1; display: block; }
.hero__rail {
  background: linear-gradient(transparent 7%, rgba(147, 166, 90, 0.45) 7% 84%, transparent 84%);
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(24px, 50vw - 720px);
}

/* ---- LANE A: trust strip (C-31) ------------------------------------------- */

.trust-strip { border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); background: #fff; }
.trust-strip__inner { grid-template-columns: 1.25fr repeat(3, 1fr); width: var(--container-content); margin: 0 auto; display: grid; }
.trust-strip__intro, .trust-strip__item { flex-direction: column; justify-content: center; min-height: 150px; padding: 28px; display: flex; }
.trust-strip__intro { padding-left: 0; }
.trust-strip__intro p { max-width: 238px; color: var(--color-primary); margin: 0; font-family: var(--font-display); font-size: 21.6px; font-weight: 600; line-height: 1.1; }
.trust-strip__item { border-left: 1px solid var(--color-border); }
.trust-strip__item span { color: var(--color-accent-deep); letter-spacing: 0.14em; text-transform: uppercase; font-size: 10.4px; font-weight: 800; }
.trust-strip__item strong { color: #3a483e; margin-top: 6px; font-size: 14.72px; line-height: 1.38; }

/* ---- LANE A: home intro (C-32 + C-50) ------------------------------------- */

.home-intro { padding: 150px 0 118px; }
.home-intro__grid { grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr); align-items: end; gap: clamp(58px, 10vw, 160px); display: grid; }
.home-intro__copy p { color: #58635a; max-width: 600px; margin: 26px 0 0; font-size: 16.8px; line-height: 1.8; }
.home-intro__copy .section-heading__intro { color: var(--c-section-intro-ink); margin: 23px 0 0; font-size: 16.48px; line-height: 1.75; }
.home-intro__notes { padding: 0 0 5px; }
.care-note { border-top: 1px solid var(--color-border); grid-template-columns: 44px 1fr; gap: 14px; padding: 19px 0; display: grid; }
.care-note:last-child { border-bottom: 1px solid var(--color-border); }
.care-note__number { color: var(--color-accent-deep); font-family: var(--font-display); font-size: 22.4px; font-weight: 600; }
.care-note h3 { color: var(--color-primary); margin: 1px 0 6px; font-size: 14.88px; font-family: var(--font-body); font-weight: 400; line-height: 1.62; }
.care-note p { color: var(--c-card-body-ink); margin: 0; font-size: 13.76px; line-height: 1.55; }

/* ---- LANE A: service showcase (C-33 mist band) ---------------------------- */

.service-showcase { background: var(--color-mist); padding: 118px 0 128px; }
.service-showcase__top { justify-content: space-between; align-items: end; gap: 36px; display: flex; }
.service-cards { background: var(--c-card-grid-line); grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 54px; display: grid; }
.service-card {
  min-height: 352px;
  transition: transform var(--motion-lift) var(--ease-expo-out), background var(--motion-lift) var(--ease-expo-out), box-shadow var(--motion-lift) var(--ease-expo-out);
  background: var(--c-card-bg);
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  display: flex;
  position: relative;
  overflow: hidden;
}
.service-card:hover { z-index: 2; box-shadow: var(--shadow-soft); background: #fff; transform: translateY(-7px); }
.service-card__index {
  width: 33px;
  height: 33px;
  color: var(--color-accent-deep);
  border: 1px solid rgba(147, 166, 90, 0.54);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 11.2px;
  font-weight: 800;
  display: inline-flex;
}
.service-card h3 {
  max-width: 205px;
  color: var(--color-primary);
  letter-spacing: -0.04em;
  margin: 45px 0 12px;
  font-family: var(--font-display);
  font-size: 26.4px;
  font-weight: 600;
  line-height: 1;
}
.service-card p { color: var(--c-card-body-ink); min-height: 82px; margin: 0 0 23px; font-size: 13.44px; line-height: 1.65; }
.service-card:after {
  content: "";
  width: 137px;
  height: 137px;
  transition: transform var(--motion-blob) var(--ease-expo-out);
  border: 1px solid rgba(147, 166, 90, 0.35);
  border-radius: 55% 43% 58% 37%;
  position: absolute;
  bottom: -46px;
  right: -38px;
}
.service-card:hover:after { transform: rotate(24deg) scale(1.1); }

/* ---- LANE A: directory preview (C-34) ------------------------------------- */

.home-directory { padding: 120px 0; }
.home-directory__panel { background: var(--color-primary); color: #fff; grid-template-columns: 1.05fr 0.95fr; display: grid; overflow: hidden; }
.home-directory__content { padding: clamp(40px, 6vw, 80px); }
.home-directory__content h2 {
  color: #fff;
  letter-spacing: -0.06em;
  max-width: 590px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(40px, 4.7vw, 74.4px); /* live clamp(2.5rem,4.7vw,4.65rem) — 67.68 @1440 */
  font-weight: 600;
  line-height: 0.95;
}
.home-directory__content h2 em { color: var(--c-hero-fact-eyebrow); }
.home-directory__content p { color: #d7d9e5; max-width: 500px; margin: 23px 0 29px; line-height: 1.75; }
.directory-panel__visual { min-height: 420px; color: var(--color-primary); background: #dfe5cc; padding: 38px; position: relative; }
.directory-panel__visual:before {
  content: "";
  background-image:
    radial-gradient(80% 58% at 0 0, transparent 64%, rgba(30, 36, 92, 0.12), transparent 66%),
    radial-gradient(54% 80% at 100% 100%, transparent 66%, rgba(30, 36, 92, 0.15), transparent 68%);
  position: absolute;
  inset: 0;
}
.directory-panel__visual > * { position: relative; }
.directory-panel__title { color: var(--color-accent-deep); letter-spacing: 0.13em; text-transform: uppercase; margin: 0; font-size: 10.72px; font-weight: 800; }
.directory-chip {
  border-left: 4px solid var(--color-accent);
  background: rgba(255, 255, 255, 0.8);
  align-items: center;
  gap: 13px;
  max-width: 310px;
  margin-top: 20px;
  padding: 12px 14px;
  display: flex;
  box-shadow: var(--shadow-chip);
}
.directory-chip:nth-of-type(3) { margin-left: 36px; }
.directory-chip:nth-of-type(4) { margin-left: 15px; }
.directory-chip__initials {
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  font-size: 10.88px;
  font-weight: 800;
  display: inline-flex;
}
.directory-chip__details { min-width: 0; }
.directory-chip__details strong { color: var(--color-ink); font-size: 12.8px; line-height: 1.3; display: block; }
.directory-chip__specialties { color: #5e6b5f; margin-top: 1px; font-size: 11.2px; display: block; }

/* ---- LANE A: home contact (C-35) ------------------------------------------ */

.home-contact { background: #fff; padding: 95px 0 111px; }
.home-contact__content {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 52px 0;
  display: flex;
}
.home-contact__content h2 {
  max-width: 690px;
  color: var(--color-primary);
  letter-spacing: -0.055em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36.8px, 4vw, 63.2px); /* live clamp(2.3rem,4vw,3.95rem) — 57.6 @1440 */
  font-weight: 600;
  line-height: 0.99;
}

/* ---- LANE A: shared page/detail hero patterns (C-25/C-38 — lanes B/C place;
        request additions here, do not re-declare) --------------------------- */

.page-hero { background: var(--color-background); padding: 112px 0 84px; position: relative; }
.page-hero--soft { background: var(--color-mist); }
.page-hero__inner { width: var(--container-content); margin: 0 auto; }
.page-hero h1 {
  max-width: 850px;
  color: var(--color-primary);
  letter-spacing: -0.07em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(51.2px, 6vw, 103.2px); /* live clamp(3.2rem,6vw,6.45rem) — 86.4 @1440 */
  font-weight: 600;
  line-height: 0.9;
}
.page-hero h1 em { color: var(--color-accent-deep); font-style: italic; }
.page-hero__intro { color: #566257; max-width: 620px; margin: 25px 0 0; font-size: 16.8px; line-height: 1.78; }
.page-hero__line { background: var(--c-page-hero-line); width: 1px; position: absolute; top: 0; bottom: 0; left: calc(50% + 360px); }

.detail-hero { background: var(--color-mist); padding: 100px 0 52px; }
.detail-hero__inner { width: var(--container-content); margin: 0 auto; }
.detail-hero h1 {
  max-width: 870px;
  color: var(--color-primary);
  letter-spacing: -0.07em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(51.2px, 6vw, 97.6px); /* live clamp(3.2rem,6vw,6.1rem) */
  font-weight: 600;
  line-height: 0.9;
}
.detail-hero__intro { color: #536155; max-width: 720px; margin: 25px 0 0; font-size: 16.96px; line-height: 1.8; }

.image-frame { position: relative; }
.image-frame img { object-fit: cover; filter: saturate(0.88); width: 100%; height: 475px; }
.image-frame:after { content: ""; border: 1px solid var(--color-accent); border-radius: 50%; width: 104px; height: 104px; position: absolute; bottom: -22px; left: -22px; }

.services-detail-grid .service-cards { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
.services-detail-grid .service-card { min-height: 300px; }
.services-detail-grid .service-card p { max-width: 450px; min-height: 0; }

.recovery-band__content .eyebrow { color: var(--c-facility-fact-eyebrow); }
.recovery-band__content .eyebrow__pin { border-color: var(--c-facility-fact-eyebrow); box-shadow: 7px 0 0 -4px #fff; }
.facility-fact-band__visual .eyebrow { color: var(--c-facility-fact-eyebrow); }
.facility-fact-band__visual .eyebrow__pin { border-color: var(--c-facility-fact-eyebrow); box-shadow: 7px 0 0 -4px #fff; }

/* ---- LANE A: footer (C-24; .site-footer__top is a C-47 carrier) ----------- */

.site-footer { background: var(--color-primary); color: #fff; }
.site-footer__top {
  grid-template-columns: 1.25fr 0.65fr 0.9fr;
  gap: clamp(35px, 8vw, 120px);
  width: var(--container-content);
  margin: 0 auto;
  padding: 75px 0 62px;
  display: grid;
}
.footer-brand p { color: var(--c-footer-ink); max-width: 350px; margin: 22px 0; font-size: 14.56px; line-height: 1.74; }
.footer-brand__logo-panel { background: #fff; max-width: 100%; padding: 8px; display: inline-flex; }
.footer-brand__logo-panel img { width: 172px; max-width: 100%; height: auto; display: block; }
.footer-phone { color: var(--c-footer-sage); align-items: center; gap: 9px; font-size: 13.28px; font-weight: 800; display: inline-flex; }
.footer-label { color: var(--c-footer-sage); letter-spacing: 0.15em; text-transform: uppercase; margin: 0 0 18px; font-size: 10.4px; font-weight: 800; }
.footer-links { flex-direction: column; align-items: flex-start; gap: 9px; display: flex; }
.footer-links a { color: #fff; transition: color var(--motion-base) var(--ease-expo-out), transform var(--motion-base) var(--ease-expo-out); font-size: 13.76px; font-weight: 700; }
.footer-links a:hover { color: var(--c-footer-sage); transform: translate(4px); }
.footer-contact { flex-direction: column; align-items: flex-start; gap: 13px; display: flex; }
.footer-contact a { color: #eef0f5; align-items: flex-start; gap: 9px; font-size: 13.28px; line-height: 1.6; display: inline-flex; }
.footer-contact a:hover { color: var(--c-footer-sage); }
.footer-contact svg { color: var(--c-footer-sage); flex: none; margin-top: 3px; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.footer-independence-note { color: #eef0f6; width: var(--container-content); margin: 0 auto; padding: 21px 0 0; font-size: 11.84px; line-height: 1.6; }
.accessibility-note { color: #d0d4e1; gap: 9px; width: var(--container-content); margin: 0 auto; padding: 15px 0 23px; font-size: 10.88px; line-height: 1.6; display: flex; }
.accessibility-note svg { color: var(--c-footer-sage); flex: none; margin-top: 2px; }
.footer-meta { color: #aeb6ca; justify-content: space-between; gap: 20px; width: var(--container-content); margin: 0 auto; padding: 0 0 24px; font-size: 10.56px; display: flex; }
.footer-meta a { color: var(--c-footer-sage); font-weight: 800; }

/* ---- LANE A: responsive — ≤1080 (inclusive) ------------------------------- */

@media (max-width: 1080px) {
  .site-header__inner { gap: 18px; min-height: 96px; }
  .brand-lockup > img { width: 91px; max-height: 76px; }
  .desktop-nav { gap: 16px; }
  .header-call { padding: 10px 11px; }
  .hero__grid { grid-template-columns: 1fr 0.86fr; }
  .hero__content h1 { font-size: clamp(54.4px, 5.4vw, 88.8px); } /* live clamp(3.4rem,5.4vw,5.55rem) */
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 300px; }
  .home-directory__panel, .recovery-band { grid-template-columns: 1fr; }
  .directory-panel__visual { min-height: 360px; }
}

/* ---- LANE A: responsive — ≤820 (inclusive; NAV SWAP) ---------------------- */

@media (max-width: 820px) {
  .site-header__inner { width: var(--container-header-820); min-height: 90px; }
  .brand-lockup > img { width: 76px; max-height: 64px; }
  .desktop-nav, .header-call { display: none; }
  .mobile-menu-toggle {
    border: 1px solid var(--color-border);
    width: 43px;
    height: 43px;
    color: var(--color-primary);
    background: #fff;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    display: inline-flex;
  }
  .mobile-nav {
    z-index: 49;
    border-bottom: 1px solid var(--color-border);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--motion-panel) var(--ease-expo-out), transform var(--motion-panel) var(--ease-expo-out);
    background: rgba(251, 250, 246, 0.98);
    padding: 0 16px;
    display: block;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    transform: translateY(-12px);
    box-shadow: var(--shadow-mobile-nav);
  }
  .mobile-nav--open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav nav { padding: 17px 0 10px; display: grid; }
  .mobile-nav nav > a { color: var(--color-primary); border-bottom: 1px solid #e3e6dc; padding: 13px 4px; font-size: 14.4px; font-weight: 800; }
  .mobile-nav__services { gap: 2px; padding: 8px 0 10px 16px; display: grid; }
  .mobile-nav__services a { color: #657061; padding: 7px 0; font-size: 12.48px; font-weight: 700; }
  .mobile-nav__call { background: var(--color-primary); color: #fff; align-items: center; gap: 8px; margin: 9px 0 18px; padding: 12px 13px; font-size: 12.16px; font-weight: 800; display: inline-flex; }
  .hero { min-height: auto; }
  .hero__rail { display: none; }
  .hero__grid { grid-template-columns: 1fr; width: 100%; min-height: auto; }
  .hero__content { width: min(100% - 48px, 680px); margin: 0 auto; padding: 82px 0 62px; }
  .hero__image-wrap { min-height: 480px; padding: 0 24px 24px; }
  .hero__image { height: 480px; min-height: 0; }
  .hero__image-wrap:after { inset: 0 24px 24px; }
  .hero__fact { bottom: 45px; left: 0; }
  .trust-strip__inner { grid-template-columns: repeat(3, 1fr); width: min(100% - 48px, 680px); }
  .trust-strip__intro { grid-column: 1 / -1; min-height: 100px; padding: 27px 0 17px; }
  .trust-strip__intro p { max-width: none; }
  .trust-strip__item { min-height: 132px; padding: 20px 15px; }
  .trust-strip__item:first-of-type { border-left: 0; }
  .home-intro { padding: 95px 0; }
  .home-intro__grid, .services-intro__grid, .facility-story__grid, .contact-layout__grid, .detail-content__grid { grid-template-columns: 1fr; }
  .home-intro__notes { max-width: 650px; }
  .service-showcase { padding: 90px 0; }
  .service-showcase__top, .home-contact__content, .directory-controls__inner { flex-direction: column; align-items: flex-start; }
  .service-cards { margin-top: 42px; }
  .home-directory { padding: 90px 0; }
  .page-hero { padding: 83px 0 70px; }
  .page-hero__line { display: none; }
  .image-frame { max-width: 560px; }
  .detail-hero { padding: 75px 0 46px; }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 500px; }
}

/* ---- LANE A: responsive — ≤560 (inclusive; narrow regime) ----------------- */

@media (max-width: 560px) {
  .page-wrap, .page-hero__inner, .detail-hero__inner, .provider-directory__inner { width: var(--container-content-560); }
  .hero__content { width: var(--container-content-560); padding-top: 64px; }
  .hero__content h1 { font-size: clamp(52.8px, 15vw, 72.8px); } /* live clamp(3.3rem,15vw,4.55rem) — the 560 inversion, carried */
  .hero__content > p:not(.eyebrow), .page-hero__intro { font-size: 15.36px; }
  .hero__image-wrap { padding: 0 16px 16px; }
  .hero__image, .hero__image-wrap { height: 390px; min-height: 390px; }
  .hero__image-wrap:after { inset: 0 16px 16px; }
  .hero__fact { width: 239px; bottom: 38px; }
  .trust-strip__inner { grid-template-columns: 1fr; width: var(--container-content-560); }
  .trust-strip__item { border-left: 0; border-top: 1px solid var(--color-border); min-height: 102px; padding: 19px 0; }
  .trust-strip__intro { min-height: 96px; }
  .home-intro, .service-showcase, .home-directory, .home-contact, .services-intro, .facility-story, .facility-gallery, .contact-layout { padding-top: 72px; padding-bottom: 72px; }
  .section-heading h2 { font-size: clamp(39.2px, 11vw, 56px); } /* live clamp(2.45rem,11vw,3.5rem) — 42.9 @390 */
  .service-cards, .services-detail-grid .service-cards, .detail-guidance__cards, .facility-gallery__grid { grid-template-columns: 1fr; }
  .service-card { min-height: 272px; }
  .home-directory__content { padding: 36px 27px; }
  .directory-panel__visual { min-height: 338px; padding: 25px; }
  .directory-chip:nth-of-type(3), .directory-chip:nth-of-type(4) { margin-left: 0; }
  .home-contact__content { padding: 37px 0; }
  .home-contact__content h2 { font-size: 40.8px; } /* live 2.55rem */
  .image-frame img { height: 360px; }
  .image-frame:after { width: 78px; height: 78px; bottom: -14px; left: -14px; }
  .site-footer__top { grid-template-columns: 1fr; width: var(--container-content-560); padding: 57px 0 42px; }
  .footer-brand { grid-column: auto; }
  .footer-brand__logo-panel img { width: 146px; }
  .accessibility-note, .footer-meta { width: var(--container-content-560); }
  .footer-meta { flex-direction: column; gap: 6px; }
}

/* ---- LANE A: reduced-motion guard for smooth scroll (I-28, SEAS-D-8) ------ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ==== END LANE A. Lane B / lane C appends go below this line only. ========= */
/* ============================================================================
   LANE B APPEND BLOCK — services-route rules for seas-site/site.css.
   STATUS: ADDITION REQUEST (brief §4.2 — site.css owner is LANE A; lane B does
   not edit that file). The FINISHER appends this file's content VERBATIM below
   the "==== END LANE A" marker in web/app/mu-plugins/seas-site/site.css.
   On the build sandbox this block has been appended to the instance copy only
   (instance-truth), so the §4.6 screenshot mandate could run — the repo
   site.css does NOT carry it until the finisher acts (gen-decisions-b.md).

   Provenance: every rule re-authored VERBATIM from the live rendered stylesheet
   (seas-capture/firecrawl/live-built.css), with lane A's conversion rules
   (site.css header): rem -> px at 16px/rem; live var() names mapped to the
   seeded Bricks globals (--ink-indigo -> --color-primary, --warm-ivory ->
   --color-background, --wiregrass -> --color-accent, --wiregrass-deep ->
   --color-accent-deep, --line -> --color-border, --mist -> --color-mist);
   live clamp() expressions carried verbatim (NOT authored — they reproduce the
   measured endpoints: detail h2 50.4->32, focus h2 60.48->36.8, recovery h2
   64.8->38.4, detail-steps h2 33.6 both widths). Component-literal tokens used
   where seeded (--c-detail-steps-ink, --c-focus-card-bg, --c-card-bg); residual
   inks bind verbatim per their owning component and never become globals
   (ledger 40g): #687568 care-path text, #d9dce7 recovery body, #5e6a60
   detail-focus intro (ONE CHANNEL from --c-detail-steps-ink #5f6a60 — do not
   collapse), #586557 focus-card body, #3e4b40 procedure-list item ink,
   #5f6a60 as a literal where live paints it outside the aside (services-intro,
   detail-content copy, list-group intro — the token's usage is scoped to
   aside.detail-steps only, 40g: no new consumers), #93a65a94 care-path border
   (= accent at alpha .58, rw1 palette).
   The C-37 .care-path family below includes the .directory-wayfinding and
   .contact-mini-path scoped variants CONSUMED BY LANE C (/directory, /contact)
   — declared once here so lane C does not re-declare a shared pattern (E-A2).
   NOTE (ledger 18c): no "*" + "/" sequences inside comments.
   ========================================================================== */

/* ---- LANE B: services intro (C-36, image-left band) ----------------------- */

.services-intro { padding: 112px 0 88px; }
.services-intro__grid { grid-template-columns: 0.82fr 1.18fr; align-items: center; gap: clamp(48px, 8vw, 112px); display: grid; }
.services-intro__copy p { color: #5f6a60; margin: 23px 0 0; line-height: 1.8; }

/* ---- LANE B: care-path steps (C-37 — also consumed by lane C) ------------- */

.pathway-band, .directory-wayfinding { background: var(--color-background); padding: 0 0 42px; }
.care-path {
  border-top: 1px solid #93a65a94;
  grid-template-columns: minmax(200px, 0.75fr) repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  position: relative;
}
.care-path__label {
  color: var(--color-primary);
  letter-spacing: -0.03em;
  align-items: center;
  gap: 11px;
  padding: 19px 26px 20px 0;
  font-family: var(--font-display);
  font-size: 18.56px; /* live 1.16rem */
  font-weight: 600;
  line-height: 1.12;
  display: flex;
}
.care-path__label img { object-fit: contain; width: 31px; height: 31px; }
.care-path__item { border-left: 1px solid var(--color-border); min-height: 84px; padding: 17px 18px 15px 31px; position: relative; }
.care-path__item:before {
  content: "";
  border: 3px solid var(--color-accent);
  background: var(--color-background);
  border-radius: 50%;
  width: 11px;
  height: 11px;
  position: absolute;
  top: -6px;
  left: -6px;
}
.directory-wayfinding .care-path__item:before { background: #fff; }
.care-path__index { color: var(--color-accent-deep); letter-spacing: 0.13em; text-transform: uppercase; font-size: 9.76px; font-weight: 800; display: block; }
.care-path__title { color: var(--color-primary); margin-top: 4px; font-size: 12.64px; font-weight: 800; line-height: 1.25; display: block; }
.care-path__text { color: #687568; margin-top: 2px; font-size: 11.2px; line-height: 1.35; display: block; }
.contact-mini-path .care-path { grid-template-columns: 150px 1fr 1fr; }
.contact-mini-path .care-path__label { padding-right: 14px; font-size: 15.36px; }
.contact-mini-path .care-path__item { min-height: 76px; padding-left: 18px; }
.contact-mini-path .care-path__text { font-size: 10.56px; }

/* ---- LANE B: services detail grid section (C-33 hub band) ----------------- */
/* Lane A carries the .services-detail-grid CARD variants; the SECTION field +
   register (40/127 -> 30/85) was not declared anywhere — found by §4.6 image
   comparison (hub dH -121 @1440 before this rule; gen-decisions-b). */

.services-detail-grid { background: #fff; padding: 40px 0 127px; }

/* ---- LANE B: recovery band (C-36 indigo variant) -------------------------- */

.recovery-band { background: var(--color-primary); color: #fff; grid-template-columns: 1fr 1fr; min-height: 545px; display: grid; }
.recovery-band__image { position: relative; overflow: hidden; }
.recovery-band__image img { object-fit: cover; filter: saturate(0.8); width: 100%; height: 100%; }
.recovery-band__content { flex-direction: column; justify-content: center; padding: clamp(44px, 7vw, 102px); display: flex; }
.recovery-band__content h2 {
  color: #fff;
  letter-spacing: -0.06em;
  max-width: 550px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(38.4px, 4.5vw, 74.4px); /* live clamp(2.4rem,4.5vw,4.65rem) — 64.8 @1440, 38.4 @390 */
  font-weight: 600;
  line-height: 0.95;
}
.recovery-band__content p { color: #d9dce7; max-width: 510px; margin: 24px 0 0; line-height: 1.78; }

/* ---- LANE B: detail focus grid (C-39, gynecology only) -------------------- */

.detail-focus { background: #fff; padding: 92px 0 0; }
.detail-focus__intro { max-width: 720px; }
.detail-focus__intro h2 {
  max-width: 640px;
  color: var(--color-primary);
  letter-spacing: -0.06em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(36.8px, 4.2vw, 64px); /* live clamp(2.3rem,4.2vw,4rem) — 60.48 @1440, 36.8 @390 */
  font-weight: 600;
  line-height: 0.96;
}
.detail-focus__intro > p:last-child { color: #5e6a60; max-width: 660px; margin: 20px 0 0; font-size: 16px; line-height: 1.78; }
.detail-focus__grid { background: var(--color-border); grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 38px; display: grid; }
.detail-focus__card { background: var(--c-card-bg); min-height: 192px; padding: 29px 26px; }
.detail-focus__card:nth-child(4), .detail-focus__card:nth-child(5) { background: var(--c-focus-card-bg); }
.detail-focus__card h3 {
  color: var(--color-primary);
  letter-spacing: -0.04em;
  margin: 0;
  font-family: var(--font-display);
  font-size: 22.4px; /* live 1.4rem — SEAS-D-5 Fraunces h3 component role */
  font-weight: 600;
  line-height: 1.04;
}
.detail-focus__card p { color: #586557; margin: 14px 0 0; font-size: 13.76px; line-height: 1.7; }

/* ---- LANE B: detail content + list groups (C-40) -------------------------- */

.detail-content { padding: 104px 0 125px; }
.detail-content__grid { grid-template-columns: 1.15fr 0.85fr; gap: clamp(48px, 10vw, 150px); display: grid; }
.detail-content__copy h2, .detail-steps h2 {
  color: var(--color-primary);
  letter-spacing: -0.05em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52.8px); /* live clamp(2rem,3.5vw,3.3rem) — 50.4 @1440, 32 @390 */
  font-weight: 600;
  line-height: 0.98;
}
.detail-content__copy > p { color: #5f6a60; margin: 22px 0 0; line-height: 1.82; }
.detail-list-group { margin-top: 35px; }
.detail-list-group + .detail-list-group { margin-top: 31px; }
.detail-list-group h3 { color: var(--color-accent-deep); letter-spacing: 0.13em; text-transform: uppercase; margin: 0 0 12px; font-size: 11.2px; font-weight: 800; }
.detail-list-group__intro { color: #5f6a60; max-width: 620px; margin: 0 0 17px; font-size: 14.56px; line-height: 1.72; }
.procedure-list { border-top: 1px solid var(--color-border); gap: 0; margin: 0; padding: 0; display: grid; }
/* ^ padding:0 added vs live-built.css: the live app's base reset zeroes ul
   padding-inline; the rendered computed padding of ul.procedure-list is 0 —
   rendered truth carried against the UA default (same standing as lane A's
   body { margin: 0 }). */
.procedure-list li { border-bottom: 1px solid var(--color-border); color: #3e4b40; align-items: center; gap: 12px; padding: 14px 0; font-size: 14.72px; font-weight: 700; list-style: none; display: flex; }
.procedure-list li:before { content: ""; border: 2px solid var(--color-accent); border-radius: 50%; flex: 0 0 9px; width: 9px; height: 9px; }

/* ---- LANE B: detail-steps aside (C-48 — inset mist panel, NOT a CTA band) - */

.detail-steps { background: var(--color-mist); align-self: start; padding: 34px; }
.detail-steps h2 { font-size: 33.6px; } /* live 2.1rem — 33.6 at BOTH widths */
.detail-steps p { color: var(--c-detail-steps-ink); margin: 19px 0 0; font-size: 14.4px; line-height: 1.75; }
.detail-steps a { margin-top: 26px; }

/* ---- LANE B: responsive — ≤1080 (inclusive) ------------------------------- */

@media (max-width: 1080px) {
  .recovery-band__image { min-height: 380px; }
  .recovery-band { grid-template-columns: 1fr; }
  /* ^ APPEND-ORDER RULE (measured on the sandbox, gen-decisions-b): lane A's
     1080 block already collapses .recovery-band, but this whole lane-B block
     is appended AFTER it, so the lane-B BASE rule (1fr 1fr) would win the
     (0,1,0) tie by order and undo the collapse — measured recoveryCols=2 at
     390-1080 before this re-statement. Any later-appended base rule must
     re-state the earlier-block media overrides that touch the same property. */
}

/* ---- LANE B: responsive — ≤820 (inclusive) -------------------------------- */

@media (max-width: 820px) {
  .services-intro { padding: 85px 0 58px; }
  .services-detail-grid { padding: 30px 0 85px; }
  .pathway-band, .directory-wayfinding { padding-bottom: 33px; }
  .care-path { grid-template-columns: 0.75fr 1fr 1fr 1fr; }
  .care-path__label { padding-right: 16px; font-size: 16px; } /* live 1rem */
  .care-path__item { padding-left: 20px; }
  .recovery-band__image { min-height: 330px; }
  .detail-focus__grid { grid-template-columns: repeat(2, 1fr); }
  .services-intro__grid, .detail-content__grid { grid-template-columns: 1fr; }
  /* ^ APPEND-ORDER RULE (same as the 1080 note): lane A's 820 block carries
     this collapse, but the lane-B base declarations above would out-order it —
     measured introCols/contentCols=2 at 390 with 425px scrollWidth overflow
     on all four detail routes before this re-statement. */
}

/* ---- LANE B: responsive — ≤560 (inclusive; narrow regime) ----------------- */

@media (max-width: 560px) {
  .pathway-band, .directory-wayfinding { padding-bottom: 26px; }
  .care-path { border-top: 0; border-left: 1px solid #93a65a94; grid-template-columns: 1fr; }
  .care-path__label { min-height: 72px; padding: 0 0 0 25px; }
  .care-path__item { border-left: 0; min-height: 64px; padding: 8px 0 13px 25px; }
  .care-path__item:before { background: var(--color-background); top: 12px; left: -6px; }
  .directory-wayfinding .care-path__item:before { background: #fff; }
  .contact-mini-path .care-path { grid-template-columns: 1fr; }
  .contact-mini-path .care-path__label { padding-left: 25px; }
  .recovery-band__content { padding: 53px 24px; }
  .recovery-band__image { min-height: 300px; }
  .detail-content { padding: 70px 0; }
  .detail-steps { padding: 27px; }
  .detail-focus { padding-top: 70px; }
  .detail-focus__grid { grid-template-columns: 1fr; margin-top: 30px; }
  .detail-focus__card { min-height: 0; padding: 24px 22px; }
  /* .services-intro 72/72 padding at ≤560 is already in LANE A's 560 block. */
}

/* ==== END LANE B APPEND BLOCK ============================================= */
/* ============================================================================
   LANE C APPEND BLOCK — /directory, /facility, /contact, /404 route rules for
   seas-site/site.css.
   STATUS: ADDITION REQUEST (brief §4.2 — site.css owner is LANE A; lane C does
   not edit that file). The FINISHER appends this file's content VERBATIM below
   lane B's block (order matters — see the cascade note) in
   web/app/mu-plugins/seas-site/site.css.
   On the build sandbox this block has been appended to the instance copy only
   (instance-truth), after lane B's instance block, so the §4.6 screenshot
   mandate could run — the repo site.css does NOT carry it until the finisher
   acts (gen-decisions-c.md).

   Provenance: every rule re-authored VERBATIM from the live rendered stylesheet
   (seas-capture/firecrawl/live-built.css), with lane A's conversion rules
   (site.css header): rem -> px at 16px/rem; live var() names mapped to the
   seeded Bricks globals; live clamp()/min() carried verbatim (NOT authored —
   they reproduce the measured endpoints: facility h1 79.2->56, fact-band h2
   50.4->36.8, contact-intro h2 57.6->41.6, form h2 39.2 both, /404 h1
   89.28->58.5, provider-name h2 23.2->19.2). Component-literal tokens used
   where seeded (--c-pill-inactive-ink, --c-directory-result-ink,
   --c-form-field-border, --c-provider-mark-*-bg, --c-gallery-caption-bg,
   --shadow-focus-ring); residual one-off inks bind verbatim per their owning
   component and never become globals (ledger 40g): #687266 provider bio,
   #869080 search placeholder, #f1f2eb provider-tag bg, #1b2a1b tag hover ink,
   #64705f + #cbd3bf empty-directory, #5d685e facility-hero body, #5c675d
   facility-story copy, #657064 path-item body (verbatim literal — NOT
   --c-card-body-ink, whose usage is scoped to cards; 40g: no new consumers),
   #576355 fact-band detail, #5f6b60 contact-intro body, #798276 method label,
   #667164 form notice (ONE CHANNEL from --c-directory-result-ink #667165 — do
   not collapse), #536054 field label, #596558 /404 body, #93a65aa8 / #667d3b80
   mark rails, #93a65a8c / #1e245c42 /404 rings, #fbfaf621 facility-hero wash.

   The shared C-37 .care-path family (incl. the .directory-wayfinding and
   .contact-mini-path scoped variants) is DECLARED IN LANE B's BLOCK and is NOT
   re-declared here (E-A2 / dedup rulings). This block declares only lane C's
   route-specific overrides of it. CASCADE NOTE: because this block sits AFTER
   lane B's media queries, the .directory-wayfinding base override below would
   outrank B's @820/@560 padding-bottom rules (equal specificity, later order),
   so those two media overrides are re-stated here — live's own values, kept
   cascade-correct regardless of block order.
   NOTE (ledger 18c): no "*" + "/" sequences inside comments.
   ========================================================================== */

/* ---- LANE C: live base form-control reset (RELOCATION CANDIDATE) ----------
   Verbatim live base rule (live-built.css): neither lane carried it because
   lane A's chrome controls set families explicitly. Lane C's pills, search
   input and form fields DEPEND on it (measured: without it the pill computes
   35.2px tall vs live 40.6 — buttons/inputs do not inherit font by default).
   Element-selector specificity (0,0,1) — cannot outrank any class rule.
   ADDITION REQUEST: finisher may relocate into LANE A's base section. ------- */

button, input, select, optgroup, textarea {
  font: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  letter-spacing: inherit;
  color: inherit;
  opacity: 1;
  background-color: #0000;
  border-radius: 0;
}

/* ---- LANE C: sr-only (live utility — search-box label) -------------------- */

.sr-only {
  clip-path: inset(50%);
  white-space: nowrap;
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

/* ---- LANE C: /directory §2 wayfinding overrides (base family: lane B) ------ */

.directory-wayfinding { background: #fff; padding-top: 39px; padding-bottom: 24px; }

/* ---- LANE C: /directory §3 controls (C-41) --------------------------------- */

.directory-controls { border-bottom: 1px solid var(--color-border); background: #fff; padding: 29px 0 42px; }
.directory-controls__inner {
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  width: var(--container-content);
  margin: 0 auto;
  display: flex;
}
.search-box { flex: 1; max-width: 380px; position: relative; }
.search-box svg { color: var(--color-accent-deep); position: absolute; top: 50%; left: 15px; transform: translateY(-50%); }
.search-box input {
  background: var(--color-background);
  border: 1px solid var(--color-border);
  width: 100%;
  height: 52px;
  color: var(--color-primary);
  padding: 0 16px 0 45px;
  font-size: 13.92px;
}
.search-box input::placeholder { color: #869080; }
.filter-pills { flex-wrap: wrap; justify-content: flex-end; gap: 7px; display: flex; }
.filter-pill {
  border: 1px solid var(--color-border);
  color: var(--c-pill-inactive-ink);
  transition: background var(--motion-fast) var(--ease-expo-out), color var(--motion-fast) var(--ease-expo-out), border-color var(--motion-fast) var(--ease-expo-out);
  background: var(--color-background);
  padding: 10px 13px 10px 22px;
  font-size: 11.52px;
  font-weight: 800;
  position: relative;
}
.filter-pill:before {
  content: "";
  border: 1px solid var(--color-accent-deep);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  position: absolute;
  top: 50%;
  left: 9px;
  transform: translateY(-50%);
}
.filter-pill:hover, .filter-pill--active { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.filter-pill:hover:before, .filter-pill--active:before { background: var(--c-footer-sage); border-color: var(--c-footer-sage); }

/* ---- LANE C: /directory §4 provider directory (C-42) ---------------------- */

.provider-directory { padding: 78px 0 128px; }
.provider-directory__inner { width: var(--container-content); margin: 0 auto; }
.directory-result { color: var(--c-directory-result-ink); margin: 0 0 25px; font-size: 12.48px; font-weight: 800; }
.provider-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; display: grid; }
.provider-card {
  border: 1px solid var(--color-border);
  min-height: 248px;
  transition: box-shadow var(--motion-panel) var(--ease-expo-out), transform var(--motion-panel) var(--ease-expo-out);
  background: #fff;
  grid-template-columns: 142px 1fr;
  display: grid;
  position: relative;
  overflow: hidden;
}
.provider-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); }
.provider-card__mark {
  background: var(--c-provider-mark-indigo-bg);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 11px;
  display: flex;
  position: relative;
}
.provider-card__mark:before { content: ""; background: #93a65aa8; width: 1px; position: absolute; top: 0; bottom: 0; left: 18px; }
.provider-card__mark span {
  z-index: 1;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  font-family: var(--font-display);
  font-size: 18.56px;
  font-weight: 600;
  display: inline-flex;
  position: relative;
  box-shadow: 0 0 0 6px var(--c-provider-mark-indigo-bg);
}
.provider-card__mark--sage { background: var(--c-provider-mark-sage-bg); }
.provider-card__mark--sage:before { background: #667d3b80; }
.provider-card__mark--sage span { background: var(--color-accent-deep); box-shadow: 0 0 0 6px var(--c-provider-mark-sage-bg); }
.provider-card__mark--sand { background: var(--c-provider-mark-sand-bg); }
.provider-card__mark--sand span { background: var(--color-accent-deep); box-shadow: 0 0 0 6px var(--c-provider-mark-sand-bg); }
.provider-card__content { flex-direction: column; align-items: flex-start; padding: 24px 28px; display: flex; }
.provider-card__route {
  color: var(--color-accent-deep);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-size: 9.44px;
  font-weight: 800;
}
.provider-card__content h2 {
  color: var(--color-primary);
  letter-spacing: -0.04em;
  margin: 0;
  font-family: var(--font-display);
  font-size: 23.2px;
  font-weight: 600;
  line-height: 1;
}
.provider-card__credentials {
  color: var(--color-accent-deep);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 8px 0 0;
  font-size: 11.2px;
  font-weight: 800;
}
.provider-card__bio { color: #687266; margin: 14px 0 0; font-size: 12.96px; line-height: 1.55; }
.provider-tags { flex-wrap: wrap; gap: 6px; margin-top: auto; padding-top: 16px; display: flex; }
.provider-tags a {
  color: var(--color-primary);
  transition: background var(--motion-base) var(--ease-expo-out), color var(--motion-base) var(--ease-expo-out);
  background: #f1f2eb;
  padding: 6px 8px 6px 16px;
  font-size: 10.56px;
  font-weight: 800;
  position: relative;
}
.provider-tags a:before {
  content: "";
  border: 1px solid var(--color-accent-deep);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
}
.provider-tags a:hover { color: #1b2a1b; background: var(--color-accent); }
.empty-directory { color: #64705f; text-align: center; border: 1px dashed #cbd3bf; padding: 70px 20px; }

/* ---- LANE C: /facility (C-30 variant hero, C-32, C-43, C-49) --------------- */

.facility-hero { background: var(--color-background); grid-template-columns: 0.94fr 1.06fr; min-height: 588px; display: grid; }
.facility-hero__content {
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 108px) clamp(35px, 5vw, 98px) clamp(48px, 7vw, 108px) max(24px, 50vw - 616px);
  display: flex;
}
.facility-hero__content h1 {
  max-width: 510px;
  color: var(--color-primary);
  letter-spacing: -0.07em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(51.2px, 5.5vw, 91.2px); /* live clamp(3.2rem,5.5vw,5.7rem) — 79.2 @1440 */
  font-weight: 600;
  line-height: 0.89;
}
.facility-hero__content h1 em { color: var(--color-accent-deep); font-style: italic; }
.facility-hero__content > p:not(.eyebrow) { color: #5d685e; max-width: 520px; margin: 25px 0 0; line-height: 1.8; }
.facility-hero__image { position: relative; overflow: hidden; }
.facility-hero__image img { object-fit: cover; filter: saturate(0.85); width: 100%; height: 100%; }
.facility-hero__image:after { content: ""; background: linear-gradient(90deg, #fbfaf621, #0000 35%); position: absolute; inset: 0; }
.facility-story { padding: 112px 0; }
.facility-story__grid { grid-template-columns: 1fr 0.92fr; gap: clamp(54px, 10vw, 155px); display: grid; }
.facility-story__copy p { color: #5c675d; margin: 26px 0 0; line-height: 1.82; }
.path-list { padding-left: 44px; position: relative; }
.path-list:before { content: ""; background: var(--color-accent); width: 1px; position: absolute; top: 10px; bottom: 10px; left: 10px; }
.path-item { padding: 0 0 29px; position: relative; }
.path-item:last-child { padding-bottom: 0; }
.path-item:before {
  content: "";
  border: 3px solid var(--color-accent);
  background: var(--color-background);
  border-radius: 50%;
  width: 13px;
  height: 13px;
  position: absolute;
  top: 7px;
  left: -40px;
}
.path-item h3 { color: var(--color-primary); margin: 0; font-size: 14.88px; font-family: var(--font-body); font-weight: 400; }
.path-item p { color: #657064; margin: 5px 0 0; font-size: 13.76px; line-height: 1.65; }
.facility-gallery { background: #fff; padding: 0 0 120px; }
.facility-gallery__heading { max-width: 680px; }
.facility-gallery__grid { grid-template-columns: 1.35fr 0.65fr; gap: 18px; margin-top: 50px; display: grid; }
.facility-gallery__image { background: var(--color-mist); min-height: 460px; margin: 0; position: relative; overflow: hidden; }
.facility-gallery__image img {
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98);
  width: 100%;
  height: 100%;
  transition: transform var(--motion-zoom) var(--ease-expo-out);
}
.facility-gallery__image:hover img { transform: scale(1.025); }
.facility-gallery__image figcaption {
  color: #fff;
  background: var(--c-gallery-caption-bg);
  max-width: 77%;
  padding: 12px 15px;
  font-size: 11.52px;
  font-weight: 700;
  line-height: 1.42;
  position: absolute;
  bottom: 0;
  right: 0;
}
.facility-fact-band { background: #fff; padding: 0 0 120px; }
.facility-fact-band__inner { background: var(--color-mist); grid-template-columns: 1.03fr 0.97fr; display: grid; }
.facility-fact-band__visual { background: var(--color-primary); color: #fff; min-height: 335px; padding: 43px; }
.facility-fact-band__visual h2 {
  color: #fff;
  letter-spacing: -0.05em;
  max-width: 400px;
  margin: 62px 0 0;
  font-family: var(--font-display);
  font-size: clamp(36.8px, 3.5vw, 58.4px); /* live clamp(2.3rem,3.5vw,3.65rem) — 50.4 @1440 */
  font-weight: 600;
  line-height: 0.96;
}
.facility-fact-band__detail { flex-direction: column; justify-content: center; padding: 46px; display: flex; }
.facility-fact-band__detail p { color: #576355; max-width: 450px; margin: 0; line-height: 1.8; }
.facility-fact-band__detail a { margin-top: 25px; }

/* ---- LANE C: /contact (C-44 methods, C-37 mini-path wrapper, C-45 form) ---- */

.contact-layout { background: #fff; padding: 104px 0 120px; }
.contact-layout__grid { grid-template-columns: 0.82fr 1.18fr; gap: clamp(46px, 9vw, 145px); display: grid; }
.contact-intro h2 {
  max-width: 450px;
  color: var(--color-primary);
  letter-spacing: -0.06em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(41.6px, 4vw, 66.4px); /* live clamp(2.6rem,4vw,4.15rem) — 57.6 @1440 */
  font-weight: 600;
  line-height: 0.96;
}
.contact-intro > p { color: #5f6b60; max-width: 440px; margin: 20px 0 0; line-height: 1.78; }
.contact-methods { gap: 10px; margin-top: 34px; display: grid; }
.contact-method { border-top: 1px solid var(--color-border); grid-template-columns: 37px 1fr; gap: 12px; padding: 15px 0; display: grid; }
.contact-method:last-child { border-bottom: 1px solid var(--color-border); }
.contact-method svg { color: var(--color-accent-deep); }
.contact-method small {
  color: #798276;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 9.92px;
  font-weight: 800;
  display: block;
}
.contact-method strong { color: var(--color-primary); margin-top: 3px; font-size: 13.92px; line-height: 1.5; display: block; }
.contact-route-link {
  color: var(--color-primary);
  letter-spacing: 0.04em;
  align-items: center;
  gap: 9px;
  margin-top: 19px;
  font-size: 12.16px;
  font-weight: 800;
  display: inline-flex;
}
.contact-route-link svg { color: var(--color-accent-deep); transition: transform var(--motion-base) var(--ease-expo-out); }
.contact-route-link:hover { color: var(--color-accent-deep); }
.contact-route-link:hover svg { transform: translate(3px, -3px); }
.contact-mini-path { max-width: 520px; margin-top: 35px; }
.contact-form {
  background: var(--color-mist);
  border-top: 4px solid var(--color-primary);
  padding: clamp(30px, 5vw, 52px);
  position: relative;
}
.contact-form__route {
  color: var(--color-accent-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-items: center;
  gap: 10px;
  margin-bottom: 19px;
  font-size: 9.92px;
  font-weight: 800;
  display: inline-flex;
}
.contact-form h2 {
  color: var(--color-primary);
  letter-spacing: -0.05em;
  margin: 0;
  font-family: var(--font-display);
  font-size: 39.2px;
  font-weight: 600;
  line-height: 1;
}
.contact-form__notice { color: #667164; margin: 13px 0 28px; font-size: 12.16px; line-height: 1.58; }
.form-row { grid-template-columns: 1fr 1fr; gap: 15px; display: grid; }
.field { gap: 7px; margin-top: 15px; display: grid; }
.field label { color: #536054; letter-spacing: 0.08em; text-transform: uppercase; font-size: 10.88px; font-weight: 800; }
.field input, .field textarea {
  width: 100%;
  color: var(--color-primary);
  transition: border-color var(--motion-base) var(--ease-expo-out), box-shadow var(--motion-base) var(--ease-expo-out);
  background: #fff;
  border: 1px solid var(--c-form-field-border);
  padding: 13px 14px;
  font-size: 14.4px;
  font-family: var(--font-body);
}
.field textarea { resize: vertical; min-height: 129px; }
.field input:focus, .field textarea:focus { border-color: var(--color-accent); outline: 0; box-shadow: var(--shadow-focus-ring); }
.form-submit { margin-top: 22px; }
.form-submit:disabled { cursor: wait; opacity: 0.7; transform: none; }
/* STAGE F (SEAS-R-12): the inert honeypot and the reCAPTCHA fine print are GONE — the
 * .contact-form__honeypot and .contact-form__captcha rules went with them. The slot below
 * replaces both. Cloudflare's widget carries its own branding, so NSP's proven live shape
 * ships no disclosure sentence at all (verified on nexussurgicalpartners.com/contact,
 * 2026-08-19) and neither does this. */
.contact-form__turnstile { max-width: 100%; margin-top: 16px; overflow-wrap: anywhere; }
.contact-form__turnstile:empty { margin-top: 0; }

/* CF7 embed shims (SEAS-D-9 re-authored stack; designed, minuted in
   gen-decisions-c): neutralise wrapper chrome so the grid sees the form. */
.contact-form .hidden-fields-container { display: none; }
.contact-form .wpcf7-form-control-wrap { display: block; }
.contact-form .wpcf7-response-output {
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  background: #fff;
  margin: 22px 0 0;
  padding: 10px 12px;
  font-size: 12.16px;
  line-height: 1.55;
}

/* ---- LANE C: /404 (C-46, I-27 drift visual) -------------------------------- */

.not-found { background: var(--color-mist); align-items: center; min-height: 74vh; padding: 110px 0; display: flex; }
.not-found__inner {
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: clamp(40px, 9vw, 145px);
  width: min(1050px, 100% - 48px);
  margin: 0 auto;
  display: grid;
}
.not-found__visual { justify-content: center; align-items: center; min-height: 340px; display: flex; position: relative; }
.not-found__visual:before, .not-found__visual:after {
  content: "";
  border: 1px solid #93a65a8c;
  border-radius: 52% 47% 54% 46%;
  width: 285px;
  height: 285px;
  position: absolute;
}
.not-found__visual:after { border-color: #1e245c42; width: 210px; height: 210px; transform: rotate(34deg); }
.not-found__content h1 {
  max-width: 570px;
  color: var(--color-primary);
  letter-spacing: -0.08em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(52.8px, 6.2vw, 108.8px); /* live clamp(3.3rem,6.2vw,6.8rem) — 89.28 @1440 */
  font-weight: 600;
  line-height: 0.85;
}
.not-found__content h1 em { color: var(--color-accent-deep); font-style: italic; }
.not-found__content p { color: #596558; max-width: 520px; margin: 26px 0 0; font-size: 16.48px; line-height: 1.8; }
.not-found__content .button { margin-top: 30px; }

/* ---- LANE C: responsive — ≤1080 (inclusive) -------------------------------- */

@media (max-width: 1080px) {
  .contact-layout__grid { gap: 60px; }
  .facility-hero__content { padding-left: 48px; }
  .facility-hero__image { min-height: 500px; }
  .facility-gallery__grid { grid-template-columns: 1fr 0.76fr; }
}

/* ---- LANE C: responsive — ≤820 (inclusive) --------------------------------- */

@media (max-width: 820px) {
  .directory-wayfinding { padding-bottom: 33px; } /* re-states lane B's @820 combined rule — cascade note above */
  /* Re-statements of LANE A's @820 rules that this block's later base rules
     would otherwise outrank (equal specificity, later order — measured:
     without these, /facility and /contact kept 2-col grids at 390 and
     overflowed to 409/664px scrollWidth). Live's own values. */
  .facility-story__grid, .contact-layout__grid { grid-template-columns: 1fr; }
  .directory-controls__inner { flex-direction: column; align-items: flex-start; }
  .facility-hero { grid-template-columns: 1fr; }
  .facility-hero__content { width: min(100%, 680px); margin: 0 auto; padding: 78px 24px 58px; }
  .facility-hero__image { min-height: 390px; }
  .facility-story { padding: 90px 0; }
  .facility-gallery { padding-bottom: 90px; }
  .facility-gallery__grid { grid-template-columns: 1fr 0.76fr; }
  .facility-fact-band__inner { grid-template-columns: 1fr; }
  .contact-layout { padding: 84px 0; }
  .contact-intro { max-width: 550px; }
  .provider-grid { grid-template-columns: 1fr; }
  .not-found__inner { grid-template-columns: 1fr; gap: 8px; }
  .not-found__visual { min-height: 230px; }
}

/* ---- LANE C: responsive — ≤560 (inclusive; narrow regime) ------------------ */

@media (max-width: 560px) {
  .directory-wayfinding { padding-bottom: 26px; } /* re-states lane B's @560 combined rule — cascade note above */
  /* Re-statements of LANE A's @560 rules (same cascade-order reason). */
  .provider-directory__inner { width: var(--container-content-560); }
  .facility-story, .facility-gallery, .contact-layout { padding-top: 72px; padding-bottom: 72px; }
  .facility-gallery__grid { grid-template-columns: 1fr; }
  .directory-controls__inner { width: var(--container-content-560); }
  .search-box { width: 100%; max-width: none; }
  .filter-pills { justify-content: flex-start; }
  .provider-card { grid-template-columns: 92px 1fr; min-height: 228px; }
  .provider-card__mark span { width: 54px; height: 54px; font-size: 16.8px; }
  .provider-card__mark:before { left: 12px; }
  .provider-card__content { padding: 24px 18px 20px; }
  .provider-card__content h2 { font-size: 19.2px; }
  .provider-card__bio { font-size: 12.16px; }
  .facility-hero__content h1 { font-size: clamp(56px, 14vw, 76px); } /* live clamp(3.5rem,14vw,4.75rem) — 56 @390 */
  .facility-hero__image { min-height: 330px; }
  .facility-gallery__image { min-height: 305px; }
  .facility-fact-band__visual, .facility-fact-band__detail { padding: 35px 26px; }
  .facility-fact-band__visual h2 { margin-top: 43px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 22px; }
  .not-found { padding: 60px 0 80px; }
  .not-found__visual:before { width: 210px; height: 210px; }
  .not-found__visual:after { width: 160px; height: 160px; }
  .not-found__content h1 { font-size: clamp(54.4px, 15vw, 74.4px); } /* live clamp(3.4rem,15vw,4.65rem) — 58.5 @390 */
}

/* ==== END LANE C APPEND BLOCK ============================================= */

/* ==== REWORK-1 BLOCK (2026-08-18) ==========================================
   Stage D rework round. Every rule below traces to a MEASURED screenshot delta
   vs the capture reference (docs/generation/gen-decisions-rework1.md), fixed at
   the smallest change. Appended per the site.css append-only contract — no lane
   block above is edited. Keep repo and sandbox copies identical.
   ------------------------------------------------------------------------ */

/* R1-1: home §3 intro paragraph — restore LIVE PAINT (SEAS-D-7). Live has no
   `.home-intro__copy .section-heading__intro` rule; on live the (0,1,1)
   `.home-intro__copy p` rule beats (0,1,0) `.section-heading__intro`, so the
   painted intro is 16.8px / lh 1.8 / margin-top 26px. The lane-A override at
   equal specificity (0,2,0) above forced the __intro values instead — measured
   as home-intro 668 vs 675 @1440 (dH −7; −10 CSS @390). Same specificity,
   later order: this wins. */
.home-intro__copy .section-heading__intro { margin: 26px 0 0; font-size: 16.8px; line-height: 1.8; }

/* R1-2 / R1-3: Bricks heading default line-height vs live body inheritance.
   Live sets NO line-height on these h3s; they inherit body 1.62 (live-built.css
   body{line-height:1.62}) → 18.14px @11.2 / 24.106px @14.88 (the rw1-register
   values). Under Bricks the same headings computed lh 15.68/≈20.8 (heading
   default counter-layer, family of gen-decisions-a fact 14). Measured: gyn/uro
   −5 CSS px (2 labelled groups × −2.46), facility −10 CSS px at ≤820 (3 path
   items × −3.3; masked ≥1080 by the 2-col grid, left column governs). Pin the
   live computed value. */
.detail-list-group h3 { line-height: 1.62; }
.path-item h3 { line-height: 24.106px; }

/* R1-4: contact-method label/value stack — counter-rule. Bricks frontend-layer
   ships `.brxe-text-link, .brxe-text-link span { align-items:center;
   display:inline-flex }`, flattening the live <span><small/><strong/></span>
   stack into one row (measured: methods block 206.5 vs live-stacked layout;
   contact rows 866+ divergent @1440). Live has no span rule — default inline;
   small/strong are display:block. Same standing as the `.nav-menu__panel
   {max-width:none}` counter-rule (E-A4 family). */
.contact-method span { display: inline; }

/* R1-5: contact textarea height — counter-rule against the CF7 stack. CF7 6.1
   emits rows="10" (intrinsic 261.3px measured); live's re-authored form
   textarea measured 129px total (i-contact.json formMeta; the site.css
   min-height:129px was authored from it). Pin the measured box. */
.contact-form textarea { height: 129px; }

/* R1-7: Bricks frontend-layer ships `label { margin-bottom: 5px }`; live's
   reset carries no label margin — the .field grid gap (7px) is the only
   designed label/input spacing. Measured +5px per field block (form pitch 96
   vs live 91 @1440). Counter-rule, E-A4 family, scoped to the form fields. */
.field label { margin-bottom: 0; }

/* R1-6: CF7 stack chrome absent from live — the rest-state spinner placeholder
   `<span class="wpcf7-spinner">` occupies a 24px inline-block in flow
   (visibility:hidden in CF7's own CSS hides paint, not space). Live's
   re-authored form (SEAS-D-9) has no spinner element; measured +24px on the
   form column at every width. No designed interaction references a spinner
   (I-24 post-submit uses the CF7 response output only). */
.contact-form .wpcf7-spinner { display: none; }

/* R1-8: CF7 wraps each control in <span class="wpcf7-form-control-wrap">
   (display:block); the inline-block textarea sitting on that span's baseline
   leaves 7.9px of descender space below it (wrap 136.9 vs textarea 129,
   measured). Live's re-authored markup has no wrap — the textarea is a direct
   .field grid item with no line box. display:block removes the line box. */
.field .wpcf7-form-control-wrap textarea { display: block; }

/* ==== END REWORK-1 BLOCK ================================================== */

/* ============================================================================
   FIX-ROUND 1 BLOCK — adversarial-audit D1 dispositions (2026-08-18).
   Owner: fix-round finisher. Append-only discipline held: nothing above edited.
   Every rule cites its audit finding + the live-capture value it restores.
   ========================================================================== */

/* FIX-1 (AUD-7): /services §2 consultation image band at ≤560. ROOT CAUSE is the
   E-C5 append-order cascade trap: lane B's ≤820 rule `.services-intro{padding:
   85px 0 58px}` (line ~902) appears AFTER lane A's ≤560 72px re-statement
   (line ~688), so at ≤560 the later equal-specificity rule won — padding-top 85
   instead of live's 72 (image top +13px, the audit's measured 641 vs 628 @390)
   and padding-bottom 58 instead of 72 (why total page height only moved −1px).
   Live cascade: the ≤560 block follows the ≤820 block in live-built.css, so 72
   wins there. Re-state live's ≤560 value below everything. */
@media (max-width: 560px) {
  .services-intro { padding-top: 72px; padding-bottom: 72px; }
}

/* FIX-2 (AUD-8): /facility gallery caption anchoring. Live's base reset ships
   `img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;
   display:block}` + `img{max-width:100%;display:block}` (live-built.css) —
   neither was carried (same base-reset omission class as lane C's fact-5
   form-control reset). The inline gallery <img> left an ~11.5px descender line
   box below itself, growing the figure past the image, so the bottom:0 caption
   sat raised off the image bottom; Bricks' text-basic layer contributed the
   uncited text-align:center. Live values restored, scoped to the audited
   surface (a global img reset could disturb surfaces the audit verified clean):
   flush bottom (display:block kills the line box) + inherited left text-align.
   Second gap source, measured on-instance after the display fix: the Bricks
   text-basic layer gives the figcaption margin-block 11.52px — on an
   absolutely-positioned bottom:0 box the margin-bottom offsets it 11.52px up
   (the audit's constant 11.5px bottomGap at every width). Live's caption
   carries no margin. Horizontal anchoring right:0 already matches live (ref
   w1440 caption left edge measured 634 = fig left 104 + the same 530.3 offset
   the build shows). */
.facility-gallery__image img { display: block; }
.facility-gallery__image figcaption { text-align: left; margin: 0; }

/* FIX-3 (AUD-14): 10px document overflow at 320 on /services/urogynecology —
   the unbreakable h1 word "Urogynecology" exceeds the 288px hero column
   (audit B-3 bisection). No live reference exists below 360 (capture floor);
   the invariant to restore is zero horizontal overflow. overflow-wrap only
   engages when a word cannot fit its line — no effect at ≥360 where every
   h1 word fits (zero-overflow invariant held at all 148 capture rows). */
.detail-hero h1 { overflow-wrap: break-word; }

/* FIX-4 (AUD-17): @font-face lacked font-display; fallback paint policy was
   unspecified (FOIT risk). Google's own served CSS for Fraunces/Manrope uses
   font-display:swap — that is the established value (audit NOTE's reference).
   Same-family/descriptor @font-face re-declarations: last rule wins, same srcs. */
@font-face { font-family: Fraunces; font-weight: 600; src: url(assets/fonts/fraunces-600.woff2) format("woff2"); font-display: swap; }
@font-face { font-family: Manrope; font-weight: 400; src: url(assets/fonts/manrope-400.woff2) format("woff2"); font-display: swap; }
@font-face { font-family: Manrope; font-weight: 700; src: url(assets/fonts/manrope-700.woff2) format("woff2"); font-display: swap; }
@font-face { font-family: Manrope; font-weight: 800; src: url(assets/fonts/manrope-800.woff2) format("woff2"); font-display: swap; }

/* ==== END FIX-ROUND 1 BLOCK =============================================== */
