*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:       #3a7ca5;
  --blue-dark:  #2c5f7a;
  --blue-mid:   #4a8db8;
  --slate:      #4a5568;
  --light-bg:   #f4f6f8;
  --white:      #ffffff;
  --text:       #2d3748;
  --muted:      #718096;
  --border:     #dce3ea;
  --header-h:   80px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* ── TOP BAR ── */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
}
.topbar a {
  color: var(--blue);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}
.topbar a:hover { color: var(--blue-dark); }
.topbar svg { flex-shrink: 0; }

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img { height: 56px; width: auto; }

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
nav a:hover { color: var(--blue); background: var(--light-bg); }

.btn-nav {
  margin-left: 12px;
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-size: 13px !important;
  letter-spacing: .08em;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--blue-dark) !important; color: var(--white) !important; }

/* hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
  position: fixed;
  top: calc(var(--header-h));
  left: 0;
  right: 0;
  z-index: 101;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text);
  text-decoration: none;
}
.mobile-nav a:last-child { border-bottom: none; color: var(--blue); }

/* ── HERO ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.hero-text {
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}
.hero-text h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 32px;
}
.btn {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 3px;
  transition: background .2s, transform .15s;
  align-self: flex-start;
}
.btn:hover { background: var(--blue-dark); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,.15); }

.hero-img { background-size: cover; background-position: center top; background-repeat: no-repeat; position: relative; display: flex; align-items: flex-end; padding: 32px; }
.hero-badge { background: rgba(255,255,255,.15); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,.3); border-radius: 4px; padding: 16px 24px; color: var(--white); font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* ── FEATURES STRIP ── */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature {
  padding: 52px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.feature:last-child { border-right: none; }
.feature:nth-child(2) { background: var(--blue); color: var(--white); }
.feature:nth-child(1), .feature:nth-child(3) { background: var(--slate); color: var(--white); }

.feature-icon { margin-bottom: 20px; opacity: .9; }
.feature h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 14px;
}
.feature p { font-size: 14px; line-height: 1.7; opacity: .88; margin-bottom: 24px; }
.feature a {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.6);
  color: var(--white);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 2px;
  transition: background .2s;
}
.feature a:hover { background: rgba(255,255,255,.15); }

/* ── SECTION GENERIC ── */
section { padding: 80px 40px; }
.section-inner { max-width: 1060px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 20px;
}
.section-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--slate);
  max-width: 680px;
}

/* ── COMMITMENT ── */
.commitment { background: var(--light-bg); }
.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── SERVICES ── */
.services-bg { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.service-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-2px); }
.service-icon { margin-bottom: 18px; color: var(--blue); }
.service-card h3 {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
  color: var(--blue-dark);
}
.service-card p { font-size: 14px; line-height: 1.75; color: var(--slate); margin-bottom: 18px; }
.service-card a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--blue);
  padding-bottom: 1px;
}

/* ── ABOUT ── */
.about-bg { background: var(--light-bg); }
.about-photo {
  border-radius: 6px;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-top: 48px;
}
.team-member-name {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 4px;
}
.team-member-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.team-member-bio {
  font-size: 14px;
  line-height: 1.8;
  color: var(--slate);
}
.team-member-bio p + p { margin-top: 12px; }

.about-certs {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.about-certs h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.cert-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  margin: 3px 4px 3px 0;
  letter-spacing: .04em;
}

/* ── CONTACT ── */
.contact-band {
  background: var(--slate);
  color: var(--white);
  padding: 48px 40px;
}
.contact-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  max-width: 1060px;
  margin: 0 auto;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}
.contact-item svg { flex-shrink: 0; opacity: .7; }
.contact-item a { color: var(--white); text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: #1a2535;
  color: rgba(255,255,255,.55);
  text-align: center;
  padding: 28px 40px;
  font-size: 13px;
}
footer a { color: rgba(255,255,255,.7); text-decoration: none; }
footer a:hover { color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .65s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .34s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { display: none; }
  .hamburger { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-img { min-height: 260px; order: -1; }
  .hero-text { padding: 48px 32px; }
  .features { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .commitment-grid { grid-template-columns: 1fr; }
  .commitment-img { min-height: 240px; order: -1; }
  .process-steps { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { /* unconstrained — shows full image */ }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  section { padding: 60px 24px; }
  .topbar { flex-direction: column; align-items: center; gap: 6px; padding: 10px 24px; }
  header { padding: 0 24px; }
  .schedule-wrap { padding: 28px 20px; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════ */
/* PAGE-SPECIFIC STYLES — yourinspection.html      */
/* ═══════════════════════════════════════════════ */

/* ── BUTTON GROUP ── */
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── HERO BAND (alt hero used on subpages) ── */
.hero-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.hero-band .hero-text {
  background: var(--light-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}
.hero-band .hero-text h1 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-band .hero-text p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
  color: var(--blue-dark);
}
.hero-band .hero-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-band .hero-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.01);
}
.hero-badge {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 4px;
  padding: 16px 24px;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.hero-badge strong {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: .02em;
}

/* ── TIMELINE ── */
.timeline {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.timeline-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0 32px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 35px;
  top: 72px;
  bottom: -24px;
  width: 2px;
  background: var(--border);
}
.timeline-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: 'Raleway', sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.timeline-content { padding: 12px 0 48px; }
.timeline-content h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text);
  margin-bottom: 10px;
  margin-top: 16px;
}
.timeline-content p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate);
  max-width: 620px;
}

/* ── PHOTO SPLIT ── */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.photo-split-img {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 420px;
}
.photo-split-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
}
.photo-split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px;
}
.photo-split-text .section-label { margin-bottom: 12px; }
.photo-split-text .section-title { margin-bottom: 20px; }
.photo-split-text .section-body { margin-bottom: 0; }

/* ── ATTEND CARDS ── */
.attend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.attend-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.attend-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.attend-card-icon {
  margin-bottom: 18px;
  color: var(--blue);
}
.attend-card h3 {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
  color: var(--blue-dark);
}
.attend-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate);
}

/* ── TIMING CALLOUT ── */
.timing-band {
  background: var(--blue-dark);
  color: var(--white);
  padding: 72px 40px;
}
.timing-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.timing-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 12px;
}
.timing-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.timing-body {
  font-size: 15px;
  line-height: 1.8;
  opacity: .88;
}
.timing-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.timing-stat {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.12);
}
.timing-stat-num {
  font-family: 'Raleway', sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  flex-shrink: 0;
  min-width: 80px;
}
.timing-stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timing-stat-desc {
  font-size: 13px;
  opacity: .75;
  line-height: 1.5;
}

/* ── ACCESS SECTION ── */
.access-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.access-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  border-radius: 4px;
  padding: 20px 20px 18px;
}
.access-item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: 8px;
}
.access-item p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--blue-dark);
  color: var(--white);
  text-align: center;
  padding: 72px 40px;
}
.cta-band h2 {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 16px;
  opacity: .85;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE — page-specific ── */
@media (max-width: 900px) {
  .hero-band { grid-template-columns: 1fr; }
  .hero-band .hero-img { min-height: 260px; order: -1; }
  .hero-band .hero-text { padding: 48px 32px; }
  .photo-split { grid-template-columns: 1fr; }
  .photo-split-img { min-height: 320px; order: -1; }
  .photo-split-text { padding: 48px 32px; }
  .timing-inner { grid-template-columns: 1fr; gap: 40px; }
  .timing-band { padding: 60px 24px; }
  .timeline-item { grid-template-columns: 56px 1fr; gap: 0 20px; }
  .timeline-number { width: 56px; height: 56px; font-size: 20px; }
  .timeline-item:not(:last-child)::after { left: 27px; top: 56px; }
}
/* ═══════════════════════════════════════════════ */
/* PAGE-SPECIFIC STYLES — report.html              */
/* ═══════════════════════════════════════════════ */

/* Stronger hero overlay default (used on report page) */
.hero-band .hero-img::before {
  background: rgba(0,0,0,.20);
}

/* ── REPORT CARDS ── */
.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.report-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s;
}
.report-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.report-card-icon {
  margin-bottom: 18px;
  color: var(--blue);
}
.report-card h3 {
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
  color: var(--blue-dark);
}
.report-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--slate);
}

/* ── SEVERITY GRID ── */
.severity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.sev-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid;
  border-radius: 4px;
  padding: 20px 20px 18px;
  transition: box-shadow .2s;
}
.sev-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.sev-count {
  font-family: 'Raleway', sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.sev-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.sev-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.55;
}
.sev-significant { border-left-color: #811206; }
.sev-significant .sev-count, .sev-significant .sev-name { color: #c0392b; }
.sev-moderate { border-left-color: #c27a3a; }
.sev-moderate .sev-count, .sev-moderate .sev-name { color: #c27a3a; }
.sev-updates { border-left-color: #5517a2; }
.sev-updates .sev-count, .sev-updates .sev-name { color: #5517a2; }
.sev-minor { border-left-color: #3a99a5; }
.sev-minor .sev-count, .sev-minor .sev-name { color: #3a99a5; }
.sev-maintenance { border-left-color: #558756; }
.sev-maintenance .sev-count, .sev-maintenance .sev-name { color: #558756; }
.sev-aged { border-left-color: #b1a83f; }
.sev-aged .sev-count, .sev-aged .sev-name { color: #b1a83f; }
.sev-efficiency { border-left-color: #466b5a; }
.sev-efficiency .sev-count, .sev-efficiency .sev-name { color: #466b5a; }

/* ── HIGHLIGHT GRID + MOCKUP ── */
.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.highlight-mockup {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.mockup-icon {
  width: 40px;
  height: 40px;
  background: var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mockup-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}
.mockup-sub {
  font-size: 12px;
  color: var(--muted);
}
.mockup-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mockup-row:last-child { border-bottom: none; }
.mock-check {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 1.5px solid var(--border);
  flex-shrink: 0;
}
.mock-check.checked {
  background: var(--blue);
  border-color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-check.checked::after {
  content: '✓';
  color: white;
  font-size: 11px;
  font-weight: 700;
}
.mockup-row-label {
  flex: 1;
  font-size: 12px;
  line-height: 1.4;
  color: var(--text);
}
.sev-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: .04em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.pill-sig { background: rgba(192,57,43,.12); color: #c0392b; }
.pill-mod { background: rgba(230,126,34,.12); color: #e67e22; }

/* ── RESPONSIVE — report-specific ── */
@media (max-width: 900px) {
  .highlight-grid { grid-template-columns: 1fr; }
}
/* ═══════════════════════════════════════════════ */
/* PAGE-SPECIFIC STYLES — home-insights.html       */
/* ═══════════════════════════════════════════════ */

/* Active nav link */
nav a.active { color: var(--blue); }

/* ── CATEGORY FILTER STRIP ── */
.filter-strip {
  background: var(--blue-dark);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-right: 8px;
}
.filter-pill {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: all .18s;
}
.filter-pill:hover,
.filter-pill.active {
  border-color: var(--white);
  background: rgba(255,255,255,.15);
  color: var(--white);
}

/* ── POST CARD GRID ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.post-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.post-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.card-img {
  height: 180px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 24px 24px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-category {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}
.cat-roof     { background: #fff0e6; color: #b35a00; }
.cat-plumbing { background: #e6f0ff; color: #1a4fa0; }
.cat-hvac     { background: #e6f7ee; color: #1a6637; }
.cat-electric { background: #fff7e6; color: #8a5900; }
.cat-safety   { background: #ffe6e6; color: #a01a1a; }
.cat-general  { background: var(--light-bg); color: var(--slate); }
.card-body h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.card-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}
.card-footer {
  padding: 16px 24px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 16px;
}
.read-more {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-card:hover .read-more { color: var(--blue-dark); }
.read-more svg { transition: transform .18s; }
.post-card:hover .read-more svg { transform: translateX(3px); }
.read-time {
  font-size: 12px;
  color: var(--muted);
}

/* ── COMING SOON CARD ── */
.post-card-muted {
  border: 1px dashed var(--border);
  border-radius: 4px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--light-bg);
}
.post-card-muted h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 10px;
}
.post-card-muted p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── RESPONSIVE — home-insights ── */
@media (max-width: 900px) {
  .filter-strip { padding: 14px 24px; }
  .posts-grid { grid-template-columns: 1fr; }
}
