@font-face {
  font-family: "Young Serif";
  src: url("/fonts/YoungSerif-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Literata";
  src: url("/fonts/Literata-Variable.ttf") format("truetype");
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --dark: #0a0f0d;
  --cream: #fbfaf6;
  --ink: #1a1f2e;
  --green: #00ff85;
  --green-ink: #1a8a6b;
  --gutter: clamp(20px, 5vw, 72px);
  color-scheme: light;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Literata", Georgia, serif;
  font-synthesis: none;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-underline-offset: 3px; }

a:focus-visible {
  outline: 2px solid var(--green-ink);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 30;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 700;
}

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

.bg-grid,
.eyebrow,
.lang-switcher { display: none; }

.page { min-height: 100vh; }

.nav {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: var(--dark);
}

.nav-logo { display: block; width: clamp(200px, 18vw, 230px); }
.nav-logo img { display: block; width: 100%; height: auto; }

.legal-page { padding: clamp(66px, 10vw, 132px) var(--gutter); }
.container { width: min(100%, 1100px); margin-inline: auto; }

.legal-hero {
  padding-bottom: clamp(44px, 7vw, 84px);
  border-bottom: 1px solid rgba(26, 31, 46, 0.18);
}

.legal-hero h1 {
  max-width: 11ch;
  margin: 0;
  font-family: "Young Serif", Georgia, serif;
  font-size: clamp(3.4rem, 8vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.accent { color: var(--green-ink); }

.legal-meta {
  margin: 28px 0 0;
  color: rgba(26, 31, 46, 0.7);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-content {
  width: min(100%, 820px);
  margin: clamp(48px, 8vw, 92px) auto 0;
  font-size: clamp(1rem, 1.4vw, 1.13rem);
}

.legal-content h2,
.legal-content h3 {
  scroll-margin-top: 28px;
  font-family: "Young Serif", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.03;
}

.legal-content h2 { margin: 72px 0 20px; font-size: clamp(2.25rem, 4vw, 3.7rem); }
.legal-content h3 { margin: 38px 0 14px; font-size: clamp(1.5rem, 2.4vw, 2rem); }
.legal-content p,
.legal-content ul { margin: 0 0 22px; }
.legal-content li + li { margin-top: 8px; }

.legal-toc {
  margin-bottom: 72px;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(26, 31, 46, 0.18);
}

.legal-toc-label {
  font-family: "Inter", sans-serif;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc ol { columns: 2; gap: 38px; margin: 20px 0 0; padding-left: 22px; }
.legal-toc li { break-inside: avoid; margin-bottom: 8px; }

table {
  width: 100%;
  margin: 28px 0 46px;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  line-height: 1.5;
}

th,
td { padding: 14px 12px; border-bottom: 1px solid rgba(26, 31, 46, 0.18); text-align: left; vertical-align: top; }
th { font-weight: 750; }

.legal-divider { margin: 72px 0 28px; border: 0; border-top: 1px solid rgba(26, 31, 46, 0.18); }

footer {
  padding: 58px var(--gutter) 34px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
}

.footer-grid { width: min(100%, 1100px); margin-inline: auto; }
.footer-tagline { margin: 0; color: #fff; font-family: "Young Serif", Georgia, serif; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 0.94; }
.footer-contact-name { margin: 24px 0 0; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 24px; }
.footer-links a { display: inline-flex; min-height: 44px; align-items: center; }
.footer-meta { display: flex; width: min(100%, 1100px); justify-content: space-between; gap: 20px; margin: 38px auto 0; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.64); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; }

@media (max-width: 680px) {
  .nav { min-height: 76px; }
  .nav-logo { width: 200px; }
  .legal-toc ol { columns: 1; }
  .legal-content { font-size: 1rem; }
  table { display: block; overflow-x: auto; }
  .footer-meta { flex-direction: column; }
}

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