:root {
  --ink: #123a3b;
  --deep: #074c4e;
  --teal: #0b6668;
  --mint: #e9f6f4;
  --mist: #f5f8f7;
  --red: #c52035;
  --line: #d7e5e2;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1rem; line-height: 1.65; }
a { color: var(--deep); text-underline-offset: .2em; }
a:hover { color: var(--red); }
.site-header { width: min(1160px, calc(100% - 40px)); min-height: 84px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 28px; border-bottom: 1px solid var(--line); }
.brand img { display: block; width: 172px; height: auto; }
nav { display: flex; gap: 26px; align-items: center; }
nav a { color: var(--ink); font-size: .94rem; font-weight: 700; text-decoration: none; }
main { overflow: hidden; }
.hero { width: min(1160px, calc(100% - 40px)); margin: 0 auto; padding: 92px 0 100px; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .65fr); gap: 76px; align-items: center; }
.eyebrow { margin: 0 0 14px; color: var(--red); font-size: .78rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.12; letter-spacing: -.025em; }
h1 { max-width: 800px; margin-bottom: 24px; font-size: clamp(2.65rem, 6vw, 5rem); color: var(--deep); }
.lead { max-width: 760px; margin: 0 0 18px; color: #285a5b; font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.48; }
.hero-copy > p:not(.eyebrow) { max-width: 760px; }
.notice { max-width: 760px; margin-top: 34px; padding: 22px 24px; display: grid; gap: 4px; background: var(--mint); border-left: 4px solid var(--red); border-radius: 3px 12px 12px 3px; }
.status-card { padding: 34px; background: var(--deep); color: var(--white); border-radius: 24px 24px 24px 6px; box-shadow: 0 24px 65px rgba(7,76,78,.2); }
.status-label { margin: 0; color: #a7d9d3; font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.status { margin: 6px 0 26px; font-size: 2rem; font-weight: 800; line-height: 1.1; }
.status-card ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.status-card li { padding: 14px 0 14px 26px; position: relative; border-bottom: 1px solid rgba(255,255,255,.14); }
.status-card li::before { content: "—"; position: absolute; left: 0; color: #f08a97; }
.measure { padding: 76px max(20px, calc((100vw - 1160px)/2)); background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 760px; }
.section-heading h2, .legal-card h1 { margin-bottom: 16px; color: var(--deep); font-size: clamp(2rem, 4vw, 3.25rem); }
.section-heading p:not(.eyebrow) { color: #3a6060; }
.source-link { margin: 28px 0 0; }
footer { padding: 36px 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 30px; color: #456566; background: var(--mint); font-size: .9rem; text-align: center; }
footer img { width: 126px; height: auto; }
footer p { margin: 0; }
.legal-main { min-height: 70vh; padding: 72px 20px 96px; background: var(--mist); }
.legal-card { width: min(820px, 100%); margin: auto; padding: clamp(30px, 6vw, 68px); background: var(--white); border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 16px 55px rgba(7,76,78,.08); }
.legal-card h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.legal-card h2 { margin: 40px 0 8px; color: var(--deep); font-size: 1.35rem; }
.legal-card p { color: #385c5d; }
.updated { padding-bottom: 24px; border-bottom: 1px solid var(--line); color: #688283 !important; font-size: .92rem; }

@media (max-width: 800px) {
  .site-header { padding: 20px 0; align-items: flex-start; }
  .brand img { width: 145px; }
  nav { align-items: flex-end; flex-direction: column; gap: 8px; text-align: right; }
  .hero { padding: 64px 0 72px; grid-template-columns: 1fr; gap: 42px; }
  h1 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .status-card { max-width: 500px; }
  .measure { padding-top: 70px; padding-bottom: 70px; }
}

@media (max-width: 520px) {
  .site-header { width: min(100% - 28px, 1160px); }
  nav a:first-child { display: none; }
  .hero { width: min(100% - 28px, 1160px); }
  .notice, .status-card { padding: 24px; }
  footer { flex-direction: column; }
}

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