:root {
  --bg: #faf8f4;
  --bg-warm: #f4f1eb;
  --fg: #1c1a17;
  --fg-muted: #6b6358;
  --accent: #2d4a3e;
  --accent-warm: #8b6914;
  --border: #e0dbd1;
  --card-bg: #ffffff;
}

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

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

h1, h2, h3, blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 64px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(18, 15, 10, 0.88) 0%,
    rgba(18, 15, 10, 0.45) 45%,
    rgba(18, 15, 10, 0.12) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 64px;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(44px, 5.5vw, 72px);
  color: #fff;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.hero-meta-sep { margin: 0 12px; }

/* MANIFESTO */
.manifesto {
  background: var(--accent);
  padding: 100px 64px;
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-label, .section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-bottom: 32px;
}
.manifesto-body p {
  font-size: 20px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  line-height: 1.75;
}
.manifesto-statement blockquote {
  font-size: clamp(26px, 3.2vw, 42px);
  color: #fff;
  font-weight: 500;
  font-style: italic;
  border-left: 3px solid rgba(255,255,255,0.3);
  padding-left: 32px;
  margin-top: 48px;
  line-height: 1.4;
}

/* THE KIT */
.thekit {
  background: var(--bg);
  padding: 100px 64px;
}
.thekit-header {
  max-width: 700px;
  margin-bottom: 64px;
}
.section-label {
  color: var(--accent-warm);
  margin-bottom: 20px;
}
.thekit-title {
  font-size: clamp(30px, 3.8vw, 52px);
  color: var(--fg);
  margin-bottom: 20px;
  font-weight: 700;
}
.thekit-sub {
  font-size: 17px;
  color: var(--fg-muted);
}
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
}
.kit-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px 36px;
  border-radius: 2px;
}
.kit-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kit-name {
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 14px;
  font-weight: 600;
}
.kit-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PROCESS */
.process {
  background: var(--bg-warm);
  padding: 100px 64px;
}
.process-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 56px;
}
.step {
  display: flex;
  gap: 28px;
  padding: 40px 48px 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 48px; }
.step:nth-child(even) { padding-left: 48px; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-warm);
  flex-shrink: 0;
  opacity: 0.7;
}
.step-title {
  font-size: 22px;
  color: var(--fg);
  margin-bottom: 10px;
  font-weight: 600;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing {
  background: var(--fg);
  padding: 120px 64px;
  text-align: center;
}
.closing-inner { max-width: 760px; margin: 0 auto; }
.closing-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.closing-headline {
  font-size: clamp(32px, 4vw, 54px);
  color: #fff;
  margin-bottom: 28px;
  font-weight: 700;
  line-height: 1.25;
}
.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 48px;
  line-height: 1.75;
}
.closing-vision {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
}
.closing-vision p {
  font-size: 15px;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  line-height: 1.8;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--bg);
  padding: 96px 64px;
}
.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 48px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial-card {
  padding: 40px 36px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  color: var(--fg);
  line-height: 1.6;
  font-style: italic;
  font-weight: 500;
  flex: 1;
}
.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 4px;
}
.testimonial-meta {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* FOOTER */
.footer {
  background: var(--accent);
  padding: 48px 64px;
  text-align: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-meta {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.06em;
}
.footer-sep { margin: 0 12px; }

/* BOOK CTA LINK */
.book-cta-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.book-cta-link {
  display: inline-block;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
  padding: 12px 0;
}
.book-cta-link:hover { color: rgba(255,255,255,0.75); }

/* WAITLIST FORM */
.waitlist-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding-top: 40px;
}
.waitlist-kicker {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group--full {
  grid-column: 1 / -1;
}
.form-group label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.label-hint {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
}
.form-group input,
.form-group select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option {
  background: #1c1a17;
  color: #fff;
}
.form-group input::placeholder { color: rgba(255,255,255,0.25); }
.form-group input:focus,
.form-group select:focus {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}
.waitlist-btn {
  background: #fff;
  color: var(--fg);
  border: none;
  padding: 14px 32px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, opacity 0.2s;
  align-self: center;
  min-width: 200px;
  margin-top: 8px;
}
.waitlist-btn:hover:not(:disabled) { background: rgba(255,255,255,0.85); }
.waitlist-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.form-error {
  text-align: center;
  font-size: 13px;
  color: #f5a8a8;
  min-height: 20px;
  opacity: 0;
  transition: opacity 0.2s;
}
.form-error.visible { opacity: 1; }
.hide { display: none !important; }

/* Thank you state */
.waitlist-thanks {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  text-align: center;
}
.waitlist-thanks.visible { display: flex; }
.thanks-icon { margin-bottom: 8px; }
.thanks-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px;
  color: #fff;
  font-weight: 600;
}
.thanks-body {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav { padding: 24px 32px; }
  .hero-content { padding: 48px 32px; }
  .manifesto, .thekit, .process, .closing { padding: 72px 32px; }
  .kit-grid { grid-template-columns: 1fr; gap: 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .step:nth-child(odd) { border-right: none; padding-right: 0; }
  .step:nth-child(even) { padding-left: 0; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .hero-content { padding: 36px 24px; }
  .manifesto, .thekit, .process, .closing { padding: 56px 24px; }
  .hero-headline { font-size: 36px; }
}