:root {
  --ink: #20211f;
  --paper: #e9e5dc;
  --stone: #c8c2b7;
  --sage: #929986;
  --pad: clamp(20px, 4vw, 72px);
  --sans: Futura, "Futura PT", "Futura Std", "Century Gothic", Avenir, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body::selection { color: var(--paper); background: var(--ink); }
a { color: inherit; text-underline-offset: 3px; }

.legal-topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  margin: 18px var(--pad) 0;
  min-height: 62px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 100px;
  background: rgba(236,233,226,.94);
  box-shadow: 0 14px 44px rgba(32,33,31,.08);
}

.legal-logo {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.035em;
  text-decoration: none;
  -webkit-text-stroke: .25px currentColor;
}

.back-link {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .15em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-hero {
  min-height: 58svh;
  padding: 110px var(--pad) 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-bottom: 1px solid rgba(32,33,31,.4);
  background: var(--stone);
}

.legal-kicker {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(32,33,31,.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 1100px;
  margin: 80px 0 0;
  font-size: clamp(66px, 10.5vw, 178px);
  line-height: .78;
  font-weight: 500;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.legal-hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
  text-transform: lowercase;
}

.legal-layout {
  padding: 90px var(--pad) 120px;
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, 1fr);
  gap: clamp(45px, 9vw, 150px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 11px;
}

.legal-nav a {
  width: fit-content;
  font-size: 9px;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal-nav a:hover { text-decoration: underline; }

.legal-content { max-width: 850px; }
.legal-content section { padding: 0 0 55px; margin: 0 0 55px; border-bottom: 1px solid rgba(32,33,31,.25); }
.legal-content section:last-child { margin-bottom: 0; border-bottom: 0; }

.legal-content h2 {
  margin: 0 0 24px;
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.045em;
}

.legal-content h3 {
  margin: 30px 0 12px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.68;
}

.legal-content p { margin: 0 0 17px; }
.legal-content ul { margin: 15px 0 20px; padding-left: 20px; }
.legal-content li + li { margin-top: 8px; }

.data-table { width: 100%; border-collapse: collapse; margin: 25px 0; }
.data-table th,
.data-table td {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(32,33,31,.25);
  text-align: left;
  vertical-align: top;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}
.data-table th { font-family: var(--sans); font-size: 8px; letter-spacing: .13em; text-transform: uppercase; }

.legal-note {
  padding: 22px;
  border-left: 3px solid var(--sage);
  background: rgba(200,194,183,.42);
}

.legal-footer {
  padding: 25px var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  border-top: 1px solid rgba(32,33,31,.35);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.legal-footer nav {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
.legal-footer a { text-decoration: none; }
.legal-footer a:hover { text-decoration: underline; }

@media (max-width: 760px) {
  .legal-topbar { top: 12px; min-height: 54px; margin-top: 12px; }
  .legal-hero { min-height: 500px; padding-top: 85px; }
  .legal-hero h1 { margin-top: 70px; font-size: 17vw; }
  .legal-layout { grid-template-columns: 1fr; padding-top: 65px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; gap: 10px 18px; padding-bottom: 25px; border-bottom: 1px solid rgba(32,33,31,.3); }
  .data-table { display: block; overflow-x: auto; }
  .legal-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .legal-footer nav { grid-column: 1; }
}
