:root {
  --cream: #f5f0e8;
  --cream-2: #ede8e0;
  --white: #ffffff;
  --red: #e8401a;
  --amber: #f5a623;
  --text: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #999999;
  --border: rgba(0, 0, 0, 0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; background: var(--cream); color: var(--text); line-height: 1.6; }
.container { width: min(1080px, 92%); margin: 0 auto; }

.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 5; }
.nav-wrap { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; gap: 1rem; }
.brand { text-decoration: none; font-size: 1.85rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.brand .z { background: linear-gradient(135deg, var(--red), var(--amber)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.brand-tagline { color: var(--text-muted); font-size: .8rem; display: block; margin-top: -3px; }
nav { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: flex-end; }
nav a { text-decoration: none; font-size: .92rem; font-weight: 600; color: var(--red); border: 1px solid var(--red); border-radius: 999px; padding: .45rem .85rem; }
nav a:hover, nav a.active { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--red), var(--amber)); }

.hero { padding: 4.5rem 0 2.5rem; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.05; letter-spacing: -0.03em; }
.hero p { color: var(--text-secondary); max-width: 70ch; margin-top: .8rem; }
.cta-group { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.4rem; }

.btn { display: inline-block; text-decoration: none; background: var(--white); color: var(--text); border: 1px solid var(--border); border-radius: 999px; padding: .65rem 1.1rem; font-weight: 600; }
.btn.primary { color: #fff; border: none; background: linear-gradient(135deg, var(--red), var(--amber)); }

.grid { display: grid; gap: 1rem; padding: .5rem 0 3.5rem; }
.grid.three { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem; }
.card p { color: var(--text-secondary); }

.content { padding: 2rem 0 4rem; }
.content h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .6rem; letter-spacing: -0.02em; }
.content h2 { margin-top: 1rem; }
.content p, .content li { color: var(--text-secondary); }
.content ul { padding-left: 1.2rem; margin: .4rem 0 1rem; }

.support-form { display: grid; gap: .8rem; margin: 1rem 0 1.2rem; max-width: 560px; }
.support-form label { display: grid; gap: .3rem; font-weight: 600; color: var(--text); font-size: .92rem; }
.support-form input, .support-form textarea { font: inherit; color: var(--text); background: var(--cream); border: 1px solid var(--border); border-radius: 10px; padding: .6rem .8rem; width: 100%; }
.support-form input:focus, .support-form textarea:focus { outline: 2px solid var(--amber); outline-offset: 1px; }
.support-form textarea { resize: vertical; }
.support-form button { justify-self: start; cursor: pointer; }
.support-form .hp { position: absolute; left: -10000px; }
.confirm { background: var(--cream-2); border: 1px solid var(--border); border-radius: 10px; padding: .7rem .9rem; margin-bottom: 1rem; color: var(--text); }

.site-footer { border-top: 1px solid var(--border); background: var(--white); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1.2rem; padding: 1.5rem 0; }
.site-footer a { color: var(--text-secondary); text-decoration: none; display: block; margin: .25rem 0; }
.copyright { text-align: center; color: var(--text-muted); padding-bottom: 1rem; }

@media (max-width: 760px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; }
  nav { justify-content: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}
