:root {
  --cream: #fdf6f2;
  --cream-2: #f7ebe4;
  --plum: #4a2138;
  --plum-2: #6b2f4f;
  --rose: #d46a8f;
  --rose-light: #f2c9d6;
  --gold: #c99a4b;
  --text: #3a2a32;
  --text-muted: #7a6470;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 8px 24px rgba(74, 33, 56, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: "Georgia", "Iowan Old Style", serif;
  line-height: 1.6;
}
h1, h2, h3 {
  font-family: "Georgia", "Iowan Old Style", serif;
  color: var(--plum);
  margin: 0 0 12px;
  font-weight: 400;
}
p { margin: 0 0 14px; }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
  color: var(--rose);
  font-family: -apple-system, "Segoe UI", sans-serif;
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.lead { font-size: 17px; color: var(--text); }
.lead-sm { font-size: 15px; color: var(--text-muted); max-width: 560px; }
.muted { color: var(--text-muted); }
.muted.small { font-size: 12px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(253, 246, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(74,33,56,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; }
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo svg { height: 44px; width: auto; display: block; }
.site-nav { display: flex; gap: 26px; font-family: -apple-system, "Segoe UI", sans-serif; font-size: 14px; }
.site-nav a { text-decoration: none; color: var(--text); }
.site-nav a:hover { color: var(--rose); }
.nav-cta { font-family: -apple-system, "Segoe UI", sans-serif; }

@media (max-width: 720px) {
  .site-nav { display: none; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: -apple-system, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--plum); color: var(--white); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(74,33,56,0.25); }
.btn-ghost { background: transparent; color: var(--plum); border: 1.5px solid var(--plum); }
.btn-ghost:hover { background: var(--plum); color: var(--white); }
.btn.small { padding: 7px 14px; font-size: 12px; }
.btn.danger { color: #b23a3a; border-color: #b23a3a; }
.btn.danger:hover { background: #b23a3a; color: #fff; }
.full-width { display: block; width: 100%; text-align: center; }

/* Hero */
.hero { padding: 90px 0 60px; text-align: center; background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.hero-inner { max-width: 720px; }
.hero h1 { font-size: 52px; margin-bottom: 18px; }
.hero-sub { font-size: 18px; color: var(--text-muted); margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 600px) {
  .hero h1 { font-size: 36px; }
}

/* Stats */
.stats { background: var(--plum); color: var(--white); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: center; }
.stat strong { display: block; font-size: 30px; color: var(--rose-light); margin-bottom: 4px; }
.stat span { display: block; font-family: -apple-system, "Segoe UI", sans-serif; font-size: 13px; opacity: .85; }
.stat-src { display: inline-block; margin-top: 7px; font-family: -apple-system, "Segoe UI", sans-serif; font-size: 11px; color: var(--rose-light); opacity: .7; text-decoration: none; border-bottom: 1px solid rgba(242,201,214,.3); }
.stat-src:hover { opacity: 1; }
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; gap: 20px; } }

/* Sections */
.section { padding: 72px 0; }
.section.alt { background: var(--cream-2); }
.section h2 { font-size: 32px; }

/* Mission */
.mission-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.mission-card {
  background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow);
  border-left: 4px solid var(--rose);
}
.mission-card h3 { font-size: 17px; }
.mission-card h3 + h3 { margin-top: 22px; }
.mission-card ul { margin: 0; padding-left: 20px; color: var(--text-muted); font-size: 14px; }
.mission-card li { margin-bottom: 10px; }
.vision-quote { font-size: 14px; font-style: italic; color: var(--text-muted); margin-bottom: 0; }
@media (max-width: 800px) { .mission-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.step { text-align: center; padding: 0 10px; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--rose-light); color: var(--plum);
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px;
  margin: 0 auto 16px; font-family: -apple-system, "Segoe UI", sans-serif;
}
.step h3 { font-size: 18px; }
.step p { color: var(--text-muted); font-size: 14px; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* Products */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.product-card {
  background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
  transition: transform .15s ease;
}
.product-card:hover { transform: translateY(-3px); }
.product-card h3 { font-size: 17px; margin-bottom: 8px; }
.product-card p { font-size: 13.5px; color: var(--text-muted); margin: 0; }
@media (max-width: 800px) { .product-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .product-grid { grid-template-columns: 1fr; } }

/* Giving */
.giving-intro { margin: 14px auto 0; }
.giving-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 36px; }
.giving-card {
  background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.giving-card h3 { font-size: 16px; margin-bottom: 4px; }
.giving-role { font-family: -apple-system, "Segoe UI", sans-serif; font-size: 11.5px; color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.giving-card p:last-child { font-size: 13.5px; color: var(--text-muted); margin: 0; }
.giving-note { margin-top: 24px; }
@media (max-width: 800px) { .giving-grid { grid-template-columns: 1fr; } }

/* Pricing */
.pricing-card {
  max-width: 380px; margin: 40px auto 0; background: var(--white); border-radius: var(--radius);
  padding: 36px; text-align: center; box-shadow: var(--shadow); border: 2px solid var(--rose-light);
}
.plan-name { font-family: -apple-system, "Segoe UI", sans-serif; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; color: var(--rose); font-weight: 700; }
.plan-price { font-size: 44px; color: var(--plum); margin: 6px 0 20px; }
.plan-price span { font-size: 16px; color: var(--text-muted); font-family: -apple-system, "Segoe UI", sans-serif; }
.plan-features { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; font-size: 14px; color: var(--text-muted); }
.plan-features li { padding: 8px 0; border-bottom: 1px dashed var(--cream-2); }
.plan-features li::before { content: "✓ "; color: var(--rose); font-weight: 700; }
.plan-note { font-size: 12px; color: var(--text-muted); margin: 14px 0 0; }

/* Founders */
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.founder-cards { display: grid; gap: 18px; }
.founder-card { background: var(--white); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.founder-card h3 { font-size: 17px; margin-bottom: 2px; }
.founder-role { font-family: -apple-system, "Segoe UI", sans-serif; font-size: 12px; color: var(--rose); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.founder-card p:last-child { font-size: 13.5px; color: var(--text-muted); margin: 0; }
@media (max-width: 800px) { .founders-grid { grid-template-columns: 1fr; } }

/* Waitlist */
.waitlist-section { background: linear-gradient(180deg, var(--cream-2), var(--cream)); }
.waitlist-inner { max-width: 480px; }
.waitlist-form { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; font-family: -apple-system, "Segoe UI", sans-serif; }
.waitlist-form input, .waitlist-form select {
  padding: 13px 16px; border-radius: 10px; border: 1.5px solid rgba(74,33,56,0.15); font-size: 14px;
  background: var(--white); color: var(--text);
}
.waitlist-form input:focus, .waitlist-form select:focus { outline: none; border-color: var(--rose); }
.waitlist-msg { text-align: center; font-family: -apple-system, "Segoe UI", sans-serif; font-size: 13px; margin-top: 14px; min-height: 18px; color: var(--plum); font-weight: 600; }

.admin-panel { margin-top: 46px; font-family: -apple-system, "Segoe UI", sans-serif; font-size: 12.5px; }
.admin-panel summary { cursor: pointer; color: var(--text-muted); text-align: center; }
.admin-inner { margin-top: 16px; background: var(--white); border-radius: 10px; padding: 16px; box-shadow: var(--shadow); }
.admin-actions { display: flex; gap: 8px; margin-bottom: 12px; }
.signup-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.signup-table th { text-align: left; color: var(--text-muted); padding: 6px 8px; border-bottom: 1px solid var(--cream-2); }
.signup-table td { padding: 6px 8px; border-bottom: 1px solid var(--cream-2); }

/* Footer */
.site-footer { background: var(--plum); color: rgba(255,255,255,0.75); padding: 36px 0; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-mark { width: 185px; height: auto; display: block; }
.site-footer .muted { color: rgba(255,255,255,0.65); }
