:root {
  --bg: #f5f2ee;
  --surface: #ffffff;
  --ink: #171717;
  --muted: #5e5b57;
  --line: #ded8d1;
  --accent: #e30613;
  --accent-dark: #a4000b;
  --soft: #eee8e1;
  --shadow: 0 24px 80px rgba(32, 27, 22, 0.10);
  --radius: 24px;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(227, 6, 19, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(227, 6, 19, 0.04) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  line-height: 1.55;
}

a { color: inherit; text-decoration-color: rgba(227, 6, 19, 0.35); text-underline-offset: 4px; }
a:hover { text-decoration-color: var(--accent); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(245, 242, 238, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 44px; height: 44px; object-fit: contain; }
.brand strong { display: block; font-size: 17px; letter-spacing: 0.04em; }
.brand small { display: block; color: var(--muted); font-size: 12px; }

.site-nav { display: flex; align-items: center; gap: 18px; font-size: 14px; }
.site-nav a { text-decoration: none; color: var(--muted); }
.site-nav a:hover { color: var(--ink); }
.nav-toggle { display: none; }

main { max-width: 1240px; margin: 0 auto; padding: 0 clamp(18px, 4vw, 48px); }

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 72px 0 56px;
}
.hero-copy { max-width: 760px; }
.eyebrow {
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 760;
  margin: 0 0 14px;
}
h1, h2, h3 { line-height: 1.05; margin: 0; letter-spacing: -0.04em; }
h1 { font-size: clamp(48px, 8vw, 96px); max-width: 930px; }
h2 { font-size: clamp(34px, 5vw, 58px); }
h3 { font-size: 22px; }
.lead { font-size: clamp(18px, 2.2vw, 24px); color: #383532; max-width: 750px; margin: 26px 0 0; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.04);
}
.button.primary { background: var(--ink); color: #fff; border-color: var(--ink); }
.button:hover { transform: translateY(-1px); }

.status-card, .panel, .card, .contact-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(222, 216, 209, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.status-card { padding: 24px; }
.status-card dl { margin: 0; display: grid; gap: 14px; }
.status-card div { padding: 18px; background: var(--soft); border-radius: 18px; }
dt { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; }
dd { margin: 5px 0 0; font-weight: 800; font-size: 22px; }

.section { padding: 80px 0; }
.two-column { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.muted {
  margin-left: calc(clamp(18px, 4vw, 48px) * -1);
  margin-right: calc(clamp(18px, 4vw, 48px) * -1);
  padding-left: clamp(18px, 4vw, 48px);
  padding-right: clamp(18px, 4vw, 48px);
  background: rgba(238, 232, 225, 0.65);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-heading { margin-bottom: 28px; max-width: 850px; }
.section-heading.split { display: flex; align-items: end; justify-content: space-between; gap: 18px; max-width: none; }
.panel { padding: 26px; }
.stats-grid, .policy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.stat, .policy-item { border: 1px solid var(--line); border-radius: 16px; padding: 18px; background: rgba(255,255,255,0.7); }
.stat strong, .policy-item strong { display: block; font-size: 19px; margin-top: 5px; }

.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.card { padding: 24px; min-height: 210px; }
.card p { color: var(--muted); margin-bottom: 0; }

.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 14px; height: 2px; background: var(--accent); }

.filter-label { display: grid; gap: 7px; color: var(--muted); font-size: 13px; min-width: min(320px, 100%); }
input[type="search"] {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  min-height: 44px;
  padding: 0 16px;
  color: var(--ink);
  font: inherit;
}
.table-wrap { overflow: auto; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,0.82); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; min-width: 900px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); background: #f8f6f3; position: sticky; top: 0; }
td code { font-family: var(--mono); font-size: 13px; white-space: nowrap; }
tbody tr:hover { background: #faf7f3; }
.badge { display: inline-flex; align-items: center; min-height: 26px; padding: 0 10px; border-radius: 999px; background: #f0e7df; font-weight: 800; font-size: 12px; }
.badge.yes { background: rgba(227, 6, 19, 0.10); color: var(--accent-dark); }

.location-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.location-item { padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,0.78); }
.location-item strong { display: block; }
.location-item span { color: var(--muted); }

.contact-list { display: grid; gap: 14px; }
.contact-card { padding: 20px; }
.contact-card a { font-size: 20px; font-weight: 850; text-decoration: none; }
.contact-card p { margin: 8px 0 0; color: var(--muted); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 42px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  background: #171717;
  color: #fff;
}
.site-footer p { color: #c9c1ba; max-width: 720px; }
.site-footer code { color: #fff; font-family: var(--mono); }
.footer-links { display: flex; flex-wrap: wrap; align-content: start; gap: 14px; }
.footer-links a { color: #fff; }

@media (max-width: 960px) {
  .hero, .two-column { grid-template-columns: 1fr; }
  .cards, .location-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .status-card { max-width: 520px; }
}

@media (max-width: 760px) {
  .site-header { align-items: flex-start; }
  .nav-toggle { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; background: #fff; padding: 9px 13px; font: inherit; font-weight: 700; }
  .site-nav { display: none; position: absolute; left: 18px; right: 18px; top: 74px; padding: 18px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .site-nav.open { display: grid; }
  .hero { min-height: auto; padding-top: 56px; }
  .cards, .location-list, .stats-grid, .policy-grid { grid-template-columns: 1fr; }
  .section-heading.split { display: grid; align-items: start; }
  .site-footer { display: grid; }
}

.email-link {
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline;
  font: inherit;
  font-weight: 700;
  padding: 0;
  text-align: left;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.email-link:hover,
.email-link:focus-visible,
.revealed-email:hover,
.revealed-email:focus-visible {
  text-decoration-thickness: 2px;
}
