@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/hanken-grotesk-400.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Hanken Grotesk';
  src: url('/fonts/hanken-grotesk-700.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}

:root {
  color: #231c18;
  background: #b8ac9a;
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: #b8ac9a;
  color: #231c18;
}

a { color: inherit; }

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

.legal-header a:focus-visible,
.legal-footer a:focus-visible {
  outline-color: #f6eddf;
}

.skip-link {
  position: fixed;
  z-index: 10;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: #f6eddf;
  color: #231c18;
  font-weight: 700;
  transform: translateY(-160%);
}

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

.legal-header,
.legal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 6vw, 72px);
  background: #3c302a;
  color: #f6eddf;
}

.legal-header a,
.legal-footer a { text-decoration-thickness: 1px; text-underline-offset: 4px; }

.legal-brand {
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.legal-header nav,
.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-hero {
  padding: clamp(48px, 10vw, 112px) clamp(20px, 10vw, 140px);
  background: #e7b96b;
  border-bottom: 1px solid rgba(35, 28, 24, 0.32);
}

.legal-kicker {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 10vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.legal-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  font-size: clamp(1.05rem, 2.1vw, 1.4rem);
  line-height: 1.5;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 820px);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  padding: clamp(40px, 8vw, 96px) clamp(20px, 10vw, 140px);
}

.legal-index {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 10px;
}

.legal-index strong {
  margin-bottom: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-index a {
  width: fit-content;
  color: #3c302a;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-copy section {
  padding: 0 0 38px;
  margin: 0 0 38px;
  border-bottom: 1px solid rgba(35, 28, 24, 0.28);
}

.legal-copy section:last-child { border-bottom: 0; }

.legal-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 4vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.legal-copy h3 { margin: 26px 0 8px; font-size: 1.1rem; }

.legal-copy p,
.legal-copy li {
  font-size: 1rem;
  line-height: 1.7;
}

.legal-copy ul,
.legal-copy ol { padding-left: 22px; }

.legal-copy li + li { margin-top: 8px; }

.legal-note {
  padding: 20px;
  background: #3d494d;
  color: #f6eddf;
}

.request-panel {
  margin: 28px 0;
  padding: clamp(22px, 5vw, 34px);
  background: #3c302a;
  color: #f6eddf;
}

.request-panel p { margin: 0; }
.request-panel p + p { margin-top: 18px; }

.request-label {
  font-size: 0.75rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 62px;
  margin: 14px 0 18px;
  padding: 14px 18px;
  border: 2px solid #231c18;
  background: #e7b96b;
  color: #231c18;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.request-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(231, 185, 107, 0.28);
}

.request-action:focus-visible { outline-color: #f6eddf; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(35, 28, 24, 0.32);
  border-left: 1px solid rgba(35, 28, 24, 0.32);
}

.support-grid article {
  padding: 24px;
  border-right: 1px solid rgba(35, 28, 24, 0.32);
  border-bottom: 1px solid rgba(35, 28, 24, 0.32);
}

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

@media (max-width: 760px) {
  .legal-header,
  .legal-footer { align-items: flex-start; flex-direction: column; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-index { position: static; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .request-action { transition: none; }
}
