:root {
  --ink: #0e0d0b;
  --paper: #f4f0e8;
  --paper-2: #ebe5d8;
  --accent: #b08d57;       /* warm amber — the oil */
  --muted: #6b665c;
  --line: rgba(14, 13, 11, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

main { max-width: 960px; margin: 0 auto; padding: 0 24px; }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0; border-bottom: 1px solid var(--line);
}
.wordmark {
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  font-size: 0.85rem; font-family: ui-sans-serif, system-ui, sans-serif;
}
.nav-cta {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.hero { padding: 96px 0 72px; text-align: center; }
.eyebrow {
  font-family: ui-sans-serif, system-ui, sans-serif;
  text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.72rem;
  color: var(--accent); margin-bottom: 24px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); line-height: 1.05; font-weight: 500; }
.hero h1 span { color: var(--muted); font-style: italic; }
.lede {
  max-width: 540px; margin: 28px auto 0; font-size: 1.15rem; color: var(--muted);
}

.btn {
  display: inline-block; cursor: pointer; border: none;
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 16px 32px; text-decoration: none; transition: transform .12s ease, opacity .12s ease;
}
.btn.primary { background: var(--ink); color: var(--paper); }
.btn.primary:hover { transform: translateY(-1px); opacity: 0.92; }
.hero .btn { margin-top: 40px; }
.price-note {
  margin-top: 22px; font-size: 0.85rem; color: var(--muted);
  font-family: ui-sans-serif, system-ui, sans-serif;
}

.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 64px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.pillar h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 600; }
.pillar p { color: var(--muted); font-size: 0.98rem; }

.how { padding: 72px 0; }
.how h2, .join h2 { font-size: 1.8rem; font-weight: 500; margin-bottom: 28px; }
.how ol { list-style: none; counter-reset: step; display: grid; gap: 20px; }
.how li {
  counter-increment: step; padding-left: 52px; position: relative; color: var(--muted);
  font-size: 1.05rem;
}
.how li::before {
  content: counter(step); position: absolute; left: 0; top: -2px;
  width: 34px; height: 34px; border: 1px solid var(--accent); color: var(--accent);
  border-radius: 50%; display: grid; place-items: center;
  font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.9rem;
}
.how li strong { color: var(--ink); }

.join {
  padding: 72px 0; text-align: center; background: var(--paper-2);
  margin: 0 -24px; padding-left: 24px; padding-right: 24px; border-radius: 4px;
}
.join p { max-width: 460px; margin: 0 auto 28px; color: var(--muted); }
#waitlist-form {
  display: flex; gap: 12px; max-width: 520px; margin: 0 auto; flex-wrap: wrap;
  justify-content: center;
}
#waitlist-form input {
  flex: 1 1 200px; padding: 15px 18px; border: 1px solid var(--line);
  background: var(--paper); font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.95rem; border-radius: 2px;
}
#waitlist-form input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form-msg {
  min-height: 1.4em; margin-top: 18px; font-size: 0.9rem;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.form-msg.ok { color: #3a6b3a; }
.form-msg.err { color: #9c3a2f; }

.footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 36px 0; border-top: 1px solid var(--line); margin-top: 8px;
  font-family: ui-sans-serif, system-ui, sans-serif; font-size: 0.82rem; color: var(--muted);
}
.footer a { color: var(--muted); }

@media (max-width: 680px) {
  .pillars { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 48px; }
}
