:root {
  --bg: #F8FAF5;
  --surface: #EEF2ED;
  --fg: #1A1A18;
  --fg-muted: #4B5563;
  --accent: #1B4332;
  --accent-amber: #D97706;
  --gold: #B45309;
  --white: #FFFFFF;
  --border: #D1D9C8;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 300;
  letter-spacing: 0.3px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.nav-link:hover {
  background: var(--accent);
  color: var(--white);
}

/* Hero */
.hero {
  padding: 80px 48px 72px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 0;
  align-items: center;
  max-width: 1100px;
}
.hero-left {
  padding-right: 48px;
  border-right: 2px solid var(--accent);
}
.hero-numeral {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 140px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -6px;
}
.hero-right { padding-left: 48px; }
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
  max-width: 520px;
}

/* Why */
.why {
  padding: 80px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.why-header {
  max-width: 680px;
  margin-bottom: 48px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-amber);
  margin-bottom: 14px;
}
.why-header h2, .mowers-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.4px;
  line-height: 1.25;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
}
.why-card { }
.why-icon {
  width: 48px;
  height: 48px;
  background: var(--surface);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.why-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* How */
.how {
  padding: 72px 48px;
  background: var(--accent);
  color: var(--white);
}
.how-inner {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.how-text .eyebrow { color: #86EFAC; }
.how-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.25;
}
.how-text p {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.7;
  font-weight: 300;
}
.how-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  opacity: 0.75;
  font-weight: 300;
  line-height: 1.4;
}

/* Mowers */
.mowers {
  padding: 80px 48px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.mowers-header {
  max-width: 680px;
  margin-bottom: 40px;
}
.mowers-header p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--fg-muted);
}
.mowers-list {
  max-width: 900px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.mower-row {
  display: grid;
  grid-template-columns: 56px 1fr 1fr 140px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  align-items: center;
}
.mower-row:last-child { border-bottom: none; }
.mower-row-head {
  background: var(--surface);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
}
.mower-row:nth-child(even) { background: var(--bg); }
.col-rank {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg-muted);
}
.rank-gold { color: var(--gold); }
.col-pick {
  color: var(--fg-muted);
  font-size: 14px;
}
.col-price {
  font-weight: 600;
  color: var(--accent);
  font-size: 14px;
}

/* Closing */
.closing {
  padding: 88px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.4px;
}
.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* Footer */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 14px;
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 480px;
  margin: 0 auto 14px;
  line-height: 1.55;
}
.footer-copy { font-size: 13px; color: var(--fg-muted); opacity: 0.7; }

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 18px 24px; }
  .hero { padding: 56px 24px 52px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-left { padding-right: 0; border-right: none; border-bottom: 2px solid var(--accent); padding-bottom: 24px; }
  .hero-numeral { font-size: 96px; }
  .hero-right { padding-left: 0; }
  .hero-headline { font-size: 30px; }
  .why { padding: 56px 24px; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .why-header h2 { font-size: 28px; }
  .how { padding: 56px 24px; }
  .how-inner { grid-template-columns: 1fr; gap: 40px; }
  .how-stats { grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
  .mowers { padding: 56px 24px; }
  .mowers-header h2 { font-size: 28px; }
  .mower-row { grid-template-columns: 40px 1fr 90px; }
  .col-pick { display: none; }
  .closing { padding: 56px 24px; }
  .closing h2 { font-size: 28px; }
  .footer { padding: 32px 24px; }
}