:root {
  color-scheme: light;
  --cream: #ffeace;
  --paper: #fbf8f3;
  --red: #fc5d4b;
  --ink: #191411;
  --muted: #665f5a;
  --border: #e8ded3;
  --card: #fffdf9;
}

* { box-sizing: border-box; }

html { background: var(--paper); }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ink); text-decoration-color: var(--red); text-underline-offset: 3px; }
a:hover { color: #a82e26; }
a:focus-visible { outline: 3px solid color-mix(in srgb, var(--red) 40%, transparent); outline-offset: 4px; border-radius: 3px; }

.site-header {
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
}

.site-header__inner,
.site-footer__inner,
.legal-main {
  width: min(100% - 40px, 820px);
  margin-inline: auto;
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand span { color: var(--red); }

.site-nav { display: flex; align-items: center; gap: 18px; font-size: 14px; }

.legal-main { padding-block: clamp(52px, 9vw, 92px); }

.eyebrow {
  margin: 0 0 14px;
  color: #a82e26;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 { margin: 0; line-height: 1.18; letter-spacing: -0.025em; }
h1 { max-width: 18ch; font-size: clamp(38px, 8vw, 64px); }
h2 { margin-top: 44px; font-size: clamp(24px, 4vw, 30px); }
h3 { margin-top: 28px; font-size: 19px; }

.lede {
  max-width: 66ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.updated { margin: 18px 0 0; color: var(--muted); font-size: 14px; }

.notice {
  margin-top: 34px;
  padding: 22px 24px;
  border: 1px solid #f1c4bc;
  border-radius: 14px;
  background: #fff5f1;
}

.notice strong { display: block; margin-bottom: 5px; }

p, ul { max-width: 72ch; }
ul { padding-left: 22px; }
li + li { margin-top: 8px; }

.contact-card {
  margin-top: 32px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
}

.contact-card h2 { margin-top: 0; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 0 18px;
  border-radius: 10px;
  color: #fff;
  background: var(--red);
  font-weight: 750;
  text-decoration: none;
}

.button:hover { color: #fff; background: #df4435; }

.site-footer { border-top: 1px solid var(--border); }
.site-footer__inner { padding-block: 28px; color: var(--muted); font-size: 13px; }

@media (max-width: 560px) {
  .site-header__inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 16px; }
  .site-nav { flex-wrap: wrap; }
}
