:root {
  --bg: #fff8f5;
  --surface: #ffffff;
  --surface-alt: #fff0ec;
  --text: #241617;
  --muted: #6e5757;
  --line: #efcfc8;
  --accent: #ea5b7a;
  --accent-strong: #bf3656;
  --accent-soft: #ffd7df;
  --shadow: 0 20px 60px rgba(139, 62, 62, 0.12);
  --radius: 24px;
  --wrap: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  background:
    radial-gradient(circle at top left, #ffe7db 0, transparent 28%),
    linear-gradient(180deg, #fff9f7 0%, #fff4ef 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

.prose {
  max-width: 960px;
}

.wrap {
  width: min(calc(100% - 32px), var(--wrap));
  margin: 0 auto;
}

.site-header {
  padding: 20px 0;
}

.site-header .wrap,
.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff9bb0, #ffcc9f);
  color: white;
  font-weight: 800;
}

.top-nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  flex-wrap: wrap;
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--accent-strong);
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1 {
  font-size: 24px;
  margin-bottom: 0;
}

h2 {
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.05;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.hero {
  padding: 32px 0 40px;
}

.hero-grid {
  align-items: stretch;
}

.hero-grid > * {
  flex: 1;
}

.lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
}

.hero-card,
.card,
.list-card,
.event-template,
.cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 246, 0.96)),
    var(--surface);
}

.card-label,
.sample-label {
  font-size: 13px;
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}

.button.primary {
  background: var(--accent);
  color: white;
}

.button.secondary {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.text-link {
  color: var(--accent-strong);
  font-weight: 700;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: rgba(255, 240, 236, 0.7);
  border-top: 1px solid rgba(239, 207, 200, 0.8);
  border-bottom: 1px solid rgba(239, 207, 200, 0.8);
}

.card-grid,
.list-grid,
.pill-grid {
  display: grid;
  gap: 18px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.list-card {
  padding: 24px;
}

.event-template {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  padding: 28px;
}

.sample {
  padding: 20px;
  border-radius: 20px;
  background: var(--surface-alt);
}

.sample-title {
  font-size: 24px;
  font-weight: 800;
}

.pill-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pill-grid span {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  text-align: center;
  font-weight: 700;
}

.cta {
  padding: 36px;
}

.cta.compact {
  margin-top: 28px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quick-link {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quick-link span {
  color: var(--muted);
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

li + li {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .site-header .wrap,
  .hero-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid,
  .list-grid,
  .pill-grid,
  .event-template,
  .quick-links,
  .faq-list {
    grid-template-columns: 1fr;
  }
}
