:root {
  --bg: #FAF6EC;
  --paper: #FFFFFF;
  --surface: #F2EBDD;
  --surface-soft: #F7F1E2;
  --line: #EBE3D0;
  --line-strong: #CFC4A8;
  --ink: #1F1A12;
  --ink-soft: #3D362A;
  --muted: #756C5A;
  --faint: #A39A86;
  --dark: #1F1B14;
  --dark-soft: #2D2820;
  --cream: #F4EFE3;
  --coral: #D85F3F;
  --coral-deep: #B84A2D;
  --sage: #6F8163;
  --shadow-card: 0 1px 2px rgba(60, 35, 15, 0.04), 0 6px 18px rgba(60, 35, 15, 0.05);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* Header */
header {
  background: var(--dark);
  color: var(--cream);
  padding: 18px 0;
  position: sticky; top: 0; z-index: 10;
  border-bottom: 1px solid rgba(244, 239, 227, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand img { height: 28px; width: auto; }
.brand-word { font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px; letter-spacing: 0.01em; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { color: rgba(244, 239, 227, 0.7); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.15s; }
.nav a:hover { color: var(--cream); }
.nav-cta {
  background: var(--coral); color: var(--cream) !important;
  padding: 8px 16px; border-radius: 6px; font-weight: 600;
}
.nav-cta:hover { background: var(--coral-deep); }
.nav-cta-ghost {
  border: 1px solid rgba(244, 239, 227, 0.2); color: var(--cream) !important;
  padding: 8px 16px; border-radius: 6px; font-weight: 600;
}
.nav-cta-ghost:hover { background: var(--dark-soft); border-color: rgba(244, 239, 227, 0.35); }

/* Hero */
.hero { padding: 88px 0 72px; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center; }
.hero-copy { max-width: 560px; }
.hero-aside { display: flex; flex-direction: column; gap: 20px; }
.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 20px;
}
h1 {
  font-family: 'Fraunces', serif;
  font-weight: 600; font-size: clamp(38px, 6vw, 60px);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 24px;
}
h1 .it { font-style: italic; color: var(--coral); font-weight: 500; }
.lede { font-size: 19px; color: var(--ink-soft); max-width: 620px; margin-bottom: 0; }

/* Hero proof card */
.proof-card {
  background: var(--dark); color: var(--cream);
  border-radius: 12px; padding: 28px; box-shadow: var(--shadow-card);
}
.proof-card h4 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px;
  color: var(--cream); margin-bottom: 14px;
}
.proof-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.proof-list li {
  font-size: 14px; color: rgba(244, 239, 227, 0.82);
  padding-left: 22px; position: relative; line-height: 1.5;
}
.proof-list li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--coral); font-weight: 600;
}

/* Form */
.waitlist {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 12px; padding: 24px;
  max-width: 540px; box-shadow: var(--shadow-card);
}
.waitlist label { font-size: 13px; font-weight: 600; color: var(--ink-soft); display: block; margin-bottom: 8px; }
.form-row { display: flex; gap: 10px; }
.waitlist input[type="email"],
.waitlist input[type="text"],
.waitlist textarea {
  flex: 1; padding: 12px 14px; font-size: 15px;
  border: 1px solid var(--line-strong); border-radius: 6px;
  background: var(--bg); color: var(--ink); font-family: inherit;
  width: 100%;
}
.waitlist textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.waitlist input:focus, .waitlist textarea:focus { outline: 2px solid var(--coral); outline-offset: -1px; }
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.field-group label { margin-bottom: 6px; }
.btn-primary {
  background: var(--ink); color: var(--cream);
  border: none; padding: 12px 22px; font-size: 15px; font-weight: 600;
  border-radius: 6px; cursor: pointer; font-family: inherit;
  transition: background 0.15s; display: inline-block; text-decoration: none;
}
.btn-primary:hover { background: var(--dark-soft); }
.btn-coral {
  background: var(--coral); color: var(--cream);
}
.btn-coral:hover { background: var(--coral-deep); }
.form-meta { font-size: 13px; color: var(--muted); margin-top: 12px; }
.form-meta a { color: var(--coral); text-decoration: none; font-weight: 500; }
.form-meta a:hover { text-decoration: underline; }
.form-success {
  display: none; padding: 16px; background: rgba(111, 129, 99, 0.12);
  border-left: 3px solid var(--sage); border-radius: 4px;
  color: var(--ink-soft); font-size: 14px;
}
.form-success.active { display: block; }
.form-success.active + form { display: none; }

/* Sections */
section { padding: 72px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--surface-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(28px, 4vw, 38px); line-height: 1.15;
  letter-spacing: -0.015em; color: var(--ink); margin-bottom: 16px;
}
h2 .it { font-style: italic; color: var(--coral); font-weight: 500; }
.section-lede { font-size: 17px; color: var(--ink-soft); max-width: 620px; margin-bottom: 48px; }

/* What is */
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.what-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 10px; padding: 28px;
}
.what-card h3 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px;
  color: var(--ink); margin-bottom: 10px;
}
.what-card p { font-size: 15px; color: var(--ink-soft); }

/* Principles */
.principles { list-style: none; counter-reset: principle; }
.principles li {
  counter-increment: principle;
  padding: 22px 0 22px 64px; border-bottom: 1px solid var(--line);
  position: relative; font-size: 17px; color: var(--ink-soft);
}
.principles li::before {
  content: counter(principle, decimal-leading-zero);
  position: absolute; left: 0; top: 22px;
  font-family: 'Fraunces', serif; font-size: 22px; font-weight: 600;
  color: var(--coral); letter-spacing: 0.02em;
}
.principles li strong { color: var(--ink); font-weight: 600; }
.principles li:last-child { border-bottom: none; }

/* Modules */
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.module {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 8px; padding: 22px;
}
.module-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--coral); margin-bottom: 8px;
}
.module h3 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 18px;
  color: var(--ink); margin-bottom: 8px;
}
.module p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* Partner / dark callout */
.partner-card {
  background: var(--dark); color: var(--cream);
  padding: 56px; border-radius: 14px; margin-top: 24px;
}
.partner-card h2 { color: var(--cream); }
.partner-card .section-lede { color: rgba(244, 239, 227, 0.78); }
.partner-card .btn-primary {
  background: var(--coral); color: var(--cream); padding: 14px 28px;
}
.partner-card .btn-primary:hover { background: var(--coral-deep); }
.partner-meta { font-size: 13px; color: rgba(244, 239, 227, 0.55); margin-top: 16px; }

/* Two-column lists (used on partners page) */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.col h3 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 22px;
  color: var(--ink); margin-bottom: 18px;
}
.bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.bullets li {
  padding-left: 24px; position: relative; font-size: 16px;
  color: var(--ink-soft); line-height: 1.55;
}
.bullets li::before {
  content: "→"; position: absolute; left: 0; top: 0;
  color: var(--coral); font-weight: 600;
}
.bullets li strong { color: var(--ink); font-weight: 600; }

/* Fit card (who we want) */
.fit-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 10px; padding: 28px; margin-top: 24px;
}
.fit-card h4 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 17px;
  color: var(--ink); margin-bottom: 10px;
}
.fit-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 8px; }
.fit-row p { font-size: 15px; color: var(--ink-soft); }
.fit-row .label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.fit-row .yes .label { color: var(--sage); }
.fit-row .no .label { color: var(--coral); }

/* Updates page */
.updates-list {
  display: flex; flex-direction: column; gap: 0;
}
.update {
  padding: 40px 0; border-bottom: 1px solid var(--line);
}
.update:first-child { padding-top: 0; }
.update:last-child { border-bottom: none; }
.update-date {
  display: block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--coral); margin-bottom: 14px;
}
.update-title {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: 28px; line-height: 1.2; letter-spacing: -0.015em;
  color: var(--ink); margin-bottom: 18px;
}
.update-title .it { font-style: italic; color: var(--coral); font-weight: 500; }
.update-body p {
  font-size: 17px; line-height: 1.6; color: var(--ink-soft);
  margin-bottom: 16px;
}
.update-body p:last-child { margin-bottom: 0; }
.update-body a { color: var(--coral); text-decoration: none; font-weight: 500; }
.update-body a:hover { text-decoration: underline; }
.update-body strong { color: var(--ink); font-weight: 600; }

/* Footer */
footer {
  padding: 40px 0 56px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--coral); }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: none; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .fit-row { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 720px) {
  .nav { gap: 16px; }
  .nav a:not(.nav-cta):not(.nav-cta-ghost) { display: none; }
  .hero { padding: 56px 0 48px; }
  .what-grid { grid-template-columns: 1fr; gap: 16px; }
  .modules { grid-template-columns: 1fr; }
  .form-row { flex-direction: column; }
  .partner-card { padding: 32px 24px; }
  section { padding: 56px 0; }
}
