/* Shared shell for the legal pages.
   Tokens lifted from the rest of the site: #15161A ground, #BC202D accent,
   Sarabun for headings, Lato for body, and the same 800px prose column the
   Location page's history / getting-there / plan-the-day sections use. */
:root {
  --ground: #15161A;
  --panel: #1E1F24;
  --accent: #BC202D;
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.75);
  --faint: rgba(255, 255, 255, 0.55);
  --rule: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }
html, body { max-width: 100%; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 16px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid var(--rule);
}
.legal-header a { text-decoration: none; }
.legal-header img { height: 36px; width: auto; display: block; }
.legal-nav { display: flex; gap: clamp(14px, 3vw, 28px); align-items: center; }
.legal-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
}
.legal-nav a:hover { color: var(--text); }
.legal-nav a[aria-current="page"] { color: var(--accent); }

main {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) clamp(20px, 5vw, 56px) clamp(56px, 8vw, 96px);
}
h1 {
  margin: 0 0 10px;
  font-family: 'Sarabun', sans-serif;
  font-weight: 700;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.effective {
  margin: 0 0 clamp(28px, 5vw, 44px);
  font-size: 14px;
  color: var(--faint);
}
h2 {
  margin: clamp(30px, 5vw, 44px) 0 12px;
  font-family: 'Sarabun', sans-serif;
  font-weight: 700;
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.3;
}
p, li {
  font-size: clamp(15px, 1.6vw, 16px);
  line-height: 1.75;
  color: var(--muted);
}
p { margin: 0 0 14px; }
ul { margin: 0 0 14px; padding-left: 22px; }
li { margin-bottom: 8px; }
main a { color: var(--accent); }

/* Company details are not filled in yet. Marked so they cannot be shipped by
   accident, and so a find-and-replace has something to find. */
.todo {
  color: var(--accent);
  border-bottom: 1px dotted currentColor;
  white-space: nowrap;
}

.legal-footer {
  border-top: 1px solid var(--rule);
  padding: 28px clamp(20px, 5vw, 56px) 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.legal-footer p { margin: 0; font-size: 13px; color: var(--faint); }
.legal-footer nav { display: flex; flex-wrap: wrap; gap: clamp(14px, 3vw, 24px); }
.legal-footer a { font-size: 13px; color: var(--accent); text-decoration: none; }
