:root {
  --bg: #F9F5EF;
  --fg: #1E2A3A;
  --accent: #C8503C;
  --accent-warm: #E8835A;
  --sage: #7A9E7E;
  --cream-dark: #EDE5D8;
  --ink: #2D3A4E;
  --muted: #6B7280;
  --white: #FFFFFF;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* NAV */
.nav {
  padding: 24px 48px;
  display: flex;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
}

.brand-leaf {
  font-size: 22px;
  color: var(--sage);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  position: relative;
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 42, 58, 0.15), transparent);
}

.hero-content {
  padding: 80px 64px 80px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  color: var(--white);
}

.hero-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-headline {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 420px;
}

.hero-email-preview {
  position: absolute;
  bottom: 48px;
  right: 64px;
  width: 300px;
}

.email-window {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(30,42,58,0.3);
  overflow: hidden;
}

.email-bar {
  background: #E8E3DA;
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  align-items: center;
}

.email-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C4BFB5;
}

.email-body {
  padding: 20px;
}

.email-from {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.email-subject {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.email-preview-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.email-preview-text p:first-child { font-weight: 600; color: var(--fg); margin-bottom: 4px; }

.email-caption {
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

/* SECTION SHARED */
.section-title {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--ink);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.7;
}

/* FEATURES */
.features {
  padding: 120px 64px;
  background: var(--white);
}

.features-inner { max-width: 1100px; margin: 0 auto; }

.features-header { margin-bottom: 72px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}

.feature-card { padding: 0; }

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.features-image-section {
  border-radius: 16px;
  overflow: hidden;
  max-height: 380px;
}

.features-image {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* GROWS */
.grows {
  padding: 120px 64px;
  background: var(--cream-dark);
}

.grows-inner { max-width: 900px; margin: 0 auto; }

.grows-header { margin-bottom: 64px; }

.age-timeline { display: flex; flex-direction: column; gap: 36px; }

.age-stage { display: grid; grid-template-columns: 120px 1fr; gap: 20px; align-items: center; }

.age-label {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.age-bar {
  height: 6px;
  border-radius: 3px;
}

.age-bar-young { background: linear-gradient(to right, var(--sage), #A8C4A6); }
.age-bar-mid { background: linear-gradient(to right, var(--accent-warm), var(--accent)); }
.age-bar-old { background: linear-gradient(to right, var(--ink), #3D5068); }

.age-desc {
  grid-column: 2;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.grows-note {
  margin-top: 48px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
  border-left: 3px solid var(--sage);
  padding-left: 16px;
}

/* VALUES */
.values {
  padding: 120px 64px;
  background: var(--ink);
  color: var(--white);
}

.values-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.values .section-title { color: var(--white); }
.values .section-sub { color: rgba(255,255,255,0.65); }

.values-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.values-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  padding-left: 28px;
  position: relative;
}

.values-list li::before {
  content: '\u2713';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 700;
}

.values-quote {
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 40px;
  border-left: 4px solid var(--sage);
}

.values-quote blockquote {
  font-family: 'Lora', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 20px;
}

.values-quote cite {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-style: normal;
}

/* PROCESS */
.process { padding: 120px 64px; background: var(--white); }
.process-inner { max-width: 900px; margin: 0 auto; }
.process .section-title { margin-bottom: 64px; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step { position: relative; }

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step h3 {
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 10px;
}

.step p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* CLOSING */
.closing {
  padding: 120px 64px;
  background: var(--bg);
  text-align: center;
}

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

.closing-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.2;
}

.closing-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
}

/* FOOTER */
.footer {
  padding: 48px 64px;
  background: var(--ink);
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Lora', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image-wrap { height: 280px; }
  .hero-content { padding: 48px 28px; }
  .hero-headline { font-size: 30px; }
  .hero-email-preview { position: static; width: 100%; margin-top: 32px; }
  .features { padding: 80px 24px; }
  .feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-image { height: 220px; }
  .grows { padding: 80px 24px; }
  .age-stage { grid-template-columns: 1fr; }
  .age-desc { grid-column: 1; }
  .values { padding: 80px 24px; }
  .values-inner { grid-template-columns: 1fr; }
  .values-quote { padding: 28px; }
  .process { padding: 80px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .closing { padding: 80px 24px; }
  .footer { padding: 40px 24px; }
}