:root {
  --bg: #faf6ee;
  --bg-glow-1: #f6dcc7;
  --bg-glow-2: #e8d3e9;
  --ink: #1f1b3a;
  --ink-soft: #4a4566;
  --ink-muted: #7a738f;
  --accent: #e8755a;
  --accent-ink: #ffffff;
  --pill-bg: rgba(31, 27, 58, 0.06);
  --pill-ring: rgba(31, 27, 58, 0.12);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  background-image:
    radial-gradient(60vw 40vh at 70% -10%, var(--bg-glow-1) 0%, transparent 65%),
    radial-gradient(50vw 35vh at 10% 110%, var(--bg-glow-2) 0%, transparent 70%);
  background-attachment: fixed;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem 3rem;
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  margin-bottom: 2.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--pill-bg);
  border: 1px solid var(--pill-ring);
  border-radius: 999px;
}

.pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 117, 90, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232, 117, 90, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(232, 117, 90, 0.05); }
}

.wordmark {
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(3rem, 9vw, 5.25rem);
  line-height: 1.02;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

.wordmark-amp {
  font-style: italic;
  font-weight: 500;
  color: var(--ink-soft);
}

.tagline {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
  letter-spacing: -0.005em;
}

.lede {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 36ch;
  margin: 0 0 2.5rem;
}

.ig {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.4rem;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.98rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px -8px rgba(232, 117, 90, 0.6);
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.ig:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(232, 117, 90, 0.7);
}

.ig:active {
  transform: translateY(0);
}

.ig-icon {
  width: 18px;
  height: 18px;
}

.ig-handle {
  font-weight: 500;
  opacity: 0.95;
}

.footer {
  text-align: center;
  padding: 1.25rem 1.5rem 1.75rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.25rem 2rem; }
  .lede { font-size: 0.97rem; }
}

@media (prefers-reduced-motion: reduce) {
  .pill-dot { animation: none; }
  .ig { transition: none; }
}
