/* ── Reset & Base ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1B3A5C;
  --teal:        #1A9E96;
  --teal-light:  #E6F7F6;
  --teal-mid:    #5EC4BC;
  --cream:       #F7F5EE;
  --cream-dark:  #EDE9DF;
  --gold:        #D4A72C;
  --slate:       #283442;
  --slate-mid:   #4A5A6B;
  --slate-light: #8A9BB0;
  --white:       #FFFFFF;
  --border:      #DDD9CF;
  --green:       #2E7D32;
  --amber:       #E67E22;
  --red:         #C0392B;
  --green-light: #E8F5E9;
  --amber-light: #FEF5E7;
  --red-light:   #FDECEC;
  --font-head:   'Manrope', sans-serif;
  --font-body:   'Inter', sans-serif;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--cream);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: #158a83; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9375rem;
  border-radius: 8px;
  padding: 14px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary   { background: var(--navy);  color: var(--white); }
.btn-primary:hover { background: #14304f; color: var(--white); }
.btn-teal      { background: var(--teal);  color: var(--white); }
.btn-teal:hover { background: #158a83; color: var(--white); }
.btn-outline   { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); color: var(--white); }
.btn-ghost     { background: transparent; color: var(--navy); border: 2px solid var(--border); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-sm        { padding: 8px 18px; font-size: .875rem; }

/* ── Header ──────────────────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.1;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { width: 40px; height: 46px; flex-shrink: 0; }
.logo-wordmark { display: flex; flex-direction: row; gap: 4px; align-items: baseline; line-height: 1; }
.logo-care  { color: var(--navy); font-size: 1.0625rem; font-weight: 800; }
.logo-safety { color: var(--teal); font-size: 1.0625rem; font-weight: 800; }
.logo-check { color: var(--navy); font-size: 1.0625rem; font-weight: 800; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.primary-nav li > a:not(.btn) {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .875rem;
  color: var(--slate-mid);
  transition: color .2s;
}
.primary-nav li > a:not(.btn):hover { color: var(--navy); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  font-size: .8125rem !important;
  padding: 8px 18px !important;
  border-radius: 6px !important;
  transition: background .2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── Sub-brand Bar ───────────────────────────────────────────────────────── */
#subbrand-bar {
  background: var(--navy);
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subbrand-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}
.subbrand-icon { display: flex; align-items: center; }
.subbrand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .875rem;
  color: var(--white);
  letter-spacing: .01em;
}
.subbrand-name .subbrand-accent { color: var(--teal-mid); }
.subbrand-divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,.2);
  margin: 0 2px;
}
.subbrand-tagline {
  font-family: var(--font-body);
  font-size: .625rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ── Hero Section ────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #1B3A5C 0%, #1A4A5C 50%, #1A6B6A 100%);
  padding: 72px 24px 88px;
  text-align: center;
}
.hero-label {
  font-family: var(--font-head);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--white);
  line-height: 1.15;
  margin: 0 auto 14px;
  max-width: 680px;
}
.hero h1 .accent { color: var(--teal-mid); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255,255,255,.68);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* Search Bar */
.search-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  padding: 7px;
  max-width: 720px;
  margin: 0 auto 12px;
}
.search-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
}
.search-input-wrap svg { color: var(--slate-light); flex-shrink: 0; }
.search-input-wrap input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--slate);
  width: 100%;
  padding: 13px 0;
  background: transparent;
}
.search-input-wrap input::placeholder { color: var(--slate-light); }
.search-select {
  border: none;
  border-radius: 8px;
  padding: 0 12px;
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--slate);
  background: var(--cream);
  outline: none;
  cursor: pointer;
  min-width: 120px;
}
/* State select needs a little extra room for "Washington DC" */
.search-select[name=state] { min-width: 140px; }
.search-btn {
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.search-btn:hover { background: #158a83; }

.hero-urgency {
  font-family: var(--font-body);
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  margin: 0 auto 24px;
  text-align: center;
}
.hero-urgency a {
  color: rgba(255,255,255,.75);
  text-decoration: underline;
}
.hero-urgency a:hover { color: var(--white); }

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  max-width: 680px;
  margin: 0 auto;
}
.trust-pill {
  font-family: var(--font-body);
  font-size: .75rem;
  color: rgba(255,255,255,.58);
  display: flex;
  align-items: center;
  gap: 6px;
}
.trust-pill::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-mid);
  flex-shrink: 0;
}

/* ── Urgency Banner ──────────────────────────────────────────────────────── */
.urgency-banner {
  background: var(--gold);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.urgency-banner-icon { font-size: 1.125rem; flex-shrink: 0; }
.urgency-banner-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  color: var(--navy);
}
.urgency-banner-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8125rem;
  color: var(--navy);
  text-decoration: underline;
  white-space: nowrap;
}
.urgency-banner-link:hover { color: #0f2a42; }

/* ── How It Works ────────────────────────────────────────────────────────── */
.section-how {
  background: var(--white);
  padding: 64px 40px;
}
.section-how .container { max-width: 1160px; margin: 0 auto; }
.section-eyebrow {
  font-family: var(--font-head);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}
.section-how h2,
.section-trust h2,
.section-checklist h2,
.section-sample h2,
.section-final-cta h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--navy);
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.step-card:hover {
  border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(26,158,150,.1);
}
.step-card--coming-soon {
  opacity: .72;
}
.step-card--coming-soon:hover {
  border-color: var(--border);
  box-shadow: none;
  cursor: default;
}
.step-coming-soon-banner {
  position: absolute;
  top: 22px;
  right: -34px;
  width: 140px;
  text-align: center;
  background: #E67E22;
  color: #fff;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 0;
  transform: rotate(45deg);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  pointer-events: none;
}
.step-number-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.step-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
}
.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.step-desc {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--slate-mid);
  line-height: 1.6;
}

/* ── Trust Section ───────────────────────────────────────────────────────── */
.section-trust {
  background: var(--cream);
  padding: 64px 40px;
}
.section-trust h2 {
  text-align: left;
  margin-bottom: 8px;
}
.section-trust .section-trust-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-mid);
  margin-bottom: 40px;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.trust-points { display: flex; flex-direction: column; gap: 16px; }
.trust-point {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.trust-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.trust-point-text { font-size: .9375rem; color: var(--slate-mid); line-height: 1.5; }
.trust-point-text strong {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .875rem;
  display: block;
  margin-bottom: 3px;
  color: var(--navy);
}

.signal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
}
.signal-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.signal-levels { display: flex; flex-direction: column; }
.signal-level {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.signal-level:last-child { border-bottom: none; }
.signal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.signal-dot.green  { background: var(--green); }
.signal-dot.yellow { background: #F9A825; }
.signal-dot.orange { background: var(--amber); }
.signal-dot.red    { background: var(--red); }
.signal-label { font-family: var(--font-head); font-weight: 600; color: var(--navy); min-width: 110px; font-size: .8125rem; }
.signal-desc  { color: var(--slate-mid); font-size: .8125rem; }
.signal-disclaimer {
  margin-top: 14px;
  padding: 10px 12px;
  background: var(--cream);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .6875rem;
  color: var(--slate-light);
  line-height: 1.5;
}

/* ── Email Capture / Checklist ───────────────────────────────────────────── */
.section-checklist {
  background: var(--white);
  padding: 64px 40px;
}
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.checklist-eyebrow {
  font-family: var(--font-head);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}
.section-checklist h2 {
  text-align: left;
  margin-bottom: 14px;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
}
.checklist-body {
  font-size: .9375rem;
  color: var(--slate-mid);
  margin-bottom: 24px;
  line-height: 1.7;
}
.checklist-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.checklist-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--slate);
}
.checklist-bullets li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.form-fine-print {
  font-size: .8125rem;
  color: var(--slate-light);
  margin-top: 12px;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.form-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 18px;
}
.wpforms-container { text-align: left; }
.wpforms-form .wpforms-field-label {
  font-family: var(--font-head) !important;
  font-weight: 600 !important;
  font-size: .875rem !important;
  color: var(--navy) !important;
  margin-bottom: 6px !important;
}
.wpforms-form input[type=text],
.wpforms-form input[type=email] {
  width: 100% !important;
  border: 1.5px solid var(--border) !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
  font-family: var(--font-body) !important;
  font-size: .9375rem !important;
  color: var(--slate) !important;
  background: var(--white) !important;
  outline: none !important;
  transition: border-color .2s !important;
}
.wpforms-form input:focus { border-color: var(--teal) !important; }
.wpforms-submit-container .wpforms-submit {
  background: var(--navy) !important;
  color: var(--white) !important;
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 13px 32px !important;
  font-size: .875rem !important;
  border: none !important;
  cursor: pointer !important;
  width: 100% !important;
  transition: background .2s !important;
}
.wpforms-submit-container .wpforms-submit:hover { background: var(--teal) !important; }

/* Fallback form */
.fallback-form input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--slate);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  display: block;
}
.fallback-form input:focus { border-color: var(--teal); }
.fallback-form .fallback-label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .875rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.fallback-form .fallback-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  border: none;
  border-radius: 8px;
  padding: 13px;
  cursor: pointer;
  transition: background .2s;
}
.fallback-form .fallback-submit:hover { background: var(--teal); }

/* ── Sample Report Card ──────────────────────────────────────────────────── */
.section-sample {
  background: var(--cream);
  padding: 64px 40px;
}
.section-sample h2 { text-align: center; }
.sample-subtext {
  text-align: center;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--slate-mid);
  margin-top: -28px;
  margin-bottom: 28px;
}

/* Facility Card */
.facility-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 180px 1fr 160px;
  align-items: stretch;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: box-shadow .2s, border-color .2s;
}
.facility-card:hover {
  box-shadow: 0 4px 28px rgba(0,0,0,.12);
  border-color: var(--teal-mid);
}

/* Photo column */
.card-photo-col {
  border-radius: 14px 0 0 14px;
  overflow: hidden;
  background: var(--cream-dark);
}
.card-photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--slate-light);
  font-size: .75rem;
  font-family: var(--font-body);
}

/* Info column */
.card-info-col {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
}
.badge-type {
  display: inline-block;
  color: var(--teal);
  font-family: var(--font-head);
  font-size: .625rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.card-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--navy);
  margin-bottom: 5px;
  line-height: 1.2;
}
.card-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--slate-light);
  margin-bottom: 10px;
}
.card-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
}
.stars { color: var(--gold); font-size: .9375rem; letter-spacing: 1px; }
.star-empty { color: var(--cream-dark); }
.star-score { font-family: var(--font-head); font-weight: 700; font-size: .875rem; color: var(--slate); }
.star-count { font-family: var(--font-body); font-size: .8125rem; color: var(--slate-light); }

/* Sub-scores */
.card-subscores-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.subscore-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.subscore-item:last-child { border-right: none; }
.si-label {
  font-family: var(--font-head);
  font-size: .5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--slate-light);
  margin-bottom: 4px;
}
.si-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1;
}
.si-grade {
  font-family: var(--font-head);
  font-size: .5625rem;
  font-weight: 700;
  margin-top: 3px;
}
.si-grade.excellent { color: var(--green); }
.si-grade.very-good { color: var(--teal); }

.card-cta-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8125rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  transition: background .2s;
  margin-top: auto;
}
.card-cta-btn:hover { background: var(--teal); color: var(--white); }

/* Score gauge column */
.card-gauge-col {
  padding: 22px;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.gauge-label {
  font-family: var(--font-head);
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-mid);
}
.score-gauge {
  width: 90px;
  height: 90px;
  position: relative;
}
.score-gauge svg { transform: rotate(-90deg); }
.score-gauge-track { fill: none; stroke: var(--cream-dark); stroke-width: 7; }
.score-gauge-fill  {
  fill: none;
  stroke: var(--teal);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 226.2;
  stroke-dashoffset: 22.6;
}
.score-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}
.score-out-of {
  font-family: var(--font-head);
  font-size: .4375rem;
  font-weight: 700;
  color: var(--slate-light);
  letter-spacing: .07em;
  text-transform: uppercase;
}
.score-badge {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .6875rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.score-badge.excellent { background: var(--green-light); color: var(--green); }
.score-badge.good { background: var(--teal-light); color: var(--teal); }
.score-badge.elevated { background: var(--amber-light); color: var(--amber); }
.score-badge.serious { background: var(--red-light); color: var(--red); }

.sample-all-link { text-align: center; margin-top: 8px; }

/* ── Watch Facility Section ───────────────────────────────────────────────── */
.section-watch--coming-soon {
  opacity: .72;
}
.watch-coming-soon-badge {
  display: inline-block;
  background: #E67E22;
  color: #fff;
  font-family: var(--font-body);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.watch-cta--waitlist {
  background: rgba(255,255,255,.15) !important;
  border: 1px solid rgba(255,255,255,.3) !important;
  color: rgba(255,255,255,.8) !important;
  cursor: default;
}
.watch-cta--waitlist:hover {
  background: rgba(255,255,255,.2) !important;
  transform: none !important;
  box-shadow: none !important;
}
.section-watch {
  background: var(--navy);
  padding: 64px 40px;
  text-align: center;
}
.section-watch .section-eyebrow {
  color: var(--teal-mid);
  margin-bottom: 12px;
}
.section-watch h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.section-watch .watch-body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.watch-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.watch-pill {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8125rem;
  color: var(--white);
}
.watch-cta {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(26,158,150,.3);
  transition: background .2s, box-shadow .2s;
  text-decoration: none;
  margin-bottom: 14px;
}
.watch-cta:hover { background: #158a83; color: var(--white); }
.watch-small {
  display: block;
  font-family: var(--font-body);
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
}

/* ── Final CTA ───────────────────────────────────────────────────────────── */
.section-final-cta {
  background: var(--cream);
  padding: 64px 40px;
  text-align: center;
}
.section-final-cta h2 { margin-bottom: 16px; }
.section-final-cta .cta-body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-mid);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
#site-footer {
  background: var(--navy);
  padding: 48px 40px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logo-wrap .site-logo { color: var(--white); }
.footer-logo-wrap .logo-care,
.footer-logo-wrap .logo-safety,
.footer-logo-wrap .logo-check { color: var(--white); }
.footer-tagline {
  font-family: var(--font-body);
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  margin-top: 12px;
  line-height: 1.6;
  max-width: 260px;
}
.footer-col-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .0em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-nav a {
  font-family: var(--font-body);
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  padding: 3px 0;
  display: block;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-family: var(--font-body);
  font-size: .6875rem;
  color: rgba(255,255,255,.3);
  max-width: 580px;
  line-height: 1.5;
}
.footer-copy {
  font-family: var(--font-body);
  font-size: .6875rem;
  color: rgba(255,255,255,.3);
  white-space: nowrap;
}
.footer-copy a { color: rgba(255,255,255,.3); }
.footer-copy a:hover { color: rgba(255,255,255,.6); }

/* ── AdSense Disclosure Bar ───────────────────────────────────────────────── */
.adsense-disclosure {
  background: #f5f5f4;
  border-bottom: 1px solid #e5e3de;
  padding: 7px 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #9a9590;
  text-align: center;
  line-height: 1.5;
}

/* ── Inner Page Hero ──────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1A4A5C 100%);
  padding: 48px 40px;
}
.page-hero .container { max-width: 1160px; margin: 0 auto; }
.page-breadcrumb {
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--teal);
  margin-bottom: 20px;
  display: block;
}
.page-breadcrumb:hover { color: var(--teal-mid); }
.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  color: var(--white);
  max-width: 700px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.page-hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  max-width: 560px;
  line-height: 1.65;
}

/* ── Sample Report Page ───────────────────────────────────────────────────── */
.report-hero-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, #1A4A5C 100%);
  padding: 40px;
}
.report-hero-inner { max-width: 1160px; margin: 0 auto; }

.report-card {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 32px;
  align-items: center;
}
.report-type-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-family: var(--font-head);
  font-size: .625rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.report-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.625rem;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.2;
}
.report-address {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--slate-mid);
  margin-bottom: 16px;
}
.report-meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.meta-pill {
  background: var(--cream);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--slate-mid);
}
.report-score-panel {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.report-score-label {
  font-family: var(--font-head);
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--slate-mid);
}
.report-gauge {
  width: 120px;
  height: 120px;
  position: relative;
}
.report-gauge svg { transform: rotate(-90deg); }
.rg-track { fill: none; stroke: var(--cream-dark); stroke-width: 8; }
.rg-fill   {
  fill: none;
  stroke: var(--teal);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 301.6;
  stroke-dashoffset: 30.16;
}
.report-gauge .score-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.report-gauge .score-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--navy);
  line-height: 1;
}
.report-gauge .score-out-of {
  font-family: var(--font-head);
  font-size: .5rem;
  font-weight: 700;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* Watch CTA bar */
.watch-cta-bar {
  background: var(--teal-light);
  border: 1px solid var(--teal);
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.watch-cta-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .875rem;
  color: var(--navy);
}
.watch-cta-btn {
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8125rem;
  padding: 9px 20px;
  border-radius: 7px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.watch-cta-btn:hover { background: #158a83; color: var(--white); }

/* Report body */
.report-body {
  background: var(--cream);
  padding: 40px;
}
.report-body-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.report-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.panel-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-header-icon { color: var(--teal); flex-shrink: 0; }
.panel-header-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--navy);
  flex: 1;
}
.panel-header-meta {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--slate-light);
}
.panel-body { padding: 20px; }

/* Score bars */
.score-bar-row { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.score-bar-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: .8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.score-bar-track {
  background: var(--border);
  border-radius: 4px;
  height: 8px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 4px;
}
.score-bar-fill.green { background: var(--green); }
.score-bar-fill.teal  { background: var(--teal); }
.score-info-box {
  background: var(--cream);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--slate-mid);
  line-height: 1.5;
}

/* Summary panel */
.summary-box {
  background: var(--cream);
  border-radius: 8px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 16px;
}
.summary-box strong { color: var(--navy); }
.source-links { display: flex; flex-direction: column; gap: 6px; }
.source-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--teal);
}
.source-link:hover { color: #158a83; text-decoration: underline; }

/* Citations */
.deficiency-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.deficiency-item {
  border-radius: 8px;
  padding: 12px 14px;
}
.deficiency-item.low    { border-left: 3px solid var(--green); background: var(--green-light); }
.deficiency-item.moderate { border-left: 3px solid var(--amber); background: var(--amber-light); }
.deficiency-item.serious { border-left: 3px solid var(--red); background: var(--red-light); }
.deficiency-code {
  font-family: var(--font-head);
  font-size: .625rem;
  font-weight: 700;
  color: var(--slate-mid);
  letter-spacing: .05em;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.deficiency-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .8125rem;
  color: var(--slate);
  margin-bottom: 4px;
}
.deficiency-desc {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--slate-mid);
  line-height: 1.5;
  margin-bottom: 8px;
}
.severity-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .625rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: var(--amber-light);
  color: var(--amber);
}

/* Questions */
.questions-list { list-style: none; display: flex; flex-direction: column; }
.question-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.question-item:last-child { border-bottom: none; }
.question-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.question-text {
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--slate);
  line-height: 1.55;
}

/* Sticky bottom bar */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -2px 16px rgba(0,0,0,.15);
  z-index: 999;
  transition: transform .3s;
  flex-wrap: wrap;
}
.sticky-bar.hidden { transform: translateY(100%); }
.sticky-bar-left {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .875rem;
  color: var(--white);
}
.sticky-bar-prices {
  display: flex;
  gap: 8px;
}
.sticky-price-btn {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8125rem;
  color: var(--white);
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  white-space: nowrap;
}
.sticky-price-btn:hover { background: var(--teal); color: var(--white); }
.sticky-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-bar-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  padding: 4px;
}
.sticky-bar-close:hover { color: var(--white); }
.sticky-bar-join {
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--teal-mid);
  text-decoration: underline;
}
.sticky-bar-join:hover { color: var(--white); }

/* Pricing */
.pricing-section {
  padding: 48px 40px;
  max-width: 1160px;
  margin: 0 auto;
}
.pricing-section h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}
.pricing-sub {
  text-align: center;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--slate-mid);
  margin-bottom: 32px;
}
.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.pricing-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  overflow: hidden;
  text-align: center;
  background: var(--white);
  position: relative;
}
.pricing-card.featured {
  border: 2px solid var(--teal);
}
.pricing-card--coming-soon {
  opacity: .78;
}
.pricing-most-popular {
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .625rem;
  letter-spacing: .05em;
  padding: 3px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 14px;
}
.pricing-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1;
}
.pricing-period {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--slate-mid);
  margin-bottom: 14px;
  display: block;
}
.pricing-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--slate-mid);
}
.pricing-features li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  border-radius: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}
.pricing-btn.navy { background: var(--navy); color: var(--white); border: none; }
.pricing-btn.navy:hover { background: #14304f; color: var(--white); }
.pricing-btn.teal { background: var(--teal); color: var(--white); border: none; }
.pricing-btn.teal:hover { background: #158a83; color: var(--white); }

/* Escalation Section */
.escalation-section {
  background: var(--red-light);
  border: 1px solid #EF9A9A;
  border-radius: 12px;
  padding: 28px 32px;
  margin: 0 40px 48px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.escalation-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
  margin-bottom: 14px;
}
.escalation-body {
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
}
.escalation-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.escalation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.escalation-card-icon { font-size: 1.25rem; margin-bottom: 8px; }
.escalation-card-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8125rem;
  color: var(--slate);
  margin-bottom: 6px;
}
.escalation-card-text {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--slate-mid);
  line-height: 1.55;
  margin-bottom: 10px;
}
.escalation-card-link {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
}
.escalation-card-link:hover { text-decoration: underline; }
.escalation-disclaimer {
  font-family: var(--font-body);
  font-size: .6875rem;
  color: var(--slate-light);
  font-style: italic;
  line-height: 1.5;
}

/* ── Maryland Facilities Page ──────────────────────────────────────────────── */
.md-facilities-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1A4A5C 100%);
  padding: 48px 40px;
}
.md-facilities-hero h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.625rem, 4vw, 2.25rem);
  color: var(--white);
  margin-bottom: 12px;
  max-width: 700px;
}
.md-facilities-hero .hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  max-width: 560px;
  margin: 0 0 28px;
  line-height: 1.65;
}
.coming-soon-bar {
  background: #FBF3DC;
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 14px 28px;
  margin: 24px auto;
  max-width: 1080px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .875rem;
  color: #7A5A00;
}
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 32px auto;
  padding: 0 40px;
}
.facility-list-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}
.facility-list-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  border-color: var(--teal-mid);
}
.facility-list-card .card-signal-bar {
  height: 4px;
}
.card-signal-bar.green   { background: var(--green); }
.card-signal-bar.teal    { background: var(--teal); }
.card-signal-bar.amber   { background: var(--amber); }
.card-signal-bar.red     { background: var(--red); }
.facility-list-card .flc-body {
  padding: 18px;
}
.flc-type {
  font-family: var(--font-head);
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.flc-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.3;
}
.flc-location {
  font-family: var(--font-body);
  font-size: .75rem;
  color: var(--slate-light);
  margin-bottom: 12px;
}
.flc-score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.flc-score {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
}
.flc-score-label {
  font-family: var(--font-body);
  font-size: .625rem;
  color: var(--slate-light);
  margin-top: 2px;
}
.flc-badge {
  font-family: var(--font-head);
  font-size: .5625rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.flc-badge.excellent { background: var(--green-light); color: var(--green); }
.flc-badge.good      { background: var(--teal-light);  color: var(--teal); }
.flc-badge.elevated  { background: var(--amber-light); color: var(--amber); }
.flc-badge.serious   { background: var(--red-light);   color: var(--red); }
.flc-alert-badge {
  background: var(--red-light);
  color: var(--red);
  font-family: var(--font-head);
  font-size: .625rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  display: inline-block;
}
.flc-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 9px;
  border-radius: 7px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  background: var(--navy);
  color: var(--white);
  transition: background .2s;
  text-decoration: none;
}
.flc-btn:hover { background: var(--teal); color: var(--white); }

.notify-strip {
  background: var(--navy);
  padding: 40px;
  text-align: center;
  margin-top: 40px;
}
.notify-strip p {
  font-family: var(--font-body);
  font-size: .9375rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.notify-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.notify-input {
  flex: 1;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: .875rem;
  color: var(--slate);
  min-width: 200px;
  outline: none;
}
.notify-btn {
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .875rem;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.notify-btn:hover { background: #158a83; }

.quick-links-section {
  padding: 40px;
  max-width: 1160px;
  margin: 0 auto;
}
.quick-links-section h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 20px;
  text-align: center;
}
.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.quick-link-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  border-top: 3px solid var(--teal);
  transition: box-shadow .2s;
}
.quick-link-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.quick-link-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9375rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.quick-link-card p {
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--slate-mid);
  line-height: 1.55;
  margin-bottom: 14px;
}
.quick-link-card a {
  font-family: var(--font-body);
  font-size: .8125rem;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 4px;
}
.quick-link-card a:hover { text-decoration: underline; }

/* ── Inner Page (generic) ────────────────────────────────────────────────── */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px;
}
.page-content h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.375rem;
  color: var(--navy);
  margin: 40px 0 12px;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--navy);
  margin: 28px 0 8px;
}
.page-content p { margin-bottom: 18px; font-size: .9375rem; line-height: 1.75; }
.page-content ul, .page-content ol {
  margin: 0 0 18px 22px;
  font-size: .9375rem;
  line-height: 1.75;
}
.page-content li { margin-bottom: 6px; }
.page-content a { color: var(--teal); font-weight: 500; }
.page-content a:hover { text-decoration: underline; }

/* ── Free Checklist Page Grid ────────────────────────────────────────────── */
.checklist-page-grid {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ── Hamburger open state (X animation) ──────────────────────────────────── */
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Table overflow (How It Works, About) ────────────────────────────────── */
.page-content table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-how,
  .section-trust,
  .section-checklist,
  .section-sample,
  .section-watch,
  .section-final-cta { padding: 48px 20px; }

  .steps-grid          { grid-template-columns: 1fr; gap: 16px; }
  .trust-grid          { grid-template-columns: 1fr; gap: 24px; }
  .checklist-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid         { grid-template-columns: 1fr; gap: 28px; }
  #site-footer         { padding: 40px 24px 0; }
  .footer-bottom       { flex-direction: column; gap: 8px; }

  /* Facility card stack */
  .facility-card { grid-template-columns: 1fr; }
  .card-photo-col { display: none; }
  .card-gauge-col {
    border-left: none;
    border-top: 1px solid var(--border);
    flex-direction: row;
    gap: 20px;
    padding: 16px 22px;
    justify-content: flex-start;
  }
  .card-subscores-row { grid-template-columns: repeat(2, 1fr); }

  /* Nav */
  .primary-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
  }
  .primary-nav.open { display: flex; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 48px 20px 56px; }
  .hero h1 { font-size: 1.75rem; }
  .search-row { flex-direction: column; }
  .search-select { min-width: unset; }

  /* Urgency banner */
  .urgency-banner { padding: 12px 20px; flex-direction: column; gap: 8px; text-align: center; }

  /* Report page */
  .report-card { grid-template-columns: 1fr; }
  .report-hero-wrap { padding: 24px 20px; }
  .report-body { padding: 20px; }
  .report-body-inner { grid-template-columns: 1fr; gap: 16px; }
  .watch-cta-bar { flex-direction: column; align-items: flex-start; }

  /* Sticky bar mobile */
  .sticky-bar {
    flex-direction: column;
    padding: 14px 20px;
    text-align: center;
  }
  .sticky-bar-left { display: none; }
  .sticky-bar-prices { display: none; }
  .sticky-bar-right { width: 100%; justify-content: center; }
  .sticky-bar::before {
    content: "Get Safety Snapshot — $9";
    display: block;
    background: var(--teal);
    color: var(--white);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: .9375rem;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    cursor: pointer;
  }

  /* Pricing */
  .pricing-row { grid-template-columns: 1fr; }
  .pricing-section { padding: 32px 20px; }
  .escalation-section { margin: 0 20px 32px; padding: 20px; }
  .escalation-cards { grid-template-columns: 1fr; }

  /* Facilities */
  .facilities-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .md-facilities-hero { padding: 32px 20px; }
  .quick-links-grid { grid-template-columns: 1fr; }
  .quick-links-section { padding: 32px 20px; }
  .notify-strip { padding: 32px 20px; }

  /* CTA buttons */
  .cta-buttons { flex-direction: column; align-items: center; }

  /* Free checklist page grid — stack to single column */
  .checklist-page-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px;
  }

  /* Page hero — reduce stacked padding */
  .page-hero { padding: 36px 0; }
  .page-hero .container { padding: 0 20px; }

  /* Sub-brand bar — hide tagline on small screens */
  .subbrand-tagline { display: none; }
  .subbrand-divider { display: none; }

  /* Footer nav — larger touch targets */
  .footer-nav a { padding: 8px 0; }

  /* Sticky bar mobile — update removed product copy */
  .sticky-bar::before {
    content: "Get the free safety checklist →";
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .watch-pills { flex-direction: column; align-items: center; }
  .sticky-bar-prices { flex-direction: column; gap: 4px; }
}

/* === Facilities Browse === */
.facilities-wrap{max-width:1100px;margin:0 auto;padding:2rem 1.5rem 4rem}
.facilities-filters{display:flex;flex-wrap:wrap;gap:.75rem;margin-bottom:1.5rem}
.facilities-filters input,.facilities-filters select{flex:1 1 180px;padding:.6rem .9rem;border:1.5px solid #ddd;border-radius:6px;font-size:.95rem;font-family:var(--font-body);background:#fff;color:var(--charcoal)}
.facilities-filters input:focus,.facilities-filters select:focus{outline:none;border-color:var(--teal)}
.facilities-count{font-size:.875rem;color:#666;margin-bottom:1.25rem}
.facilities-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(320px,1fr));gap:1.25rem}
.fac-card{background:#fff;border:1.5px solid #e8e8e8;border-radius:10px;padding:1.25rem;display:flex;flex-direction:column;gap:.9rem;transition:box-shadow .2s}
.fac-card:hover{box-shadow:0 4px 18px rgba(0,0,0,.09)}
.fac-card-header{display:flex;gap:1rem;align-items:flex-start}
.fac-overall-badge{width:48px;height:48px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1.4rem;font-weight:700;color:#fff;flex-shrink:0}
.fac-name{font-size:1rem;font-weight:600;margin:0 0 .2rem}
.fac-name a{color:var(--charcoal);text-decoration:none}
.fac-name a:hover{color:var(--teal)}
.fac-location{font-size:.85rem;color:#555;margin:0 0 .25rem}
.fac-meta{font-size:.8rem;color:#777;margin:0;display:flex;gap:.5rem;flex-wrap:wrap}
.fac-stars{color:#f9a825;letter-spacing:-.05em}
.score-row{display:flex;align-items:center;gap:.5rem;font-size:.8rem}
.score-label{width:130px;flex-shrink:0;color:#555}
.score-bar-wrap{flex:1;height:6px;background:#eee;border-radius:3px;overflow:hidden}
.score-bar-fill{height:100%;border-radius:3px;transition:width .5s ease}
.score-grade{width:18px;font-weight:700;font-size:.8rem;text-align:right}
.fac-view-link{display:inline-block;margin-top:auto;font-size:.875rem;color:var(--teal);text-decoration:none;font-weight:600}
.fac-view-link:hover{text-decoration:underline}
.fac-error,.facilities-empty{color:#c62828;padding:2rem 0;text-align:center}

/* === Facility Detail === */
.facility-detail-wrap{max-width:860px;margin:0 auto;padding:2rem 1.5rem 5rem}
.facility-loading{padding:4rem 0;text-align:center;color:#777}
.facility-error{padding:4rem 0;text-align:center}
.score-cards-grid{display:grid;grid-template-columns:1fr 1fr;gap:1.25rem;margin:2rem 0}
@media(max-width:640px){.score-cards-grid{grid-template-columns:1fr}}
.score-card{background:#fff;border:1.5px solid #e8e8e8;border-radius:10px;padding:1.5rem;display:flex;flex-direction:column;gap:.75rem}
.score-card-title{font-size:1rem;font-weight:700;margin:0;color:var(--charcoal)}
.score-display{display:flex;align-items:center;gap:.6rem}
.score-number{font-size:2rem;font-weight:700}
.score-grade-badge{font-size:1rem;font-weight:700;color:#fff;padding:.2rem .55rem;border-radius:5px}
.score-card-desc{font-size:.875rem;color:#666;margin:0;line-height:1.5}
.score-details{font-size:.85rem;color:#555;margin:0;padding:0;list-style:none}
.score-details li{display:flex;justify-content:space-between;padding:.3rem 0;border-bottom:1px solid #f0f0f0}
.score-details li:last-child{border-bottom:none}
.detail-label{color:#777}
.detail-value{font-weight:600;color:var(--charcoal)}
.overall-score-ring{width:100px;height:100px;border-radius:50%;border:4px solid;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.1rem;flex-shrink:0}
.ring-grade{font-size:2.4rem;font-weight:700;line-height:1}
.ring-label{font-size:.65rem;color:#777;text-transform:uppercase;letter-spacing:.04em}
.report-source-footer{margin-top:3rem;padding-top:1.5rem;border-top:1px solid #e8e8e8;font-size:.8rem;color:#888;line-height:1.7}
.report-source-footer a{color:var(--teal)}
