:root {
  --maroon: #7B1E3A;
  --gold: #C9A227;
  --ivory: #FAF6EF;
  --ink: #1F1A17;
  --muted: #6B615A;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Mukta', system-ui, sans-serif;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 24px; width: 100%; }
header.site { border-bottom: 1px solid rgba(201, 162, 39, 0.35); background: #fff; }
header.site .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.brand { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--maroon); text-decoration: none; letter-spacing: 0.02em; }
.brand span { color: var(--gold); }
main { flex: 1; }
h1 { font-family: 'Playfair Display', serif; color: var(--maroon); font-size: 2rem; margin: 32px 0 8px; }
h2 { font-family: 'Playfair Display', serif; color: var(--maroon); font-size: 1.2rem; margin: 28px 0 8px; }
p, li { color: var(--ink); margin-bottom: 12px; }
ul { padding-left: 22px; margin-bottom: 12px; }
.muted { color: var(--muted); font-size: 0.95rem; }
.rule { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); border: 0; margin: 20px 0; }
a { color: var(--maroon); }
footer.site { border-top: 1px solid rgba(201, 162, 39, 0.35); background: #fff; margin-top: 48px; }
footer.site .wrap { padding-top: 20px; padding-bottom: 20px; font-size: 0.9rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px 20px; }
footer.site a { color: var(--muted); text-decoration: none; }
footer.site a:hover { color: var(--maroon); }

/* Coming soon hero */
.hero { text-align: center; padding: 72px 24px 56px; }
.hero .invocation { font-size: 0.85rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin: 0 0 14px; }
.hero .tag { font-size: 1.15rem; color: var(--muted); max-width: 34em; margin: 0 auto 10px; }
.hero .soon { display: inline-block; margin-top: 26px; border: 1px solid var(--gold); color: var(--maroon); padding: 10px 26px; border-radius: 999px; font-weight: 600; letter-spacing: 0.06em; }
.features { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.features span { background: #fff; border: 1px solid rgba(201, 162, 39, 0.4); border-radius: 999px; padding: 8px 18px; font-size: 0.92rem; color: var(--ink); }
@media (max-width: 480px) { .hero { padding: 48px 16px 40px; } }
