:root {
  --bg: #081b10;
  --bg-deep: #06140c;
  --surface: #0e2b1a;
  --surface-raised: #123721;
  --border: #28543a;
  --border-soft: #1a432b;
  --text: #f6f1df;
  --muted: #b8c9bd;
  --gold: #d7b85a;
  --gold-light: #f0d989;
  --green: #75c68f;
  --danger: #efaaaa;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
  --shell: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% -8%, rgba(90, 164, 112, 0.17), transparent 30rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
}

a {
  color: var(--gold-light);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: #fff0b1;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
  border-radius: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold-light);
  color: var(--bg-deep);
  font-weight: 800;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(115, 173, 132, 0.19);
  background: rgba(6, 20, 12, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #785f20;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--gold-light), #a47c20);
  color: #142115;
  font-family: Georgia, serif;
  font-weight: 900;
  box-shadow: 0 8px 26px rgba(215, 184, 90, 0.16);
}

.header-nav,
.footer-inner div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-nav a,
.footer-inner a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a[aria-current="page"],
.footer-inner a:hover {
  color: var(--gold-light);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background:
    linear-gradient(115deg, rgba(7, 24, 14, 0.4), rgba(13, 40, 24, 0.96)),
    repeating-linear-gradient(135deg, transparent 0 24px, rgba(215, 184, 90, 0.025) 24px 25px);
}

.hero::after {
  position: absolute;
  top: -10rem;
  right: -8rem;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(215, 184, 90, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(215, 184, 90, 0.02), 0 0 0 96px rgba(215, 184, 90, 0.015);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: 94px 88px;
}

.compact-hero .hero-inner {
  padding-block: 72px 68px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.compact-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 30px;
  color: #cbd8cf;
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.policy-meta span {
  padding: 7px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(10, 35, 20, 0.66);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: -28px;
  position: relative;
  z-index: 2;
}

.trust-card,
.instruction-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(19, 55, 33, 0.98), rgba(12, 40, 23, 0.98));
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 25px;
}

.card-number {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.trust-card h2 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.trust-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.policy-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 760px);
  justify-content: space-between;
  gap: 80px;
  padding-block: 90px 120px;
}

.toc {
  position: sticky;
  top: 106px;
  align-self: start;
  padding-left: 18px;
  border-left: 1px solid var(--border);
}

.toc-title {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc ol {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc a {
  display: block;
  padding: 3px 0;
  color: #98ad9e;
  font-size: 0.82rem;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover {
  color: var(--gold-light);
}

.policy-content > section {
  padding-block: 20px 52px;
  border-bottom: 1px solid var(--border-soft);
}

.policy-content > section:first-child {
  padding-top: 0;
}

.policy-content > section:last-child {
  border-bottom: 0;
}

.policy-content h2,
.narrow-content h2 {
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.policy-content h3,
.narrow-content h3 {
  margin-top: 32px;
  margin-bottom: 10px;
  color: #e9e5d6;
  font-size: 1rem;
}

.policy-content p,
.policy-content li,
.narrow-content p,
.narrow-content li {
  color: var(--muted);
}

.policy-content strong,
.narrow-content strong {
  color: var(--text);
}

.policy-content ul {
  padding-left: 1.25rem;
}

.policy-content li + li {
  margin-top: 8px;
}

.data-list {
  display: grid;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.data-list article {
  padding: 26px 0 20px;
  border-bottom: 1px solid var(--border-soft);
}

.data-list article h3 {
  margin-top: 0;
}

.data-list article p {
  margin-bottom: 0;
}

.callout,
.warning {
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid #6d5a25;
  border-radius: 14px;
  background: rgba(96, 73, 17, 0.16);
}

.callout h3 {
  margin-top: 0;
  color: var(--gold-light);
}

.callout p,
.warning {
  margin-bottom: 0;
}

.contact-section address {
  margin-bottom: 26px;
  padding: 20px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(16, 47, 29, 0.72);
  color: var(--muted);
  font-style: normal;
}

.policy-content a,
.narrow-content a,
.contact-section address {
  overflow-wrap: anywhere;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid #8a7129;
  border-radius: 11px;
  background: linear-gradient(145deg, var(--gold-light), #c6a03b);
  color: #132015;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(215, 184, 90, 0.12);
}

.button:hover {
  color: #07130b;
  filter: brightness(1.05);
}

.narrow-content {
  max-width: 820px;
  padding-block: 70px 110px;
}

.narrow-content > section {
  margin-bottom: 62px;
}

.instruction-card {
  padding: clamp(24px, 5vw, 42px);
}

.steps {
  display: grid;
  gap: 18px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: start;
  gap: 14px;
}

.steps li > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #806821;
  border-radius: 50%;
  color: var(--gold-light);
  font-size: 0.82rem;
  font-weight: 850;
}

.steps li > div {
  padding-top: 3px;
  color: var(--muted);
}

.note {
  margin: 24px 0 0;
  color: var(--danger) !important;
  font-weight: 750;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  position: absolute;
  top: 0.08em;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.alternate-request .button {
  margin-top: 20px;
}

.support-address {
  margin-top: 22px;
  margin-bottom: 0;
  font-size: 0.9rem;
}

.back-link {
  margin: 0;
  text-align: center;
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-deep);
}

.footer-inner {
  min-height: 96px;
}

.footer-inner p {
  margin: 0;
  color: #819688;
  font-size: 0.84rem;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .trust-card {
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 10px;
  }

  .trust-card .card-number {
    grid-row: span 2;
    margin: 3px 0 0;
  }

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
  }

  .toc {
    position: static;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(14, 43, 26, 0.68);
  }

  .toc ol {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 18px;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, var(--shell));
  }

  .header-inner {
    min-height: 66px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .header-nav {
    gap: 13px;
  }

  .header-nav a {
    font-size: 0.76rem;
  }

  .hero-inner {
    padding-block: 68px 62px;
  }

  .compact-hero .hero-inner {
    padding-block: 56px 52px;
  }

  .toc ol {
    grid-template-columns: 1fr;
  }

  .policy-layout,
  .narrow-content {
    padding-bottom: 80px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 26px;
  }

  .footer-inner div {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
}

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

@media print {
  :root {
    --bg: #fff;
    --text: #111;
    --muted: #333;
    --border: #aaa;
    --border-soft: #ddd;
    --gold: #5c4700;
    --gold-light: #5c4700;
  }

  body {
    background: #fff;
    color: #111;
  }

  .site-header,
  .toc,
  .trust-grid,
  .site-footer,
  .button {
    display: none;
  }

  .hero,
  .instruction-card,
  .callout,
  .warning,
  .contact-section address {
    border-color: #aaa;
    background: #fff;
    box-shadow: none;
  }

  .hero-inner,
  .policy-layout,
  .narrow-content {
    padding-block: 24px;
  }

  .policy-layout {
    display: block;
  }

  a {
    color: #111;
  }
}
