:root {
  --ink: #181513;
  --charcoal: #25221f;
  --charcoal-2: #332d29;
  --orange: #f07a2f;
  --orange-dark: #b95520;
  --copper: #9a6945;
  --cream: #f6ead8;
  --sand: #cdb89c;
  --muted: #a99a8c;
  --glass: rgba(255, 239, 215, 0.12);
  --glass-strong: rgba(255, 244, 229, 0.18);
  --border: rgba(255, 236, 214, 0.2);
  --shadow: 0 24px 65px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at top left, rgba(240, 122, 47, 0.2), transparent 34rem),
    radial-gradient(circle at 80% 0%, rgba(205, 184, 156, 0.11), transparent 28rem),
    linear-gradient(135deg, #151210 0%, #2b2622 46%, #171411 100%);
  font-family: Montserrat, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
  z-index: -1;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.glass-panel {
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(255, 245, 232, 0.16), rgba(255, 255, 255, 0.055));
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 24px), var(--max));
  margin: 12px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 240, 220, 0.16);
  border-radius: 999px;
  background: rgba(27, 23, 20, 0.76);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(240, 122, 47, 0.7);
  box-shadow: 0 0 0 5px rgba(240, 122, 47, 0.1);
}
.brand strong {
  display: block;
  font-family: Oswald, Montserrat, sans-serif;
  font-size: 1.25rem;
  letter-spacing: .08em;
  line-height: 1;
}
.brand small {
  display: none;
  color: var(--sand);
  font-size: .72rem;
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-content: center;
  gap: 5px;
  background: rgba(240, 122, 47, 0.18);
  color: var(--cream);
  cursor: pointer;
}
.nav-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: var(--cream);
  transition: .25s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed;
  top: 82px;
  right: 12px;
  left: 12px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(24, 21, 19, .94);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: .25s ease;
}
.main-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.main-nav a {
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--cream);
  font-size: .9rem;
  font-weight: 800;
}
.main-nav a:hover { background: rgba(255,255,255,.08); }
.nav-cta { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }

.hero {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), var(--max));
  margin: 18px auto 0;
  display: grid;
  gap: 16px;
}
.slider {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 232, 205, .18);
  background: linear-gradient(135deg, #2a211d, #171311);
  box-shadow: var(--shadow);
}
.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  min-height: 660px;
  padding: 18px;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity .7s ease, transform 1.1s ease;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(10,8,7,.54) 42%, rgba(10,8,7,.91) 100%),
    var(--bg),
    radial-gradient(circle at center, rgba(240,122,47,.28), transparent 35rem);
  background-position: center;
  background-size: cover;
}
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.03), rgba(255,255,255,.03) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at 16% 20%, rgba(240,122,47,.26), transparent 18rem);
  mix-blend-mode: soft-light;
}
.slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.slide-content {
  position: relative;
  z-index: 2;
  padding: 26px;
  border-radius: 28px;
  max-width: 680px;
}
.slide-content.compact {
  max-width: 540px;
  padding: 24px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: .72rem;
}
h1, h2, h3 { margin: 0; line-height: 1.05; }
h1, h2 {
  font-family: Oswald, Montserrat, sans-serif;
  letter-spacing: .01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.3rem, 11vw, 5.35rem); }
h2 { font-size: clamp(1.9rem, 8vw, 4.1rem); }
h3 {
  font-size: 1.15rem;
  font-family: Oswald, Montserrat, sans-serif;
  text-transform: uppercase;
}
p { color: rgba(246, 234, 216, .82); }
.slide-content p:not(.eyebrow) {
  max-width: 55ch;
  margin: 16px 0 0;
  font-size: 1rem;
}
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  color: #211812;
  background: linear-gradient(135deg, #ff9b4e, var(--orange));
  box-shadow: 0 14px 30px rgba(240,122,47,.28);
}
.btn.ghost {
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}
.btn.ghost.dark { color: var(--cream); }

.event-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  border: 2px dashed rgba(255, 235, 212, .55);
  background: rgba(22, 18, 15, .72);
  box-shadow: inset 0 0 0 6px rgba(240,122,47,.18), 0 15px 35px rgba(0,0,0,.35);
  transform: rotate(7deg);
}
.event-badge span {
  color: var(--sand);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 900;
}
.event-badge strong {
  font-family: Oswald, sans-serif;
  color: var(--orange);
  font-size: 1.3rem;
  line-height: .95;
}
.small-badge {
  width: 96px;
  height: 96px;
}
.small-badge strong { font-size: 1.05rem; }

.slider-controls {
  position: absolute;
  z-index: 4;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  pointer-events: none;
}
.slider-btn,
.dot {
  pointer-events: auto;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(29, 24, 21, .65);
  color: var(--cream);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
}
.dots { display: flex; gap: 8px; }
.dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
}
.dot.is-active { background: var(--orange); transform: scale(1.25); }

.hero-card {
  border-radius: 34px;
  padding: 24px;
  text-align: center;
}
.hero-logo {
  width: 128px;
  height: 128px;
  object-fit: cover;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 4px solid rgba(240,122,47,.72);
  box-shadow: 0 0 0 10px rgba(240,122,47,.12), 0 18px 40px rgba(0,0,0,.32);
}
.tagline {
  margin: 0;
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .15em;
}
.hero-card h1 {
  margin: 6px 0 0;
  font-size: clamp(1.55rem, 4vw, 2rem);
  line-height: 1.08;
}
.quick-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  text-align: left;
}
.quick-list a,
.quick-info {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.08);
}
.quick-list a:hover { background: rgba(240,122,47,.16); }
.quick-info { cursor: default; }
.icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(240,122,47,.2);
  color: #ffae72;
  font-weight: 900;
  font-family: Oswald, sans-serif;
}
.quick-list strong,
.quick-info strong { display: block; font-size: .9rem; }
.quick-list small,
.quick-info small { display: block; color: var(--sand); font-size: .75rem; }

.trust-strip {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), var(--max));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
}
.trust-item strong {
  font-family: Oswald, sans-serif;
  color: var(--orange);
  font-size: 1.75rem;
}
.trust-item span { font-weight: 900; }

.section {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), var(--max));
  margin: 86px auto 0;
}
.section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}
.section-head p:not(.eyebrow) { margin-inline: auto; }
.split {
  display: grid;
  gap: 22px;
  align-items: stretch;
}
.section-copy p { font-size: 1rem; }
.retro-note {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding: 16px;
  border-left: 4px solid var(--orange);
  border-radius: 0 18px 18px 0;
  background: rgba(240,122,47,.11);
}
.retro-note span { color: var(--orange); font-weight: 900; }
.retro-note p { margin: 0; }
.premium-card {
  border-radius: var(--radius-xl);
  padding: 26px;
  overflow: hidden;
  position: relative;
}
.premium-card::after {
  content: "BIKEVIN";
  position: absolute;
  right: -20px;
  bottom: -16px;
  font-family: Oswald, sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,255,255,.04);
}
.gauge {
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 10px solid rgba(240,122,47,.28);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.1), 0 20px 50px rgba(0,0,0,.25);
  text-align: center;
}
.gauge span { color: var(--sand); font-size: .68rem; letter-spacing: .15em; font-weight: 900; }
.gauge strong { color: var(--orange); font-family: Oswald, sans-serif; font-size: 3.4rem; }
.premium-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.premium-card li {
  padding-left: 24px;
  position: relative;
  color: rgba(246,234,216,.86);
}
.premium-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 24px;
  min-height: 230px;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -50% auto auto -30%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(240,122,47,.16);
  filter: blur(4px);
}
.service-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(240,122,47,.32), rgba(255,255,255,.08));
  color: #ffaf75;
  font-size: 1.65rem;
}
.service-card h3 { font-family: Oswald, sans-serif; text-transform: uppercase; letter-spacing: .04em; }
.service-card p { margin-bottom: 0; }

.tools-section {
  display: grid;
  gap: 18px;
}
.tools-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
}
.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.tool-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(240,122,47,.15);
  border: 1px solid rgba(240,122,47,.28);
  font-size: .78rem;
  font-weight: 800;
}
.process-list {
  display: grid;
  gap: 12px;
}
.process-list article {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
}
.process-list strong {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #20140d;
  font-family: Oswald, sans-serif;
  margin-bottom: 12px;
}
.process-list p { margin-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.gallery-item {
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.66)),
    var(--img),
    linear-gradient(135deg, rgba(240,122,47,.3), rgba(0,0,0,.5));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(0,0,0,.25);
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 18%, rgba(240,122,47,.28), transparent 16rem);
  mix-blend-mode: screen;
}
.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(22,18,16,.72);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.location-section {
  display: grid;
  gap: 20px;
  align-items: center;
}
.location-copy p { max-width: 65ch; }
.map-card {
  min-height: 360px;
  padding: 10px;
  border-radius: var(--radius-xl);
}
.map-card iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 22px;
  filter: sepia(.22) saturate(.9) contrast(1.05);
}

.site-footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 24px), var(--max));
  margin: 84px auto 24px;
  padding: 24px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
}
.site-footer div {
  display: flex;
  gap: 14px;
  align-items: center;
}
.site-footer img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
}
.site-footer p { margin: 0; color: rgba(246,234,216,.74); }

.floating-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 35;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #20140d;
  background: linear-gradient(135deg, #ffab65, var(--orange));
  box-shadow: 0 16px 34px rgba(240,122,47,.35);
  font-family: Oswald, sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}


.mobile-contact-bar {
  display: none;
}

.site-footer > div,
.site-footer > p { min-width: 0; }
.site-footer > div { align-items: flex-start; }
.site-footer > div p { overflow-wrap: anywhere; line-height: 1.35; }
.site-footer > p { max-width: 100%; overflow-wrap: anywhere; line-height: 1.55; }

/* Events */
.top-events { margin-top: 28px; }
.events-layout {
  display: grid;
  gap: 18px;
  align-items: stretch;
}
.event-feature,
.events-agenda {
  border-radius: 30px;
  overflow: hidden;
}
.event-feature {
  display: grid;
  padding: 0;
}
.event-feature-media {
  position: relative;
  min-height: 410px;
  overflow: hidden;
  background: #141210;
}
.event-feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(10,8,7,.34));
}
.event-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: contain;
  object-position: center;
  cursor: zoom-in;
}
.event-feature-media > .event-status {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
}
.event-status {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1.2;
  text-transform: uppercase;
}
.event-status.upcoming {
  color: #211812;
  background: linear-gradient(135deg, #ffb075, var(--orange));
  box-shadow: 0 10px 26px rgba(0,0,0,.3);
}
.event-status.completed {
  color: var(--sand);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
}
.event-feature-copy {
  padding: 24px;
}
.event-feature-copy h3 {
  font-size: clamp(1.7rem, 5vw, 2.7rem);
}
.event-feature-copy p:not(.eyebrow) {
  max-width: 58ch;
  margin: 12px 0 20px;
}
.events-agenda { padding: 24px; }
.agenda-head h3 {
  margin-top: 4px;
  font-size: clamp(1.45rem, 5vw, 2.2rem);
}
.agenda-head p:not(.eyebrow) { margin: 12px 0 0; }
.agenda-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.agenda-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.agenda-date {
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 10px 8px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(240,122,47,.22), rgba(255,255,255,.05));
  border: 1px solid rgba(240,122,47,.24);
}
.agenda-date span {
  color: var(--sand);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
}
.agenda-date strong {
  color: var(--orange);
  font-family: Oswald, sans-serif;
  font-size: 2rem;
  line-height: 1;
}
.agenda-copy h4,
.past-event h4 {
  margin: 0 0 6px;
  font-family: Oswald, Montserrat, sans-serif;
  font-size: 1.15rem;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.agenda-copy p,
.past-event p { margin: 0; color: rgba(246,234,216,.88); }
.agenda-copy small {
  display: block;
  margin-top: 7px;
  color: var(--sand);
  font-weight: 700;
  line-height: 1.45;
}
.past-event {
  display: grid;
  grid-template-columns: minmax(0,1fr) 74px;
  gap: 14px;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(255,255,255,.08);
}
.past-event .event-status { margin-bottom: 10px; }
.past-event-thumb {
  width: 74px;
  height: 88px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: #141210;
  cursor: zoom-in;
}
.past-event-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-countdown {
  display: inline-grid;
  gap: 2px;
  margin: 0 12px 18px 0;
  padding: 10px 14px;
  border-radius: 16px;
  vertical-align: middle;
  background: rgba(240,122,47,.1);
  border: 1px solid rgba(240,122,47,.24);
}
.event-countdown span {
  color: var(--sand);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.event-countdown strong {
  color: var(--orange);
  font-family: Oswald, Montserrat, sans-serif;
  font-size: 1.15rem;
  line-height: 1.15;
}
.event-feature.is-completed .event-countdown {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}
.event-feature.is-completed .event-countdown strong { color: var(--sand); }
.agenda-auto-status {
  display: inline-flex;
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #211812;
  background: var(--orange);
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.agenda-auto-status.completed {
  color: var(--sand);
  background: rgba(255,255,255,.08);
}
.agenda-cta { width: 100%; margin-top: 18px; }

/* Race support */
.race-support-section { margin-top: 30px; }
.support-grid {
  display: grid;
  gap: 20px;
  align-items: stretch;
}
.support-copy p:not(.eyebrow) { max-width: 60ch; }
.support-card {
  border-radius: var(--radius-xl);
  padding: 28px;
}
.support-card h3 {
  font-family: Oswald, Montserrat, sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.support-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 12px;
}
.support-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(246,234,216,.86);
}
.support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

/* About */
.about-grid {
  display: grid;
  gap: 14px;
}
.about-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}
.about-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #211812;
  background: var(--orange);
  font-family: Oswald, sans-serif;
  font-weight: 900;
}
.about-card h3 { font-size: 1.25rem; }
.about-card p { margin-bottom: 0; }
.about-card::after {
  content: "BIKEVIN";
  position: absolute;
  right: -8px;
  bottom: -14px;
  font-family: Oswald, sans-serif;
  font-size: 3.3rem;
  font-weight: 900;
  color: rgba(255,255,255,.035);
}

/* FAQ */
.faq-list {
  width: min(100%, 900px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-list details {
  border-radius: 20px;
  padding: 0 20px;
}
.faq-list summary {
  position: relative;
  padding: 18px 42px 18px 0;
  list-style: none;
  cursor: pointer;
  font-family: Oswald, Montserrat, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(240,122,47,.12);
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: 0;
  padding: 0 0 20px;
  max-width: 75ch;
}

/* Event image lightbox */
[data-event-lightbox] { cursor: zoom-in; }
.event-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.event-lightbox.is-open { display: flex; }
.event-lightbox img {
  width: auto;
  max-width: min(96vw, 1200px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,.65);
}
.event-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 10000;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  background: rgba(20,18,16,.88);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

/* Responsive layout */
@media (min-width: 620px) {
  .brand small { display: block; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 2; min-height: 534px; }
  .gallery-item.wide { grid-column: span 2; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer {
    grid-template-columns: minmax(0,.9fr) minmax(0,1.35fr);
    gap: 28px;
  }
  .site-footer > p {
    justify-self: end;
    max-width: 620px;
  }
}

@media (min-width: 960px) {
  .site-header { margin-top: 18px; padding: 10px 14px; }
  .nav-toggle { display: none; }
  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav a { padding: 10px 11px; }
  .events-layout { grid-template-columns: minmax(0,1.18fr) 380px; }
  .event-feature { grid-template-rows: minmax(0,1fr) auto; }
  .event-feature-media { min-height: 510px; }
  .event-feature-media img { min-height: 510px; }
  .support-grid { grid-template-columns: 1.1fr .9fr; }
  .hero { grid-template-columns: minmax(0,1fr) 340px; margin-top: 24px; }
  .slider, .slide { min-height: 715px; }
  .slide { padding: 32px; }
  .slide-content { padding: 34px; }
  .slider-controls { bottom: 32px; right: 32px; left: 32px; }
  .hero-card { align-self: stretch; display: grid; align-content: center; }
  .trust-strip { grid-template-columns: repeat(4,1fr); }
  .split { grid-template-columns: 1.05fr .95fr; }
  .services-grid { grid-template-columns: repeat(4,1fr); }
  .tools-section { grid-template-columns: 1.1fr .9fr; }
  .about-grid { grid-template-columns: repeat(4,1fr); }
  .location-section { grid-template-columns: .9fr 1.1fr; }
}

@media (max-width: 619px) {
  body { padding-bottom: 76px; }
  .site-footer { gap: 14px; margin-bottom: 14px; }
  .floating-whatsapp { display: none; }
  .mobile-contact-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255,240,220,.18);
    border-radius: 20px;
    background: rgba(25,21,18,.94);
    box-shadow: 0 18px 44px rgba(0,0,0,.42);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }
  .mobile-contact-bar a {
    min-width: 0;
    min-height: 58px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 1px;
    padding: 7px 4px;
    border-right: 1px solid rgba(255,255,255,.08);
    font-size: .65rem;
    line-height: 1.1;
    text-align: center;
  }
  .mobile-contact-bar a:last-child { border-right: 0; }
  .mobile-contact-bar a:first-child {
    color: #211812;
    background: linear-gradient(135deg, #ffab65, var(--orange));
  }
  .mobile-contact-bar span { font-size: 1.05rem; }
  .mobile-contact-bar strong {
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .site-footer > div { width: 100%; }
  .event-feature-media { min-height: 0; }
  .event-feature-media img {
    height: auto;
    min-height: 0;
    max-height: 520px;
    object-fit: contain;
    object-position: center top;
  }
  .event-feature-copy { padding: 20px; }
  .event-feature-media > .event-status { left: 12px; top: 12px; }
  .events-agenda,
  .support-card { padding: 20px; }
  .agenda-item { grid-template-columns: 66px 1fr; gap: 12px; }
  .past-event { grid-template-columns: minmax(0,1fr) 64px; }
  .past-event-thumb { width: 64px; height: 78px; }
}

@media (max-width: 420px) {
  .site-header { border-radius: 24px; }
  .event-countdown { display: grid; margin-right: 0; }
  .brand img { width: 46px; height: 46px; }
  .brand strong { font-size: 1.08rem; }
  .slider, .slide { min-height: 690px; }
  .slide-content { padding: 20px; }
  .event-badge { width: 92px; height: 92px; }
  .event-badge strong { font-size: 1.05rem; }
  .btn { width: 100%; }
  .slider-controls { justify-content: center; }
  .past-event { grid-template-columns: 1fr; }
  .past-event-thumb { width: 100%; height: 120px; }
  .past-event-thumb img { object-fit: contain; }
  .event-lightbox { padding: 10px; }
  .event-lightbox img { max-width: 96vw; max-height: 84vh; border-radius: 14px; }
  .event-lightbox-close { top: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto;
    transition-duration: .01ms;
    animation-duration: .01ms;
    animation-iteration-count: 1;
  }
}
