:root {
  --primary: #8f4e00;
  --primary-container: #ff9933;
  --secondary: #755a1d;
  --surface: #faf9f6;
  --surface-lowest: #ffffff;
  --surface-high: #e9e8e5;
  --surface-warm: #efeeeb;
  --text: #1a1c1a;
  --muted: #554336;
  --outline: #dbc2b0;
  --shadow: rgba(143, 78, 0, 0.08);
  --serif: "Noto Serif", Georgia, serif;
  --sans: "Plus Jakarta Sans", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(
      circle at top left,
      rgba(255, 153, 51, 0.17),
      transparent 30%
    ),
    radial-gradient(
      circle at right 20%,
      rgba(254, 216, 142, 0.28),
      transparent 28%
    ),
    linear-gradient(180deg, #fff9f0 0%, var(--surface) 26%, #f6f2ea 100%);
  color: var(--text);
  font-family: var(--sans);
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-glow {
  position: fixed;
  inset: auto;
  width: 22rem;
  height: 22rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.page-glow-left {
  top: -6rem;
  left: -6rem;
  background: rgba(255, 153, 51, 0.32);
}

.page-glow-right {
  right: -8rem;
  top: 18rem;
  background: rgba(254, 216, 142, 0.34);
}

.shell {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 960px);
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(143, 78, 0, 0.08);
  border-radius: 32px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9),
      rgba(255, 249, 240, 0.94)
    ),
    var(--surface-lowest);
  box-shadow: 0 24px 60px var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 153, 51, 0.18),
    rgba(255, 153, 51, 0)
  );
}

.eyebrow,
.hero-kicker,
.fact-label,
.footer-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 153, 51, 0.12);
  color: var(--primary);
}

.hero-kicker {
  margin: 1.1rem 0 0;
  color: var(--secondary);
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
}

h1 {
  max-width: 12ch;
  margin-top: 0.5rem;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy {
  max-width: 62ch;
  margin: 1.1rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.9;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.fact-card,
.policy-card,
.footer-card {
  border: 1px solid rgba(143, 78, 0, 0.08);
  box-shadow: 0 20px 40px rgba(143, 78, 0, 0.04);
}

.fact-card {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
}

.fact-card strong {
  font-size: 1rem;
  line-height: 1.45;
}

.fact-label,
.footer-label {
  color: var(--secondary);
}

.policy-section {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.policy-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem;
  border-radius: 28px;
  background: var(--surface-lowest);
}

.policy-marker {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 153, 51, 0.18),
    rgba(255, 153, 51, 0.06)
  );
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.policy-card h2 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.25;
}

.policy-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.footer-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
  padding: 1.4rem 1.5rem;
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 249, 240, 0.95),
    rgba(255, 255, 255, 0.92)
  );
}

.footer-value {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

@media (max-width: 840px) {
  .quick-facts,
  .footer-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 1rem, 960px);
    padding: 0.75rem 0 2rem;
  }

  .hero,
  .policy-card,
  .footer-card {
    border-radius: 24px;
  }

  .hero,
  .policy-card,
  .footer-card {
    padding: 1.15rem;
  }

  .quick-facts,
  .footer-card {
    grid-template-columns: 1fr;
  }

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

  .policy-marker {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .hero-copy,
  .policy-card p {
    line-height: 1.75;
  }
}
