/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAF7F2;
  --bg-warm: #F4EFE6;
  --bg-deep: #1C2B16;
  --fg: #1A1A1A;
  --fg-soft: #4A4A4A;
  --fg-muted: #7A7A7A;
  --accent: #C4713A;
  --accent-light: #E8A96A;
  --green: #2D4A1C;
  --green-mid: #3A6325;
  --green-light: #4A7D35;
  --cream: #FAF7F2;
  --border: rgba(45, 74, 28, 0.15);
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAVIGATION === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
  background: var(--green);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.nav-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green);
  letter-spacing: -0.3px;
}

.nav-tagline {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* === HERO === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 85px);
  background: var(--bg);
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
  max-width: 600px;
}

.hero-overline {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 4vw, 4.2rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--green);
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-soft);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-motto {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--fg-muted);
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-deep);
  overflow: hidden;
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(196, 113, 58, 0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 30% 70%, rgba(45, 74, 28, 0.2) 0%, transparent 60%);
}

.hero-botanical {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.botanical-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(196, 113, 58, 0.25);
}
.r1 { width: 340px; height: 340px; }
.r2 { width: 260px; height: 260px; border-color: rgba(250, 247, 242, 0.08); }
.r3 { width: 180px; height: 180px; border-color: rgba(196, 113, 58, 0.15); }

.botanical-center {
  position: relative;
  z-index: 2;
}

.botanical-svg {
  width: 120px;
  height: 120px;
}

/* Floating herb labels */
.herb-label {
  position: absolute;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
  white-space: nowrap;
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
.hl-1 { top: 20px; left: 50%; transform: translateX(-50%); }
.hl-2 { top: 50%; right: 0px; transform: translateY(-50%); }
.hl-3 { bottom: 40px; right: 30px; }
.hl-4 { bottom: 40px; left: 30px; }
.hl-5 { top: 50%; left: 0px; transform: translateY(-50%); }
.hl-6 { top: 70px; left: 50%; transform: translateX(-50%); }

/* === SYSTEMS GRID === */
.systems {
  padding: 100px 80px;
  background: var(--bg-warm);
}

.systems-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-soft);
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.system-card {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background 0.2s;
  border: 1px solid transparent;
}
.system-card:hover {
  background: var(--bg-warm);
  border-color: var(--border);
}

.sc-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.sc-icon svg {
  width: 48px;
  height: 48px;
}

.sc-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-system {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.2px;
}

.sc-arrow {
  font-size: 0.7rem;
  color: var(--accent);
  line-height: 1;
}

.sc-herb {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
}

/* === APPROACH === */
.approach {
  padding: 100px 80px;
  background: var(--bg);
}

.approach-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.approach-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 600;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 64px;
  letter-spacing: -0.5px;
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  padding-right: 48px;
}
.step:nth-child(even) { padding-right: 0; padding-left: 48px; border-left: 1px solid var(--border); }
.step:nth-child(1), .step:nth-child(2) { border-top: none; }

.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.step-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fg-soft);
}

/* === PHILOSOPHY === */
.philosophy {
  padding: 100px 80px;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.philosophy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(196, 113, 58, 0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 20%, rgba(74, 125, 53, 0.1) 0%, transparent 50%);
}

.philosophy-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: center;
}

.phil-svg {
  width: 200px;
  height: 200px;
}

.phil-quote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 32px;
  opacity: 0.9;
}

.phil-body {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.6);
  margin-bottom: 16px;
}
.phil-body:last-child { margin-bottom: 0; }

/* === CLOSING === */
.closing {
  padding: 100px 80px;
  background: var(--green);
  text-align: center;
}

.closing-inner { max-width: 640px; margin: 0 auto; }

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.closing-sub {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.platform-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(250, 247, 242, 0.7);
  border: 1px solid rgba(250, 247, 242, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
}

/* === FOOTER === */
.footer {
  padding: 48px 80px;
  background: var(--bg-deep);
  border-top: 1px solid rgba(250, 247, 242, 0.06);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green);
  background: rgba(250, 247, 242, 0.1);
  width: 30px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.6);
}

.footer-motto {
  font-family: var(--font-head);
  font-style: italic;
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.3);
  margin-left: auto;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.2);
  width: 100%;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 20px 28px; }
  .nav-tagline { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text { padding: 60px 28px 40px; max-width: none; }
  .hero-visual { min-height: 340px; order: -1; }
  .hero-botanical { width: 280px; height: 280px; }
  .r1 { width: 240px; height: 240px; }
  .r2 { width: 180px; height: 180px; }
  .r3 { width: 120px; height: 120px; }
  .systems { padding: 72px 28px; }
  .systems-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .approach { padding: 72px 28px; }
  .approach-steps { grid-template-columns: 1fr; }
  .step { padding-right: 0; border-left: none !important; }
  .step:nth-child(even) { padding-left: 0; }
  .philosophy { padding: 72px 28px; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 40px; }
  .phil-svg { margin: 0 auto; }
  .closing { padding: 72px 28px; }
  .footer { padding: 40px 28px; }
  .footer-motto { margin-left: 0; width: auto; }
}

@media (max-width: 480px) {
  .systems-grid { gap: 0; }
  .system-card { padding: 24px 20px; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; padding: 36px 0; }
  .step-num { font-size: 1.8rem; }
}

/* === CAPTURE PAGE === */
.capture {
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 28px;
}

.capture-inner {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.capture-botanical {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.capture .botanical-ring {
  position: absolute;
  border-radius: 50%;
}
.capture .r1 { width: 160px; height: 160px; border-color: rgba(196, 113, 58, 0.2); }
.capture .r2 { width: 120px; height: 120px; border-color: rgba(250, 247, 242, 0.08); }
.capture .r3 { width: 80px; height: 80px; border-color: rgba(196, 113, 58, 0.15); }

.capture .botanical-center {
  position: relative;
  z-index: 2;
}

.capture .botanical-svg {
  width: 56px;
  height: 56px;
}

.capture-offer {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.capture-headline {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--green);
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.capture-sub {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg-soft);
  margin-bottom: 40px;
  max-width: 440px;
}

.capture-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.capture-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.capture-field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--fg-soft);
}

.capture-field input {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--fg);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.capture-field input:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(45, 74, 28, 0.1);
}

.capture-field input::placeholder {
  color: var(--fg-muted);
}

.capture-submit {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  background: var(--green);
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 4px;
}

.capture-submit:hover {
  background: var(--green-mid);
}

.capture-submit:active {
  transform: scale(0.98);
}

.capture-submit:disabled {
  background: var(--fg-muted);
  cursor: not-allowed;
}

.capture-disclaimer {
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .capture { padding: 60px 28px; }
}

@media (max-width: 480px) {
  .capture-botanical { width: 140px; height: 140px; margin-bottom: 32px; }
  .capture .r1 { width: 120px; height: 120px; }
  .capture .r2 { width: 90px; height: 90px; }
  .capture .r3 { width: 60px; height: 60px; }
  .capture .botanical-svg { width: 44px; height: 44px; }
}
