/* ===========================
   HoneyPee Landing Page
   =========================== */

:root {
  --cream: #FDFAF5;
  --cream-dark: #F5EFE5;
  --forest: #1B3A2F;
  --forest-light: #2A5242;
  --gold: #C9873A;
  --gold-light: #E4A84B;
  --charcoal: #2C2C2C;
  --muted: #6B6B6B;
  --border: #E5DDD0;
  --white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

/* — Navigation — */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.nav-logo {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  color: var(--forest);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.nav-demo {
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-demo:hover {
  color: var(--gold-light);
}

.nav-back {
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.15s;
}

.nav-back:hover {
  color: var(--gold-light);
}

/* — Hero — */
.hero {
  padding: 80px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  color: var(--forest);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  color: var(--forest);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

.hero-image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(27, 58, 47, 0.15);
}

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

/* — Manifesto — */
.manifesto {
  background: var(--forest);
  padding: 64px 32px;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.manifesto-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
}

.manifesto-quote {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 2.5vw, 32px);
  color: var(--cream);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* — Stations — */
.stations {
  padding: 96px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.stations-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--forest);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.station-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.station-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.station-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 58, 47, 0.1);
}

.station-img-wrap {
  overflow: hidden;
  height: 200px;
}

.station-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.station-card:hover .station-img {
  transform: scale(1.04);
}

.station-body {
  padding: 28px;
}

.station-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 500;
}

.station-name {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: var(--forest);
  margin: 6px 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.station-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.station-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.station-features li {
  font-size: 13px;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.station-features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 6px;
  flex-shrink: 0;
}

/* — How — */
.how {
  background: var(--cream-dark);
  padding: 96px 32px;
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.how-inner .section-title {
  text-align: center;
  margin-bottom: 56px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.how-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.how-icon {
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.how-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
}

.how-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* — Vision — */
.vision {
  background: var(--forest);
  padding: 96px 32px;
}

.vision-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.vision-headline {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.vision-body {
  font-size: 16px;
  color: rgba(253, 250, 245, 0.7);
  line-height: 1.8;
  margin-bottom: 16px;
}

.vision-tag {
  border-left: 2px solid var(--gold);
  padding-left: 28px;
}

.vision-tag-text {
  font-family: 'Anton', sans-serif;
  font-size: 18px;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* — Footer — */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  color: var(--forest);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-mission {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* — Responsive — */
@media (max-width: 1024px) {
  .station-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .how-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-inner {
    grid-template-columns: 1fr;
  }

  .vision-tag {
    border-left: none;
    border-top: 2px solid var(--gold);
    padding-left: 0;
    padding-top: 28px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 48px 24px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-img {
    height: 280px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-num {
    font-size: 24px;
  }

  .stations {
    padding: 64px 24px;
  }

  .station-cards {
    max-width: 100%;
  }

  .how {
    padding: 64px 24px;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .vision {
    padding: 64px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .manifesto {
    padding: 48px 24px;
  }

  .manifesto-quote {
    font-size: 20px;
  }
}