:root {
  --ink: #17211d;
  --muted: #52605a;
  --forest: #154a3d;
  --forest-deep: #0d332a;
  --mint: #dff0e7;
  --stone: #f5f4ef;
  --paper: #fffefa;
  --line: #d9ded9;
  --accent: #b7643f;
  --shadow: 0 18px 50px rgba(13, 51, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--forest);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

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

a:focus-visible {
  outline: 3px solid #e6a269;
  outline-offset: 4px;
  border-radius: 3px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: white;
  color: var(--forest-deep);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 58px;
  background:
    radial-gradient(circle at 88% 18%, rgba(223, 240, 231, 0.35), transparent 28%),
    linear-gradient(135deg, var(--forest-deep), var(--forest));
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 48% 52% 62% 38% / 42% 35% 65% 58%;
  transform: rotate(-18deg);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: #cce5da;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.75rem, 7vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero__summary {
  max-width: 690px;
  margin: 1.25rem 0 2rem;
  color: #edf7f2;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.identity-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  max-width: 850px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}

.identity-card > div {
  min-width: 0;
  padding: 1rem 1.15rem;
  background: rgba(9, 42, 34, 0.72);
}

.identity-card dt {
  color: #bbd6cb;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.identity-card dd {
  margin: 0.25rem 0 0;
  overflow-wrap: anywhere;
}

.identity-card a {
  color: white;
}

code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

.policy-date {
  margin: 1.15rem 0 0;
  color: #cce5da;
  font-size: 0.88rem;
}

.policy {
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(0, 720px);
  gap: clamp(40px, 7vw, 88px);
  align-items: start;
  padding-top: 56px;
  padding-bottom: 88px;
}

.contents {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 0.55rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--stone);
  font-size: 0.9rem;
  line-height: 1.45;
}

.contents strong {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.policy > section {
  grid-column: 2;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.policy > section:first-of-type {
  border-top: 0;
  padding-top: 0;
}

h2 {
  margin: 0 0 1rem;
  color: var(--forest-deep);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h3 {
  margin: 1.65rem 0 0.4rem;
  color: var(--ink);
  font-size: 1.18rem;
}

p {
  margin: 0.65rem 0 1rem;
}

ul {
  margin: 0.8rem 0 1.2rem;
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.48rem;
}

.provider-grid {
  display: grid;
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.provider-grid article {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--stone);
}

.provider-grid h3 {
  margin-top: 0;
}

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

.provider-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.9rem;
}

.contact-card {
  padding: 1.5rem !important;
  border: 0 !important;
  border-radius: 16px;
  background: var(--mint);
}

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

footer {
  padding: 30px 0;
  background: var(--forest-deep);
  color: #dcece5;
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 28px, 680px);
  }

  .hero {
    padding: 56px 0 42px;
  }

  .identity-card {
    grid-template-columns: 1fr;
  }

  .policy {
    display: block;
    padding-top: 28px;
    padding-bottom: 58px;
  }

  .contents {
    position: static;
    margin-bottom: 38px;
  }

  .policy > section {
    margin-top: 2.2rem;
  }
}

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

@media print {
  body {
    color: black;
    font-size: 11pt;
  }

  .hero {
    padding: 1rem 0;
    background: white;
    color: black;
  }

  .identity-card {
    border-color: #aaa;
    box-shadow: none;
  }

  .identity-card > div {
    background: white;
  }

  .identity-card dt,
  .policy-date,
  .hero__summary,
  .eyebrow,
  .identity-card a {
    color: black;
  }

  .contents,
  footer {
    display: none;
  }

  .policy {
    display: block;
    padding: 1rem 0;
  }

  .policy > section {
    break-inside: avoid;
    margin-top: 1rem;
  }
}
