/* ================================================================
   MOTO WANDERERS — global.css
   Design system matching home.html / about.html exactly.
   Poppins (headings) · Open Sans (body)
   ================================================================ */

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

/* ── TOKENS ── */
:root {
  --orange:     #FFD000;
  --orange-dk:  #E6B800;
  --orange-lt:  rgba(255,208,0,0.12);
  --orange-bd:  rgba(255,208,0,0.35);
  --bg:         #0a0a0a;
  --bg-1:       #111111;
  --bg-2:       #1a1a1a;
  --bg-3:       #222222;
  --bg-4:       #2a2a2a;
  --ink:        #f5f5f5;
  --ink-2:      #a3a3a3;
  --ink-3:      #525252;
  --line:       rgba(255,255,255,0.06);
  --line-2:     rgba(255,255,255,0.12);
  --line-3:     rgba(255,255,255,0.25);
  --f-head: 'Poppins', sans-serif;
  --f-body: 'Open Sans', sans-serif;
  --nav-h: 72px;
  --max-w: 1280px;
  --pad: clamp(1.5rem, 5vw, 5rem);
  --r: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --t: .22s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--f-body); background: var(--bg); color: var(--ink); line-height: 1.7; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--f-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--f-body); font-size: 1rem; }
h1,h2,h3,h4,h5,h6 { font-family: var(--f-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; color: var(--ink); }
strong { font-weight: 600; }

/* ── LAYOUT ── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-sm { padding-block: clamp(2.5rem, 5vw, 4rem); }

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--line);
}
.navbar__inner {
  width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
}
.navbar__brand {
  font-family: var(--f-head); font-size: .9rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink);
  display: flex; align-items: center; gap: .625rem; flex-shrink: 0;
}
.navbar__brand img { height: 38px; width: auto; }
.navbar__brand-dot { color: var(--orange); }
.navbar__links { display: flex; align-items: center; gap: .125rem; }
.navbar__link {
  font-family: var(--f-head); font-size: .75rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
  padding: .5rem 1rem; border-radius: var(--r);
  transition: color var(--t), background var(--t);
}
.navbar__link:hover, .navbar__link.active { color: var(--ink); }
.navbar__cta {
  font-family: var(--f-head); font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bg); background: var(--orange);
  padding: .625rem 1.5rem; border-radius: 99px;
  transition: background var(--t), transform var(--t);
  white-space: nowrap; flex-shrink: 0;
}
.navbar__cta:hover { background: var(--orange-dk); transform: translateY(-1px); }
.navbar__burger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.navbar__burger span { display: block; width: 22px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .22s, opacity .22s; }
.navbar__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.navbar__mob {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 999;
  background: rgba(10,10,10,0.98); border-bottom: 1px solid var(--line-2);
  padding: 1.5rem var(--pad) 2.5rem; flex-direction: column; gap: .25rem;
  backdrop-filter: blur(20px);
}
.navbar__mob.open { display: flex; }
.navbar__mob-link {
  font-family: var(--f-head); font-size: 1rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2);
  padding: .875rem 1rem; border-radius: var(--r);
  transition: color var(--t), background var(--t);
}
.navbar__mob-link:hover, .navbar__mob-link.active { color: var(--ink); background: var(--bg-2); }
.navbar__mob-cta {
  margin-top: 1.25rem; text-align: center; font-family: var(--f-head);
  font-size: .875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--bg); background: var(--orange); padding: 1rem; border-radius: 99px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: 99px;
  border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: all var(--t);
}
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--orange); color: var(--bg); border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-dk); border-color: var(--orange-dk); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-3); }
.btn-outline:hover { background: rgba(255,255,255,.06); transform: translateY(-2px); }
.btn-outline-orange { background: transparent; color: var(--orange); border-color: var(--orange-bd); }
.btn-outline-orange:hover { background: var(--orange-lt); transform: translateY(-2px); }
.btn-sm { font-size: .72rem; padding: .7rem 1.5rem; }
.btn-lg { font-size: .875rem; padding: 1.125rem 2.5rem; }

/* ── EYEBROW LABELS ── */
.eyebrow {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--f-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ''; display: block;
  width: 32px; height: 1.5px; background: var(--orange);
}

/* ── SECTION TITLES ── */
.sec-title {
  font-family: var(--f-head); font-weight: 900;
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -.035em; line-height: 1.05;
  margin-bottom: 1.25rem;
}
.sec-title em { font-style: italic; color: var(--orange); font-weight: 900; }
.sec-body { font-size: 1.0625rem; color: var(--ink-2); max-width: 54ch; line-height: 1.8; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── STAT ── */
.stat-num {
  font-family: var(--f-head); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: var(--orange);
  letter-spacing: -.04em; line-height: 1; display: block;
}
.stat-label {
  font-family: var(--f-head); font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
  margin-top: .375rem; display: block;
}

/* ── RIDE CARD ── */
.ride-card {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}
.ride-card:hover { border-color: var(--line-2); transform: translateY(-5px); }
.ride-card__img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .55s ease; }
.ride-card:hover .ride-card__img { transform: scale(1.05); }
.ride-card__img-wrap { overflow: hidden; }
.ride-card__body { padding: 1.5rem; }
.ride-card__date {
  font-family: var(--f-head); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
  margin-bottom: .5rem; display: block;
}
.ride-card__title {
  font-family: var(--f-head); font-size: 1.25rem; font-weight: 800;
  letter-spacing: -.02em; margin-bottom: .75rem;
}
.ride-card__meta {
  display: flex; gap: 1.25rem; font-size: .8125rem; color: var(--ink-2); flex-wrap: wrap;
}
.ride-card__meta span { display: flex; align-items: center; gap: .375rem; }

/* ── PILL / BADGE ── */
.pill {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--f-head); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .875rem; border-radius: 99px; border: 1px solid;
}
.pill-orange { color: var(--orange); border-color: var(--orange-bd); background: var(--orange-lt); }
.pill-neutral { color: var(--ink-2); border-color: var(--line-2); background: var(--bg-2); }
.pill-white { color: var(--bg); border-color: transparent; background: var(--ink); }

/* ── COUNTDOWN ── */
.countdown { display: flex; gap: 1rem; flex-wrap: wrap; }
.countdown__unit {
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: var(--r-lg); padding: 1.125rem 1.5rem; text-align: center; min-width: 80px;
}
.countdown__num {
  font-family: var(--f-head); font-size: 2.75rem; font-weight: 900;
  color: var(--orange); line-height: 1; letter-spacing: -.04em; display: block;
}
.countdown__lbl {
  font-family: var(--f-head); font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3);
  margin-top: .375rem; display: block;
}

/* ── FILTER TABS ── */
.filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-tab {
  font-family: var(--f-head); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .5625rem 1.25rem; border-radius: 99px;
  border: 1.5px solid var(--line-2); color: var(--ink-2);
  background: transparent; cursor: pointer; transition: all var(--t);
}
.filter-tab:hover { border-color: var(--line-3); color: var(--ink); }
.filter-tab.active { background: var(--orange); border-color: var(--orange); color: var(--bg); }

/* ── TESTIMONIAL CARD ── */
.tcard {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 2rem;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.tcard__stars { color: var(--orange); font-size: 1rem; letter-spacing: .1em; }
.tcard__body { font-size: .9375rem; color: var(--ink-2); line-height: 1.75; font-style: italic; }
.tcard__author { display: flex; align-items: center; gap: .875rem; }
.tcard__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-lt); border: 2px solid var(--orange-bd);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: .875rem; font-weight: 700; color: var(--orange);
  flex-shrink: 0;
}
.tcard__name { font-family: var(--f-head); font-size: .9375rem; font-weight: 700; letter-spacing: -.01em; }
.tcard__loc { font-size: .8125rem; color: var(--ink-3); }

/* ── TEAM CARD ── */
.team-card {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--r-xl); overflow: hidden;
  transition: border-color var(--t), transform var(--t); text-align: center;
}
.team-card:hover { border-color: var(--orange-bd); transform: translateY(-4px); }
.team-card__img { width: 100%; aspect-ratio: 1/1; object-fit: cover; object-position: top; }
.team-card__img-placeholder {
  width: 100%; aspect-ratio: 1/1; background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 2.5rem; font-weight: 900;
  color: var(--orange); letter-spacing: -.05em;
}
.team-card__body { padding: 1.5rem; }
.team-card__name { font-family: var(--f-head); font-size: 1.125rem; font-weight: 800; letter-spacing: -.015em; margin-bottom: .25rem; }
.team-card__role { font-family: var(--f-head); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); }

/* ── VALUE CARD ── */
.vcard {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 2rem;
  transition: border-color var(--t), background var(--t);
}
.vcard:hover { border-color: var(--orange-bd); background: var(--bg-2); }
.vcard__icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.vcard__title { font-family: var(--f-head); font-size: 1rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .625rem; }
.vcard__text { font-size: .875rem; color: var(--ink-2); line-height: 1.72; }

/* ── FULLBLEED VIDEO SECTION ── */
.vid-section {
  position: relative; overflow: hidden;
  min-height: 60vh; display: flex; align-items: center;
}
.vid-section__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.vid-section__veil {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(0,0,0,.62);
}
.vid-section__content { position: relative; z-index: 2; width: 100%; }

/* ── PHOTO STRIP (scrolling) ── */
.strip { overflow: hidden; width: 100%; }
.strip__track {
  display: flex; gap: .75rem;
  animation: stripScroll 35s linear infinite; will-change: transform;
  width: max-content;
}
.strip:hover .strip__track { animation-play-state: paused; }
.strip__img {
  height: 260px; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--r-lg); flex-shrink: 0; background: var(--bg-2);
}
@keyframes stripScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── RIDE NAME TICKER ── */
.ticker { overflow: hidden; padding: .875rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ticker__track {
  display: flex; align-items: center; gap: 2.5rem;
  animation: tickerScroll 20s linear infinite; width: max-content;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--f-head); font-size: .75rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
  white-space: nowrap;
}
.ticker__sep { color: var(--orange); font-size: 1.25rem; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── RULES BANNER ── */
.rules-banner {
  background: var(--bg-1);
  border-top: 1px solid var(--orange-bd);
  border-bottom: 1px solid var(--orange-bd);
  padding: .875rem var(--pad);
  display: flex; align-items: center; justify-content: center;
  gap: 2rem; flex-wrap: wrap;
}
.rules-banner__item {
  display: flex; align-items: center; gap: .625rem;
  font-family: var(--f-head); font-size: .72rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
}
.rules-banner__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.rules-banner__strong { color: var(--orange); font-weight: 800; }
.rules-banner__sep { width: 1px; height: 18px; background: var(--line-2); }

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.25rem; }
.form-label { font-family: var(--f-head); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.form-input, .form-select, .form-textarea {
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: var(--r); color: var(--ink);
  font-family: var(--f-body); font-size: .9375rem;
  padding: .9375rem 1.125rem; width: 100%; outline: none;
  transition: border-color var(--t), background var(--t); appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--ink-3); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange-bd); background: var(--bg-3); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23525252' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.125rem center; padding-right: 2.75rem; cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.125rem; }
.form-check { display: flex; align-items: flex-start; gap: .75rem; cursor: pointer; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--orange); margin-top: 2px; flex-shrink: 0; cursor: pointer; }
.form-check__label { font-size: .875rem; color: var(--ink-2); line-height: 1.65; }
.form-check__label a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }
.alert { padding: 1rem 1.25rem; border-radius: var(--r); font-size: .875rem; border: 1px solid; margin-bottom: 1.25rem; }
.alert-ok { background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.3); color: #4ade80; }
.alert-err { background: rgba(239,68,68,.1); border-color: rgba(239,68,68,.3); color: #f87171; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 55vh; display: flex; align-items: flex-end;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; background-size: cover;
  background-position: center; z-index: 0;
}
.page-hero__veil { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(0,0,0,.35) 0%, rgba(0,0,0,.88) 100%); }
.page-hero__content { position: relative; z-index: 2; padding-block: 4rem; }
.page-hero__eyebrow { display: block; font-family: var(--f-head); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.page-hero__title { font-family: var(--f-head); font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.0; margin-bottom: .875rem; }
.page-hero__title em { font-style: italic; color: var(--orange); }
.page-hero__sub { font-size: 1.125rem; color: rgba(245,245,245,.7); max-width: 52ch; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--f-head); font-size: 1rem; font-weight: 600; letter-spacing: -.01em; color: var(--ink); transition: color var(--t); }
.faq-q:hover { color: var(--orange); }
.faq-arrow { font-size: .875rem; color: var(--orange); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { display: none; padding-bottom: 1.25rem; font-size: .9375rem; color: var(--ink-2); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── GALLERY GRID ── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.gal-item { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--bg-2); cursor: pointer; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.gal-item:hover img { transform: scale(1.07); }
.gal-over { position: absolute; inset: 0; background: transparent; transition: background var(--t); }
.gal-item:hover .gal-over { background: rgba(0,0,0,.4); }
.gal-item--tall { grid-row: span 2; }
.gal-item--wide { grid-column: span 2; }

/* ── FOOTER ── */
.footer { background: #050505; border-top: 1px solid var(--line); padding-top: 4rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line); margin-bottom: 2rem; }
.footer__brand { font-family: var(--f-head); font-size: .85rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); margin-bottom: 1rem; display: block; }
.footer__desc { font-size: .875rem; color: var(--ink-2); line-height: 1.8; max-width: 28ch; margin-bottom: 1.75rem; }
.footer__socials { display: flex; gap: .625rem; }
.footer__soc {
  width: 36px; height: 36px; border-radius: var(--r); border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center; color: var(--ink-2);
  font-family: var(--f-head); font-size: .7rem; font-weight: 700; letter-spacing: .04em;
  transition: border-color var(--t), color var(--t), background var(--t);
}
.footer__soc:hover { border-color: var(--orange-bd); color: var(--orange); background: var(--orange-lt); }
.footer__col-title { font-family: var(--f-head); font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: .625rem; }
.footer__link { font-size: .875rem; color: var(--ink-2); transition: color var(--t); }
.footer__link:hover { color: var(--ink); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer__copy { font-size: .8125rem; color: var(--ink-3); }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal-link { font-size: .8125rem; color: var(--ink-3); transition: color var(--t); }
.footer__legal-link:hover { color: var(--ink-2); }

/* ── GRIDS ── */
.g2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── UTILS ── */
.tc { text-align: center; }
.muted { color: var(--ink-2); }
.mt1 { margin-top: .75rem; } .mt2 { margin-top: 1.5rem; } .mt3 { margin-top: 3rem; }
.mb1 { margin-bottom: .75rem; } .mb2 { margin-bottom: 1.5rem; } .mb3 { margin-bottom: 3rem; }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-sm { gap: .75rem; } .gap-md { gap: 1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .g4 { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__burger { display: flex; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gal-item--wide { grid-column: span 1; }
  .gal-item--tall { grid-row: span 1; }
  .rules-banner { flex-direction: column; gap: .75rem; }
  .rules-banner__sep { display: none; }
}
@media (max-width: 480px) {
  :root { --pad: 1.25rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer__legal { flex-direction: column; gap: .5rem; }
  .strip__img { height: 190px; }
}


/* ================================================================
   ABOUT PAGE — page-specific styles
   (about.html links global.css + about.css or just global.css)
   ================================================================ */

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, var(--orange-dk), var(--orange));
  width: 0%; transition: width .1s linear;
}

/* ── BG NOISE OVERLAY ── */
.bg-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── MAIN OFFSET ── */
.about-main { position: relative; z-index: 1; padding-top: var(--nav-h); }

/* ── PAGE HERO (about override) ── */
.about-hero__bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1508515053963-70c0e9f1f32e?w=1800&q=80') center/cover no-repeat;
  z-index: 0; animation: aboutHeroZoom 20s ease-in-out infinite alternate;
}
@keyframes aboutHeroZoom { from { transform: scale(1); } to { transform: scale(1.06); } }

/* ── STORY SECTION ── */
.story-section { background: var(--bg-1); }

.story-lead {
  font-family: var(--f-head); font-size: 1.1rem; font-weight: 600;
  color: var(--ink); line-height: 1.75;
  border-left: 3px solid var(--orange);
  padding-left: 1.25rem; margin-bottom: 1.75rem;
  letter-spacing: -.01em;
}
.story-body p { color: var(--ink-2); margin-bottom: 1rem; font-size: .9625rem; line-height: 1.8; }
.story-body p:last-child { margin-bottom: 0; }
.story-body strong { color: var(--orange); font-weight: 600; }

.story-milestones {
  display: flex; flex-wrap: wrap; gap: .625rem;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.story-milestone {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: 99px; padding: .375rem 1rem;
  font-family: var(--f-head); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
  transition: border-color var(--t), color var(--t);
}
.story-milestone:hover { border-color: var(--orange-bd); color: var(--orange); }
.story-milestone i { color: var(--orange); }

/* ── STATS STRIP (about version) ── */
.about-stats { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-stat-block { padding: 2.75rem 2rem; text-align: center; }
.about-stat-block + .about-stat-block { border-left: 1px solid var(--line); }

/* ── VALUES SECTION ── */
.values-section { background: var(--bg); }
.about-vcard {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 2rem; height: 100%;
  transition: border-color var(--t), background var(--t), transform var(--t);
}
.about-vcard:hover { border-color: var(--orange-bd); background: var(--bg-2); transform: translateY(-4px); }
.about-vcard__icon {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  background: var(--orange-lt); border: 1px solid var(--orange-bd);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--orange); margin-bottom: 1.1rem;
  transition: transform var(--t);
}
.about-vcard:hover .about-vcard__icon { transform: scale(1.1) rotate(-5deg); }
.about-vcard__title { font-family: var(--f-head); font-size: 1rem; font-weight: 700; letter-spacing: -.01em; margin-bottom: .6rem; }
.about-vcard__text { font-size: .875rem; color: var(--ink-2); line-height: 1.72; }

/* ── TEAM (about version) ── */
.about-team-section { background: var(--bg-1); }
.about-team-card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 2.5rem 1.75rem;
  text-align: center; height: 100%;
  transition: border-color var(--t), transform var(--t);
  position: relative; overflow: hidden;
}
.about-team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange-dk), var(--orange));
  opacity: 0; transition: opacity var(--t);
}
.about-team-card:hover { border-color: var(--orange-bd); transform: translateY(-5px); }
.about-team-card:hover::before { opacity: 1; }
.about-team-avatar {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 1.25rem;
  background: var(--orange-lt); border: 2px solid var(--orange-bd);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 1.25rem; font-weight: 800; color: var(--orange);
}
.about-team-name { font-family: var(--f-head); font-size: 1.05rem; font-weight: 800; letter-spacing: -.015em; margin-bottom: .25rem; }
.about-team-role { font-family: var(--f-head); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: .9rem; }
.about-team-bio { font-size: .875rem; color: var(--ink-2); line-height: 1.75; }
.about-team-socials { margin-top: 1.25rem; display: flex; justify-content: center; gap: .5rem; }
.about-team-soc {
  width: 34px; height: 34px; border-radius: var(--r);
  border: 1px solid var(--line-2); color: var(--ink-3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .8rem; transition: all var(--t);
}
.about-team-soc:hover { border-color: var(--orange-bd); color: var(--orange); background: var(--orange-lt); }

/* ── MANIFESTO ── */
.manifesto-section { background: var(--bg); position: relative; overflow: hidden; }
.manifesto-section::after {
  content: 'RIDE'; position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  font-family: var(--f-head); font-size: clamp(8rem, 18vw, 15rem);
  font-weight: 900; color: rgba(255,255,255,.022);
  line-height: 1; pointer-events: none; user-select: none;
}
.manifesto-list { list-style: none; padding: 0; }
.manifesto-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.15rem 0; border-bottom: 1px solid var(--line);
  font-size: .925rem; color: var(--ink-2);
  transition: padding var(--t);
}
.manifesto-list li:last-child { border-bottom: none; }
.manifesto-list li:hover { padding-left: .4rem; }
.manifesto-icon {
  min-width: 38px; height: 38px; border-radius: var(--r);
  background: var(--orange-lt); border: 1px solid var(--orange-bd);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: .875rem; flex-shrink: 0;
}
.manifesto-list li strong {
  color: var(--ink); display: block; margin-bottom: .2rem;
  font-family: var(--f-head); font-size: .875rem; font-weight: 700; letter-spacing: -.01em;
}

/* ── NO ONE LEFT BEHIND ── */
.nlb-section { background: var(--bg-1); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.nlb-inner {
  border: 1px solid var(--orange-bd); border-radius: var(--r-xl);
  padding: 4.5rem 3rem; text-align: center;
  background: linear-gradient(135deg, var(--orange-lt) 0%, transparent 60%);
  position: relative; overflow: hidden;
}
.nlb-inner::after {
  content: '#NNLB'; position: absolute; right: -1rem; bottom: -2rem;
  font-family: var(--f-head); font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 900; color: rgba(255,208,0,.05);
  pointer-events: none; user-select: none; line-height: 1;
}
.nlb-convoy { display: flex; align-items: center; justify-content: center; margin-bottom: 2.25rem; }
.nlb-rider {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--bg-2); border: 1.5px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--ink-3);
  margin: 0 -8px; position: relative; z-index: 1;
}
.nlb-rider.highlight {
  width: 66px; height: 66px; font-size: 1.4rem;
  background: var(--orange-lt); border: 2px solid var(--orange);
  color: var(--orange); z-index: 3;
  animation: nlbPulse 2.5s ease-in-out infinite;
}
@keyframes nlbPulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(255,208,0,.15); }
  50%      { box-shadow: 0 0 0 12px rgba(255,208,0,.05); }
}
.nlb-dash {
  flex: 1; max-width: 56px; height: 1.5px;
  background: linear-gradient(90deg, var(--orange-bd), rgba(255,208,0,.1));
  position: relative;
}
.nlb-dash::after {
  content: ''; position: absolute; right: -1px; top: 50%; transform: translateY(-50%);
  border: 4px solid transparent; border-left-color: var(--orange-bd);
}
.nlb-title { font-family: var(--f-head); font-size: clamp(1.6rem, 4vw, 2.75rem); font-weight: 900; letter-spacing: -.03em; line-height: 1.1; margin-bottom: 1rem; }
.nlb-title em { font-style: italic; color: var(--orange); }
.nlb-desc { color: var(--ink-2); max-width: 580px; margin: 0 auto 1.5rem; font-size: .95rem; line-height: 1.8; }
.nlb-divider { width: 48px; height: 2px; background: var(--orange); border-radius: 2px; margin: 0 auto 2rem; opacity: .5; }
.nlb-pills { display: flex; justify-content: center; flex-wrap: wrap; gap: .625rem; }
.nlb-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--bg-2); border: 1px solid var(--line-2);
  border-radius: 99px; padding: .4rem 1rem;
  font-family: var(--f-head); font-size: .68rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2);
  transition: border-color var(--t), color var(--t);
}
.nlb-pill:hover { border-color: var(--orange-bd); color: var(--orange); }
.nlb-pill i { color: var(--orange); }

/* ── CTA SECTION (about) ── */
.about-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-1) 0%, #0f0f00 100%);
  border-top: 1px solid var(--orange-bd);
}

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 768px) {
  .about-stat-block + .about-stat-block { border-left: none; border-top: 1px solid var(--line); }
  .nlb-inner { padding: 3rem 1.5rem; }
  .manifesto-section::after { display: none; }
}

/* ── TEAM CARD MODIFIERS (about page) ── */
.about-team-card--highlight {
  border-color: var(--orange-bd);
  background: linear-gradient(135deg, var(--orange-lt), transparent);
}
.about-team-avatar--orange {
  background: var(--orange);
  color: var(--bg);
  font-size: 1.6rem;
}

/* ── NLB DASH REVERSE ── */
.nlb-dash--reverse {
  background: linear-gradient(90deg, rgba(255,208,0,.15), var(--orange-bd));
}
/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .22s ease, box-shadow .22s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
/* Pulse ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.45);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* ── FOOTER LOGO IMAGE ── */
.footer__brand-logo { height: 28px; width: auto; display: block; margin-bottom: 1rem; }
