@font-face {
  font-family: "GT Flexa Compressed";
  src: url("assets/GT-Flexa-X-Compressed-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("assets/inter-latin-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --red: #ee1717;
  --ink: #2a0812;
  --paper: #fffaf0;
  --muted: rgba(255, 250, 240, .7);
  --line: rgba(255, 250, 240, .18);
  --display: "GT Flexa Compressed", Impact, sans-serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --gutter: clamp(20px, 6vw, 88px);
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--ink); color: var(--paper); }
body { min-width: 320px; min-height: 100vh; font-family: var(--sans); -webkit-font-smoothing: antialiased; }
:where(p, a, button, input, label, span, li, select, textarea) { font-family: var(--sans); }
a { color: inherit; text-underline-offset: 4px; }
a:hover {
  opacity: .72;
  outline: none;
  border-color: transparent;
  box-shadow: none;
}
img { display: block; max-width: 100%; }
:where(a, button):focus-visible { outline: 2px solid var(--paper); outline-offset: 5px; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10;
  padding: 12px 16px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--gutter);
  border-bottom: 1px solid var(--line);
}
.brand-logo { display: block; width: clamp(179px, 23.2vw, 276px); height: auto; }
.back-link {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}
.back-link:hover {
  opacity: .72;
  outline: none;
  border: 0;
  box-shadow: none;
}
main { padding: clamp(72px, 11vw, 150px) var(--gutter) 120px; }
.privacy-layout { display: grid; gap: 70px; max-width: 1260px; margin: 0 auto; }
.eyebrow {
  margin: 0 0 22px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 16vw, 184px);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: .76;
}
.updated { margin: 30px 0 0; color: var(--muted); font-size: 13px; }
.policy { max-width: 760px; }
.intro { margin: 0 0 62px; font-size: clamp(21px, 3vw, 30px); line-height: 1.34; }
section { padding: 34px 0; border-top: 1px solid var(--line); background: transparent; }
h2 { margin: 0 0 18px; font-size: 17px; line-height: 1.3; }
p, li { color: var(--muted); font-size: 15px; line-height: 1.75; }
p { margin: 0 0 16px; }
ul { margin: 0; padding-left: 20px; }
li + li { margin-top: 8px; }
strong { color: var(--paper); font-weight: 700; }
.contact-card { margin-top: 34px; padding: 26px; background: var(--red); }
.contact-card p, .contact-card a { color: var(--paper); }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card a:hover {
  opacity: .82;
  outline: none;
  border: 0;
  box-shadow: none;
}
.privacy-choice {
  appearance: none;
  display: inline-flex;
  align-items: center;
  margin: 4px 0 8px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--paper);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
.privacy-choice:hover {
  opacity: .72;
  outline: none;
  border-color: var(--line);
  box-shadow: none;
}
@media (min-width: 820px) {
  .privacy-layout { grid-template-columns: minmax(280px, .72fr) minmax(480px, 1fr); align-items: start; }
  .policy { padding-top: 10px; }
}
