@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;1,700&family=Barlow:wght@300;400;500;600&display=swap');

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  --black:   #0f0f0f;
  --red:     #d42b2b;
  --red-dk:  #a81f1f;
  --white:   #f5f2ee;
  --offwhite:#e8e4df;
  --gray:    #6b6560;
  --light:   #f0ece7;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius: 4px;
  --max-w:  1100px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── NAV ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--black);
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  text-decoration: none;
}
.nav-logo-mark {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: white;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: white;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: white; }
.nav-join {
  margin-left: 16px;
  background: var(--red);
  color: white !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.nav-join:hover { background: var(--red-dk) !important; color: white !important; }

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.2s;
}

/* ─── HERO ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(15,15,15,0.3) 0%, rgba(15,15,15,0.75) 60%, var(--black) 100%);
  z-index: 1;
}
.hero-photo {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: 0.55;
}
/* fallback pattern when no photo */
.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 40px,
      rgba(212,43,43,0.06) 40px,
      rgba(212,43,43,0.06) 41px
    );
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 2px;
  background: var(--red);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 800;
  line-height: 0.92;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: var(--red);
}
.hero-sub {
  max-width: 520px;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-val {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: white;
  line-height: 1;
  text-transform: uppercase;
}
.hero-stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-red {
  background: var(--red);
  color: white;
}
.btn-red:hover { background: var(--red-dk); }
.btn-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover { border-color: white; }
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: white; }
.btn-lg { padding: 16px 32px; font-size: 15px; }
.btn-arrow::after { content: ' →'; }

/* ─── QUICK JUMP ─────────────────────────────────────── */
.quick-jump {
  background: var(--red);
  padding: 0;
}
.quick-jump-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.qj-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 24px;
  color: white;
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background 0.15s;
}
.qj-item:last-child { border-right: none; }
.qj-item:hover { background: var(--red-dk); }
.qj-icon {
  font-size: 22px;
  flex-shrink: 0;
}
.qj-label {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}
.qj-sub {
  font-size: 12px;
  opacity: 0.75;
  margin-top: 1px;
}

/* ─── SECTION BASICS ─────────────────────────────────── */
.section {
  padding: 96px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-sm { padding: 64px 32px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
  max-width: 540px;
}

/* ─── RIDE GROUPS ────────────────────────────────────── */
.rides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 56px;
  background: var(--offwhite);
  border: 2px solid var(--offwhite);
  border-radius: var(--radius);
  overflow: hidden;
}
.ride-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background 0.2s;
  cursor: default;
}
.ride-card:hover { background: var(--light); }
.ride-card-letter {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--offwhite);
  margin-bottom: 12px;
  transition: color 0.2s;
}
.ride-card:hover .ride-card-letter { color: var(--red); }
.ride-card-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.ride-card-dist {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 8px;
}
.ride-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  font-weight: 300;
}
.ride-card-pace {
  margin-top: 16px;
  display: inline-block;
  background: var(--offwhite);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  color: var(--gray);
}

/* ─── RWGPS STRIP ────────────────────────────────────── */
.rwgps-strip {
  background: var(--black);
  padding: 56px 32px;
}
.rwgps-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.rwgps-text .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.rwgps-text h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 1;
  margin-bottom: 10px;
}
.rwgps-text p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 300;
  max-width: 400px;
}

/* ─── EVENTS ─────────────────────────────────────────── */
.events-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.event-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--offwhite);
  border-radius: var(--radius);
  transition: border-color 0.15s, background 0.15s;
}
.event-row:hover { border-color: var(--red); background: var(--light); }
.event-date-box {
  text-align: center;
  background: var(--offwhite);
  padding: 10px;
  border-radius: var(--radius);
}
.event-date-day {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--black);
}
.event-date-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 2px;
}
.event-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.event-meta {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}
.event-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--offwhite);
  color: var(--gray);
  white-space: nowrap;
}
.event-tag.ride { background: #e8f5e9; color: #2e7d32; }
.event-tag.race { background: #fce4ec; color: #880e4f; }
.event-tag.social { background: #e3f2fd; color: #1565c0; }

/* ─── JOIN BAND ───────────────────────────────────────── */
.join-band {
  background: var(--red);
  padding: 80px 32px;
  text-align: center;
}
.join-band h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 0.95;
  margin-bottom: 16px;
}
.join-band p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.membership-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.mem-pill {
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 40px;
  padding: 10px 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.mem-pill-price {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.mem-pill-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  background: var(--black);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}
.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
  margin-bottom: 16px;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
}
.footer-social a:hover { border-color: var(--red); color: white; background: var(--red); }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color 0.15s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}
.footer-affil {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-affil span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

/* ─── INNER PAGE HERO ─────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 140px 32px 64px;
  position: relative;
  overflow: hidden;
}
.page-hero-pattern {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent, transparent 60px,
    rgba(212,43,43,0.04) 60px, rgba(212,43,43,0.04) 61px
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  color: white;
  line-height: 0.95;
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  font-weight: 300;
  max-width: 500px;
}

/* ─── JOIN PAGE SPECIFICS ────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--offwhite);
  border: 2px solid var(--offwhite);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 48px;
}
.step-card {
  background: var(--white);
  padding: 36px 28px;
}
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--offwhite);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}
.step-body {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

.mem-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.mem-card {
  border: 1.5px solid var(--offwhite);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.15s;
}
.mem-card.featured {
  border-color: var(--red);
  position: relative;
}
.mem-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}
.mem-card-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}
.mem-card-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.mem-card-detail {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

.info-box {
  background: var(--light);
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 40px;
}
.info-box h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.info-box p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.7;
}

.big-cta-wrap {
  text-align: center;
  padding: 64px 0 0;
}
.big-cta-wrap .btn {
  font-size: 16px;
  padding: 18px 40px;
}
.big-cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}

/* ─── RIDES PAGE SPECIFICS ───────────────────────────── */
.meet-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0 64px;
}
.meet-tile {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
}
.meet-tile-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.meet-tile-val {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.meet-tile-sub {
  font-size: 13px;
  font-weight: 300;
  color: var(--gray);
  margin-top: 4px;
}

.group-cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.group-card {
  background: var(--white);
  border: 1px solid var(--offwhite);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.15s;
}
.group-card:hover { border-color: var(--red); }
.group-card-header {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
}
.group-card-letter {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--offwhite);
}
.group-card:hover .group-card-letter { color: var(--red); }
.group-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.group-card-summary {
  font-size: 13px;
  color: var(--gray);
  font-weight: 300;
}
.group-card-stats {
  text-align: right;
}
.group-card-dist {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
}
.group-card-pace {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
}
.group-card-body {
  padding: 0 28px 28px;
  border-top: 1px solid var(--offwhite);
  padding-top: 20px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75;
}
.group-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.group-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  background: var(--light);
  color: var(--gray);
}

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  padding: 12px 16px;
  border: 1.5px solid var(--offwhite);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--offwhite);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon {
  width: 36px; height: 36px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 14px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-info-val {
  font-size: 15px;
  font-weight: 400;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: var(--black);
    padding: 32px;
    gap: 4px;
    align-items: flex-start;
    z-index: 99;
  }
  .nav-links.open a {
    font-size: 28px;
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 0;
  }
  .quick-jump-inner { grid-template-columns: repeat(2, 1fr); }
  .rides-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .mem-cards { grid-template-columns: 1fr 1fr; }
  .meet-tiles { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .nav { padding: 0 20px; }
  .section { padding: 64px 20px; }
  .quick-jump-inner { grid-template-columns: 1fr 1fr; }
  .rides-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 80px 1fr; }
  .event-row .event-tag { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .mem-cards { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .page-hero { padding: 120px 20px 48px; }
  .group-card-header { grid-template-columns: 48px 1fr; }
  .group-card-stats { display: none; }
}
