:root {
  --bg: #f7f5f0;
  --fg: #1a1a1a;
  --accent: #3a6b5c;
  --accent-light: #4e8f79;
  --muted: #6b6b6b;
  --border: #dedad2;
  --surface: #eeece7;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* NAV */
.nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* HERO */
.hero {
  padding: 96px 48px 80px;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}
.hero-headline br { display: block; }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 40px;
}
.hero-accent-line {
  width: 48px;
  height: 3px;
  background: var(--accent);
}

/* PHILOSOPHY */
.philosophy {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.philosophy-inner {
  max-width: 760px;
}
.philosophy-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 40px;
}
.philosophy-content {
  margin-bottom: 48px;
}
.philosophy-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.philosophy-content p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  font-weight: 300;
}
.philosophy-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 56px 0;
}

/* HOW */
.how {
  padding: 80px 48px;
}
.how-inner {
  max-width: 760px;
}
.how-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 48px;
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.how-step {
  padding: 32px 28px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 11px;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
  font-style: italic;
}
.how-step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.how-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
  background: var(--fg);
}
.closing-inner {
  max-width: 600px;
}
.closing-quote {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  color: #f7f5f0;
  line-height: 1.45;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.closing-body {
  font-size: 16px;
  color: #a8a49e;
  line-height: 1.7;
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 760px;
}
.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 16px;
}
.footer-desc {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}
.footer-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  font-style: italic;
  font-family: 'Fraunces', serif;
}

/* NAV CTA */
.nav-cta {
  margin-left: auto;
  padding: 8px 18px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--accent-light); }

/* WAITLIST SECTION */
.waitlist-section {
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.waitlist-inner { max-width: 560px; }
.waitlist-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.waitlist-headline {
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--fg);
}
.waitlist-sub {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 36px;
}
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
}
.waitlist-form input {
  flex: 1;
  padding: 12px 16px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  outline: none;
  transition: border-color 0.15s;
}
.waitlist-form input:focus { border-color: var(--accent); }
.waitlist-form input::placeholder { color: #b0aca6; }
.btn-waitlist {
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.15s;
}
.btn-waitlist:hover { background: var(--accent-light); }
.btn-waitlist:disabled { opacity: 0.6; cursor: not-allowed; }
.waitlist-msg {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 400;
  min-height: 20px;
}
.waitlist-msg.success { color: var(--accent); }
.waitlist-msg.error { color: #c0392b; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav, .hero, .philosophy, .how, .closing, .footer, .waitlist-section {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 60px; padding-bottom: 60px; }
  .hero-headline { font-size: 44px; }
  .how-grid { grid-template-columns: 1fr; gap: 20px; }
  .philosophy-content h2 { font-size: 24px; }
  .closing-quote { font-size: 20px; }
  .footer-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
  .waitlist-form { flex-direction: column; }
  .btn-waitlist { width: 100%; }
}