/* MK WEA Bus — Site Styles */
:root {
  --primary: #1a5276;
  --primary-light: #2980b9;
  --accent: #27ae60;
  --accent-light: #2ecc71;
  --warm: #e67e22;
  --bg: #f8f9fa;
  --card-bg: #ffffff;
  --text: #2c3e50;
  --muted: #7f8c8d;
  --border: #e0e0e0;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Header */
.site-header {
  background: linear-gradient(135deg, var(--primary) 0%, #1a6e9e 100%);
  color: white;
  padding: 48px 24px 40px;
  text-align: center;
}
.site-header h1 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.site-header .subtitle {
  font-size: clamp(14px, 2vw, 18px);
  opacity: 0.9;
  font-weight: 400;
}
.site-header .route-label {
  display: inline-block;
  margin-top: 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 24px;
  padding: 6px 20px;
  font-size: 13px;
  letter-spacing: 0.5px;
}

/* Container */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section */
.section {
  padding: 48px 0;
}
.section + .section {
  border-top: 1px solid var(--border);
}
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Lead paragraph */
.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  max-width: 720px;
}
.lead strong {
  color: var(--primary);
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.stat-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  text-align: center;
}
.stat-card .value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.stat-card .label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Bus lane badge */
.bus-lane-banner {
  background: linear-gradient(90deg, var(--accent) 0%, #219a52 100%);
  color: white;
  border-radius: 10px;
  padding: 16px 24px;
  margin: 24px 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}
.bus-lane-banner .icon {
  font-size: 28px;
  flex-shrink: 0;
}

/* Petition banner */
.petition-banner {
  margin: 0 0 24px;
}
.petition-banner a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(90deg, #c0392b 0%, #e74c3c 100%);
  color: white;
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.1s, box-shadow 0.1s;
}
.petition-banner a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}
.petition-banner .icon {
  font-size: 28px;
  flex-shrink: 0;
}
.petition-arrow {
  margin-left: auto;
  font-size: 20px;
  opacity: 0.8;
}

/* Stop list */
.stop-list {
  list-style: none;
  counter-reset: stop;
}
.stop-list li {
  counter-increment: stop;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.stop-list li:last-child { border-bottom: none; }
.stop-list li::before {
  content: counter(stop);
  background: #c0392b;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.stop-name { font-weight: 600; }
.stop-detail { font-size: 14px; color: var(--muted); }
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}
.tag-existing { background: #ebf5fb; color: var(--primary-light); }
.tag-new { background: #fdebd0; color: var(--warm); }

/* Arguments grid */
.args-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.arg-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border-left: 4px solid var(--primary);
}
.arg-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.arg-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* Map embed */
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  margin: 24px 0;
}
.map-embed iframe {
  width: 100%;
  height: 500px;
  border: none;
}

/* CTA */
.cta-section {
  background: var(--primary);
  color: white;
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  margin: 32px 0;
}
.cta-section h2 {
  font-size: 22px;
  margin-bottom: 12px;
}
.cta-section--petition {
  background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}
.cta-section p {
  opacity: 0.9;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.1s;
}
.btn:hover { transform: translateY(-1px); }
.btn-accent {
  background: var(--accent);
  color: white;
}
.btn-petition {
  background: #c0392b;
  color: white;
  font-size: 18px;
  padding: 16px 36px;
}
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

/* Asks list */
.asks-list {
  list-style: none;
  margin-top: 16px;
}
.asks-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.asks-list li:last-child { border-bottom: none; }
.asks-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

/* Footer */
.site-footer {
  background: #2c3e50;
  color: rgba(255,255,255,0.7);
  padding: 32px 24px;
  text-align: center;
  font-size: 13px;
  line-height: 1.8;
}
.site-footer a { color: rgba(255,255,255,0.9); }

/* Responsive */
@media (max-width: 600px) {
  .site-header { padding: 32px 16px 28px; }
  .section { padding: 32px 0; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .args-grid { grid-template-columns: 1fr; }
  .cta-section { padding: 28px 20px; }
  .map-embed iframe { height: 380px; }
  .dest-cards { grid-template-columns: 1fr; }
  .journey-modes { flex-direction: column; }
}

/* Destination cards */
.dest-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.dest-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  border-top: 4px solid var(--primary-light);
}
.dest-card--highlight {
  border-top-color: var(--warm);
  background: #fef9e7;
}
.dest-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.dest-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--warm);
  margin-bottom: 10px;
}
.dest-card p:last-child {
  font-size: 14px;
  line-height: 1.65;
  color: #555;
}

/* Journey comparison */
.journey-comparison {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-bottom: 20px;
}
.journey-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.journey-distance {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}
.journey-modes {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.journey-mode {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: 8px;
  background: var(--bg);
}
.mode-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.mode-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}
.mode-time {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  display: block;
  margin: 2px 0;
}
.mode-time--bad {
  color: #c0392b;
}
.mode-time--good {
  color: var(--accent);
}
.mode-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  display: block;
}
