:root {
  color-scheme: light;
  --cream: #fff8e9;
  --paper: #fffdf8;
  --ink: #39271f;
  --muted: #725f55;
  --coral: #e96f5f;
  --coral-dark: #c85346;
  --line: #eadfd2;
  --yellow: #f5c64f;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--cream); line-height: 1.75; }
header, main, footer { width: min(720px, calc(100% - 40px)); margin-inline: auto; }
header { padding: 24px 0 10px; }
.brand { color: var(--ink); font-size: 1.12rem; font-weight: 800; text-decoration: none; }
main { padding: 38px 0 64px; }
.hero { padding-top: 64px; }
.eyebrow { color: var(--coral-dark); font-weight: 800; letter-spacing: .05em; }
h1 { margin: .25em 0 .55em; font-size: clamp(2rem, 7vw, 3.5rem); line-height: 1.28; letter-spacing: -.03em; }
h2 { margin: 2em 0 .45em; font-size: 1.25rem; }
h3 { margin: 1.5em 0 .3em; font-size: 1.05rem; }
p, li { color: var(--muted); }
a { color: var(--coral-dark); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.button { display: inline-block; padding: 12px 20px; border-radius: 999px; color: white; background: var(--coral); font-weight: 800; text-decoration: none; }
.button:hover { background: var(--coral-dark); }
.button.secondary { color: var(--ink); background: #f5e6bd; }
.card { margin-top: 30px; padding: 8px 24px 22px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: 0 10px 30px rgba(57,39,31,.06); }
.meta { margin-bottom: 28px; font-size: .92rem; }
ul { padding-left: 1.3em; }
form { display: grid; gap: 18px; }
label { display: grid; gap: 6px; font-weight: 750; }
input, select, textarea { width: 100%; padding: 12px 14px; border: 1px solid #cdbfb2; border-radius: 12px; background: white; color: var(--ink); font: inherit; }
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(245,198,79,.5); border-color: var(--coral); }
button { border: 0; cursor: pointer; font: inherit; }
.honeypot { position: absolute; left: -9999px; }
footer { padding: 26px 0 46px; border-top: 1px solid var(--line); color: var(--muted); font-size: .85rem; }
@media (max-width: 520px) { main { padding-top: 28px; } .hero { padding-top: 46px; } .card { padding-inline: 18px; } }
