/* PriceReflect — Main stylesheet
   Palette aligned with the Essex County benchmarking report */

:root {
  --navy:     #0f4c81;
  --navy-dk:  #0a3360;
  --teal:     #0d9488;
  --teal-bg:  #ecfeff;
  --orange:   #f97316;
  --text:     #111827;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --muted:    #6b7280;
  --light:    #9ca3af;
  --border:   #e5e7eb;
  --bg-alt:   #f9fafb;
  --white:    #ffffff;
  --max-w:    1080px;
  --r:        6px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  line-height: 1.25;
  color: var(--navy);
}
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ── Layout ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Utilities ── */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--teal-bg);
  color: var(--teal);
  border: 1px solid #99f6e4;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  text-decoration: none;
  border: none;
}
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-dk); text-decoration: none; }
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: #0b7f74; text-decoration: none; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy); text-decoration: none; }

/* ────────────────────────
   HEADER
──────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy-dk);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  text-decoration: none;
}
.logo .accent { color: #5eead4; }
nav ul { list-style: none; display: flex; gap: 28px; }
nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
nav a:hover { color: var(--white); text-decoration: none; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.75);
  display: block;
  border-radius: 2px;
}

/* ────────────────────────
   HERO
──────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, #1a5fa8 100%);
  padding: 88px 0 100px;
  color: var(--white);
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5eead4;
  margin-bottom: 20px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 660px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ────────────────────────
   PROOF / FINDINGS
──────────────────────── */
.why {
  padding: 64px 0 20px;
  background: var(--white);
}
.why h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.why p {
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 10px;
}
.why p:last-child { margin-bottom: 0; }

.proof { padding: 80px 0; background: var(--white); }
.proof h2 { font-size: 1.75rem; margin-bottom: 40px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.proof-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--r);
  padding: 24px 22px 20px;
}
.proof-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.proof-stat {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 10px;
}
.proof-desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ────────────────────────
   FEATURED REPORT
──────────────────────── */
.featured {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.report-card {
  display: grid;
  grid-template-columns: 5fr 3fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
}
.report-card-body { padding: 40px 44px; }
.report-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.report-card-body h2 { font-size: 1.5rem; margin-bottom: 14px; line-height: 1.3; }
.report-card-body .summary {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 460px;
}
.report-card-side {
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.report-card-side h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.report-stats { list-style: none; }
.report-stats li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  gap: 10px;
}
.report-stats li:last-child { border-bottom: none; }
.rs-label { color: var(--muted); }
.rs-val { font-weight: 700; color: var(--navy); white-space: nowrap; }

/* ────────────────────────
   HOW IT WORKS
──────────────────────── */
.how-it-works {
  padding: 80px 0;
  background: var(--navy);
  color: var(--white);
}
.how-it-works .section-eyebrow { color: #5eead4; }
.how-it-works h2 { color: var(--white); font-size: 1.75rem; margin-bottom: 48px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.step {
  position: relative;
  padding-left: 0;
}
.step-num {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: 12px;
}
.step h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ────────────────────────
   USE CASES
──────────────────────── */
.use-cases {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.use-cases h2 { font-size: 1.75rem; margin-bottom: 40px; }
.use-cases-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.use-case {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--r);
}
.use-case h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.use-case p {
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ────────────────────────
   SERVICES / WHAT WE DELIVER
──────────────────────── */
.services { padding: 80px 0; background: var(--white); }
.services > .container > h2 { font-size: 1.75rem; margin-bottom: 12px; }
.services > .container > p.services-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 32px 26px 28px;
}
.service-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 14px;
}
.service-card ul {
  list-style: none;
  font-size: 0.82rem;
  color: var(--gray-700);
}
.service-card ul li {
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}
.service-card ul li:last-child { border-bottom: none; }
.service-card ul li::before {
  content: "✓ ";
  color: var(--teal);
  font-weight: 700;
}

/* ────────────────────────
   CTA BAR
──────────────────────── */
.cta-bar {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.cta-bar h2 { color: var(--white); font-size: 1.75rem; margin-bottom: 12px; }
.cta-bar p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-bar .btn-teal { font-size: 1rem; padding: 14px 32px; }

/* ────────────────────────
   FOOTER
──────────────────────── */
.site-footer {
  background: var(--navy-dk);
  color: rgba(255,255,255,0.5);
  padding: 52px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo { color: var(--white); font-size: 1.1rem; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.85rem; line-height: 1.65; max-width: 280px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ────────────────────────
   PAGE HERO (inner pages)
──────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, #1a5fa8 100%);
  padding: 64px 0;
  color: var(--white);
}
.page-hero .section-eyebrow { color: #5eead4; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  max-width: 680px;
  margin-bottom: 14px;
}
.page-hero .sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.65;
}

/* ────────────────────────
   ABOUT PAGE
──────────────────────── */
.page-content { padding: 72px 0; }
.page-content-inner { max-width: 700px; }
.page-content h2 { font-size: 1.35rem; margin-top: 44px; margin-bottom: 14px; }
.page-content h2:first-child { margin-top: 0; }
.page-content p { color: var(--gray-600); line-height: 1.8; margin-bottom: 14px; font-size: 0.975rem; }
.page-content ul { list-style: disc; padding-left: 20px; color: var(--gray-600); margin-bottom: 16px; }
.page-content ul li { margin-bottom: 8px; font-size: 0.975rem; line-height: 1.7; }
.page-content strong { color: var(--text); }

/* ────────────────────────
   REPORTS INDEX
──────────────────────── */
.reports-grid {
  display: grid;
  gap: 24px;
}
.report-list-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--r);
  padding: 28px 28px 24px;
}
.report-list-card h2 {
  font-size: 1.4rem;
  margin: 12px 0 12px;
  line-height: 1.35;
}
.report-list-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.report-list-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.report-list-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.report-list-foot {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ────────────────────────
   REPORT DETAIL PAGE
──────────────────────── */
.report-page {
  background: var(--white);
  color: var(--text);
}
.report-page .report-hero {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 60%, #1a5fa8 100%);
  color: var(--white);
  padding: 56px 24px 48px;
}
.report-page .report-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}
.report-page .kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}
.report-page h1 {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--white);
}
.report-page .deck {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
  line-height: 1.65;
}
.report-page .meta {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.report-page .meta span { display: flex; align-items: center; gap: 5px; }
.report-page .report-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.report-page .section {
  margin-top: 56px;
}
.report-page .section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.report-page .section h2 {
  font-family: 'Lora', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.report-page .section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-700);
  margin: 20px 0 8px;
}
.report-page .section > p {
  color: var(--gray-700);
  margin-bottom: 14px;
}
.report-page .section > p:last-child { margin-bottom: 0; }

.report-page .findings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.report-page .finding-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--r);
  padding: 20px 20px 18px;
}
.report-page .finding-number {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.report-page .finding-stat {
  font-family: 'Lora', Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.report-page .finding-desc {
  font-size: 13.5px;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

.report-page .callout {
  background: #ecfeff;
  border: 1px solid #99f6e4;
  border-left: 4px solid var(--teal);
  border-radius: var(--r);
  padding: 16px 18px;
  margin-top: 16px;
}
.report-page .callout-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.report-page .callout-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
  margin: 0;
}

.report-page .cta-box {
  margin-top: 20px;
  padding: 18px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: #fff7ed;
}
.report-page .cta-title {
  font-size: 14px;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 6px;
}
.report-page .cta-text {
  font-size: 13.5px;
  color: var(--gray-700);
  margin: 0;
}
.report-page .cta-text strong { color: #7c2d12; }

.report-page .chart-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px 16px;
  margin-top: 20px;
}
.report-page .chart-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 4px;
}
.report-page .chart-subtitle {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.report-page .chart-legend {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.report-page .legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  color: var(--gray-700);
}
.report-page .legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.report-page .legend-bar {
  width: 18px; height: 3px;
  flex-shrink: 0;
}

.report-page .data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin-top: 16px;
}
.report-page .data-table thead tr {
  border-bottom: 2px solid var(--navy);
}
.report-page .data-table th {
  text-align: right;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.report-page .data-table th:first-child { text-align: left; }
.report-page .data-table tbody tr { border-bottom: 1px solid var(--bg-alt); }
.report-page .data-table tbody tr:hover { background: var(--bg-alt); }
.report-page .td-name { padding: 10px 12px; color: var(--gray-700); }
.report-page .td-num  { text-align: right; padding: 10px 12px; color: var(--gray-600); font-variant-numeric: tabular-nums; }
.report-page .td-med  { color: var(--navy) !important; }

.report-page .rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0 0;
}
.report-page .method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.report-page .method-box {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 18px 16px;
}
.report-page .method-box h3 {
  margin: 0 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--navy);
}
.report-page .method-box p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.55;
}
.report-page .can-cannot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}
.report-page .can-box,
.report-page .cannot-box {
  border-radius: var(--r);
  padding: 18px;
  font-size: 13px;
}
.report-page .can-box {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}
.report-page .cannot-box {
  background: #fff7ed;
  border: 1px solid #fed7aa;
}
.report-page .can-box h3,
.report-page .cannot-box h3 {
  margin: 0 0 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.report-page .can-box h3 { color: #065f46; }
.report-page .cannot-box h3 { color: #92400e; }
.report-page .can-box ul,
.report-page .cannot-box ul {
  padding-left: 18px;
  line-height: 1.6;
  color: var(--gray-700);
}
.report-page .can-box li,
.report-page .cannot-box li { margin-bottom: 5px; }

.report-page .footnotes {
  margin-top: 28px;
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
  border-top: 1px solid var(--bg-alt);
  padding-top: 16px;
}
.report-page .footnotes p { margin-bottom: 4px; color: var(--gray-600); }

.report-page .report-notes {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 28px 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.7;
}
.report-page .report-notes p { margin-bottom: 6px; }

/* ────────────────────────
   RESPONSIVE
──────────────────────── */
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .report-card { grid-template-columns: 1fr; }
  .report-card-side { border-left: none; border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav ul { display: none; }
  nav ul.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--navy-dk);
    padding: 16px 24px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-toggle { display: flex; }
  .hero { padding: 60px 0 72px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .report-card-body { padding: 28px 24px; }
  .report-card-side { padding: 28px 24px; }
}
@media (max-width: 560px) {
  .report-page .can-cannot { grid-template-columns: 1fr; }
  .report-page .findings-grid { grid-template-columns: 1fr; }
}
