:root {
  --cream: #f6f1e5;
  --card: #fffdf8;
  --coral: #dd7c66;
  --coral-dark: #c9654e;
  --ink: #4a3b31;
  --ink-soft: #6f6156;
  --sage: #7e9b6e;
  --gold: #c9995b;
  --radius: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
}

a {
  color: var(--coral-dark);
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.brand img {
  height: 36px;
  width: auto;
}

.brand span {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.9rem;
}

.site-nav a:hover {
  color: var(--coral-dark);
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-solid {
  background: var(--coral);
  color: #fff;
}

.btn-solid:hover {
  background: var(--coral-dark);
}

.btn-outline {
  border: 2px solid var(--coral);
  color: var(--coral-dark);
}

.btn-outline:hover {
  background: var(--coral);
  color: #fff;
}

/* Hero */
.hero {
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}

.hero h1 .leaf {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  vertical-align: baseline;
}

.hero p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-bottom: 28px;
}

.hero-art {
  position: relative;
  min-height: 320px;
}

.blob {
  position: absolute;
  border-radius: 50%;
}

.blob-ring {
  width: 240px;
  height: 240px;
  border: 44px solid var(--gold);
  top: 40px;
  right: 40px;
  opacity: 0.85;
}

.blob-sage {
  width: 120px;
  height: 120px;
  background: var(--sage);
  bottom: 10px;
  left: 30px;
}

.blob-coral {
  width: 56px;
  height: 56px;
  background: var(--coral);
  top: 10px;
  left: 90px;
}

.blob-dot {
  width: 28px;
  height: 28px;
  border: 8px solid var(--sage);
  top: 150px;
  left: 10px;
}

.hero-card {
  position: absolute;
  right: 140px;
  top: 110px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: 0 12px 40px rgba(74, 59, 49, 0.12);
  width: 240px;
}

.hero-card img {
  height: 48px;
  width: auto;
  margin-bottom: 10px;
}

.hero-card strong {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.hero-card small {
  color: var(--ink-soft);
}

/* Sections */
section {
  padding: 56px 0;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--sage);
  margin-bottom: 10px;
}

section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  max-width: 22ch;
}

.section-lede {
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 36px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 6px 24px rgba(74, 59, 49, 0.07);
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-coral {
  background: rgba(221, 124, 102, 0.15);
}

.icon-sage {
  background: rgba(126, 155, 110, 0.18);
}

.icon-gold {
  background: rgba(201, 153, 91, 0.18);
}

.card .icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Beta band */
.beta-band {
  background: var(--coral);
  border-radius: var(--radius);
  padding: 48px 40px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.beta-band h2 {
  color: #fff;
  margin-bottom: 8px;
}

.beta-band p {
  opacity: 0.92;
  max-width: 48ch;
}

.beta-band .btn {
  background: #fff;
  color: var(--coral-dark);
  font-weight: 600;
}

/* Footer */
.site-footer {
  padding: 48px 0 40px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.site-footer .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--coral-dark);
}

/* Prose pages (privacy, terms, support) */
.prose {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.prose h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}

.prose .meta {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.prose h2 {
  font-size: 1.35rem;
  margin: 36px 0 12px;
}

.prose h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
}

.prose p,
.prose li {
  color: var(--ink-soft);
  margin-bottom: 12px;
}

.prose ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.prose li {
  margin-bottom: 6px;
}

.prose strong {
  color: var(--ink);
}

.notice {
  background: rgba(126, 155, 110, 0.14);
  border-left: 4px solid var(--sage);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
}

/* 404 */
.error-page {
  text-align: center;
  padding: 100px 24px 120px;
}

.error-page img {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
}

.error-page h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--ink-soft);
  margin-bottom: 28px;
}

@media (max-width: 800px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero-art {
    display: none;
  }

  .site-nav a:not(.btn) {
    display: none;
  }
}
