/* ─── Tokens ─────────────────────────────────── */
:root {
  --bg: #F5EDE3;
  --bg-warm: #EFE5D6;
  --green-deep: #2A4A1C;
  --green-mid: #4A7A2E;
  --green-light: #7AAD5A;
  --terracotta: #C8703A;
  --terracotta-light: #E8935A;
  --brown: #2C1F12;
  --brown-muted: #6B4F35;
  --cream: #FDFAF4;
  --cream-dark: #E8DDD0;
}

/* ─── Reset & Base ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

h1, h2, h3, blockquote {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ─── Navigation ─────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 40px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  height: 64px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--brown-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--brown-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--green-deep); }
.nav-cta { font-weight: 500; color: var(--terracotta); }
.nav-cta:hover { color: var(--green-deep); }
.nav-logo { text-decoration: none; }

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-field {
  position: absolute;
  bottom: -20%;
  left: -10%;
  right: -10%;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, var(--green-deep) 100%);
  opacity: 0.07;
  border-radius: 50% 50% 0 0 / 20%;
}
.hero-glow {
  position: absolute;
  top: 10%;
  right: -5%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--terracotta) 0%, transparent 70%);
  opacity: 0.06;
  border-radius: 50%;
}
.hero-ripple {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--green-mid);
  opacity: 0.12;
}
.hero-ripple-1 {
  width: 300px; height: 300px;
  bottom: 15%; right: 8%;
  transform: translate(50%, 0);
}
.hero-ripple-2 {
  width: 200px; height: 200px;
  bottom: 18%; right: 12%;
  transform: translate(50%, 0);
  opacity: 0.08;
}
.hero-ripple-3 {
  width: 140px; height: 140px;
  bottom: 21%; right: 16%;
  transform: translate(50%, 0);
  opacity: 0.05;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 28px;
  max-width: 18ch;
}
.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--brown-muted);
  max-width: 52ch;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.75;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 100px;
  color: var(--brown-muted);
  letter-spacing: 0.02em;
}

/* ─── Manifesto ──────────────────────────────── */
.manifesto {
  padding: 100px 40px;
  background: var(--cream);
}
.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
}
.manifesto-quote {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 40px;
  padding-left: 32px;
  border-left: 3px solid var(--terracotta);
  line-height: 1.5;
}
.manifesto-body {
  font-size: 1.05rem;
  color: var(--brown-muted);
  max-width: 58ch;
  margin-left: auto;
}

/* ─── Cycle ──────────────────────────────────── */
.cycle {
  padding: 100px 40px;
  background: var(--bg);
}
.cycle-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
}
.cycle-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.phase {
  flex: 1;
  max-width: 260px;
  text-align: center;
  padding: 0 20px;
}
.phase-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phase h3 {
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.phase p {
  font-size: 0.9rem;
  color: var(--brown-muted);
  line-height: 1.7;
}
.phase-connector {
  display: flex;
  align-items: center;
  padding-top: 28px;
  flex-shrink: 0;
}
.connector-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--cream-dark) 0%, var(--terracotta) 50%, var(--cream-dark) 100%);
}

/* ─── Features ───────────────────────────────── */
.features {
  padding: 100px 40px;
  background: var(--bg-warm);
}
.features-header {
  text-align: center;
  margin-bottom: 72px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1100px;
  margin: 0 auto;
}
.feature {
  padding: 48px 40px;
  background: var(--bg);
}
.feature-number {
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  opacity: 0.7;
}
.feature h3 {
  font-size: 1.15rem;
  color: var(--green-deep);
  margin-bottom: 14px;
  font-weight: 600;
}
.feature p {
  font-size: 0.9rem;
  color: var(--brown-muted);
  line-height: 1.7;
}

/* ─── Closing ─────────────────────────────────── */
.closing {
  padding: 120px 40px;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}
.closing-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream);
  font-style: italic;
  margin-bottom: 28px;
  font-weight: 400;
}
.closing-body {
  font-size: 1rem;
  color: rgba(253,250,244,0.6);
  max-width: 48ch;
  margin: 0 auto 60px;
  line-height: 1.8;
}
.closing-visual {
  display: flex;
  justify-content: center;
}
.closing-rings {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(253,250,244,0.15);
}
.ring-1 { width: 160px; height: 160px; }
.ring-2 { width: 110px; height: 110px; }
.ring-3 { width: 65px; height: 65px; border-color: rgba(253,250,244,0.25); }
.ring-center {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Newsletter Form ─────────────────────────── */
.newsletter-section {
  padding: 60px 40px;
  background: var(--bg-warm);
  border-top: 1px solid var(--cream-dark);
}
.newsletter-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}
.newsletter-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}
.newsletter-headline {
  font-size: 1.6rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.newsletter-sub {
  font-size: 0.9rem;
  color: var(--brown-muted);
  max-width: 44ch;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 14px;
  align-items: center;
}
.newsletter-email-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: var(--cream);
  color: var(--brown);
  outline: none;
  transition: border-color 0.15s;
}
.newsletter-email-input:focus { border-color: var(--green-mid); }
.newsletter-submit {
  padding: 12px 20px;
  background: var(--green-deep);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.newsletter-submit:hover { opacity: 0.85; }
.newsletter-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.newsletter-note {
  font-size: 0.78rem;
  color: var(--brown-muted);
  max-width: 44ch;
  margin: 0 auto;
}
.newsletter-success {
  padding: 32px;
  text-align: center;
}
.newsletter-success-msg {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.newsletter-success-sub {
  font-size: 0.9rem;
  color: var(--brown-muted);
}
.newsletter-error {
  font-size: 0.82rem;
  color: #D32F2F;
  margin-top: -8px;
  margin-bottom: 10px;
}
.newsletter-privacy {
  font-size: 0.75rem;
  color: var(--brown-muted);
  opacity: 0.8;
}

/* ─── Footer ─────────────────────────────────── */
.footer {
  padding: 60px 40px;
  background: var(--brown);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--cream);
  display: block;
  margin-bottom: 10px;
}
.footer-mission {
  font-size: 0.85rem;
  color: rgba(253,250,244,0.4);
  max-width: 32ch;
}
.footer-copy {
  font-size: 0.78rem;
  color: rgba(253,250,244,0.25);
}

/* ─── Responsive ──────────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 100px 24px 80px; }
  .features-grid { grid-template-columns: 1fr; gap: 2px; }
  .feature { padding: 36px 28px; }
  .cycle-track { flex-direction: column; align-items: center; gap: 48px; }
  .phase-connector { display: none; }
  .manifesto, .cycle, .features, .closing { padding: 72px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .hero-tags { gap: 8px; }
  .tag { font-size: 0.72rem; }
}