:root {
  color-scheme: light;
  --background: #f7f8fa;
  --surface: #ffffff;
  --text: #17212b;
  --muted: #536170;
  --line: #d9e0e7;
  --brand: #173f5f;
  --brand-dark: #102f48;
  --accent: #dceaf3;
  --content-width: 70rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

a {
  color: var(--brand);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-dark);
}

a:focus-visible {
  outline: 0.2rem solid #f2b134;
  outline-offset: 0.2rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 10;
  padding: 0.6rem 0.9rem;
  background: var(--surface);
  border: 0.13rem solid var(--brand);
  font-weight: 700;
}

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

.container {
  width: min(calc(100% - 2rem), var(--content-width));
  margin-inline: auto;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--text);
  font-size: 0.94rem;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
}

main {
  min-height: 60vh;
}

.hero {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #f1f6f9 0%, #ffffff 65%);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  max-width: 50rem;
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: -0.035em;
}

.hero .tagline {
  margin: 0.8rem 0 0;
  color: var(--brand);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-weight: 650;
}

.hero .intro {
  max-width: 47rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section {
  padding: clamp(3.25rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.section:nth-child(even) {
  background: var(--surface);
}

.section h2,
.policy h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.45rem, 4vw, 2rem);
}

.section-copy {
  max-width: 48rem;
}

.section-copy > :first-child,
.policy section > :first-child {
  margin-top: 0;
}

.section-copy > :last-child,
.policy section > :last-child {
  margin-bottom: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.card {
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
}

.card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.page-heading {
  padding: clamp(3.5rem, 8vw, 6rem) 0 2.5rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.page-heading h1 {
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.page-heading p:not(.eyebrow) {
  max-width: 48rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.policy {
  width: min(calc(100% - 2rem), 52rem);
  margin-inline: auto;
  padding: 3rem 0 5rem;
}

.policy section {
  margin-top: 2.7rem;
}

.policy h2 {
  font-size: 1.35rem;
}

.policy h3 {
  margin-top: 1.7rem;
  font-size: 1.05rem;
}

.policy li + li {
  margin-top: 0.55rem;
}

.notice {
  margin: 2rem 0;
  padding: 1.2rem 1.35rem;
  background: var(--accent);
  border-left: 0.25rem solid var(--brand);
}

.notice p {
  margin: 0;
}

address {
  font-style: normal;
}

.site-footer {
  padding: 2.7rem 0;
  background: #14212b;
  color: #e7edf2;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}

.footer-name {
  margin: 0;
  font-weight: 700;
}

.footer-location {
  margin: 0.25rem 0 0;
  color: #bac6cf;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a {
  color: #ffffff;
}

@media (max-width: 46rem) {
  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-inner {
    padding-block: 1rem;
  }

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

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

