:root {
  --green-deep: #1B3A2F;
  --green-mid: #2D7A4F;
  --green-light: #3A9E6B;
  --amber: #E8920C;
  --amber-light: #F5A623;
  --sky: #8BB8D4;
  --sky-light: #A8D0E8;
  --cream: #F7F5EF;
  --cream-warm: #EDE9DD;
  --ink: #1A1A18;
  --ink-mid: #3D3D38;
  --ink-light: #6B6B62;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-lg: 20px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 58, 47, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--green-deep);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  position: relative;
  padding: 80px 32px 80px;
  overflow: hidden;
}
.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(58, 158, 107, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(139, 184, 212, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green-mid);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  color: var(--ink-mid);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(27, 58, 47, 0.07);
  color: var(--green-deep);
  border: 1px solid rgba(27, 58, 47, 0.12);
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
}
.hero-card:hover {
  transform: translateY(-2px);
}
.card-spring {
  background: linear-gradient(135deg, #EAF4EE 0%, #D4EAE0 100%);
  border-left: 4px solid var(--green-mid);
}
.card-winter {
  background: linear-gradient(135deg, #EBF3F8 0%, #D6E8F2 100%);
  border-left: 4px solid var(--sky);
  margin-left: 32px;
}
.card-season-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--ink-light);
  margin-bottom: 12px;
}
.card-icon {
  margin-bottom: 12px;
}
.card-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 4px;
}
.card-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 12px;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.card-features li {
  font-size: 13px;
  color: var(--ink-mid);
  padding-left: 14px;
  position: relative;
}
.card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green-mid);
}

/* ── SHARED SECTION STYLES ── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--green-mid);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 48px;
}

/* ── HOW IT WORKS ── */
.how-it-works {
  background: var(--green-deep);
  padding: 96px 0;
  color: var(--white);
}
.how-it-works .section-label { color: var(--amber-light); }
.how-it-works .section-headline { color: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 64px;
}
.step { }
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(247, 245, 239, 0.2);
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 15px;
  color: rgba(247, 245, 239, 0.7);
  line-height: 1.6;
}
.stats-row {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(247, 245, 239, 0.15);
  padding-top: 40px;
}
.stat {
  flex: 1;
  text-align: center;
}
.stat + .stat {
  border-left: 1px solid rgba(247, 245, 239, 0.15);
}
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--amber-light);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: rgba(247, 245, 239, 0.6);
}

/* ── SERVICES ── */
.services {
  padding: 96px 0;
  background: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27, 58, 47, 0.1);
}
.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.sc-green { background: rgba(45, 122, 79, 0.1); color: var(--green-mid); }
.sc-blue { background: rgba(139, 184, 212, 0.15); color: #5A8FAD; }
.sc-amber { background: rgba(232, 146, 12, 0.12); color: var(--amber); }
.sc-slate { background: rgba(107, 107, 98, 0.1); color: var(--ink-light); }
.service-name {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 8px;
}
.service-desc {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-from {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-mid);
  padding: 6px 12px;
  background: rgba(45, 122, 79, 0.08);
  border-radius: 100px;
  display: inline-block;
}

/* ── MANIFESTO ── */
.manifesto {
  background: linear-gradient(135deg, #EAF0EA 0%, #F0EDE4 100%);
  padding: 96px 0;
  border-top: 1px solid rgba(27, 58, 47, 0.08);
  border-bottom: 1px solid rgba(27, 58, 47, 0.08);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-text {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.55;
  margin-bottom: 16px;
}
.manifesto-sub {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-mid);
}
.manifesto-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mfeature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.mfeature-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-mid);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.mfeature strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 2px;
}
.mfeature p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.5;
}

/* ── COVERAGE ── */
.coverage {
  padding: 96px 0;
  background: var(--cream);
}
.coverage-sub {
  font-size: 18px;
  color: var(--ink-mid);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.65;
}
.coverage-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.city-tag {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--green-deep);
  color: var(--white);
}
.coverage-note {
  font-size: 14px;
  color: var(--ink-light);
}

/* ── CLOSING ── */
.closing {
  background: var(--green-deep);
  padding: 96px 0;
  color: var(--white);
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(247, 245, 239, 0.7);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 48px;
}
.closing-year-round {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(247, 245, 239, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(247, 245, 239, 0.12);
  max-width: 640px;
}
.yr-icon { flex-shrink: 0; }
.closing-year-round p {
  font-size: 15px;
  color: rgba(247, 245, 239, 0.75);
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  background: #0E2018;
  padding: 48px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(247, 245, 239, 0.5);
  max-width: 280px;
}
.footer-copy {
  font-size: 13px;
  color: rgba(247, 245, 239, 0.4);
  text-align: right;
}
.footer-note {
  font-size: 12px;
  color: rgba(247, 245, 239, 0.3);
  text-align: right;
  margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { flex-direction: row; overflow-x: auto; padding-bottom: 8px; }
  .hero-card { min-width: 240px; }
  .card-winter { margin-left: 0; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer-copy, .footer-note { text-align: left; }
  .stats-row { flex-direction: column; gap: 24px; }
  .stat + .stat { border-left: none; border-top: 1px solid rgba(247, 245, 239, 0.15); padding-top: 24px; }
}
@media (max-width: 480px) {
  .hero { padding: 56px 20px; }
  .section-inner { padding: 0 20px; }
  .manifesto-inner { padding: 0 20px; }
  .closing-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
}