:root {
  color-scheme: light;
  --ink: #171b1f;
  --muted: #5b5e5b;
  --paper: #fff8ef;
  --cream: #f6eadb;
  --surface: #ffffff;
  --blush: #a64268;
  --wine: #70304e;
  --pine: #253f3e;
  --gold: #bc7a2d;
  --champagne: #ffdda2;
  --line: rgba(23, 27, 31, 0.14);
  --shadow: 0 20px 60px rgba(23, 27, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid #ffd274;
  outline-offset: 4px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
  background: linear-gradient(135deg, #253f3e 0%, #322f32 52%, #70304e 100%);
}

.brand {
  color: #ffdda2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.4vw, 28px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.nav-links a {
  color: #fff0bd;
  text-decoration: none;
}

.nav-links a:hover {
  color: #fff7d9;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.page-hero {
  color: #fff;
  background: linear-gradient(135deg, #253f3e 0%, #322f32 52%, #70304e 100%);
  border-top: 1px solid rgba(255, 220, 163, 0.16);
}

.hero-inner {
  width: min(940px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 54px) clamp(18px, 5vw, 74px) clamp(38px, 5.5vw, 60px);
}

.kicker {
  margin: 0 0 12px;
  color: #ffdda2;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  color: var(--champagne);
  font-size: clamp(34px, 5vw, 52px);
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.9),
    0 3px 18px rgba(0, 0, 0, 0.4);
}

h2 {
  color: var(--wine);
  font-size: clamp(25px, 3.2vw, 34px);
}

.lead {
  max-width: 760px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.8vw, 19px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #171b1f;
  background: #ffd274;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
}

.content-band {
  padding: clamp(42px, 6vw, 70px) clamp(18px, 5vw, 74px);
}

.content-shell {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.content-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.content-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.content-card p:first-child,
.content-card h2 + p {
  margin-top: 16px;
}

.content-card a:not(.button) {
  color: var(--wine);
  font-weight: 400;
}

.content-card ol,
.content-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 1.25rem;
  color: var(--muted);
  font-size: 17px;
}

.content-card li::marker {
  color: var(--blush);
  font-weight: 900;
}

.policy-cta {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 8px;
  color: #fff;
  background: var(--pine);
  text-align: center;
}

.policy-cta h2 {
  color: #ffdda2;
}

.policy-cta p {
  margin: 0 auto;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
}

.policy-cta .button-row {
  justify-content: center;
  margin-top: 4px;
}

.footer {
  padding: 26px clamp(18px, 5vw, 74px);
  color: rgba(255, 255, 255, 0.72);
  background: #171b1f;
  font-size: 14px;
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
}

.footer-links a {
  color: rgba(255, 220, 163, 0.86);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 18px;
  }

  .nav-links {
    font-size: 11px;
    gap: 10px 14px;
  }

  h1 {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }

  .content-card {
    padding: 22px;
  }
}
