:root {
  --ink: #17211f;
  --muted: #57645f;
  --line: #d9e1dc;
  --canvas: #f7faf8;
  --paper: #ffffff;
  --teal: #006d62;
  --teal-dark: #004d46;
  --coral: #de6a4c;
  --focus: #d24d27;
  --shadow: 0 18px 45px rgb(23 33 31 / 8%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--coral);
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  background: var(--ink);
  color: #fff;
  left: 1rem;
  padding: 0.7rem 0.9rem;
  position: fixed;
  top: -4rem;
  z-index: 10;
}

.skip-link:focus {
  top: 1rem;
}

.site-header,
.site-footer {
  background: var(--paper);
}

.header-inner,
.footer-inner,
.main-content {
  margin: 0 auto;
  max-width: 70rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.header-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 4.75rem;
}

.brand {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.brand::after {
  background: var(--coral);
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 0.42rem;
  margin: 0 0 0.03rem 0.18rem;
  width: 0.42rem;
}

.primary-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.2rem;
  justify-content: flex-end;
}

.primary-nav a {
  font-size: 0.92rem;
  font-weight: 700;
}

.language-link {
  border-left: 1px solid var(--line);
  padding-left: 1.2rem;
}

.main-content {
  padding-bottom: 5rem;
  padding-top: 4.5rem;
}

.eyebrow {
  color: var(--teal);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 0.9rem;
  text-transform: uppercase;
}

.hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 3.5rem;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  margin-bottom: 1.4rem;
  max-width: 13ch;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.14rem;
  max-width: 39rem;
}

.purpose-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 3.5rem 0;
}

.purpose-grid section {
  border-top: 4px solid var(--teal);
  padding-top: 1rem;
}

.purpose-grid h2 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.purpose-grid p,
.policy-copy p,
.policy-copy li {
  color: var(--muted);
}

.notice {
  background: var(--paper);
  border-left: 4px solid var(--coral);
  box-shadow: var(--shadow);
  max-width: 48rem;
  padding: 1.2rem 1.35rem;
}

.notice p:last-child {
  margin-bottom: 0;
}

.policy-hero {
  border-bottom: 1px solid var(--line);
  margin-bottom: 3rem;
  padding-bottom: 2.4rem;
}

.policy-hero h1 {
  max-width: none;
}

.policy-copy {
  max-width: 45rem;
}

.policy-copy h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 0.75rem;
}

.policy-copy ul {
  padding-left: 1.3rem;
}

.language-section {
  border-top: 1px solid var(--line);
  margin-top: 3.5rem;
  padding-top: 3.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  min-height: 5rem;
}

.footer-inner p,
.footer-nav {
  font-size: 0.88rem;
  margin: 0;
}

.footer-nav {
  display: flex;
  gap: 1.1rem;
}

@media (max-width: 44rem) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }

  .primary-nav {
    justify-content: flex-start;
  }

  .main-content {
    padding-bottom: 3.5rem;
    padding-top: 3rem;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
    padding: 2.75rem 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 1.2rem;
    padding-top: 1.2rem;
  }
}
