:root {
  /* Electric Velocity theme */
  --bg: #0d0f14;
  --bg-alt: #12151c;
  --surface: #191d27;
  --surface-2: #1f2531;
  --border: #2a303d;
  --volt: #c6ff3a;
  --volt-dim: #9ecb2e;
  --coral: #ff5e3a;
  --text: #eef1f5;
  --muted: #99a1af;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --glow: 0 0 40px rgba(198, 255, 58, 0.25);
  --font-head: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  overflow-x: hidden;
}

/* Subtle volt/coral ambient light carried across every section.
   The hero keeps its own stronger glow (.hero-bg blobs) on top of this. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(46% 42% at 10% 6%, rgba(198, 255, 58, 0.045), transparent 72%),
    radial-gradient(46% 42% at 90% 90%, rgba(255, 94, 58, 0.045), transparent 72%),
    radial-gradient(40% 38% at 52% 50%, rgba(58, 109, 240, 0.022), transparent 75%);
}

.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--volt), var(--coral));
  z-index: 200;
  transition: width 0.1s linear;
}

/* Film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, .logo {
  font-family: var(--font-head);
  letter-spacing: -0.02em;
}

::selection {
  background: var(--volt);
  color: var(--bg);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.35s, backdrop-filter 0.35s, border-color 0.35s, padding 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(13, 15, 20, 0.8);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 0;
}

.logo {
  position: relative;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  padding-right: 10px;
}

.logo span {
  color: var(--volt);
}

.logo-dot {
  position: absolute;
  right: 0;
  top: 4px;
  width: 7px;
  height: 7px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--coral);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--volt);
  color: var(--bg) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600 !important;
}

.nav-cta:hover {
  box-shadow: var(--glow);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}

.blob-1 {
  width: 480px;
  height: 480px;
  background: var(--volt);
  top: -120px;
  left: -80px;
}

.blob-2 {
  width: 420px;
  height: 420px;
  background: var(--coral);
  bottom: -100px;
  right: -60px;
  animation-delay: -4s;
}

.blob-3 {
  width: 360px;
  height: 360px;
  background: #3a6df0;
  top: 40%;
  left: 45%;
  opacity: 0.35;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.08); }
  66% { transform: translate(-30px, 20px) scale(0.95); }
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/svg%3E");
  background-size: 56px 98px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* ── Cinematic layer ─────────────────────────────── */

/* Letterbox bars that open on load */
.cine-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 12vh;
  background: #000;
  z-index: 6;
  pointer-events: none;
}

.cine-bar-top {
  top: 0;
  transform-origin: top;
  animation: bar-open 1.2s var(--ease-out-expo) 0.25s forwards;
}

.cine-bar-bot {
  bottom: 0;
  transform-origin: bottom;
  animation: bar-open 1.2s var(--ease-out-expo) 0.25s forwards;
}

@keyframes bar-open {
  to { transform: scaleY(0); }
}

/* One-shot light sweep across the hero */
.spotlight {
  position: absolute;
  top: -30%;
  left: 0;
  width: 38%;
  height: 160%;
  background: linear-gradient(
    100deg,
    transparent 0%,
    rgba(198, 255, 58, 0.1) 35%,
    rgba(255, 255, 255, 0.07) 55%,
    transparent 100%
  );
  transform: translateX(-160%) skewX(-14deg);
  mix-blend-mode: screen;
  opacity: 0;
  animation: sweep 2s ease-out 1.3s 1 forwards;
  pointer-events: none;
}

@keyframes sweep {
  0% { transform: translateX(-160%) skewX(-14deg); opacity: 0; }
  12% { opacity: 1; }
  100% { transform: translateX(340%) skewX(-14deg); opacity: 0; }
}

/* Cinema vignette */
.vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 75% at 50% 45%, transparent 55%, rgba(13, 15, 20, 0.65) 100%);
  pointer-events: none;
}

/* Load choreography: fade-up with focus pull */
.cine-fade {
  opacity: 0;
  animation: cine-up 1s var(--ease-out-expo) var(--d, 0.4s) both;
}

@keyframes cine-up {
  from {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Film-title line reveal for the headline */
.cine-title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}

.cine-title .line-inner {
  display: block;
  transform: translateY(115%);
  animation: line-reveal 1.1s var(--ease-out-expo) forwards;
}

.cine-title .line:nth-child(1) .line-inner { animation-delay: 0.45s; }
.cine-title .line:nth-child(2) .line-inner { animation-delay: 0.6s; }

@keyframes line-reveal {
  to { transform: translateY(0); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  pointer-events: none;
}

.scroll-cue span {
  font-family: var(--font-head);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--muted);
}

.scroll-cue i {
  width: 1px;
  height: 42px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--volt);
  animation: cue-drop 1.8s var(--ease-out-expo) infinite;
}

@keyframes cue-drop {
  to { top: 110%; }
}

@media (max-height: 640px) {
  .scroll-cue { display: none; }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 3rem;
  width: 100%;
}

.hero-text {
  max-width: 620px;
}

/* Animated bike */
.hero-visual {
  width: 100%;
}

.bike-wrap {
  position: relative;
}

.bike-wrap::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  background: radial-gradient(ellipse at center, rgba(198, 255, 58, 0.16), transparent 68%);
  filter: blur(28px);
  z-index: -1;
  opacity: 0;
  animation: hub-in 1.4s ease-out 1.3s forwards;
}

.bike {
  width: 100%;
  height: auto;
  overflow: visible;
  animation: bike-bob 2.4s ease-in-out 1.7s infinite;
}

@keyframes bike-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* The bike draws itself in like a title sequence */
.bike-body line,
.bike-body circle,
.bike-body path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1.02;
  animation: draw-stroke 0.7s var(--ease-out-expo) 0.55s forwards;
}

@keyframes draw-stroke {
  to { stroke-dashoffset: 0; }
}

.bike-body .frame line { animation-delay: 0.4s; }
.bike-body .wheel > circle { animation-delay: 0.65s; }
.bike-body .wheel line { animation-delay: 0.9s; }
.bike-body .detail { animation-delay: 1.05s; }
.bike-body .crank line { animation-delay: 1.2s; }

.bike-body .hub {
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  animation: hub-in 0.4s ease-out 1s both;
}

@keyframes hub-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wheel {
  transform-box: fill-box;
  transform-origin: center;
  animation: spin 1.4s linear 1.55s infinite;
}

.crank {
  transform-box: fill-box;
  transform-origin: center;
  animation: spin 1.1s linear 1.55s infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.speed-lines {
  opacity: 0;
  animation: hub-in 0.5s ease-out 1.9s forwards;
}

.sl {
  animation: dash 0.7s ease-in-out infinite;
  opacity: 0.8;
}

.sl-2 { animation-delay: 0.15s; }
.sl-3 { animation-delay: 0.3s; }

@keyframes dash {
  0% { transform: translateX(0); opacity: 0.15; }
  50% { opacity: 0.85; }
  100% { transform: translateX(-24px); opacity: 0.15; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--volt);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.02;
  margin-bottom: 1.5rem;
}

.grad-text {
  background: linear-gradient(100deg, var(--volt), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--volt);
  color: var(--bg);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--volt);
  color: var(--volt);
  transform: translateY(-3px);
}

/* Marquee */
.marquee {
  background: var(--volt);
  color: var(--bg);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--bg);
  border-bottom: 1px solid var(--bg);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: scroll-x 22s linear infinite;
}

.marquee-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.marquee-track i {
  font-size: 0.7rem;
  opacity: 0.6;
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

/* Honeycomb texture, reused selectively on a few sections (not everywhere) */
.section-honeycomb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd' d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/svg%3E");
  background-size: 56px 98px;
  mask-image: radial-gradient(ellipse 75% 90% at 50% 50%, black 0%, transparent 85%);
}

.section-honeycomb > .container {
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--volt);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.section-lead {
  max-width: 620px;
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 1.15rem;
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 165px;
  grid-auto-flow: dense;
  gap: 1rem;
  margin-top: 1rem;
}

.bento-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s, border-color 0.3s;
}

.bento-item:hover {
  transform: translateY(-5px);
  border-color: var(--volt-dim);
}

.bento-lead {
  grid-column: span 2;
  grid-row: span 2;
  justify-content: space-between;
}

.bento-lead p {
  font-family: var(--font-head);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.35;
  color: var(--text);
}

.bento-lead-mark {
  font-size: 0.85rem;
  color: var(--volt);
  letter-spacing: 0.03em;
}

.bento-accent {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--volt), var(--volt-dim));
  color: var(--bg);
  border: none;
}

.bento-accent-num {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
}

.bento-accent-label {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.bento-cta {
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.bento-cta h3 {
  font-size: 1.4rem;
}

/* Stats (used inside bento tiles) */
.stat-number {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--volt);
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  position: relative;
  background: var(--surface);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--volt), var(--coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--volt-dim);
}

.card:hover::before {
  transform: scaleX(1);
}

.card-num {
  font-family: var(--font-head);
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  border-radius: 14px;
  background: rgba(198, 255, 58, 0.1);
  border: 1px solid rgba(198, 255, 58, 0.2);
  color: var(--volt);
}

.card-icon svg {
  width: 26px;
  height: 26px;
}

.card:hover .card-icon {
  background: var(--volt);
  color: var(--bg);
  transition: background 0.3s, color 0.3s;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--muted);
}

/* Membership plans */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.plan {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}

.plan:hover {
  transform: translateY(-6px);
  border-color: var(--volt-dim);
}

.plan-featured {
  border: 1px solid var(--volt);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: var(--glow);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--volt);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.plan-features li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.plan-features li::before {
  content: "\2192";
  color: var(--volt);
  font-weight: 700;
  margin-right: 0.6rem;
}

.plan-btn {
  text-align: center;
  width: 100%;
}

/* Rides */
.rides-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ride {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--surface);
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.25s, border-color 0.25s;
}

.ride:hover {
  transform: translateX(8px);
  border-color: var(--volt-dim);
}

.ride-day {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  text-align: center;
  min-width: 74px;
}

.ride-num {
  display: block;
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  color: var(--volt);
}

.ride-month {
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: var(--muted);
}

.ride-info {
  flex-grow: 1;
}

.ride-info h3 {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.ride-info p {
  color: var(--muted);
  font-size: 0.9rem;
}

.ride-tag {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: rgba(198, 255, 58, 0.12);
  color: var(--volt);
  white-space: nowrap;
}

.ride-tag-hard {
  background: rgba(255, 94, 58, 0.14);
  color: var(--coral);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.gallery-ph {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(13, 15, 20, 0.55));
}

.gallery-item:hover .gallery-ph {
  transform: scale(1.1);
}

.ph-1 { background-image: linear-gradient(135deg, #c6ff3a, #6c9a1f); }
.ph-2 { background-image: linear-gradient(135deg, #ff5e3a, #a12e18); }
.ph-3 { background-image: linear-gradient(135deg, #3a6df0, #16234d); }
.ph-4 { background-image: linear-gradient(135deg, #1f2531, #0d0f14); }
.ph-5 { background-image: linear-gradient(135deg, #ff5e3a, #c6ff3a); }
.ph-6 { background-image: linear-gradient(135deg, #99a1af, #191d27); }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.5rem;
  left: 1.2rem;
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--volt);
  opacity: 0.25;
  line-height: 1;
}

.testimonial p {
  margin-bottom: 1rem;
  color: var(--text);
  position: relative;
}

.testimonial cite {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--volt);
  font-style: normal;
}

/* Contact form */
.contact-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-row input {
  flex: 1;
  min-width: 200px;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--volt);
  box-shadow: 0 0 0 3px rgba(198, 255, 58, 0.12);
}

.contact-form .btn {
  align-self: flex-start;
}

.form-status {
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--volt);
  min-height: 1.2rem;
}

/* Footer */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  color: var(--muted);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob, .marquee-track, .bike, .wheel, .crank, .sl,
  .spotlight, .cine-bar, .scroll-cue i::after, .bike-wrap::before,
  .speed-lines { animation: none; }
  .cine-bar { display: none; }
  .cine-fade { opacity: 1; transform: none; filter: none; animation: none; }
  .cine-title .line-inner { transform: none; animation: none; }
  .bike-body line, .bike-body circle, .bike-body path {
    stroke-dasharray: none; stroke-dashoffset: 0; animation: none;
  }
  .speed-lines, .bike-wrap::before { opacity: 1; }
  html { scroll-behavior: auto; }
}

/* Responsive */
@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-visual {
    max-width: 420px;
    order: -1;
  }

  .scroll-cue {
    display: none;
  }

  .cine-bar {
    height: 8vh;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 5%;
    background: var(--surface);
    border: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    width: 220px;
    padding: 1.25rem;
    gap: 1.1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .ride {
    flex-wrap: wrap;
  }

  .ride-tag {
    order: 3;
  }

  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .bento-lead {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 200px;
  }
}

@media (max-width: 480px) {
  .bento {
    grid-template-columns: 1fr;
  }

  .bento-lead,
  .bento-cta {
    grid-column: span 1;
  }
}
