:root {
  --bg: #f8f5f0;
  --text: #2a2622;
  --muted: #6a635c;
  --accent: #8a7148;
  --border: rgba(138, 113, 72, 0.2);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.page {
  width: min(36rem, 100%);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: lowercase;
  color: var(--accent);
}

.eyebrow [data-lucide] {
  width: 0.875rem;
  height: 0.875rem;
}

h1 {
  margin: 0 0 1.25rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 400;
  line-height: 1.25;
}

.lead {
  margin: 0 0 2rem;
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.75;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0 0 2rem;
  padding: 0;
}

.feature {
  margin: 0;
  padding: 1.125rem 0.75rem;
  background: #fffcf8;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0 auto 0.625rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--accent);
  background: var(--bg);
}

.feature-icon [data-lucide] {
  width: 1.125rem;
  height: 1.125rem;
  stroke-width: 1.5;
}

.feature-label {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
}

.note {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  color: var(--muted);
}

.email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #fffcf8;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.email [data-lucide] {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.email:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.email:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .features {
    grid-template-columns: 1fr;
    max-width: 14rem;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  body {
    align-items: flex-start;
    padding-top: 3rem;
  }
}
