:root {
  --bg: #FAF6F1;
  --fg: #3D2B1F;
  --accent: #C4785B;
  --sage: #7A9E7E;
  --muted: #9C8B7E;
  --soft: #EDE6DD;
  --heading-font: 'Cormorant Garamond', Georgia, serif;
  --body-font: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body-font);
  font-weight: 300;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 40px 100px;
  background: linear-gradient(165deg, var(--bg) 0%, var(--soft) 60%, #E8DDD4 100%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(122,158,126,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(196,120,91,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero-eyebrow {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
h1 {
  font-family: var(--heading-font);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 32px;
}
.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 580px;
  line-height: 1.8;
  font-weight: 300;
}

/* PATH */
.path-section {
  padding: 100px 40px;
  background: var(--bg);
}
.path-header { text-align: center; margin-bottom: 72px; }
.section-eyebrow {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.path-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 16px;
}
.path-sub { color: var(--muted); font-size: 17px; font-weight: 300; }
.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.path-item {
  padding: 32px 28px;
  background: var(--soft);
  border-radius: 8px;
  transition: transform 0.2s;
}
.path-item:hover { transform: translateY(-4px); }
.path-icon { color: var(--accent); margin-bottom: 20px; }
.path-item h3 {
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--fg);
}
.path-item p { color: var(--muted); line-height: 1.7; font-size: 15px; }

/* WHO */
.who-section { background: var(--soft); padding: 100px 40px; }
.who-inner { max-width: 900px; margin: 0 auto; }
.who-header { text-align: center; margin-bottom: 64px; }
.who-header h2 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--fg);
}
.who-grid { display: grid; gap: 28px; margin-bottom: 56px; }
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--bg);
  border-radius: 8px;
  border: 1px solid rgba(61,43,31,0.06);
}
.who-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-top: 2px;
}
.who-item p { color: var(--fg); font-size: 16px; font-weight: 300; line-height: 1.7; }
.who-not {
  border-top: 1px solid rgba(61,43,31,0.1);
  padding-top: 40px;
  text-align: center;
}
.who-not-label {
  font-family: var(--heading-font);
  font-size: 20px;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 12px;
}
.who-not p:last-child { color: var(--muted); font-size: 15px; font-weight: 300; max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* FOUNDER */
.founder-section {
  padding: 100px 40px;
  background: linear-gradient(165deg, var(--bg) 0%, #EDE6DD 100%);
}
.founder-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.founder-label {
  font-family: var(--body-font);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.founder-section h2 {
  font-family: var(--heading-font);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 32px;
}
.founder-bio { color: var(--muted); font-size: 17px; font-weight: 300; line-height: 1.9; margin-bottom: 20px; }
.founder-signature { margin-top: 40px; font-family: var(--heading-font); font-size: 28px; font-style: italic; color: var(--accent); }

/* CLOSING */
.closing {
  background: linear-gradient(160deg, var(--sage) 0%, #5C7A5F 100%);
  padding: 100px 40px;
  text-align: center;
  color: #fff;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-inner h2 {
  font-family: var(--heading-font);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #fff;
}
.closing-inner p {
  font-size: 18px;
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
}

/* CTA BUTTONS */
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-primary {
  display: inline-block;
  padding: 16px 40px;
  background: #fff;
  color: var(--sage);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.cta-secondary {
  display: inline-block;
  padding: 16px 40px;
  background: transparent;
  color: rgba(255,255,255,0.9);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.cta-secondary:hover { border-color: rgba(255,255,255,0.8); color: #fff; }

/* HERO FORM */
.hero-form { margin-top: 48px; }
.form-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.form-row input {
  padding: 14px 20px;
  border: 1px solid rgba(61,43,31,0.25);
  background: rgba(255,255,255,0.6);
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 300;
  color: var(--fg);
  border-radius: 4px;
  width: 200px;
  transition: border-color 0.2s;
}
.form-row input:focus { outline: none; border-color: var(--accent); }
.form-row input::placeholder { color: var(--muted); }
.form-row button {
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.form-row button:hover { background: #b06a4f; }
.form-row button:active { transform: scale(0.98); }
.form-privacy { margin-top: 16px; font-size: 13px; color: var(--muted); }
.success-msg { margin-top: 48px; font-family: var(--heading-font); font-size: 22px; font-style: italic; color: var(--sage); }

/* FOOTER */
footer {
  background: var(--fg);
  color: rgba(250,246,241,0.5);
  text-align: center;
  padding: 40px;
  font-size: 13px;
  font-family: var(--body-font);
  letter-spacing: 0.05em;
}
footer p { color: rgba(250,246,241,0.4); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 28px 80px; }
  .path-section { padding: 72px 28px; }
  .path-grid { gap: 28px; }
  .who-section { padding: 72px 28px; }
  .founder-section { padding: 72px 28px; }
  .closing { padding: 72px 28px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-primary, .cta-secondary { width: 100%; max-width: 300px; }
  .form-row { flex-direction: column; align-items: stretch; }
  .form-row input { width: 100%; }
  .form-row button { width: 100%; }
}
