:root { color-scheme: light; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: #2f1831; background: #fffaf7; }
* { box-sizing: border-box; }
body { margin: 0; line-height: 1.6; }
.shell { width: min(760px, calc(100% - 32px)); margin: 0 auto; }
header { border-bottom: 1px solid #eadde8; background: #fff; }
nav { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
a { color: #7c2f61; }
.brand { color: #4d1d49; font-size: 1.1rem; font-weight: 800; text-decoration: none; }
.links { display: flex; gap: 18px; flex-wrap: wrap; }
main { padding: 48px 0 64px; }
h1 { font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1.1; }
h2 { margin-top: 2rem; line-height: 1.25; }
.hero { padding: clamp(28px, 6vw, 54px); border: 1px solid #eadde8; border-radius: 28px; background: #fff; }
.eyebrow { color: #9a3e72; font-size: .8rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.lede { font-size: 1.15rem; color: #5f465f; }
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.card { padding: 22px; border: 1px solid #eadde8; border-radius: 18px; background: #fff; }
footer { border-top: 1px solid #eadde8; padding: 24px 0; }

@media (max-width: 640px) {
  nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
  main { padding-top: 28px; }
  .grid { grid-template-columns: 1fr; }
}
