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

:root {
  --cream: #F5F0E8;
  --cream-dark: #EDE8DF;
  --forest: #1A2E1A;
  --forest-light: #243824;
  --orange: #E05C2A;
  --orange-muted: #C94F22;
  --text: #1A2E1A;
  --text-muted: #4A5A4A;
  --text-light: #7A8A7A;
  --border: rgba(26,46,26,0.12);
  --shadow: 0 4px 24px rgba(26,46,26,0.08);
  --radius: 12px;
  --radius-sm: 8px;
}

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

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 48px;
  background: rgba(245,240,232,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--forest);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--forest); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 120px 48px 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__gradient-1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(224,92,42,0.08) 0%, transparent 70%);
}
.hero__gradient-2 {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 40%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(26,46,26,0.05) 0%, transparent 70%);
}
.hero__texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231A2E1A' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner { max-width: 680px; }
.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.hero__label-dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero__headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--forest);
  margin-bottom: 28px;
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero__signal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.05em;
}
.hero__signal-bar {
  width: 3px;
  height: 14px;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.4;
}
.hero__signal-bar:nth-child(1) { height: 10px; }
.hero__signal-bar:nth-child(2) { height: 14px; }
.hero__signal-bar:nth-child(3) { height: 8px; }
.hero__signal-bar:nth-child(4) { height: 18px; }
.hero__signal-bar:nth-child(5) { height: 12px; }
.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-right: 20px;
}
.hero__stat { text-align: right; }
.hero__stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--forest);
  line-height: 1;
  letter-spacing: -0.04em;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* === MANIFESTO === */
.manifesto {
  padding: 120px 48px;
  background: var(--forest);
  color: var(--cream);
}
.manifesto__inner { max-width: 1100px; margin: 0 auto; }
.manifesto__badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 40px;
}
.manifesto__headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  max-width: 700px;
}
.manifesto__body {
  max-width: 600px;
  font-size: 1.05rem;
  color: rgba(245,240,232,0.75);
  line-height: 1.8;
  margin-bottom: 64px;
}
.manifesto__body p { margin-bottom: 20px; }
.manifesto__body p:last-child { margin-bottom: 0; }
.manifesto__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(245,240,232,0.12);
  padding-top: 48px;
}
.manifesto__pillar-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,240,232,0.06);
  border-radius: 12px;
  margin-bottom: 20px;
}
.manifesto__pillar h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cream);
}
.manifesto__pillar p {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.6;
}

/* === COMMUNITY === */
.community { padding: 120px 48px; }
.community__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.community__eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.community__headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin-bottom: 20px;
}
.community__body {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.community__features { display: flex; flex-direction: column; gap: 24px; }
.community__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.community__feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border-radius: 10px;
}
.community__feature strong {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--forest);
  margin-bottom: 2px;
}
.community__feature span {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.community__visual-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
}
.community__card {
  background: white;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.community__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.community__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.community__card-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--forest);
}
.community__card-time {
  font-size: 0.75rem;
  color: var(--text-light);
}
.community__card-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.community__card-meta {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}
.community__card-meta span::before {
  content: '·';
  margin-right: 4px;
}
.community__card-meta span:first-child::before { content: ''; }

/* === ROUTES === */
.routes {
  padding: 120px 48px;
  background: var(--cream-dark);
}
.routes__header {
  max-width: 1100px;
  margin: 0 auto 64px;
  text-align: center;
}
.routes__eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.routes__headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin-bottom: 20px;
}
.routes__body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.routes__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 20px;
  align-items: start;
}
.routes__route-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.2s;
}
.routes__route-card:hover { transform: translateY(-4px); }
.routes__route-card--featured {
  grid-row: span 2;
}
.routes__route-map {
  background: var(--cream);
  padding: 16px;
}
.routes__route-map svg { width: 100%; display: block; }
.routes__route-info { padding: 20px 24px; }
.routes__route-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.routes__route-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.routes__route-meta span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--orange);
  background: rgba(224,92,42,0.08);
  padding: 2px 10px;
  border-radius: 100px;
}
.routes__route-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.routes__route-by {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* === RIDE (quote section) === */
.ride {
  padding: 100px 48px;
  background: var(--forest);
  text-align: center;
}
.ride__inner { max-width: 700px; margin: 0 auto; }
.ride__rule {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.ride__rule span {
  width: 40px; height: 2px;
  background: rgba(245,240,232,0.2);
  border-radius: 1px;
}
.ride__headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.4;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.ride__quote-mark { margin-bottom: 20px; }
.ride__body {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 120px 48px 100px;
  text-align: center;
  background: var(--cream);
}
.closing__inner { max-width: 700px; margin: 0 auto; }
.closing__badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--forest);
  padding: 4px 16px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.closing__headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--forest);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.closing__body {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing__signal-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.closing__signal-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.closing__signal-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}
.closing__note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* === FOOTER === */
.footer {
  background: var(--forest);
  color: var(--cream);
  padding: 64px 48px 32px;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  margin-bottom: 48px;
}
.footer__brand {}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer__tagline {
  font-size: 0.9rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.6;
}
.footer__links {
  display: flex;
  gap: 60px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 4px;
}
.footer__col a {
  text-decoration: none;
  color: rgba(245,240,232,0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--cream); }
.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(245,240,232,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.3);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
  .hero__aside { display: none; }
  .manifesto { padding: 80px 24px; }
  .manifesto__pillars { grid-template-columns: 1fr; gap: 32px; }
  .community { padding: 80px 24px; }
  .community__grid { grid-template-columns: 1fr; gap: 48px; }
  .routes { padding: 80px 24px; }
  .routes__grid { grid-template-columns: 1fr; }
  .routes__route-card--featured { grid-row: auto; }
  .ride { padding: 80px 24px; }
  .closing { padding: 80px 24px 60px; }
  .footer { padding: 48px 24px 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 480px) {
  .nav__links { display: none; }
  .closing__signal-row { gap: 8px; }
  .closing__signal-pill { font-size: 0.78rem; padding: 6px 14px; }
}