:root {
  --ink: #1d1b18;
  --muted: #69635a;
  --paper: #fffaf2;
  --cream: #f4eadb;
  --line: #d8ccba;
  --red: #c43d32;
  --gold: #d9a21b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.flag {
  display: grid;
  width: 34px;
  height: 24px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgb(0 0 0 / 10%);
}

.flag span:nth-child(1) { background: #181818; }
.flag span:nth-child(2) { background: #d52b1e; }
.flag span:nth-child(3) { background: #f2c500; }

.header-link {
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  padding: clamp(72px, 10vw, 140px) 0 clamp(64px, 8vw, 112px);
  max-width: 930px;
}

.eyebrow,
.section-label {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 7.7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.intro {
  max-width: 720px;
  margin: 36px 0 0;
  color: #3f3a34;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.updated {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.summary article {
  padding: 40px 32px 44px 0;
}

.summary article + article {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.number {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.summary h2 {
  margin: 44px 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.policy {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 720px);
  gap: clamp(50px, 10vw, 150px);
  padding: 112px 0 130px;
}

.policy-nav {
  position: sticky;
  top: 30px;
  align-self: start;
}

.policy-nav > p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-nav nav {
  display: grid;
  gap: 11px;
}

.policy-nav a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.policy-nav a:hover,
.policy-nav a:focus-visible {
  color: var(--red);
}

.policy-content > section {
  scroll-margin-top: 30px;
  padding: 0 0 72px;
}

.policy-content h2 {
  margin: 0 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.policy-content p:not(.section-label) {
  color: #4d4740;
}

.policy-content a {
  color: #8d251e;
  font-weight: 650;
}

.contact-card {
  padding: 42px !important;
  background: var(--cream);
  border-left: 4px solid var(--gold);
}

.contact-card p {
  margin-bottom: 0;
}

.contact-note {
  font-size: 0.85rem;
  font-style: italic;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

footer p {
  margin: 0;
}

@media (max-width: 760px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .brand span:last-child {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.7rem);
  }

  .summary {
    grid-template-columns: 1fr;
  }

  .summary article,
  .summary article + article {
    padding: 28px 0;
    border-left: 0;
  }

  .summary article + article {
    border-top: 1px solid var(--line);
  }

  .summary h2 {
    margin-top: 20px;
  }

  .policy {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 84px 0;
  }

  .policy-nav {
    position: static;
  }

  .contact-card {
    padding: 28px !important;
  }
}

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