:root {
  color-scheme: light;
  --ink: #2c1810;
  --muted: #6b5244;
  --paper: #fff8f0;
  --card: #fffdf7;
  --terracotta: #7f321f;
  --terracotta-soft: #c45d3e;
  --teal: #145c51;
  --gold: #d4a853;
  --line: #ddcfc3;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.6;
}
a { color: var(--teal); text-underline-offset: 0.2em; }
a:focus-visible, summary:focus-visible { outline: 3px solid var(--terracotta-soft); outline-offset: 4px; }

.site-header, footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-header { min-height: 96px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 800; text-decoration: none; }
.brand-mark { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; }
nav, footer div { display: flex; gap: 22px; }
main { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  margin: 48px 0 28px;
  padding: clamp(38px, 7vw, 88px);
  border-radius: 36px;
  color: white;
  background: var(--terracotta);
}
.eyebrow, .number {
  margin: 0 0 10px;
  color: #f5d98f;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
h1, h2 { margin-top: 0; line-height: 1.08; letter-spacing: -0.035em; }
h1 { max-width: 830px; margin-bottom: 22px; font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
.lede { max-width: 800px; color: inherit; font-size: clamp(1.1rem, 2vw, 1.35rem); }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 14px; font-weight: 800; text-decoration: none; }
.button.primary { color: var(--ink); background: #f4d98a; }
.button.secondary { color: white; border: 1px solid #e8a991; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 28px 0; }
.grid article, .support-card, .faq, .policy section { border: 1px solid var(--line); border-radius: 24px; background: var(--card); }
.grid article { padding: 28px; }
.grid .number, .support-card .eyebrow, .faq .eyebrow, .policy > .eyebrow { color: var(--terracotta-soft); }
.grid p:last-child, .support-card p, .faq p, .policy p { color: var(--muted); }
.support-card { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(28px, 5vw, 52px); }
.support-card div { max-width: 760px; }
.support-card .button { flex: 0 0 auto; color: white; background: var(--teal); }
.faq { margin: 28px 0 64px; padding: clamp(28px, 5vw, 52px); }
details { border-top: 1px solid var(--line); padding: 18px 0; }
summary { cursor: pointer; font-weight: 800; }
.policy { max-width: 880px; padding: 64px 0; }
.policy h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); }
.policy section { margin-top: 20px; padding: 28px; }
footer { padding: 32px 0 48px; border-top: 1px solid var(--line); color: var(--muted); }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header, footer, .support-card { align-items: flex-start; flex-direction: column; }
  .site-header { padding: 18px 0; }
  .grid { grid-template-columns: 1fr; }
  nav, footer div { flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
