:root {
  color-scheme: light dark;
  --background: #fffaf5;
  --surface: #ffffff;
  --text: #2b2118;
  --muted: #6f6257;
  --accent-dark: #a94500;
  --border: #eadfd5;
  --shadow: 0 12px 30px rgb(70 42 20 / 8%);
}

* { box-sizing: border-box; }

html {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
  line-height: 1.75;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
}

a { color: var(--accent-dark); }

.container {
  width: min(100% - 40px, 760px);
  margin-inline: auto;
}

.site-header {
  padding: 72px 0 56px;
  color: #fff;
  background: linear-gradient(145deg, #ef8a37, #c54d06);
}

.site-header.compact { padding: 48px 0 40px; }
.site-header a { color: inherit; }

.eyebrow {
  margin: 0 0 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

h1 {
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 4rem);
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

main { padding-block: 28px 64px; }
section { margin-top: 36px; }

h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.4;
}

details {
  margin: 12px 0;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

summary {
  font-weight: 700;
  cursor: pointer;
}

details p { margin-bottom: 0; }

.button {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  background: var(--accent-dark);
}

.policy section { margin-top: 30px; }

.effective-date {
  margin-top: 48px;
  color: var(--muted);
}

.site-footer {
  padding: 24px 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #19130f;
    --surface: #241c17;
    --text: #f8eee5;
    --muted: #c7b7aa;
    --accent-dark: #ffad6c;
    --border: #49382c;
    --shadow: none;
  }
}
