@import url("trust-band.css");
/* ETS shared site styles — layout, chrome, components */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0; padding: 0; }
p { margin: 0; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Trust strip banner —— */
.site-banner {
  background: #fbbf24;
  color: #1f2937;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  padding: 0.45rem 0.75rem;
  letter-spacing: 0.01em;
}

/* —— Header —— */
.topbar {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.logo img {
  height: 40px;
  width: auto;
}

.logo-text { display: none; }
@media (min-width: 1100px) {
  .logo-text { display: inline; }
}

.nav {
  display: flex;
  align-items: stretch;
  gap: 0.35rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  opacity: 0.98;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.35rem;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active { color: var(--orange); }

.nav-item.has-dropdown > .nav-link::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 0.35rem;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255, 255, 255, 0.65);
}

.nav-item.has-dropdown:hover > .nav-link::after,
.nav-item.has-dropdown:focus-within > .nav-link::after {
  border-top-color: var(--orange);
}

/* Desktop dropdown panels — light surface, dark text */
.nav-dropdown,
.nav-mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 0.65rem 0;
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  z-index: 60;
}

.nav-item.has-dropdown:hover > .nav-dropdown,
.nav-item.has-dropdown:hover > .nav-mega,
.nav-item.has-dropdown:focus-within > .nav-dropdown,
.nav-item.has-dropdown:focus-within > .nav-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown a,
.nav-mega a {
  display: block;
  padding: 0.45rem 1rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.86rem;
  white-space: nowrap;
}

.nav-dropdown a:hover,
.nav-mega a:hover {
  color: var(--orange);
  background: var(--bg-soft);
}

.nav-mega {
  display: grid;
  grid-template-columns: repeat(4, minmax(9.5rem, 1fr));
  gap: 0.35rem 1rem;
  padding: 1rem 1.1rem 1.15rem;
  min-width: min(720px, calc(100vw - 2rem));
  max-width: min(820px, calc(100vw - 1.5rem));
  left: 50%;
  transform: translate(-50%, 6px);
  white-space: normal;
}

.nav-item.has-dropdown:hover > .nav-mega,
.nav-item.has-dropdown:focus-within > .nav-mega {
  transform: translate(-50%, 0);
}

/* Keep mega menu on-screen when Cities is near the left */
.nav-item.has-dropdown:first-child > .nav-mega {
  left: 0;
  transform: translate(0, 6px);
}
.nav-item.has-dropdown:first-child:hover > .nav-mega,
.nav-item.has-dropdown:first-child:focus-within > .nav-mega {
  transform: translate(0, 0);
}

.nav-col {
  min-width: 0;
}

.nav-heading {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.25rem 0 0.4rem;
  margin-bottom: 0.15rem;
  border-bottom: 1px solid var(--line);
}

.nav-mega .nav-heading { padding-left: 0.15rem; padding-right: 0.15rem; }
.nav-mega a { padding-left: 0.15rem; padding-right: 0.15rem; white-space: normal; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.topbar-cta,
.topbar-phone { flex-shrink: 0; white-space: nowrap; }

.topbar-phone {
  position: relative;
  padding: 0.55rem 0.9rem;
  font-size: 0.88rem;
}

.phone-icon { display: block; flex-shrink: 0; }

.mobile-nav {
  display: none;
  background: var(--navy-2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 0 1.25rem;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav.is-open { display: block; }

.mobile-flat {
  display: block;
  padding: 0.85rem 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
}
.mobile-flat:hover,
.mobile-flat.is-active { color: var(--orange); }

.mobile-acc {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-acc-head {
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
}

.mobile-acc-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0.85rem 0;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.94);
}
.mobile-acc-main.is-active,
.mobile-acc-main:hover { color: var(--orange); }

.mobile-acc-toggle {
  flex: 0 0 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.mobile-acc-chevron {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid rgba(255, 255, 255, 0.85);
  transform: rotate(45deg);
  transition: transform 0.15s ease;
  margin-top: -4px;
}

.mobile-acc-toggle[aria-expanded="true"] .mobile-acc-chevron {
  transform: rotate(225deg);
  margin-top: 2px;
}

/* Light submenu panel — dark text for Android/mobile contrast */
.mobile-acc-panel {
  background: #f7f9fc;
  color: var(--ink);
  border-radius: 10px;
  margin: 0 0 0.75rem;
  padding: 0.55rem 0.75rem 0.75rem;
  border: 1px solid var(--line);
}

.mobile-acc-panel[hidden] { display: none !important; }

.mobile-acc-panel a {
  display: block;
  padding: 0.5rem 0.35rem;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.9rem;
  border-bottom: 1px solid #e8eef5;
}
.mobile-acc-panel a:last-child { border-bottom: 0; }
.mobile-acc-panel a:hover { color: var(--orange); }

.mobile-acc-overview {
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.mobile-acc-group {
  padding: 0.45rem 0 0.25rem;
}
.mobile-acc-group .nav-heading {
  color: var(--muted);
  border-bottom-color: #e3e8ef;
  margin-bottom: 0.25rem;
}

.mobile-nav .btn { width: 100%; margin-top: 0.65rem; }
.mobile-nav .topbar-phone { margin-top: 1rem; }

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: inherit;
  border: 0;
  cursor: pointer;
  transition: 0.15s ease;
  text-align: center;
}

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-hover); }

.btn-teal { background: var(--med-teal); color: #fff; }
.btn-teal:hover { background: var(--med-teal-hover); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: var(--bg-soft); }

.btn-lg { padding: 0.85rem 1.5rem; font-size: 1rem; }

/* —— Sections —— */
section { padding: 3.5rem 0; }

.section-white { background: var(--white); }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy-2 { background: var(--navy-2); color: var(--white); }
.section-deep { background: var(--navy-deep); color: var(--white); }

.section-med-soft { background: var(--med-mint); }
.section-med-navy { background: var(--med-navy); color: var(--white); }

.kicker {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}

.section-med-soft .kicker,
.section-med-navy .kicker,
.med-skin .kicker { color: var(--med-teal); }

.section-navy .kicker,
.section-navy-2 .kicker,
.section-deep .kicker { color: #ffb089; }

.section-med-navy .kicker { color: #9fe7f3; }

h1, h2, h3, h4 { line-height: 1.2; margin: 0; }

h2 {
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  margin: 0 0 0.75rem;
  color: var(--navy);
}

.section-navy h2,
.section-navy-2 h2,
.section-deep h2,
.section-med-navy h2 { color: var(--white); }

.med-skin h2 { color: var(--med-navy); }
.section-med-navy h2 { color: var(--white); }

.lede {
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 1.75rem;
}

.section-navy .lede,
.section-navy-2 .lede,
.section-deep .lede,
.section-med-navy .lede { color: rgba(255, 255, 255, 0.78); }

.section-head { margin-bottom: 1.75rem; }
.section-head.center { text-align: center; }
.section-head.center .lede { margin-inline: auto; }

/* —— Hero variants —— */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 3.5rem 0 4rem;
  background: var(--navy);
}

.hero--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11, 35, 64, 0.92) 0%, rgba(11, 35, 64, 0.72) 55%, rgba(11, 35, 64, 0.5) 100%);
  z-index: 0;
}

.hero .wrap { position: relative; z-index: 1; }

.hero h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.hero-lead {
  font-size: 1.08rem;
  opacity: 0.92;
  max-width: 42ch;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffb089;
  background: rgba(240, 90, 40, 0.2);
  border: 1px solid rgba(255, 176, 137, 0.35);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero--medical {
  background:
    linear-gradient(105deg, rgba(10, 39, 68, 0.94) 0%, rgba(10, 39, 68, 0.78) 48%, rgba(14, 116, 144, 0.55) 100%),
    radial-gradient(circle at 80% 20%, rgba(14, 116, 144, 0.35), transparent 45%),
    #0a2744;
}

.hero--medical .eyebrow {
  color: #9fe7f3;
  background: rgba(14, 116, 144, 0.25);
  border-color: rgba(159, 231, 243, 0.35);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.chip-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }

.chip {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.breadcrumb {
  font-size: 0.82rem;
  opacity: 0.75;
  margin-bottom: 1rem;
}

.breadcrumb a:hover { color: var(--orange); text-decoration: underline; }

/* —— Cards —— */
.grid-2 { display: grid; gap: 1.25rem; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; gap: 1rem; grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 4px 16px rgba(11, 35, 64, 0.04);
  transition: 0.15s ease;
}

a.card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.med-skin a.card:hover,
.section-med-soft a.card:hover { border-color: var(--med-teal); }

.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(240, 90, 40, 0.12);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 0.85rem;
}

.med-skin .card .icon,
.section-med-soft .card .icon {
  background: var(--med-teal-soft);
  color: var(--med-teal);
}

.card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.med-skin .card h3 { color: var(--med-navy); }

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
}

.med-skin .card-link { color: var(--med-teal); }

.card-media {
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(11, 35, 64, 0.04);
  transition: 0.15s ease;
}

a.card-media:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.card-media img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.card-media-body { padding: 1.15rem 1.2rem 1.35rem; }

.card-media-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.card-media-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* —— Split / media —— */
.split {
  display: grid;
  gap: 2.25rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.split--reverse > :first-child { order: 2; }

.media-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.6rem;
  color: var(--muted);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}

.med-skin .checklist li::before { background: var(--med-teal); }

/* —— Steps —— */
.steps { display: grid; gap: 1rem; }

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.step-light {
  background: var(--white);
  border-color: var(--line);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.med-skin .step-num,
.section-med-navy .step-num { background: var(--med-teal); }

.step h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.step p { margin: 0; opacity: 0.85; font-size: 0.92rem; }
.step-light h3 { color: var(--navy); }
.step-light p { opacity: 1; color: var(--muted); }

/* —— Forms —— */
.quote-card,
.form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  padding: 1.35rem;
  box-shadow: var(--shadow-lg);
}

.quote-card h2,
.form-card h2 {
  font-size: 1.1rem;
  margin: 0 0 0.85rem;
  color: var(--navy);
}

.med-skin .quote-card h2 { color: var(--med-navy); }

.form-card label,
.quote-card label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0.55rem 0 0.25rem;
}

.form-card input,
.form-card select,
.form-card textarea,
.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  background: #fbfdfe;
  color: var(--ink);
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus,
.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
  outline: 2px solid rgba(240, 90, 40, 0.35);
  border-color: var(--orange);
}

.med-skin .quote-card input,
.med-skin .quote-card select,
.med-skin .quote-card textarea {
  border-color: var(--med-line);
}

.med-skin .quote-card input:focus,
.med-skin .quote-card select:focus,
.med-skin .quote-card textarea:focus {
  outline-color: rgba(14, 116, 144, 0.35);
  border-color: var(--med-teal);
}

.quote-card .btn,
.form-card .btn { width: 100%; margin-top: 0.9rem; }

.quote-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0.6rem 0 0;
  text-align: center;
}

.form-grid-2 {
  display: grid;
  gap: 0 1rem;
  grid-template-columns: 1fr 1fr;
}

/* —— CTA bands —— */
.cta-band {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  background: linear-gradient(90deg, var(--navy), var(--navy-2) 55%, #1a4568);
  color: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.85rem;
}

.cta-band--orange {
  background: linear-gradient(90deg, var(--navy), #1a3a5c 50%, #c4451a);
}

.cta-band--teal {
  background: linear-gradient(90deg, var(--med-navy), #0f3d5c 60%, var(--med-teal));
}

.cta-band h2 { color: #fff; margin: 0 0 0.35rem; }
.cta-band p { margin: 0; opacity: 0.85; }

.cta-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* —— Logo strip / pills —— */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-block: 1px solid var(--line);
}

.logo-pill {
  height: 42px;
  min-width: 88px;
  padding: 0 0.9rem;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.med-skin .logo-pill { border-color: var(--med-line); color: var(--med-navy); }
.med-skin .logo-strip { border-color: var(--med-line); }

/* —— Equip / feature tiles —— */
.equip {
  text-align: center;
  padding: 1.1rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.med-skin .equip { border-color: var(--med-line); }

.equip .emoji { font-size: 1.4rem; line-height: 1; }
.equip strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-top: 0.4rem;
}

.med-skin .equip strong { color: var(--med-navy); }

/* —— Stats —— */
.stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  text-align: center;
  padding: 1.25rem 1rem;
}

.stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--orange);
  margin-bottom: 0.25rem;
}

.section-navy .stat strong { color: #ffb089; }
.stat span { font-size: 0.88rem; color: var(--muted); }
.section-navy .stat span { color: rgba(255, 255, 255, 0.75); }

/* —— Quote strip —— */
.quote-strip {
  background: var(--orange);
  color: #fff;
  padding: 2.25rem 0;
  text-align: center;
}

.quote-strip h2 {
  color: #fff;
  margin: 0 0 0.5rem;
}

.quote-strip p {
  margin: 0 0 1.25rem;
  opacity: 0.95;
}

/* —— Map / cities —— */
.map-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-frame img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Dark panel for australia-map.png (asset has black background) */
.map-panel {
  background: #050d18;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin-inline: auto;
  padding: 0.75rem 0.75rem 0.5rem;
}

.map-panel--flush { padding: 0; }

.map-panel img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  aspect-ratio: auto;
  border-radius: 10px;
}

.map-panel .map-caption {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.35rem 0.5rem 0.15rem;
  margin: 0;
}

/* Van / nationwide secondary band */
.nationwide-band {
  margin-top: 1.5rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 920px;
  margin-inline: auto;
}

.nationwide-band img {
  width: 100%;
  height: auto;
  aspect-ratio: 21/9;
  object-fit: cover;
  display: block;
}

.city-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.2rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: 0.15s ease;
}

a.city-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.city-card h3 { font-size: 1.05rem; color: var(--navy); margin: 0; }
.city-card p { margin: 0; font-size: 0.88rem; color: var(--muted); }
.city-card .card-link { margin-top: 0.5rem; }

/* —— Safety / checklist cards —— */
.danger-card {
  border-left: 4px solid var(--orange);
  background: var(--white);
  border-radius: 0 12px 12px 0;
  padding: 1.15rem 1.25rem;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.danger-card h3 { margin: 0 0 0.4rem; font-size: 1rem; color: var(--navy); }
.danger-card p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* —— Team / values —— */
.avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
}

/* —— Contact details —— */
.contact-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.contact-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(240, 90, 40, 0.12);
  color: var(--orange);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
}

.contact-list strong { display: block; color: var(--navy); margin-bottom: 0.15rem; }
.contact-list span,
.contact-list a { color: var(--muted); font-size: 0.92rem; }
.contact-list a:hover { color: var(--orange); }

/* —— Job cards —— */
.job-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.job-card h3 { margin: 0 0 0.3rem; font-size: 1.05rem; color: var(--navy); }
.job-meta { font-size: 0.85rem; color: var(--muted); }
.job-meta span + span::before {
  content: "·";
  margin: 0 0.4rem;
}

/* —— Footer —— */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.75rem 0 1.5rem;
  font-size: 0.9rem;
}

.foot-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  margin-bottom: 2rem;
}

.foot-brand .logo { margin-bottom: 0.85rem; color: #fff; }
.foot-brand .logo img { height: 36px; }
.foot-brand p { margin: 0; opacity: 0.75; max-width: 32ch; font-size: 0.88rem; }

footer h3 {
  color: #fff;
  font-size: 0.85rem;
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.foot-links {
  display: grid;
  gap: 0.4rem;
}

footer a { opacity: 0.8; }
footer a:hover { opacity: 1; color: var(--orange); }

.foot-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.1rem;
  font-size: 0.78rem;
  opacity: 0.65;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: space-between;
}

/* —— Utilities —— */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.75rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.text-center { text-align: center; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(240, 90, 40, 0.12);
  color: var(--orange);
}

.tag-teal {
  background: var(--med-teal-soft);
  color: var(--med-teal);
}

/* —— Page-compact heroes —— */
.hero--compact { padding: 2.75rem 0 3rem; }
.hero--compact h1 { max-width: 22ch; }

/* —— Medical band on home —— */
.medical-band {
  background: linear-gradient(120deg, var(--med-mint) 0%, #d9f3f7 50%, var(--med-teal-soft) 100%);
  border-block: 1px solid var(--med-line);
}

.medical-band .kicker { color: var(--med-teal); }
.medical-band h2 { color: var(--med-navy); }


@media (max-width: 1100px) {
  .nav-mega {
    grid-template-columns: repeat(3, minmax(8.5rem, 1fr));
    min-width: min(560px, calc(100vw - 2rem));
  }
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .nav,
  .topbar-cta { display: none; }

  .nav-toggle { display: inline-flex; }

  .hero-grid,
  .split,
  .split--reverse > :first-child,
  .grid-3,
  .related,
  .foot-grid,
  .cta-band,
  .stats,
  .job-card,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .split--reverse > :first-child { order: 0; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }

  .cta-band { text-align: left; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero { padding: 2.5rem 0 3rem; }
  section { padding: 2.75rem 0; }
}

/* —— Discovery updates: priority / soft service cards, medical second-hero —— */
.tag-major {
  background: rgba(240, 90, 40, 0.14);
  color: var(--orange);
}
.tag-soft {
  background: var(--bg-soft);
  color: var(--muted);
  font-weight: 600;
}
.card--major {
  border-color: rgba(240, 90, 40, 0.35);
  box-shadow: 0 8px 24px rgba(240, 90, 40, 0.08);
}
.card--soft {
  opacity: 0.78;
  background: #fafbfc;
}
.card--soft:hover { opacity: 1; }

.services-group { margin-bottom: 2.5rem; }
.services-group:last-child { margin-bottom: 0; }
.services-group-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.services-group-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* Stronger medical second-hero on home */
.medical-band--hero {
  padding: 3.75rem 0;
  background:
    linear-gradient(115deg, rgba(10, 39, 68, 0.94) 0%, rgba(10, 39, 68, 0.82) 42%, rgba(14, 116, 144, 0.72) 100%),
    url("../assets/clinical-ward.webp") center/cover;
  color: #fff;
  border-block: 0;
}
.medical-band--hero .kicker { color: #9fe7f3; }
.medical-band--hero h2 {
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  max-width: 18ch;
}
.medical-band--hero .lede {
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
}
.medical-band--hero .chip-row { margin: 1.1rem 0 1.35rem; }
.medical-band--hero .trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.35rem;
}
.medical-band--hero .trust-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}
.medical-band--hero .media-frame {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.project-card .card-media-body .meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}


/* —— Accreditation artwork (live-site logos) —— */
.accreditation-strip { background: transparent !important; border: 0 !important; box-shadow: none !important; border-radius: 0 !important; max-width: none !important; padding: 0 !important; }

.accreditation-strip--soft { background: transparent !important; }

.accreditation-strip img { display: none !important; }

.accreditation-strip .acc-caption { display: none !important; }

.accreditation-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 0.5rem 0;
}

.accreditation-logos img {
  max-height: 64px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.accreditation-logos--compact img {
  max-height: 48px;
  max-width: 110px;
}

@media (max-width: 560px) {
  .accreditation-logos img { max-height: 48px; }
  .map-panel { padding: 0.5rem; }
}


/* —— Home anti-AI polish: type, asym services, proof board, testimonial —— */
.hero--home h1,
.hero h1 {
  letter-spacing: -0.02em;
}

.med-proof {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}

.services-asym {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1.25fr 0.85fr;
  align-items: stretch;
}

.services-asym__feature {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.services-asym__feature img {
  aspect-ratio: 4/3;
  object-fit: cover;
  flex: 1;
  min-height: 220px;
}

.services-asym__stack {
  display: grid;
  gap: 1.25rem;
  grid-auto-rows: 1fr;
}

.services-asym__stack .card-media img {
  aspect-ratio: 16/9;
}

.section-proof .section-head { margin-bottom: 1.5rem; }
.section-proof .section-head .kicker { color: #ffb089; }
.section-proof .section-head h2 { color: #fff; }

.proof-board {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.9fr 1.3fr;
  align-items: stretch;
  margin-bottom: 2rem;
}

.proof-feature {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
}

.proof-feature strong {
  font-size: clamp(2.75rem, 6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.proof-feature span,
.proof-cell span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.proof-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

.proof-cell {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 1.1rem 1.15rem;
}

.proof-cell strong {
  display: block;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  letter-spacing: -0.02em;
  color: #ffb089;
  margin-bottom: 0.2rem;
}

.proof-cell--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
}

.proof-cell--wide strong { margin-bottom: 0; }

.testimonial {
  margin: 0;
  padding: 1.5rem 1.6rem;
  background: rgba(255, 255, 255, 0.06);
  border-left: 4px solid var(--orange);
  border-radius: 0 14px 14px 0;
}

.testimonial blockquote {
  margin: 0 0 1rem;
}

.testimonial blockquote p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
}

.testimonial figcaption strong { color: #fff; }
.testimonial figcaption span { color: rgba(255, 255, 255, 0.65); }

@media (max-width: 900px) {
  .services-asym,
  .proof-board {
    grid-template-columns: 1fr;
  }
  .services-asym__stack { grid-template-rows: auto; }
  .proof-cell--wide { flex-direction: column; gap: 0.25rem; }
}

/* —— Sitewide anti-AI polish utilities —— */
.hero h1 { letter-spacing: -0.02em; }

.section-tight { padding: 2.25rem 0; }
.section-airy { padding: 4.25rem 0; }

.split--uneven {
  grid-template-columns: 1.2fr 0.8fr;
}
.split--uneven-rev {
  grid-template-columns: 0.85fr 1.15fr;
}

.card--radius-sm { border-radius: 10px; }
.card--radius-lg { border-radius: 18px; }
.card--border-strong { border-width: 1.5px; border-color: rgba(11, 35, 64, 0.14); }

.editorial-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.editorial-list li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.editorial-list .num {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  padding-top: 0.15rem;
}
.med-skin .editorial-list .num,
.section-med-soft .editorial-list .num { color: var(--med-teal); }
.editorial-list h3 {
  margin: 0 0 0.25rem;
  font-size: 1.02rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.med-skin .editorial-list h3 { color: var(--med-navy); }
.editorial-list p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.service-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  transition: 0.15s ease;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.service-list a:hover {
  border-color: var(--orange);
  transform: translateX(2px);
}
.service-list a span {
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--muted);
}

.metro-feature {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 1.75rem;
}
.metro-feature .city-card {
  padding: 1.35rem 1.4rem;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}
.metro-feature .city-card h3 { color: #fff; font-size: 1.2rem; letter-spacing: -0.015em; }
.metro-feature .city-card p { color: rgba(255,255,255,0.7); }
.metro-feature .city-card .card-link { color: #ffb089; }
a.metro-feature .city-card:hover,
.metro-feature a.city-card:hover {
  border-color: transparent;
  background: var(--navy-2);
  transform: translateY(-3px);
}

.city-grid-quiet {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, 1fr);
}
.city-grid-quiet .city-card {
  padding: 0.9rem 1rem;
  border-radius: 10px;
}
.city-grid-quiet .city-card h3 { font-size: 0.98rem; }

.equip-editorial {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--med-line);
}
.equip-editorial li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--med-line);
  list-style: none;
}
.equip-editorial .eq-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--med-teal-soft);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}
.equip-editorial strong {
  display: block;
  color: var(--med-navy);
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.equip-editorial span { color: var(--muted); font-size: 0.88rem; }

.lead-line {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 46ch;
  margin: 0 0 1rem;
}

.hero-meta {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  opacity: 0.85;
}

.foot-brand p { max-width: 36ch; }

@media (max-width: 900px) {
  .split--uneven,
  .split--uneven-rev,
  .metro-feature,
  .city-grid-quiet { grid-template-columns: 1fr; }
  .city-grid-quiet { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .city-grid-quiet { grid-template-columns: 1fr; }
}


.testimonial--light {
  background: var(--bg-soft);
  border-left-color: var(--orange);
}
.testimonial--light blockquote p { color: var(--navy); }
.testimonial--light figcaption strong { color: var(--navy); }
.testimonial--light figcaption span { color: var(--muted); }

.services-asym__stack {
  grid-template-rows: none;
  grid-auto-rows: 1fr;
}

.prose h2 { margin-top: 0; }
.prose h3 { margin: 1.25rem 0 0.5rem; color: var(--navy); font-size: 1.1rem; letter-spacing: -0.01em; }
.prose p { margin: 0 0 1rem; color: var(--muted); max-width: 68ch; }
.prose ul, .prose ol { margin: 0 0 1.25rem; padding-left: 1.2rem; color: var(--muted); }
.prose li { margin: 0.35rem 0; }
.prose li a { color: var(--orange); font-weight: 600; }
.foot-acc { margin-top: 1rem; }
.foot-acc .cert-logos { justify-content: flex-start; gap: 0.65rem 0.85rem; }
.foot-acc .cert-logos img { max-height: 44px; max-width: 72px; }
.site-banner { display: none; }

/* ========== DENSITY OVERHAUL (match live visual weight) ========== */
:root { --max: 1240px; }

section { padding: 4.5rem 0; }
.section-tight { padding: 2.25rem 0; }
.section-airy { padding: 5rem 0; }

h2 { font-size: clamp(1.65rem, 2.8vw, 2.15rem); margin: 0 0 0.85rem; }
.lede { font-size: 1.08rem; margin: 0 0 2rem; max-width: 58ch; }
.section-head { margin-bottom: 2.25rem; }

/* Taller heroes */
.hero { padding: 4.5rem 0 5rem; }
.hero--home,
.hero--with-form {
  min-height: min(72vh, 720px);
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 4rem 0;
}
.hero--home::before,
.hero--with-form.hero--image::before {
  background: linear-gradient(105deg, rgba(7, 22, 40, 0.94) 0%, rgba(11, 35, 64, 0.82) 48%, rgba(11, 35, 64, 0.55) 100%);
}
.hero h1 {
  font-size: clamp(2.35rem, 4.2vw, 3.45rem);
  max-width: 16ch;
  letter-spacing: -0.02em;
  line-height: 1.12;
}
.hero--with-form h1 { max-width: 14ch; }
.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 38ch;
  line-height: 1.55;
  opacity: 0.94;
}
.hero--compact {
  min-height: 320px;
  padding: 3.75rem 0 4rem;
  display: flex;
  align-items: center;
}
.hero--compact h1 { font-size: clamp(1.9rem, 3.2vw, 2.75rem); max-width: 22ch; }
.hero--tall {
  min-height: 380px;
  padding: 4.25rem 0;
  display: flex;
  align-items: center;
}

/* Hero + quote form */
.hero-with-form {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}
.hero-with-form__copy .check-list {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.hero-with-form__copy .check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: 0.98rem;
  opacity: 0.95;
  max-width: 42ch;
}
.hero-with-form__copy .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.quote-card {
  background: #fff;
  color: var(--ink);
  border-radius: 14px;
  padding: 1.65rem 1.75rem 1.85rem;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28), 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.quote-card h2,
.quote-card h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin: 0 0 0.35rem;
}
.quote-card .quote-sub {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0 0 1.1rem;
}
.quote-card label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0.55rem 0 0.28rem;
}
.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  padding: 0.62rem 0.75rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 0.92rem;
  background: #fafbfd;
  color: var(--ink);
}
.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
  border-color: var(--orange);
  background: #fff;
  outline: none;
}
.quote-card .form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 0.75rem;
}
.quote-card .btn {
  width: 100%;
  margin-top: 1rem;
  padding: 0.85rem 1.2rem;
  font-size: 1rem;
}
.quote-card .quote-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}
.quote-card--inline {
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.quote-band {
  background: var(--bg-soft);
  padding: 4.5rem 0;
}
.quote-band .quote-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Service mosaic — dense image tiles */
.service-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.85rem;
}
.service-tile {
  position: relative;
  display: block;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 35, 64, 0.12);
  isolation: isolate;
}
.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.service-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(7, 22, 40, 0.88) 100%);
  z-index: 1;
}
.service-tile__label {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  color: #fff;
}
.service-tile__label strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.service-tile__label span {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.service-tile:hover img { transform: scale(1.06); }
.service-tile:hover::after {
  background: linear-gradient(180deg, transparent 20%, rgba(240, 90, 40, 0.75) 100%);
}
.service-tile--tall { height: 240px; }
.service-tile--featured {
  grid-column: span 2;
  height: 260px;
}
@media (max-width: 700px) {
  .service-tile--featured { grid-column: span 1; height: 220px; }
}

.pick-cue {
  text-align: center;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 1.5rem;
}

/* Stat icons row */
.stat-icons {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  text-align: center;
}
.stat-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.35rem;
}
.stat-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
.stat-icon h3 {
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.02em;
}
.stat-icon p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  max-width: 14ch;
  line-height: 1.35;
}
.section-navy .stat-icon h3 { color: #fff; }
.section-navy .stat-icon p { color: rgba(255,255,255,0.75); }

/* Quality standards */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.quality-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.quality-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.quality-card img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto 1rem;
}
.quality-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.quality-card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* Richer biomedical */
.medical-band--hero {
  padding: 5rem 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(14, 116, 144, 0.35), transparent 55%),
    linear-gradient(135deg, #062033 0%, #0a2744 45%, #0e3a4a 100%);
  color: #fff;
}
.medical-band--hero h2 { color: #fff; font-size: clamp(1.75rem, 3vw, 2.35rem); }
.medical-band--hero .lede { color: rgba(255,255,255,0.85); font-size: 1.08rem; }
.medical-band--hero .media-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  border: 2px solid rgba(255,255,255,0.12);
}
.med-proof {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.55rem 0.9rem;
  background: rgba(14, 116, 144, 0.35);
  border: 1px solid rgba(159, 231, 243, 0.35);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #c8f4fb;
}

/* Process steps (medical + services) */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
}
.process-step {
  background: #fff;
  border: 1px solid var(--med-line, var(--line));
  border-radius: 12px;
  padding: 1.5rem 1.25rem 1.5rem;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: var(--med-teal, var(--orange));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}
.process-step h3 { font-size: 1.05rem; margin: 0 0 0.4rem; color: var(--navy); }
.process-step p { margin: 0; color: var(--muted); font-size: 0.92rem; }

.equip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
}
.equip-chip {
  background: var(--med-mint, var(--bg-soft));
  border: 1px solid var(--med-line, var(--line));
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--med-navy, var(--navy));
  text-align: center;
}

/* Cities denser */
.metro-feature {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.city-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.35rem 1.25rem;
  box-shadow: var(--shadow);
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 110px;
}
.city-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.city-card h3 { font-size: 1.15rem; color: var(--navy); margin: 0; }
.city-grid-quiet {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.65rem;
}
.city-grid-quiet .city-card {
  min-height: 72px;
  padding: 0.9rem 1rem;
  box-shadow: none;
}

/* CTA presence */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.25rem 2.5rem;
  border-radius: 14px;
}
.cta-band h2 { font-size: clamp(1.45rem, 2.2vw, 1.85rem); margin: 0 0 0.4rem; }
.cta-band p { margin: 0; opacity: 0.9; max-width: 48ch; }
.cta-band--orange {
  background: linear-gradient(120deg, var(--navy) 0%, #1a3a5c 60%, #c44a20 160%);
  color: #fff;
}
.cta-band--orange h2 { color: #fff; }
.btn-lg { padding: 0.95rem 1.65rem; font-size: 1.05rem; }

.accreditation-strip { background: transparent !important; border: 0 !important; box-shadow: none !important; border-radius: 0 !important; max-width: none !important; padding: 0 !important; }
.accreditation-strip img { display: none !important; }
.acc-caption {
  max-width: 36ch;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.4;
}

.testimonial {
  margin: 2.5rem 0 0;
  padding: 2rem 2.25rem;
  background: rgba(255,255,255,0.08);
  border-left: 4px solid var(--orange);
  border-radius: 0 12px 12px 0;
}
.testimonial blockquote p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  font-weight: 500;
}

.split { gap: 2.5rem; }
.map-panel {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
}

/* Form card (contact page) weight */
.form-card {
  background: #fff;
  border-radius: 14px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

@media (max-width: 980px) {
  .hero-with-form { grid-template-columns: 1fr; gap: 2rem; }
  .hero--home, .hero--with-form { min-height: 0; }
  .stat-icons { grid-template-columns: repeat(3, 1fr); }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .metro-feature { grid-template-columns: repeat(2, 1fr); }
  .quote-band .quote-layout { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .stat-icons { grid-template-columns: repeat(2, 1fr); }
  .quality-grid { grid-template-columns: 1fr; }
  .quote-card .form-grid-2 { grid-template-columns: 1fr; }
  .metro-feature { grid-template-columns: 1fr; }
  .service-tile { height: 180px; }
}

/* Density append — metro cards + helpers */
.section-head.center { text-align: center; }
.section-head.center .lede { margin-inline: auto; }
.city-card--metro p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
  flex: 1;
}
.city-card--metro { min-height: 140px; }
.nationwide-band {
  margin-top: 1.75rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.nationwide-band img { display: block; width: 100%; height: auto; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 1.75rem; }
.text-center { text-align: center; }
.acc-caption { display: none !important; }


/* ========== RESPONSIVE HARDENING (Izzy 2026-09-21) ========== */
html, body {
  overflow-x: clip;
  max-width: 100%;
}
img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}

/* Dense layouts that were desktop-only */
.service-mosaic {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
}
.hub-mosaic {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 200px), 1fr));
  gap: 0.85rem;
}

@media (max-width: 1100px) {
  .nav-mega {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    min-width: 0 !important;
    max-width: min(92vw, 640px) !important;
    left: auto;
    right: 0;
  }
  .nav-dropdown {
    min-width: min(240px, 70vw);
  }
}

@media (max-width: 980px) {
  .hero-with-form,
  .quote-band .quote-layout,
  .acc-band__inner,
  .medical-band .split,
  .split,
  .split--uneven,
  .split--uneven-rev,
  .split--reverse {
    grid-template-columns: 1fr !important;
  }
  .stat-icons { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .quality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .metro-feature { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .process-steps { grid-template-columns: 1fr !important; }
  .services-asym { grid-template-columns: 1fr !important; }
  .proof-board { grid-template-columns: 1fr !important; }
}

/* Tablet / phone: hamburger chrome */
@media (max-width: 1099px) and (min-width: 901px) {
  .topbar-actions .topbar-phone span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  .topbar-actions .topbar-phone {
    width: 42px;
    height: 42px;
    padding: 0;
  }
}

@media (max-width: 900px) {
  .nav,
  .topbar-cta { display: none !important; }
  .topbar-phone { display: inline-flex !important; }
  .nav-toggle { display: inline-flex !important; }
  .nav-dropdown,
  .nav-mega { display: none !important; } /* desktop flyouts off on mobile */

  .grid-3,
  .grid-2,
  .related,
  .foot-grid,
  .cta-band,
  .stats,
  .job-card,
  .form-grid-2,
  .hero-grid {
    grid-template-columns: 1fr !important;
  }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }

  .service-tile--featured,
  .hub-tile--featured {
    grid-column: span 1 !important;
  }

  .hero--home,
  .hero--with-form {
    min-height: 0 !important;
    padding: 2.5rem 0 2.75rem;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .hero-actions .btn { width: auto; }

  .wrap { width: min(100% - 1.5rem, var(--max)); }

  .cert-logos,
  .trust-logos {
    gap: 0.75rem 1rem !important;
  }
  .cert-logos--lg img,
  .trust-logos img {
    max-height: 56px !important;
    max-width: 96px !important;
  }

  .topbar-inner { min-height: 64px; }
  .logo img { height: 34px; }
}

@media (max-width: 700px) {
  .service-mosaic,
  .hub-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .service-tile,
  .hub-tile { height: 160px; }
}

@media (max-width: 560px) {
  .stat-icons { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .quality-grid,
  .grid-4,
  .metro-feature { grid-template-columns: 1fr !important; }

  .service-mosaic,
  .hub-mosaic {
    grid-template-columns: 1fr !important;
  }
  .service-tile,
  .hub-tile { height: 200px; }

  .quote-card .form-grid-2,
  .form-grid-2 { grid-template-columns: 1fr !important; }

  section { padding-block: 2.5rem; }
  .hero { padding: 2.25rem 0 2.5rem; }
  .hero h1 { font-size: clamp(1.65rem, 7vw, 2.25rem); }

  .btn-lg { width: 100%; text-align: center; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; min-width: 140px; }
}

/* Touch: make mobile accordion usable */
@media (max-width: 900px) {
  .mobile-nav .wrap {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
  }
}


/* ========== RESPONSIVE POLISH 2 (hubs + tablet mosaics) ========== */
html, body {
  overflow-x: hidden; /* fallback where clip unsupported */
  overflow-x: clip;
  max-width: 100%;
}

/* Alias hub-tile to service-tile density if used */
.hub-tile {
  position: relative;
  display: block;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(11, 35, 64, 0.12);
  isolation: isolate;
}
.hub-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.hub-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(7, 22, 40, 0.88) 100%);
  z-index: 1;
}
.hub-tile__label {
  position: absolute;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 2; color: #fff;
}
.hub-tile__label strong {
  display: block; font-size: 1.05rem; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 0.2rem;
}
.hub-tile__label span {
  font-size: 0.78rem; font-weight: 600; opacity: 0.85;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.hub-tile:hover img { transform: scale(1.06); }
.hub-tile:hover::after {
  background: linear-gradient(180deg, transparent 20%, rgba(240, 90, 40, 0.75) 100%);
}
.hub-tile--tall { height: 240px; }
.hub-tile--featured { grid-column: span 2; height: 260px; }

@media (max-width: 900px) {
  /* Keep desktop chrome dead — never re-show after earlier hide */
  .nav,
  .topbar-cta { display: none !important; visibility: hidden !important; }
  .topbar-actions .topbar-phone {
    display: inline-flex !important;
    visibility: visible !important;
    width: auto;
    height: auto;
    padding: 0.5rem 0.75rem;
  }
  .topbar-actions .topbar-phone span {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
  }
  .nav-toggle { display: inline-flex !important; visibility: visible !important; }

  .service-mosaic,
  .hub-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .service-tile--featured,
  .hub-tile--featured {
    grid-column: span 2 !important;
    height: 220px;
  }
  .hero--compact { min-height: 0; padding: 2.75rem 0 3rem; }
  .acc-band { padding: 1.75rem 0 2rem; }
  .acc-band__copy h2 { max-width: none; }
}

@media (max-width: 560px) {
  .service-tile--featured,
  .hub-tile--featured {
    grid-column: span 1 !important;
  }
  .service-mosaic,
  .hub-mosaic {
    grid-template-columns: 1fr !important;
  }
}


/* ========== MEDICAL PAGE TEMPLATES (Bio + PTA) ========== */
.hero--med-page {
  padding: 3.5rem 0 3.75rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(100deg, rgba(8, 24, 42, 0.94) 0%, rgba(8, 24, 42, 0.82) 28%, rgba(8, 24, 42, 0.38) 58%, rgba(8, 24, 42, 0.18) 100%),
    url("../assets/clinical-ward.webp") 62% center / cover no-repeat,
    #0a2744;
}
.hero--med-page.hero--med-bio {
  background:
    linear-gradient(100deg, rgba(8, 24, 42, 0.94) 0%, rgba(8, 24, 42, 0.82) 28%, rgba(8, 24, 42, 0.38) 58%, rgba(8, 24, 42, 0.18) 100%),
    url("../assets/services/biomedical.webp") 78% center / cover no-repeat,
    #0a2744;
}
.hero--med-page.hero--med-pta {
  background:
    linear-gradient(100deg, rgba(8, 24, 42, 0.94) 0%, rgba(8, 24, 42, 0.82) 28%, rgba(8, 24, 42, 0.38) 58%, rgba(8, 24, 42, 0.18) 100%),
    url("../assets/services/pta.webp") 42% center / cover no-repeat,
    #0a2744;
}
.hero--med-page::after {
  content: "";
  position: absolute;
  inset: auto -10% -45% 35%;
  height: 85%;
  background: radial-gradient(ellipse, rgba(224, 245, 249, 0.14), transparent 62%);
  pointer-events: none;
}
.hero--med-page .wrap { position: relative; z-index: 1; }
.hero--med-page h1 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
}
.hero--med-page .hero-lead {
  max-width: 62ch;
  opacity: 0.94;
}
.hero--med-page .chip-row { margin-top: 1.5rem; }
.hero--med-page .chip {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(159, 231, 243, 0.35);
  color: #e8fbff;
}

.med-media-frame {
  border: 1px solid var(--med-line);
  box-shadow: 0 18px 48px rgba(10, 39, 68, 0.12);
}
.med-media-frame img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.med-cover-grid { margin-top: 0.5rem; }
.med-cover-grid.grid-3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.med-cover-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 0.15rem;
  align-items: start;
  background: var(--med-mint);
  border: 1px solid var(--med-line);
  border-left: 3px solid var(--med-teal);
  padding: 0.85rem 0.95rem;
  box-shadow: none;
}
.section-med-soft .med-cover-card { background: #fff; }
.med-cover-card .icon {
  grid-row: 1 / span 2;
  width: 34px;
  height: 34px;
  margin: 0;
  border-radius: 8px;
  font-size: 0.75rem;
}
.med-cover-card h3 {
  margin: 0.05rem 0 0;
  font-size: 0.98rem;
}
.med-cover-card p {
  font-size: 0.84rem;
  line-height: 1.4;
}
.med-skin .med-cover-card .icon {
  background: var(--med-teal-soft);
  color: var(--med-teal);
}

.med-equip-grid { margin-top: 0.25rem; }
.med-equip-pill {
  background: var(--med-teal-soft);
  border-color: var(--med-line);
  color: var(--med-navy);
  font-weight: 650;
}

.med-footnote {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 68ch;
}

.med-feature-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr 1fr;
}
.med-feature-panel {
  background: var(--white);
  border: 1px solid var(--med-line);
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 6px 22px rgba(10, 39, 68, 0.05);
  border-top: 3px solid var(--med-teal);
}
.med-feature-panel h3 {
  margin: 0 0 0.55rem;
  color: var(--med-navy);
  font-size: 1.15rem;
}
.med-feature-panel p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.med-feature-panel p:last-child { margin-bottom: 0; }

.med-device-grid,
.med-stream-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0.5rem;
}
.med-device-card,
.med-stream-card {
  background: var(--white);
  border: 1px solid var(--med-line);
  border-top: 3px solid var(--med-teal);
  border-radius: 14px;
  padding: 1.25rem 1.2rem;
  box-shadow: 0 6px 22px rgba(10, 39, 68, 0.05);
  color: inherit;
}
.med-device-card {
  display: block;
  min-height: 0;
}
.med-device-card img {
  display: block;
  width: calc(100% + 2.4rem);
  height: 168px;
  margin: -1.25rem -1.2rem 0.9rem;
  object-fit: cover;
  border-radius: 11px 11px 0 0;
}
.med-feature-panel img {
  display: block;
  width: calc(100% + 2.8rem);
  height: 190px;
  margin: -1.5rem -1.4rem 0.95rem;
  object-fit: cover;
  border-radius: 11px 11px 0 0;
}
.med-device-card h3,
.med-stream-card h3 {
  margin: 0 0 0.45rem;
  color: var(--med-navy);
  font-size: 1.08rem;
}
.med-device-card h3:last-child { margin-bottom: 0; }
.med-stream-card p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.med-stream-card p:last-child { margin-bottom: 0; }
.med-stream-card img {
  display: block;
  width: calc(100% + 2.4rem);
  height: 148px;
  margin: -1.25rem -1.2rem 0.9rem;
  object-fit: cover;
  border-radius: 11px 11px 0 0;
}
a.med-stream-card {
  display: block;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
a.med-stream-card:hover {
  border-color: var(--med-teal);
  transform: translateY(-2px);
}
.med-stream-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
}
.med-stream-links a {
  color: var(--med-teal);
  font-weight: 650;
  font-size: 0.88rem;
}
.med-prose p { max-width: 68ch; }

.med-callout-band {
  background: linear-gradient(115deg, var(--med-navy) 0%, #0c3a52 55%, var(--med-teal) 120%);
  color: #fff;
  padding: 3rem 0;
}
.med-callout-inner { max-width: 72ch; }
.med-callout-band h2 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}
.med-callout-band p {
  margin: 0;
  opacity: 0.9;
  font-size: 1.02rem;
  line-height: 1.55;
}

.med-process-band .lede { color: rgba(255, 255, 255, 0.78); }
.med-process-band h2 { color: #fff; }
.med-process-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 0.5rem;
}
.med-process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
}
.med-process-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  color: #fff;
}
.med-process-card p {
  margin: 0;
  opacity: 0.82;
  font-size: 0.92rem;
  line-height: 1.45;
}
.med-process-card .step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--med-teal);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.med-skin .quality-card,
.med-quality-card {
  border-color: var(--med-line);
}
.med-skin .quality-card h3,
.med-quality-card h3 {
  color: var(--med-navy);
}
.med-skin .quality-card:hover,
.med-quality-card:hover {
  border-color: var(--med-teal);
}
.med-quality-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.med-related-card {
  border-color: var(--med-line);
  display: block;
  text-decoration: none;
  color: inherit;
  transition: 0.15s ease;
}
.med-related-card:hover {
  border-color: var(--med-teal);
  transform: translateY(-2px);
}
.med-related-card h3 {
  color: var(--med-navy);
  margin: 0 0 0.4rem;
}
.med-related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-band--med {
  background:
    linear-gradient(120deg, rgba(10, 39, 68, 0.97) 0%, rgba(12, 58, 82, 0.95) 55%, rgba(14, 116, 144, 0.9) 100%),
    var(--med-navy);
  color: #fff;
  padding: 3.5rem 0;
}
.quote-band--med h2 { color: #fff; }
.quote-band--med .lede { color: rgba(255, 255, 255, 0.82); }
.quote-band--med .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.quote-band--med .btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.quote-band--med .quote-card {
  border: 1px solid var(--med-line);
}
.quote-band--med .quote-card h3 { color: var(--med-navy); }
.quote-band--med .quote-card .btn-teal { width: 100%; }

.section-med-soft { background: var(--med-mint); }
.section-med-navy { background: var(--med-navy); color: #fff; }

@media (max-width: 900px) {
  .med-feature-grid,
  .med-process-grid,
  .med-device-grid,
  .med-stream-grid {
    grid-template-columns: 1fr;
  }
  .hero--med-page { padding: 2.75rem 0 3rem; }
  .med-cover-grid.grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .med-cover-grid.grid-3 {
    grid-template-columns: 1fr;
  }
  .med-quality-grid.quality-grid {
    grid-template-columns: 1fr;
  }
  .med-related-grid.grid-3 {
    grid-template-columns: 1fr;
  }
}

/* ========== Professional pass: one set of sections, site-wide ==========
   Hero, content block, check list, card grid, split, cert band, quote/CTA.
   Lists in body copy use the same check-sheet as the clinical cover cards.
*/
.hero--image::before {
  background: linear-gradient(100deg, rgba(8, 24, 42, 0.94) 0%, rgba(8, 24, 42, 0.8) 30%, rgba(8, 24, 42, 0.4) 64%, rgba(8, 24, 42, 0.2) 100%);
}
.hero h1 { letter-spacing: -0.03em; }
.hero-lead {
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.55;
}
h2 { letter-spacing: -0.02em; }
.section-head { margin-bottom: 1.35rem; }
.content-block .section-head h2,
.split--photo > div > h2 { max-width: 28em; }

.prose ul.list-rows { grid-template-columns: 1fr; }
.prose ul.list-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}
.prose ul.list-compact > li { padding: 0.62rem 0.75rem; }

.image-band { padding: 0.25rem 0; }
.image-band__frame {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.image-band__frame img {
  display: block;
  width: 100%;
  height: min(420px, 42vw);
  object-fit: cover;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.15rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}
.hero-proof li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-proof .li-icon {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.li-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(240, 90, 40, 0.12);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.med-skin .li-icon { background: var(--med-teal-soft); color: var(--med-teal); }
.prose h3 { display: flex; align-items: center; gap: 0.65rem; }
.prose ul > li { display: flex; align-items: flex-start; gap: 0.7rem; }

.coverage {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.25rem;
  align-items: center;
}
.coverage-map { background: #050d18; }
.coverage-map img { aspect-ratio: 16 / 10; object-fit: contain; background: #050d18; }
.prose .coverage-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.prose .coverage-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0;
  padding: 0.65rem 0.7rem;
}
.coverage-list strong { display: block; color: var(--navy); font-size: 0.9rem; }
.coverage-list p { margin: 0.15rem 0 0; font-size: 0.8rem; line-height: 1.4; max-width: none; }
.coverage-list a { color: var(--orange); font-weight: 600; }

.prose ul,
.prose ol {
  list-style: none;
  margin: 0.35rem 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}
.prose li {
  margin: 0;
  padding: 0.8rem 0.95rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.45;
}
.section-soft .prose li,
.section-med-soft .prose li { background: #fff; }
.med-skin .prose li { border-left-color: var(--med-teal); }
.prose li:only-child { grid-column: 1 / -1; }
.prose ol { counter-reset: sheet; }
.prose ol > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
}
.prose ol > li::before {
  counter-increment: sheet;
  content: counter(sheet, decimal-leading-zero);
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(240, 90, 40, 0.12);
}
.med-skin .prose ol > li::before {
  color: var(--med-teal);
  background: var(--med-teal-soft);
}
.split .prose ul,
.split .prose ol { grid-template-columns: 1fr; }
.prose li a { color: var(--orange); }
.med-skin .prose li a { color: var(--med-teal); }

.cta-band {
  padding: 2.1rem 2.15rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.cta-band h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -0.02em;
  max-width: 18ch;
}
.cta-band p { max-width: 46ch; font-size: 1.02rem; line-height: 1.5; opacity: 0.92; }

.quote-card input,
.quote-card select,
.quote-card textarea,
.form-card input,
.form-card select,
.form-card textarea { min-height: 46px; }
.quote-card .btn,
.form-card .btn { min-height: 48px; font-size: 1rem; }

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.med-skin .btn:focus-visible,
.med-skin a:focus-visible { outline-color: var(--med-teal); }

.quality-card,
.city-card,
.card {
  border-radius: 12px;
}
.quality-card { border-left: 3px solid var(--orange); }
.med-quality-card { border-left-color: var(--med-teal); }

.split--photo { align-items: start; }
.split--photo .media-frame { position: sticky; top: 5.5rem; }

@media (max-width: 800px) {
  .prose ul,
  .prose ol,
  .coverage,
  .prose .coverage-list { grid-template-columns: 1fr; }
  .cta-band { padding: 1.5rem 1.25rem; }
  .split--photo .media-frame { position: static; }
}

/* ========== Finish pass: one visual system ========== */
section { padding: 4.25rem 0; }
.section-tight { padding: 3.25rem 0 3.5rem; }
.section-airy { padding: 4.5rem 0; }
.hero { padding: 4.25rem 0 4.5rem; }
.hero--home {
  min-height: 0;
  padding: 4.5rem 0 4.75rem;
}
.hero--home .hero-lead {
  max-width: 46ch;
  font-size: 1.12rem;
  line-height: 1.55;
}
.hero h1 { letter-spacing: -0.035em; line-height: 1.08; }
h2 { letter-spacing: -0.025em; line-height: 1.15; }
.lede { line-height: 1.6; }

.nav-link {
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
}
.nav-link:hover,
.nav-link.is-active { background: rgba(255, 255, 255, 0.08); }
.nav-dropdown,
.nav-mega { border-top: 3px solid var(--orange); }
.med-skin .nav-dropdown,
.med-skin .nav-mega { border-top-color: var(--med-teal); }

.state-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}
.state-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.15rem 1.2rem;
  box-shadow: 0 8px 22px rgba(11, 35, 64, 0.05);
}
.state-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.city-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 650;
}
.city-chip--office {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.city-chip:hover { border-color: var(--orange); color: var(--orange); }
.city-chip--office:hover { background: var(--navy-2); border-color: var(--navy-2); color: #fff; }

.more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}
.more-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 650;
}
.more-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.service-mosaic {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.service-tile { height: 210px; border-radius: 14px; }
.service-tile--tall { height: 210px; }
.service-tile--featured { height: 280px; }
.service-tile img { object-position: center 35%; }
.service-tile:hover img { transform: scale(1.04); }
.service-tile:hover::after {
  background: linear-gradient(180deg, transparent 18%, rgba(11, 35, 64, 0.82) 100%);
}

.stat-icons { gap: 0.85rem; }
.stat-icon {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 0.7rem 1.2rem;
  box-shadow: 0 6px 18px rgba(11, 35, 64, 0.04);
}
.stat-icon h3 { font-size: 1.2rem; }
.stat-icon img { width: 52px; height: 52px; }

.quality-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-left: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(11, 35, 64, 0.06);
  text-align: left;
  padding: 1.35rem 1.2rem 1.45rem;
}
.quality-card img { margin-bottom: 0.15rem; }
.med-quality-card {
  border-top-color: var(--med-teal);
  border-color: var(--med-line);
  border-left-color: var(--med-line);
}

.city-card {
  border-radius: 14px;
  padding: 1.05rem 1.1rem;
  box-shadow: 0 6px 18px rgba(11, 35, 64, 0.04);
}
.city-card h3 { font-size: 1.12rem; letter-spacing: -0.02em; }
.city-card p { margin-top: 0.2rem; }

.section-proof { padding: 3.5rem 0; }
.section-proof .section-head { margin-bottom: 0.75rem; }
.section-proof .testimonial blockquote p {
  font-size: clamp(1.25rem, 2.1vw, 1.65rem);
  line-height: 1.4;
  letter-spacing: -0.02em;
  max-width: 28em;
}
.quote-band:not(.quote-band--med) {
  background:
    linear-gradient(110deg, var(--navy) 0%, var(--navy-2) 70%, #1a4568 100%);
  color: #fff;
  padding: 4.25rem 0;
}
.quote-band:not(.quote-band--med) h2,
.quote-band:not(.quote-band--med) .lede { color: #fff; }
.quote-band:not(.quote-band--med) .lede { opacity: 0.88; }
.quote-band:not(.quote-band--med) .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.quote-band:not(.quote-band--med) .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}

.medical-band--hero .lede { max-width: 48ch; }
.hero--med-page h1 { max-width: 16ch; }
.hero--med-page .hero-lead { font-size: 1.05rem; line-height: 1.55; }

footer { padding: 3.25rem 0 1.6rem; }
.foot-grid { gap: 2rem; }
footer h3 { letter-spacing: 0.08em; font-size: 0.78rem; }
footer a { transition: color 0.15s ease, opacity 0.15s ease; }

.btn { transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.mobile-acc-head { min-height: 48px; }
.mobile-acc-toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 1100px) {
  .service-mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .quality-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-icons { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  section { padding: 2.85rem 0; }
  .hero, .hero--home { padding: 2.75rem 0 3rem; }
  .hero-with-form,
  .quote-band .quote-layout,
  .split,
  .coverage { grid-template-columns: 1fr; }
  .service-mosaic { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-tile,
  .service-tile--tall,
  .service-tile--featured { height: 180px; }
  .service-tile--featured { grid-column: span 2; }
  .stat-icons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .image-band__frame img { height: 220px; }
}
@media (max-width: 560px) {
  .wrap { width: min(100% - 1.5rem, var(--max)); }
  .service-mosaic,
  .quality-grid,
  .stat-icons,
  .foot-grid,
  .state-board,
  .prose ul.list-compact { grid-template-columns: 1fr; }
  .service-tile--featured { grid-column: span 1; height: 200px; }
  .hero h1 { font-size: 1.85rem; }
  .quote-card { padding: 1.15rem 1rem 1.3rem; }
}

.page-home .hero--home.hero--image { background-position: 68% center; }
.page-home .hero--home.hero--image::before {
  background: linear-gradient(100deg, rgba(8, 24, 42, 0.94) 0%, rgba(8, 24, 42, 0.86) 42%, rgba(8, 24, 42, 0.45) 72%, rgba(8, 24, 42, 0.28) 100%);
}
.page-home .hero-phone {
  margin: 1.15rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-home .hero-phone a { color: #fff; border-bottom: 2px solid var(--orange); }
.page-home .home-stats .section-head { margin-bottom: 1.25rem; }
.page-home .home-stats .stat-icon {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0.25rem;
}
.page-home .home-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.page-home .home-close .lede { color: rgba(255, 255, 255, 0.88); max-width: 62ch; }
.page-home .office-list li {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
}
.page-home .office-list strong { color: var(--navy); }
.page-home .office-list a { display: inline; padding: 0; border: 0; font-weight: 650; }
.page-home .office-list span { color: var(--ink); }
.page-home .home-path {
  display: grid;
  background: #fff;
  border: 1px solid var(--med-line);
  border-radius: 16px;
  overflow: hidden;
  color: var(--med-navy);
  box-shadow: 0 12px 32px rgba(11, 35, 64, 0.06);
}
.page-home .home-path img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.page-home .home-path div { padding: 1.15rem 1.2rem 1.3rem; }
.page-home .home-path h3 { margin: 0 0 0.35rem; font-size: 1.2rem; letter-spacing: -0.02em; }
.page-home .home-path p { margin: 0; color: var(--muted); }
.page-home .home-path:hover { border-color: var(--med-teal); }
.page-home .home-places {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}
.page-home .home-places .lede + .lede { margin-top: 0.75rem; }
.page-home .state-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 1.15rem;
}
.page-home .state-mini article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem 0.85rem;
}
.page-home .state-mini h3 { margin: 0 0 0.25rem; font-size: 0.95rem; }
.page-home .state-mini p { margin: 0; font-size: 0.88rem; line-height: 1.45; }
.page-home .office-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}
.page-home .office-list a {
  display: inline;
  padding: 0;
  border: 0;
  color: var(--navy);
  font-weight: 650;
}
.page-home .office-list a:hover { color: var(--orange); }
.page-home .text-link { color: var(--orange); font-weight: 700; }
.page-home .home-record {
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3rem;
}
.page-home .home-record .media-frame { position: static; }
.page-home .home-record .media-frame img {
  aspect-ratio: 16 / 10;
  max-height: 300px;
  object-position: 42% center;
}
.page-home .home-service-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.page-home .home-service-notes article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.05rem 1.1rem;
}
.page-home .home-service-notes h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.page-home .home-service-notes p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.page-home .home-clinical-note { margin-top: 1.25rem; max-width: 70ch; }
.page-home .home-why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.page-home .home-why article {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.25rem;
}
.page-home .home-why h3 { margin: 0 0 0.4rem; font-size: 1.05rem; letter-spacing: -0.02em; }
.page-home .home-why p { margin: 0; color: var(--muted); }
.page-home .home-close { padding: 4.25rem 0 4.5rem; }
.page-home .home-close h2 { color: #fff; }
.page-home .home-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}
.page-home .home-close .testimonial {
  margin: 0;
  height: 100%;
  padding: 1.4rem 1.45rem 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 0;
  border-left: 3px solid var(--orange);
  border-radius: 12px;
  text-align: left;
}
.page-home .hero-with-form { align-items: start; }
.page-home .hero-with-form__copy .hero-lead { max-width: 48ch; font-size: 1.05rem; }
.page-home .hero-with-form__copy .hero-lead + .hero-lead {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.page-home .service-mosaic { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.page-home .service-tile--featured { grid-column: span 1; height: 210px; }
.page-home .home-service-notes { margin-top: 1.5rem; }
.page-home .more-links { margin-top: 1.35rem; }
.page-home .home-industry-links { margin-top: 0.25rem; }
.page-home .home-industry-links a {
  min-width: 9.5rem;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff;
}
.page-home .home-record .lede + .lede { margin-top: 0.85rem; }
.page-home .home-stats__lead { max-width: 68ch; margin: 0 0 1.35rem; }
.page-home .home-work {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.page-home .home-work-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(11, 35, 64, 0.06);
}
.page-home .home-work-card img { width: 100%; height: 190px; object-fit: cover; }
.page-home .home-work-card div { padding: 1.05rem 1.1rem 1.2rem; }
.page-home .home-work-card h3 { margin: 0 0 0.4rem; font-size: 1.08rem; }
.page-home .home-work-card p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.5; }
.page-home .home-work-card:hover { border-color: var(--orange); }
.page-home .home-clinical {
  display: grid;
  grid-template-columns: minmax(16rem, 22rem) minmax(0, 1fr);
  gap: 1.25rem 1.75rem;
  align-items: start;
}
.page-home .home-clinical .home-paths { grid-template-columns: 1fr; gap: 0.75rem; }
.page-home .home-clinical .home-path {
  grid-template-columns: 150px minmax(0, 1fr);
  align-items: stretch;
}
.page-home .home-clinical .home-path img { height: 100%; min-height: 148px; }
.page-home .home-clinical-note {
  grid-column: 1 / -1;
  margin: 0;
  max-width: none;
  padding: 1rem 1.15rem;
  background: var(--med-mint);
  border: 1px solid var(--med-line);
  border-radius: 12px;
}
.page-home .home-ind-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.page-home .home-ind-tile {
  position: relative;
  display: block;
  height: 190px;
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
}
.page-home .home-ind-tile img { width: 100%; height: 100%; object-fit: cover; }
.page-home .home-ind-tile strong {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.9rem 0.8rem;
  background: linear-gradient(transparent, rgba(8, 24, 42, 0.82));
  font-size: 1.05rem;
}
.page-home .home-why {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}
.page-home .home-why article {
  display: block;
  grid-column: span 2;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.15rem 1.15rem 1.25rem;
}
.page-home .home-why article:nth-child(4) { grid-column: 2 / span 2; }
.page-home .home-why article:nth-child(5) { grid-column: 4 / span 2; }
.page-home .home-close .testimonial { padding: 1.75rem 1.7rem 1.55rem; }
.page-home .home-close .testimonial blockquote p {
  font-size: 1.14rem;
  line-height: 1.5;
}
.page-home .home-close .section-head { margin-bottom: 1.5rem; }
.page-home .home-close h2 { max-width: 18em; }
@media (max-width: 900px) {
  .page-home .home-work,
  .page-home .home-clinical,
  .page-home .home-ind-tiles,
  .page-home .state-mini,
  .page-home .home-why { grid-template-columns: 1fr; }
  .page-home .home-why article,
  .page-home .home-why article:nth-child(4),
  .page-home .home-why article:nth-child(5) { grid-column: auto; }
  .page-home .home-clinical .home-path { grid-template-columns: 1fr; }
  .page-home .home-clinical .home-path img { height: 160px; min-height: 0; }
}
.page-home .home-close .testimonial blockquote p {
  font-size: 1.02rem;
  line-height: 1.55;
  letter-spacing: 0;
  font-weight: 500;
}
.page-home .home-close figcaption { align-items: flex-start; margin-top: 0.35rem; }
@media (max-width: 900px) {
  .page-home .home-paths,
  .page-home .home-places,
  .page-home .home-service-notes,
  .page-home .home-why,
  .page-home .home-quotes { grid-template-columns: 1fr; }
  .page-home .home-path img { height: 180px; }
  .page-home .service-mosaic,
  .page-home .home-service-notes { grid-template-columns: 1fr; }
  .page-home .home-why article { grid-template-columns: 1fr; gap: 0.4rem; }
}
