/* ============================================================
   JRCK – Jawa Riders Club Kerala | Main Stylesheet
   Design: Cinematic Dark Brutalism + Premium Moto Culture
   ============================================================ */

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

/* ---- CSS VARIABLES ---- */
:root {
  --orange:        #F67E2A;
  --orange-dark:   #c95e10;
  --orange-light:  #ff9a4d;
  --orange-glow:   rgba(246,126,42,0.3);
  --black:         #000000;
  --dark:          #080808;
  --dark2:         #101010;
  --dark3:         #181818;
  --dark4:         #222222;
  --white:         #ffffff;
  --off-white:     #f0ece4;
  --gray:          #999999;
  --gray-dark:     #444444;
  --font-display:  'Bebas Neue', cursive;
  --font-heading:  'Barlow Condensed', sans-serif;
  --font-body:     'Barlow', sans-serif;
  --transition:    0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.15s ease;
  --shadow-orange: 0 0 30px rgba(246,126,42,0.4);
  --shadow-card:   0 8px 40px rgba(0,0,0,0.6);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  /* Prevent horizontal overflow that causes double scrollbar */
  overflow-x: hidden;
  /* Prevent scroll jumps caused by scrollbar appearing/disappearing */
  scrollbar-gutter: stable;
}
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  /* Ensure body never exceeds viewport width */
  max-width: 100vw;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 2px; }

/* ---- SELECTION ---- */
::selection { background: var(--orange); color: var(--black); }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
#header.scrolled {
  background: rgba(0,0,0,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.8);
  border-bottom: 1px solid rgba(246,126,42,0.15);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  letter-spacing: 3px;
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  color: var(--gray);
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  line-height: 1;
  margin-top: 2px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 16px;
  display: block;
  transition: color var(--transition-fast);
  position: relative;
}
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px; right: 16px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--orange);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(8,8,8,0.98);
  border: 1px solid rgba(246,126,42,0.2);
  border-top: 2px solid var(--orange);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition-fast), background var(--transition-fast), padding-left var(--transition-fast);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.dropdown-menu a:hover {
  color: var(--orange);
  background: rgba(246,126,42,0.06);
  padding-left: 28px;
}
.dropdown-arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 0.7rem;
  transition: transform var(--transition);
}
.dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Nav CTA */
.nav-cta {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black) !important;
  background: var(--orange);
  padding: 10px 24px !important;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--orange-light) !important;
  box-shadow: var(--shadow-orange) !important;
  color: var(--black) !important;
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(5,5,5,0.98);
  border-top: 2px solid var(--orange);
  padding: 20px 0 30px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all var(--transition);
}
.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
}
.nav-mobile a {
  display: block;
  padding: 14px 40px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}
.nav-mobile a:hover { color: var(--orange); padding-left: 56px; }
.nav-mobile a.mobile-sub { color: var(--gray); padding-left: 56px; font-size: 0.9rem; }
.nav-mobile a.mobile-sub:hover { color: var(--orange); padding-left: 72px; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

.label-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.label-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 18px; height: 2px;
  background: var(--orange);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-title span { color: var(--orange); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.8;
  margin-top: 16px;
}

/* Divider */
.divider-orange {
  width: 60px; height: 3px;
  background: var(--orange);
  margin: 20px 0;
}
.divider-orange.center { margin: 20px auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}
.btn-primary {
  background: var(--orange);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  clip-path: none;
  padding: 14px 34px;
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  box-shadow: 0 0 20px rgba(246,126,42,0.2);
  transform: translateY(-2px);
}
.btn-orange-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  clip-path: none;
  padding: 14px 34px;
}
.btn-orange-outline:hover {
  background: var(--orange);
  color: var(--black);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.btn svg { width: 18px; height: 18px; }

/* ---- ORANGE LINE ACCENT ---- */
.orange-line {
  position: relative;
  padding-left: 20px;
}
.orange-line::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
}

/* ---- CARDS ---- */
.card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(246,126,42,0.3);
  box-shadow: var(--shadow-card), 0 0 30px rgba(246,126,42,0.1);
}

/* ---- ANIMATE ON SCROLL ---- */
.anim-fade { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-fade.visible { opacity: 1; transform: translateY(0); }
.anim-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-left.visible { opacity: 1; transform: translateX(0); }
.anim-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim-right.visible { opacity: 1; transform: translateX(0); }
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HERO SECTION
   ============================================================ */
/* ---- HERO: NO background-attachment:fixed (causes scroll repaint jank) ---- */
.hero {
  position: relative;
  width: 100%;
  /* Use 100svh where supported (avoids mobile bar flicker), fallback 100vh */
  height: 100vh;
  height: 100svh;
  /* Hard floor so content never gets crushed */
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  /* Isolate stacking context – prevents bleed into next section */
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  /* Slightly taller/wider so JS parallax translateY has room */
  inset: -80px -40px;
  background-size: cover;
  background-position: center 40%;
  /* NO background-attachment:fixed — it forces full-page repaint every scroll frame */
  background-attachment: scroll;
  /* GPU layer: compositor handles transform without triggering paint */
  will-change: transform;
  transform: translateZ(0) translateY(0);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.7) 40%,
    rgba(0,0,0,0.18) 100%
  );
  z-index: 1;
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-estd {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0;
  animation: heroIn 0.8s ease 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 9rem);
  color: var(--white);
  line-height: 0.88;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: heroIn 0.8s ease 0.5s forwards;
}
.hero-title .line2 { color: var(--orange); display: block; }
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 24px 0 40px;
  opacity: 0;
  animation: heroIn 0.8s ease 0.7s forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroIn 0.8s ease 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: heroIn 0.8s ease 1.2s forwards;
}
.hero-scroll span {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 4px;
  color: var(--gray);
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   ABOUT INTRO (HOME)
   ============================================================ */
.about-intro {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.about-intro::before {
  content: 'JRCK';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 25vw;
  color: rgba(246,126,42,0.03);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-intro-img {
  position: relative;
  /* Make room for the offset border and year-badge overflow */
  padding-bottom: 20px;
  padding-right: 20px;
}

/* ── Main frame wrapper ── */
.aimg-frame {
  position: relative;
  overflow: hidden;
  /* Subtle tilt gives it energy */
  clip-path: polygon(0 0, 100% 0, 100% 94%, 96% 100%, 0 100%);
  cursor: pointer;
}

/* ── Photo ── */
.aimg-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: brightness(0.82) contrast(1.12) saturate(0.9);
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.7s ease;
  will-change: transform;
}
.aimg-frame:hover .aimg-photo {
  transform: scale(1.05);
  filter: brightness(0.72) contrast(1.15) saturate(1.05);
}

/* ── Dark gradient overlay ── */
.aimg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 45%, transparent 70%),
    linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

/* ── Tire-track SVG texture ── */
.aimg-tracks {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='40'%3E%3Crect x='0' y='14' width='8' height='12' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='14' y='14' width='8' height='12' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='28' y='14' width='8' height='12' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='42' y='14' width='8' height='12' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='56' y='14' width='8' height='12' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='70' y='14' width='8' height='12' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='84' y='14' width='8' height='12' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='98' y='14' width='8' height='12' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3Crect x='112' y='14' width='8' height='12' rx='2' fill='%23ffffff' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 120px 40px;
  background-repeat: repeat;
  opacity: 0.35;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* ── Speed / motion accent lines ── */
.aimg-speed-lines {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.aimg-speed-lines span {
  position: absolute;
  display: block;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(246,126,42,0.55), transparent);
  left: -100%;
  width: 60%;
  opacity: 0;
  animation: speedLine 5s ease-in-out infinite;
}
.aimg-speed-lines span:nth-child(1) { top: 22%;  width: 40%; animation-delay: 0s;    animation-duration: 6s; }
.aimg-speed-lines span:nth-child(2) { top: 38%;  width: 65%; animation-delay: 1.2s;  animation-duration: 5s; }
.aimg-speed-lines span:nth-child(3) { top: 52%;  width: 50%; animation-delay: 2.4s;  animation-duration: 7s; }
.aimg-speed-lines span:nth-child(4) { top: 68%;  width: 35%; animation-delay: 0.8s;  animation-duration: 5.5s; }
.aimg-speed-lines span:nth-child(5) { top: 80%;  width: 55%; animation-delay: 3s;    animation-duration: 6.5s; }

@keyframes speedLine {
  0%   { left: -65%; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 0.7; }
  100% { left: 110%; opacity: 0; }
}

/* ── Light sweep ── */
.aimg-sweep {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 38%,
    rgba(246,126,42,0.07) 48%,
    rgba(255,255,255,0.04) 52%,
    transparent 62%,
    transparent 100%
  );
  background-size: 200% 100%;
  background-position: -100% 0;
  animation: lightSweep 7s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
}
@keyframes lightSweep {
  0%   { background-position: -100% 0; opacity: 0; }
  10%  { opacity: 1; }
  60%  { background-position: 200% 0; opacity: 1; }
  70%  { opacity: 0; }
  100% { background-position: 200% 0; opacity: 0; }
}

/* ── Glowing orange border ── */
.aimg-border {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(246,126,42,0.45);
  z-index: 5;
  pointer-events: none;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow:
    inset 0 0 20px rgba(246,126,42,0.06),
    0 0 0 1px rgba(246,126,42,0.1);
}
.aimg-frame:hover .aimg-border {
  border-color: rgba(246,126,42,0.8);
  box-shadow:
    inset 0 0 30px rgba(246,126,42,0.12),
    0 0 24px rgba(246,126,42,0.25),
    0 0 0 1px rgba(246,126,42,0.3);
}

/* ── Logo badge — glassmorphism, top-left ── */
.aimg-logo-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 6;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(10px) saturate(1.2);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  border: 1px solid rgba(246,126,42,0.35);
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 12px rgba(246,126,42,0.15);
  transition: box-shadow 0.4s ease, border-color 0.4s ease;
}
.aimg-frame:hover .aimg-logo-badge {
  box-shadow: 0 6px 28px rgba(0,0,0,0.6), 0 0 20px rgba(246,126,42,0.35);
  border-color: rgba(246,126,42,0.65);
}
.aimg-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(246,126,42,0.5));
}

/* ── Bottom bar ── */
.aimg-bottom-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 20px 20px 18px;
  pointer-events: none;
}
.aimg-ride-tag {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.aimg-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px rgba(246,126,42,0.8);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}
.aimg-km {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-align: right;
}
.aimg-km span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--orange);
  letter-spacing: 1px;
  display: block;
  line-height: 1;
}

/* ── Offset accent border (replaces ::before pseudo) ── */
.aimg-offset-border {
  position: absolute;
  inset: -10px;
  border: 1.5px solid rgba(246,126,42,0.2);
  transform: translate(14px, 14px);
  z-index: -1;
  pointer-events: none;
  transition: border-color 0.4s ease;
}
.about-intro-img:hover .aimg-offset-border {
  border-color: rgba(246,126,42,0.4);
}

/* ── Year badge stays exactly as-is ── */
.about-intro-img .year-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--orange);
  color: var(--black);
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
  z-index: 10;
}
.about-intro-img .year-badge span {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 4px;
  margin-bottom: 4px;
}

/* ── Remove old ::before pseudo on about-intro-img ── */
.about-intro-img::before { display: none; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.stat-box {
  padding: 20px;
  border-left: 3px solid var(--orange);
  background: rgba(246,126,42,0.03);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   HIGHLIGHTS / FEATURES
   ============================================================ */
.highlights {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.highlights::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.highlight-card {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  padding: 48px 32px;
  transition: all var(--transition);
  cursor: default;
}
.highlight-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.highlight-card:hover::before { transform: scaleX(1); }
.highlight-card:hover { background: var(--dark3); }
.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  transition: transform var(--transition);
}
.highlight-card:hover .highlight-icon { transform: scale(1.15); }
.highlight-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(246,126,42,0.08);
  position: absolute;
  top: 20px; right: 24px;
  line-height: 1;
  pointer-events: none;
}
.highlight-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.highlight-card:hover .highlight-title { color: var(--orange); }
.highlight-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   EVENTS PREVIEW
   ============================================================ */
.events-preview {
  background: var(--black);
}
.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  position: relative;
  overflow: hidden;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.event-card:hover {
  border-color: var(--orange);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(246,126,42,0.1);
}
.event-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.event-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  filter: brightness(0.8) contrast(1.1) saturate(0.9);
}
.event-card:hover .event-img img { transform: scale(1.08); }
.event-date-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--orange);
  color: var(--black);
  padding: 8px 14px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.event-category {
  position: absolute;
  top: 16px; right: 0;
  background: rgba(0,0,0,0.8);
  color: var(--gray);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-left: 2px solid var(--orange);
}
.event-body {
  padding: 24px;
}
.event-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
}
.event-card:hover .event-title { color: var(--orange); }
.event-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 14px;
}
.event-meta span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--gray-dark);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.event-meta span::before {
  content: '◆';
  color: var(--orange);
  font-size: 0.5rem;
}
.event-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.event-register {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap var(--transition-fast);
}
.event-card:hover .event-register { gap: 14px; }
.event-register::after { content: '→'; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background: var(--dark);
  overflow: hidden;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 6px;
  margin-top: 50px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.7) saturate(0.8);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.9) saturate(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
}
.gallery-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay::before { opacity: 0.4; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--black);
  overflow: hidden;
}
.testimonials-wrapper {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 0; /* gap handled via JS card width */
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.testimonial-card {
  /* width set dynamically by JS — flex-shrink:0 prevents collapse */
  flex-shrink: 0;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px;
  position: relative;
  box-sizing: border-box;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px; left: 32px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-stars span {
  color: var(--orange);
  font-size: 0.9rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--dark3);
  overflow: hidden;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--orange);
}
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 1px;
}
.testimonial-bike {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 2px;
}
.slider-controls {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  align-items: center;
}
.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray);
  font-size: 1.1rem;
  background: transparent;
}
.slider-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(246,126,42,0.08);
}
.slider-dots {
  display: flex;
  gap: 8px;
  margin-left: 8px;
}
.slider-dot {
  width: 20px; height: 3px;
  background: var(--gray-dark);
  transition: all var(--transition);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--orange);
  width: 36px;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  text-align: center;
  padding: 120px 40px;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  will-change: transform;
  transform: translateZ(0);
  opacity: 0.15;
  filter: saturate(0);
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.9), rgba(246,126,42,0.1), rgba(0,0,0,0.9));
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta-tagline {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-title span { color: var(--orange); }
.cta-text {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.8;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-top {
  padding: 80px 0 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}
.footer-brand .nav-logo {
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--gray);
  font-size: 0.95rem;
  text-decoration: none;
}
.social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(246,126,42,0.08);
}
.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(246,126,42,0.3);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}
.footer-links a:hover { color: var(--orange); padding-left: 8px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact-item .icon {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-item span {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-dark);
  letter-spacing: 1px;
}
.footer-copy span { color: var(--orange); }
.footer-tagline {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray-dark);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  overflow: hidden;
}
.grid-style-remove {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
 .page-hero-contact {
    position: relative;
    height: 50vh;
    min-height: 740px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  will-change: transform;
  transform: translateZ(0);
  filter: brightness(0.4) saturate(0.7);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-breadcrumb {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
}
.page-breadcrumb a { color: var(--orange); }
.page-breadcrumb span { margin: 0 8px; color: var(--gray-dark); }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  color: var(--white);
  line-height: 0.9;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.page-title span { color: var(--orange); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.mv-block {
  background: var(--dark2);
  padding: 50px 48px;
  position: relative;
  overflow: hidden;
}
.mv-block::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.mv-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(246,126,42,0.06);
  position: absolute;
  top: 20px; right: 30px;
  line-height: 1;
}
.mv-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.mv-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.9;
}
.history-section {
  background: var(--dark);
}
.history-timeline {
  position: relative;
  margin-top: 50px;
  padding-left: 40px;
}
.history-timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), transparent);
}
.timeline-item {
  position: relative;
  margin-bottom: 48px;
  padding-left: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px; top: 8px;
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(246,126,42,0.6);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.timeline-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}
.brotherhood-section {
  background: var(--black);
  text-align: center;
}
.brotherhood-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
  text-align: left;
}
.brotherhood-card {
  background: var(--dark2);
  padding: 36px;
  border-top: 3px solid var(--orange);
  transition: all var(--transition);
}
.brotherhood-card:hover {
  transform: translateY(-4px);
  background: var(--dark3);
}
.brotherhood-icon { font-size: 2rem; margin-bottom: 16px; }
.brotherhood-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.brotherhood-text {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.event-categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cat-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: transparent;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all var(--transition);
}
.cat-btn:hover,
.cat-btn.active {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}
.events-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ride-category-section {
  background: var(--dark);
}
.ride-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 50px;
}
.ride-cat-item {
  position: relative;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
}
.ride-cat-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.5) saturate(0.7);
}
.ride-cat-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7) saturate(1);
}
.ride-cat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.ride-cat-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 2px;
  transition: color var(--transition-fast);
}
.ride-cat-item:hover .ride-cat-name { color: var(--orange); }
.ride-cat-count {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.team-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
}
.team-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(246,126,42,0.1);
}
.team-img {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: var(--dark3);
}
.team-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.85) grayscale(0.2);
  transition: all var(--transition);
}
.team-card:hover .team-img img {
  filter: brightness(1) grayscale(0);
  transform: scale(1.04);
}
.team-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark3), var(--dark4));
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.4;
}
.team-role-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 20px 20px 10px;
}
.team-role {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
}
.team-info {
  padding: 20px 24px 24px;
}
.team-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}
.team-card:hover .team-name { color: var(--orange); }
.team-bio {
  font-size: 0.825rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.team-bike {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray-dark);
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.team-bike span { color: var(--orange); }
.team-leader-section {
  margin-bottom: 60px;
}
.team-leader-card {
  display: grid;
  grid-template-columns: 400px 1fr;
  background: var(--dark2);
  border: 1px solid rgba(246,126,42,0.2);
  overflow: hidden;
  gap: 0;
}
.team-leader-img {
  height: 400px;
  overflow: hidden;
  position: relative;
}
.team-leader-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  filter: brightness(0.85);
}
.team-leader-body {
  padding: 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.team-leader-body::before {
  content: '';
  position: absolute;
  left: 0; top: 40px; bottom: 40px;
  width: 3px;
  background: var(--orange);
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section {
  background: var(--black);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-categories li {
  margin-bottom: 6px;
}
.faq-cat-btn {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 12px 20px;
  display: block;
  cursor: pointer;
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
  background: transparent;
  border-top: none; border-right: none; border-bottom: none;
  text-align: left;
  width: 100%;
}
.faq-cat-btn:hover,
.faq-cat-btn.active {
  color: var(--orange);
  border-left-color: var(--orange);
  background: rgba(246,126,42,0.04);
  padding-left: 28px;
}
.faq-items .accordion {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  user-select: none;
  transition: color var(--transition-fast);
}
.accordion-header:hover { color: var(--orange); }
.accordion-question {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex: 1;
  padding-right: 20px;
}
.accordion-icon {
  width: 30px; height: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all var(--transition);
  color: var(--gray);
}
.accordion.open .accordion-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--black);
  transform: rotate(45deg);
}
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.accordion.open .accordion-body {
  max-height: 400px;
}
.accordion-answer {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  padding-bottom: 22px;
  padding-right: 50px;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-featured {
  background: var(--black);
}
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.featured-img {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.featured-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.8) saturate(0.9);
}
.featured-post:hover .featured-img img { transform: scale(1.04); }
.featured-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--orange);
  color: var(--black);
  padding: 6px 16px;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.featured-body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-category {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.post-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  transition: color var(--transition-fast);
}
.featured-post:hover .post-title { color: var(--orange); }
.post-excerpt {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 24px;
}
.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  align-items: center;
}
.post-meta span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-meta .sep {
  width: 1px; height: 14px;
  background: var(--gray-dark);
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  transition: gap var(--transition-fast);
}
.read-more:hover { gap: 14px; }
.read-more::after { content: '→'; }
.blog-grid-section {
  background: var(--dark);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: rgba(246,126,42,0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.blog-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.75) saturate(0.8);
}
.blog-card:hover .blog-img img {
  transform: scale(1.07);
  filter: brightness(0.9) saturate(1);
}
.blog-body {
  padding: 24px;
}
.blog-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  transition: color var(--transition-fast);
  line-height: 1.3;
}
.blog-card:hover .blog-title { color: var(--orange); }
.blog-excerpt {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.blog-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 50px;
  justify-content: center;
}
.page-num {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all var(--transition);
  color: var(--gray);
}
.page-num:hover,
.page-num.active {
  background: var(--orange);
  color: var(--black);
  border-color: var(--orange);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--black);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--dark2);
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}
.form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 30px;
}
.form-group {
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246,126,42,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark3); }
.contact-info {
  position: sticky;
  top: 100px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  align-items: flex-start;
}
.contact-icon {
  width: 46px; height: 46px;
  background: rgba(246,126,42,0.1);
  border: 1px solid rgba(246,126,42,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.6;
}
.contact-social {
  margin-top: 30px;
}
.contact-social-title {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.contact-social-links {
  display: flex;
  gap: 10px;
}
.social-link-big {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}
.social-link-big:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(246,126,42,0.06);
}
.map-section {
  background: var(--dark);
}
.map-wrapper {
  border: 2px solid rgba(246,126,42,0.2);
  overflow: hidden;
  margin-top: 50px;
}
.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.8) saturate(0.7);
  display: block;
}
.membership-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.membership-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(246,126,42,0.06) 0%, transparent 70%);
}
.membership-form {
  max-width: 800px;
  margin: 0 auto;
  background: var(--dark2);
  padding: 60px;
  border: 1px solid rgba(246,126,42,0.15);
  position: relative;
}
.membership-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

/* ============================================================
   PAGE LOGO SVG
   ============================================================ */
.logo-svg {
  width: 48px;
  height: 48px;
}
.watermark-logo {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
  /* Desaturate slightly so it reads as a ghost mark, not a coloured logo */
  filter: grayscale(20%) brightness(1.4);
  /* Prevent dragging */
  -webkit-user-drag: none;
  /* Smooth fade-in with page load */
  animation: watermarkFadeIn 1.2s ease 0.5s both;
}
@keyframes watermarkFadeIn {
  from { opacity: 0; transform: translateY(-50%) scale(0.94); }
  to   { opacity: 0.07; transform: translateY(-50%) scale(1); }
}

/* Tablet: shrink */
@media (max-width: 1100px) {
  .watermark-logo {
    width: 220px;
    right: 40px;
    opacity: 0.06;
  }
}

/* Mobile landscape / small tablet */
@media (max-width: 768px) {
  .watermark-logo {
    width: 160px;
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    opacity: 0.05;
    top: 50%;
  }
}

/* Small mobile — hide entirely to avoid cluttering small screens */
@media (max-width: 480px) {
  .watermark-logo {
    display: none;
  }
  .grid-style-remove {
    display: unset;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
}

/* ============================================================
   PARALLAX BANNER
   ============================================================ */
.parallax-banner {
  position: relative;
  height: 400px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-banner-bg {
  position: absolute;
  inset: -50px;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  will-change: transform;
  transform: translateZ(0);
  filter: brightness(0.3) saturate(0.5);
}
.parallax-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}
.parallax-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.parallax-quote {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 0.9;
}
.parallax-quote span { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-intro-img { max-width: 600px; }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
  .events-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ride-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .team-leader-card { grid-template-columns: 1fr; }
  .team-leader-img { height: 350px; }
  .contact-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-categories { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
  .faq-cat-btn { border-left: none; border-bottom: 2px solid transparent; }
  .faq-cat-btn:hover, .faq-cat-btn.active { border-left: none; border-bottom-color: var(--orange); background: transparent; padding-left: 12px; }
}

@media (max-width: 768px) {
  #header { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: block; }
  .container { padding: 0 20px; }
  .section-pad { padding: 60px 0; }
  .hero-content { padding: 0 20px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .highlights-grid { grid-template-columns: 1fr; gap: 2px; }
  .events-grid { grid-template-columns: 1fr; }
  .events-full-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  /* testimonial cards sized by JS */
  .team-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-img { min-height: 260px; }
  .mission-vision { grid-template-columns: 1fr; }
  .brotherhood-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
  .contact-form { padding: 30px 24px; }
  .membership-form { padding: 30px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .ride-cat-grid { grid-template-columns: 1fr 1fr; }
  .events-header { flex-direction: column; gap: 16px; align-items: flex-start; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: fit-content; }
}

@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .ride-cat-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .contact-social-links { flex-direction: column; }
}

/* ============================================================
   REAL LOGO ADJUSTMENTS
   ============================================================ */
.logo-svg {
  width: 52px !important;
  height: 52px !important;
  object-fit: contain !important;
  /* slight glow on dark bg */
  filter: drop-shadow(0 0 6px rgba(246,126,42,0.15));
  transition: filter 0.3s ease;
}
.nav-logo:hover .logo-svg {
  filter: drop-shadow(0 0 12px rgba(246,126,42,0.4));
}
.footer-brand .logo-svg {
  width: 46px !important;
  height: 46px !important;
}

/* ============================================================
   HERO PREMIUM CURSOR — scoped to hero section only
   ============================================================ */

/* Hide system cursor only inside hero on desktop */
@media (hover: hover) and (pointer: fine) {
  .hero { cursor: none; }
  .hero a, .hero button { cursor: none; }
}

/* Main cursor dot */
.hero-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, width 0.15s ease, height 0.15s ease;
  will-change: transform;
  box-shadow: 0 0 8px rgba(246,126,42,0.8), 0 0 20px rgba(246,126,42,0.3);
  opacity: 0; /* hidden until mouse enters hero */
}

/* Outer ring */
.hero-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(246,126,42,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, width 0.25s cubic-bezier(.25,.46,.45,.94),
              height 0.25s cubic-bezier(.25,.46,.45,.94),
              border-color 0.2s ease;
  will-change: transform;
  opacity: 0;
  box-shadow: 0 0 14px rgba(246,126,42,0.15);
}

/* Expanded states on hover */
.hero-cursor.hero-cursor--hover {
  width: 16px; height: 16px;
  box-shadow: 0 0 16px rgba(246,126,42,1), 0 0 40px rgba(246,126,42,0.4);
}
.hero-cursor-ring.hero-cursor-ring--hover {
  width: 56px; height: 56px;
  border-color: rgba(246,126,42,0.9);
  box-shadow: 0 0 20px rgba(246,126,42,0.25);
}

/* Light trail canvas — sits inside hero only */
#hero-trail-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1; /* above bg, below overlay */
  opacity: 0.55;
}

/* Cursor visible state */
.hero-cursor.visible,
.hero-cursor-ring.visible {
  opacity: 1;
}

/* ============================================================
   HERO SCROLL & PERFORMANCE HARDENING
   ============================================================ */

/* Isolate hero paint - browser won't repaint rest of page */
.hero {
  contain: layout style;
}

/* Mobile: avoid iOS Safari 100vh bug (address bar included) */
@supports (height: 100dvh) {
  .hero {
    height: 100dvh;
    min-height: 560px;
  }
}

/* Ensure section after hero has no top gap/overlap from sticky header */
.hero + section,
.hero + .about-intro {
  position: relative;
  z-index: 1;
}

/* Smooth cross-browser scroll */
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim-fade, .anim-left, .anim-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-cursor, .hero-cursor-ring, #hero-trail-canvas {
    display: none !important;
  }
}

/* Chrome/Edge: font-smooth */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Hero bg – ensure it doesn't create a new BFC that causes overflow */
.hero-bg {
  /* Prevent sub-pixel rendering gaps at edges */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Mobile optimisations: disable expensive effects */
@media (max-width: 768px) {
  .hero-cursor,
  .hero-cursor-ring,
  #hero-trail-canvas {
    display: none !important;
  }

  /* Disable parallax shift on mobile – use static bg instead */
  .hero-bg,
  .parallax-banner-bg,
  .cta-banner-bg,
  .page-hero-bg {
    will-change: auto;
    transform: none !important;
  }

  /* Simpler hero on mobile for performance */
  .hero {
    height: 100svh;
    min-height: 560px;
  }
}

/* ============================================================
   TEAM PAGE — CLASS-BASED RESPONSIVE SYSTEM
   Replaces inline styles on VP/Secretary/President cards.
   Clean single-source breakpoints, no !important chains.
   ============================================================ */

/* ---- VP + Secretary 2-column wrapper ---- */
.leaders-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

/* ---- Each mini leader card (image left, text right) ---- */
.leader-card-side {
  display: grid;
  grid-template-columns: 220px 1fr;
}
.leader-card-side .team-leader-img {
  height: 280px;
}
.leader-card-side .team-leader-body {
  padding: 30px;
}

/* ---- President name: use fluid clamp so it never overflows ---- */
.leader-name-president {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 6vw, 3rem);
  color: var(--white);
  letter-spacing: 2px;
  margin: 8px 0;
  line-height: 1;
  word-break: break-word;
}

/* ---- VP/Secretary names ---- */
.leader-name-secondary {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 4.5vw, 2rem);
  color: var(--white);
  letter-spacing: 2px;
  margin: 4px 0;
  line-height: 1;
  word-break: break-word;
}

/* ---- Stats row ---- */
.leader-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}
.leader-stat {
  border-left: 2px solid var(--orange);
  padding-left: 14px;
  flex: 0 0 auto;
}
.leader-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--orange);
  line-height: 1;
}
.leader-stat-label {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gray);
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================================
   BREAKPOINTS
   ============================================================ */

/* Tablet: stack the 2-col row */
@media (max-width: 768px) {
  .leaders-2col {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }
  .leader-card-side {
    grid-template-columns: 180px 1fr;
  }
  .leader-card-side .team-leader-img {
    height: 220px;
  }
  .leader-card-side .team-leader-body {
    padding: 24px 20px;
  }
}

/* Mobile: full-stack all cards */
@media (max-width: 540px) {
  .leader-card-side {
    grid-template-columns: 1fr;
  }
  .leader-card-side .team-leader-img {
    height: 180px;
    width: 100%;
  }
  .leader-card-side .team-leader-body {
    padding: 20px 16px;
  }

  /* President card body */
  .team-leader-body {
    padding: 20px 16px;
  }
  .team-leader-img {
    height: 200px;
  }
  /* Accent line: top instead of left on stacked layout */
  .team-leader-body::before {
    left: 0; right: 0; top: 0; bottom: auto;
    width: auto; height: 3px;
  }

  .leader-stats {
    gap: 12px;
  }
  .leader-stat-num {
    font-size: 1.5rem;
  }

  /* Section padding tighter */
  .team-leader-section {
    margin-bottom: 30px;
  }
}

/* Small mobile: 375–540px */
@media (max-width: 400px) {
  .container {
    padding: 0 14px;
  }
  .section-pad {
    padding: 44px 0;
  }
  .team-leader-body {
    padding: 18px 14px;
  }
  .team-leader-img {
    height: 170px;
  }
  .leader-card-side .team-leader-img {
    height: 150px;
  }
  .leader-card-side .team-leader-body {
    padding: 16px 14px;
  }
  .leader-stats {
    gap: 10px;
  }
  /* 2 stats per row */
  .leader-stat {
    flex: 1 1 calc(50% - 10px);
    min-width: 70px;
  }
  .leader-stat-num {
    font-size: 1.3rem;
  }
  .leader-stat-label {
    font-size: 0.58rem;
    letter-spacing: 2px;
  }
  .label-tag {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }
  /* Team grid single column */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .leaders-2col {
    gap: 12px;
  }
  .divider-orange {
    width: 36px;
  }
}

/* Ultra-narrow: 325px */
@media (max-width: 340px) {
  .container {
    padding: 0 10px;
  }
  .team-leader-body {
    padding: 14px 10px;
  }
  .team-leader-img {
    height: 150px;
  }
  .leader-card-side .team-leader-img {
    height: 130px;
  }
  .leader-card-side .team-leader-body {
    padding: 14px 10px;
  }
  /* Stats: each full width */
  .leader-stat {
    flex: 1 1 100%;
  }
  .leader-stat-num {
    font-size: 1.2rem;
  }
  .leaders-2col {
    gap: 10px;
  }
  .section-pad {
    padding: 36px 0;
  }
}

/* ============================================================
   ABOUT IMAGE FRAME — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .aimg-photo { height: 440px; }
}
@media (max-width: 768px) {
  .about-intro-img {
    max-width: 100%;
    padding-bottom: 24px;
    padding-right: 16px;
  }
  .aimg-photo { height: 360px; }
  .aimg-logo  { width: 44px; height: 44px; }
  .aimg-logo-badge { top: 12px; left: 12px; padding: 6px; }
  .aimg-km span { font-size: 1.1rem; }
  .aimg-ride-tag { font-size: 0.58rem; letter-spacing: 3px; }
  .aimg-speed-lines { display: none; } /* too fast on small screens */
}
@media (max-width: 480px) {
  .aimg-photo { height: 280px; object-position: center 25%; }
  .aimg-logo  { width: 38px; height: 38px; }
  .aimg-logo-badge { top: 10px; left: 10px; padding: 5px; }
  .aimg-bottom-bar { padding: 16px 14px 14px; }
  .aimg-km span { font-size: 1rem; }
  .aimg-offset-border { display: none; }
}
@media (max-width: 340px) {
  .aimg-photo { height: 220px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aimg-sweep { animation: none; }
  .aimg-speed-lines span { animation: none; }
  .aimg-dot { animation: none; }
  .aimg-frame:hover .aimg-photo { transform: none; }
}

/* ============================================================
   ABOUT — OUR STORY SECTION: REAL LOGO WATERMARK
   ============================================================ */
.story-logo-watermark {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  /* Keep it on a composited layer so it doesn't block text paint */
  will-change: transform;
  /* Prevent it from affecting layout */
  z-index: 0;
  /* Subtle desaturate so it reads as a tonal mark, not a colour element */
  filter: grayscale(30%) drop-shadow(0 0 40px rgba(246,126,42,0.15));
}

/* Ensure section text content sits above the watermark */
.about-story-section .container {
  position: relative;
  z-index: 1;
}

/* ---- Tablet (768–1100px): smaller logo ---- */
@media (max-width: 1100px) {
  .story-logo-watermark {
    width: 220px;
    right: 30px;
    opacity: 0.05;
  }
}

/* ---- Mobile (≤768px): hide to avoid covering text ---- */
@media (max-width: 768px) {
  .story-logo-watermark {
    display: none;
  }
}

/* ============================================================
   HISTORY TIMELINE — ALTERNATING FULL-BLEED DESIGN
   Premium image-paired timeline with blended overlays
   ============================================================ */

.ht-section {
  background: var(--black);
  position: relative;
}
.ht-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(246,126,42,0.4), transparent);
}

/* ── Section header ── */
.ht-header {
  padding: 80px 0 60px;
  background: var(--dark);
}
.ht-intro {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-top: 14px;
  max-width: 580px;
}

/* ================================================================
   ENTRIES CONTAINER
================================================================ */
.ht-entries {
  display: flex;
  flex-direction: column;
}

/* ================================================================
   SINGLE ENTRY
   Layout: [img-panel] [spine] [text-panel] or reversed
================================================================ */
.ht-entry {
  display: grid;
  /* Default: img LEFT → 45% | spine 10% | text 45% */
  grid-template-columns: 45% 80px 1fr;
  grid-template-rows: auto;
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

/* Reversed: text LEFT → spine → img RIGHT */
.ht-entry--img-right {
  grid-template-columns: 1fr 80px 45%;
}

/* ── Assign grid positions ── */
.ht-entry--img-left  .ht-img-panel   { grid-column: 1; grid-row: 1; }
.ht-entry--img-left  .ht-spine       { grid-column: 2; grid-row: 1; }
.ht-entry--img-left  .ht-text-panel  { grid-column: 3; grid-row: 1; }

.ht-entry--img-right .ht-text-panel  { grid-column: 1; grid-row: 1; }
.ht-entry--img-right .ht-spine       { grid-column: 2; grid-row: 1; }
.ht-entry--img-right .ht-img-panel   { grid-column: 3; grid-row: 1; }

/* ================================================================
   IMAGE PANEL
================================================================ */
.ht-img-panel {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.ht-img-panel img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: brightness(0.75) contrast(1.1) saturate(0.85);
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(0.25,0.46,0.45,0.94),
              filter 0.8s ease;
  will-change: transform;
}
.ht-entry:hover .ht-img-panel img {
  transform: scale(1);
  filter: brightness(0.65) contrast(1.15) saturate(0.95);
}

/* Dark-to-transparent overlay: fades toward the spine so text bleeds in */
.ht-img-overlay {
  position: absolute;
  inset: 0;
  /* Left-panel: dark on left, transparent on right (toward spine) */
  background:
    linear-gradient(to right, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,0.9) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 40%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
/* Right-panel version: dark on right side */
.ht-img-overlay--right {
  background:
    linear-gradient(to left, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,0.9) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, transparent 40%, rgba(0,0,0,0.7) 100%);
}

/* Orange-tinted blend at the spine edge for seamless blending */
.ht-img-blend {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(246,126,42,0.04) 80%, rgba(246,126,42,0.08) 100%);
  z-index: 2;
  pointer-events: none;
}
.ht-img-blend--right {
  background: linear-gradient(to left, transparent 50%, rgba(246,126,42,0.04) 80%, rgba(246,126,42,0.08) 100%);
}

/* Year stamp — large ghost number on the image */
.ht-year-stamp {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: rgba(255,255,255,0.08);
  letter-spacing: 4px;
  z-index: 3;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: color 0.4s ease;
}
.ht-entry--img-right .ht-year-stamp {
  left: auto; right: 24px;
}
.ht-entry:hover .ht-year-stamp {
  color: rgba(246,126,42,0.18);
}
.ht-year-stamp--gold {
  color: rgba(255,165,0,0.12) !important;
}
.ht-entry:hover .ht-year-stamp--gold {
  color: rgba(255,165,0,0.25) !important;
}

/* Chapter badge — top corner */
.ht-img-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(246,126,42,0.3);
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  z-index: 4;
}
.ht-entry--img-right .ht-img-badge {
  left: auto; right: 20px;
}
.ht-img-badge--gold {
  border-color: rgba(255,200,50,0.5) !important;
  color: #ffd700 !important;
}

/* ================================================================
   SPINE (central connecting column)
================================================================ */
.ht-spine {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
  background: var(--dark);
}
.ht-spine-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, rgba(246,126,42,0.25), rgba(246,126,42,0.5));
}
.ht-spine-line--top {
  background: linear-gradient(to bottom, transparent, rgba(246,126,42,0.5));
}
.ht-spine-line--bottom {
  background: linear-gradient(to bottom, rgba(246,126,42,0.5), transparent);
}
.ht-spine-line--fade {
  background: linear-gradient(to bottom, rgba(246,126,42,0.3), transparent) !important;
}

.ht-spine-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(246,126,42,0.15), 0 0 16px rgba(246,126,42,0.5);
  flex-shrink: 0;
  z-index: 1;
  transition: box-shadow 0.4s ease;
}
.ht-entry:hover .ht-spine-dot {
  box-shadow: 0 0 0 6px rgba(246,126,42,0.2), 0 0 24px rgba(246,126,42,0.8);
}
.ht-spine-dot--gold {
  background: linear-gradient(135deg, #ffd700, #F67E2A) !important;
  box-shadow: 0 0 0 5px rgba(255,200,50,0.2), 0 0 20px rgba(255,180,0,0.6) !important;
}

/* ================================================================
   TEXT PANEL
================================================================ */
.ht-text-panel {
  display: flex;
  align-items: center;
  background: var(--dark);
  position: relative;
}
.ht-text-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(246,126,42,0.025) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.ht-entry:hover .ht-text-panel::after {
  opacity: 1;
}

.ht-text-inner {
  padding: 52px 52px;
  max-width: 520px;
}
/* For right-side text panel: align to right edge of panel */
.ht-entry--img-right .ht-text-panel .ht-text-inner {
  margin-left: auto;
}

.ht-year-tag {
  font-family: var(--font-heading);
  font-size: 0.62rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 10px;
}
.ht-year-tag--gold {
  color: #ffd700 !important;
}

.ht-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.05;
  margin: 0 0 16px;
}
.ht-title span {
  color: var(--orange);
}
.ht-entry--latest .ht-title span {
  color: #ffd700;
}

.ht-divider {
  width: 36px; height: 2px;
  background: var(--orange);
  margin-bottom: 20px;
  transition: width 0.4s ease;
}
.ht-entry:hover .ht-divider {
  width: 60px;
}

.ht-text {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.85;
  margin: 0 0 24px;
}

.ht-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ht-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(246,126,42,0.08);
  border: 1px solid rgba(246,126,42,0.2);
  font-family: var(--font-heading);
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  transition: background 0.3s ease, color 0.3s ease;
}
.ht-entry:hover .ht-tag {
  background: rgba(246,126,42,0.14);
  color: var(--white);
}
.ht-tag--gold {
  background: rgba(255,200,50,0.08) !important;
  border-color: rgba(255,200,50,0.3) !important;
  color: #ffd700 !important;
}

/* Latest entry special bg */
.ht-entry--latest .ht-text-panel {
  background: linear-gradient(135deg, var(--dark) 0%, rgba(20,12,0,1) 100%);
}
.ht-entry--latest .ht-spine {
  background: linear-gradient(to bottom, var(--dark), rgba(20,12,0,1));
}

/* ================================================================
   RESPONSIVE
================================================================ */

/* Tablet: reduce spine, tighten padding */
@media (max-width: 1100px) {
  .ht-entry,
  .ht-entry--img-right {
    grid-template-columns: 42% 60px 1fr;
    min-height: 360px;
  }
  .ht-entry--img-right {
    grid-template-columns: 1fr 60px 42%;
  }
  .ht-text-inner { padding: 36px 32px; }
  .ht-img-panel  { min-height: 360px; }
}

/* Mobile: full-stack — image top, spine hidden, text below */
@media (max-width: 768px) {
  .ht-entry,
  .ht-entry--img-right {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: unset;
  }

  /* Always: image top, dot middle, text bottom — regardless of left/right */
  .ht-entry--img-left  .ht-img-panel  { grid-column: 1; grid-row: 1; }
  .ht-entry--img-left  .ht-spine      { grid-column: 1; grid-row: 2; }
  .ht-entry--img-left  .ht-text-panel { grid-column: 1; grid-row: 3; }

  .ht-entry--img-right .ht-img-panel  { grid-column: 1; grid-row: 1; }
  .ht-entry--img-right .ht-spine      { grid-column: 1; grid-row: 2; }
  .ht-entry--img-right .ht-text-panel { grid-column: 1; grid-row: 3; }

  .ht-img-panel  { min-height: 260px; }

  /* Horizontal spine on mobile */
  .ht-spine {
    flex-direction: row;
    height: 48px;
    padding: 0 24px;
  }
  .ht-spine-line { flex: 1; width: auto; height: 2px; }
  .ht-spine-line--top { background: linear-gradient(to right, transparent, rgba(246,126,42,0.5)); }
  .ht-spine-line--bottom { background: linear-gradient(to right, rgba(246,126,42,0.5), transparent); }

  /* Blends: on mobile just fade to bottom */
  .ht-img-overlay,
  .ht-img-overlay--right {
    background:
      linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.85) 100%);
  }
  .ht-img-blend,
  .ht-img-blend--right { background: none; }

  /* Year stamp on mobile */
  .ht-year-stamp,
  .ht-entry--img-right .ht-year-stamp {
    font-size: 2.2rem;
    bottom: 12px; left: 16px; right: auto;
  }
  .ht-img-badge,
  .ht-entry--img-right .ht-img-badge {
    top: 12px; left: 12px; right: auto;
  }

  .ht-text-inner,
  .ht-entry--img-right .ht-text-panel .ht-text-inner {
    padding: 28px 20px;
    margin: 0;
    max-width: 100%;
  }
  .ht-title { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .ht-header { padding: 56px 0 40px; }
  .ht-img-panel { min-height: 220px; }
  .ht-text-inner { padding: 22px 16px; }
  .ht-title  { font-size: 1.4rem; }
  .ht-text   { font-size: 0.87rem; }
  .ht-tag-row { gap: 6px; }
  .ht-tag    { font-size: 0.55rem; padding: 4px 10px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ht-img-panel img { transition: none; transform: scale(1); }
  .ht-divider       { transition: none; }
  .ht-spine-dot     { transition: none; }
}
