/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0b0b0d;
  color: #e8e8ea;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --gold: #f5a623;
  --gold-dark: #d48a10;
  --bg: #0b0b0d;
  --bg-alt: #131316;
  --bg-card: #18181c;
  --border: #26262c;
  --text: #e8e8ea;
  --muted: #8a8a92;
  --radius: 12px;
  --shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.section-head p {
  color: var(--muted);
  font-size: 1.1rem;
}

/* ===== TYPO ===== */
h1, h2, h3, h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  line-height: 1.1;
  font-weight: 400;
}
.accent { color: var(--gold); }
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.muted { color: var(--muted); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #1a1a1a;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245,166,35,0.3);
}
.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 0.85rem;
}
.btn.full { width: 100%; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,11,13,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Archivo', 'Segoe UI', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.3px;
}
.logo-img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 0 12px rgba(245,166,35,0.25));
}
.footer .logo-img { width: 64px; height: 64px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
  color: var(--gold);
}
.logo-text strong {
  color: var(--gold);
  font-weight: 800;
  font-size: 1em;
  display: block;
}
.logo-text em {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 0.55em;
  color: var(--muted);
  letter-spacing: 1.5px;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }
/* Onglet mis en avant (Livre d'Or) : pastille contour or + sceau */
.nav-links a.nav-featured {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid rgba(245, 166, 35, 0.45);
  border-radius: 999px;
  padding: 6px 15px;
  transition: background 0.2s, border-color 0.2s;
}
.nav-links a.nav-featured::after { display: none; }
.nav-links a.nav-featured::before {
  content: '\2726';
  margin-right: 6px;
  font-size: 0.8em;
  color: var(--gold);
  opacity: 0.9;
}
.nav-links a.nav-featured:hover { background: rgba(245, 166, 35, 0.12); border-color: var(--gold); }

/* ===== ÉCRAN D'ENTRÉE (INTRO) ===== */
body.intro-open { overflow: hidden; }
.intro {
  position: fixed; inset: 0; z-index: 9999;
  background: radial-gradient(circle at 50% 38%, #17150e 0%, #0b0b0d 68%);
  display: flex; flex-direction: column; justify-content: space-between;
}
.intro-inner { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; position: relative; z-index: 1; }
.intro-bigword { position: absolute; bottom: 4%; left: 50%; transform: translateX(-50%); font-family: 'Anton', sans-serif; font-size: 22vw; line-height: 1; color: #111013; letter-spacing: -0.02em; z-index: 0; pointer-events: none; user-select: none; text-transform: uppercase; }
.intro-logo { width: 210px; max-width: 46vw; filter: drop-shadow(0 0 46px rgba(245, 166, 35, 0.42)); transform-origin: 60% 80%; animation: introHowl 2.8s ease-in-out infinite; }
@keyframes introHowl { 0%, 100% { transform: rotate(0deg) scale(1); } 45% { transform: rotate(-5deg) scale(1.05); } 60% { transform: rotate(-3deg) scale(1.04); } }
.intro-word { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: clamp(2rem, 7vw, 3.6rem); color: var(--gold); letter-spacing: -1px; margin-top: 20px; text-transform: uppercase; }
.intro-tag { font-family: 'Inter', sans-serif; font-style: italic; color: var(--muted); letter-spacing: 4px; text-transform: uppercase; font-size: 0.72rem; margin-top: 8px; }
.intro-sub { color: #d2d2d6; margin-top: 22px; font-size: 1.02rem; max-width: 460px; }
.intro-btn { margin-top: 26px; font-size: 1rem; padding: 16px 34px; }
.intro-skip { margin-top: 16px; background: none; border: none; color: var(--muted); font-size: 0.85rem; cursor: pointer; text-decoration: underline; letter-spacing: 0.4px; }
.intro-skip:hover { color: var(--gold); }
.intro.igniting .intro-logo { animation: introFire 1.7s ease forwards; }
@keyframes introFire { 0% { transform: rotate(0) scale(1); } 25% { transform: rotate(-7deg) scale(1.2); } 100% { transform: rotate(-2deg) scale(1.42); filter: drop-shadow(0 0 74px rgba(245, 166, 35, 0.75)); } }
.intro.igniting .intro-word, .intro.igniting .intro-tag, .intro.igniting .intro-sub, .intro.igniting .intro-btn, .intro.igniting .intro-skip { opacity: 0; transition: opacity 0.5s ease; }
.intro.hide { opacity: 0; transform: scale(1.06); pointer-events: none; transition: opacity 0.7s ease, transform 0.7s ease; }
@media (max-width: 600px) { .intro-logo { width: 150px; } .intro-bigword { font-size: 30vw; } }
.nav-badge { display: inline-block; margin-left: 5px; padding: 1px 6px; border-radius: 9px; background: var(--gold); color: #0a0a0a; font-size: 0.6rem; font-weight: 800; line-height: 1.6; vertical-align: middle; position: relative; top: -1px; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  width: 26px;
  height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, #0b0b0d 0%, #1a1208 50%, #0b0b0d 100%),
    radial-gradient(circle at 70% 50%, rgba(245,166,35,0.15), transparent 60%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(245,166,35,0.12), transparent 50%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 800px;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 24px;
}
.hero .lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 600px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stats div {
  display: flex;
  flex-direction: column;
}
.hero-stats strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stats span {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== FILTERS ===== */
.filters {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  font-size: 0.9rem;
}
.filter:hover {
  color: var(--text);
  border-color: var(--gold);
}
.filter.active {
  background: var(--gold);
  color: #1a1a1a;
  border-color: var(--gold);
}

/* ===== GRID & CARDS ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
.small { font-size: 0.85rem; margin-bottom: 14px; }
.card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.card-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}
.card-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.card:hover .card-img-real {
  transform: scale(1.05);
}
.placeholder-img {
  background: repeating-linear-gradient(45deg, #18181c, #18181c 12px, #1d1d22 12px, #1d1d22 24px);
  display: grid;
  place-items: center;
}
.placeholder-text {
  color: var(--muted);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 2px;
  text-align: center;
  line-height: 1.1;
}
.photo-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.card-moto .card-media {
  aspect-ratio: 4 / 5;
}
/* Livre d'Or (motos vendues) */
.card-sold .card-media { aspect-ratio: 4 / 3; background: #101014; }
.card-sold .card-media.sold-portrait { aspect-ratio: 3 / 4; }
.sold-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.sold-ph img { width: 46%; opacity: 0.16; }
.badge.badge-sold {
  background: rgba(0, 0, 0, 0.28);
  color: #ef3a2d;
  border: 2.5px solid #ef3a2d;
  border-radius: 4px;
  outline: 1.5px solid #ef3a2d;
  outline-offset: -6px;
  padding: 6px 12px 5px;
  font-family: 'Archivo', 'Arial Narrow', sans-serif;
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  transform: rotate(-12deg);
  top: 16px;
  left: 16px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}
.sold-story { color: var(--muted); font-size: 0.95rem; line-height: 1.6; margin-top: 10px; }
/* Section En vidéo */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 940px; margin: 0 auto; }
.video-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.video-card video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; background: #000; }
.video-card .vc-body { padding: 14px 18px 18px; }
.video-card .vc-body h3 { color: var(--gold); font-size: 1.15rem; margin-bottom: 4px; }
.video-card .vc-body p { color: var(--muted); font-size: 0.88rem; }
@media (max-width: 800px) { .video-grid { grid-template-columns: 1fr; max-width: 360px; } }
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card-body {
  padding: 20px;
}
.card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.card-body .meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--gold);
}

/* ===== BANNIÈRE ===== */
.banner {
  background: linear-gradient(135deg, #1a1208, #2a1d0a);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.banner-alt {
  background: linear-gradient(135deg, #131316, #1a1208);
  padding: 60px 0;
}
.banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.banner h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.banner p { color: var(--muted); }

/* Finance grid */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.finance-card {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}
.finance-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.finance-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
.finance-card h3 {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.finance-card p {
  color: var(--muted);
  font-size: 0.95rem;
}
.banner-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.banner-cta p {
  color: var(--text);
  font-size: 1.05rem;
}
@media (max-width: 800px) {
  .finance-grid { grid-template-columns: 1fr; }
}

/* ===== ACCESSOIRES ===== */
.acc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.acc-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}
.acc-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1000px) {
  .acc-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .acc-grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .acc-grid-4 { grid-template-columns: 1fr; }
}
.acc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s;
}
.acc-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.acc-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.acc-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--gold);
}
.acc-card p {
  color: var(--muted);
  font-size: 0.95rem;
}
.acc-card-photo {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.acc-card-photo .acc-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0d0d10;
  position: relative;
}
.acc-card-photo .acc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.acc-card-photo:hover .acc-photo img {
  transform: scale(1.05);
}
/* Affichage produit complet (t-shirt) sur fond assorti */
.acc-photo.photo-fit { background: #cec5b9; }
.acc-photo.photo-fit img { object-fit: contain; }
.acc-card-photo:hover .acc-photo.photo-fit img { transform: none; }
.acc-card-photo h3 {
  margin-top: 22px;
}
.acc-card-photo p {
  padding: 0 22px 26px;
}
.placeholder-photo {
  background: repeating-linear-gradient(45deg, #18181c, #18181c 12px, #1d1d22 12px, #1d1d22 24px);
  display: grid;
  place-items: center;
}

/* ===== À PROPOS ===== */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 24px;
}
.about-text p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.checks li {
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  position: relative;
}
.checks li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
}
.checks li:last-child { border: none; }
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.about-card h3 {
  font-size: 1.6rem;
  margin-bottom: 28px;
  color: var(--gold);
}
.stat {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.stat:last-child { border: none; }
.stat strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--text);
}
.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===== CONTACT ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.contact-info > p {
  color: var(--muted);
  margin-bottom: 32px;
}
.contact-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-list strong {
  color: var(--gold);
  font-size: 0.9rem;
}
.contact-list span {
  color: var(--text);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--bg-card);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; }
.form-feedback {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--gold);
  font-size: 0.9rem;
  min-height: 20px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 60px 0 24px;
  margin-top: 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--gold);
}
.footer a {
  display: block;
  color: var(--muted);
  padding: 4px 0;
  transition: color 0.2s;
  font-size: 0.95rem;
}
.footer a:hover { color: var(--gold); }
.footer .logo a { padding: 0; display: inline-flex; }
/* Lockup footer aligné : emblème arrondi + wordmark sur une ligne */
.footer .logo { align-items: center; gap: 15px; }
.footer .logo-img { border-radius: 10px; }
.footer .logo-text { display: block; line-height: 1.18; }
.footer .logo-text strong { display: inline; }
.footer .logo-text em { display: block; margin-top: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { display: inline; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.card, .acc-card { animation: fadeUp 0.6s ease backwards; }
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }
.card:nth-child(5) { animation-delay: 0.4s; }
.card:nth-child(6) { animation-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
  }
  .burger { display: flex; }
  .navbar .btn { display: none; }

  .about, .contact { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { grid-template-columns: 1fr; padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero { min-height: auto; padding: 40px 0 60px; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 500px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

/* ============================================================
   MOTORSPORT THEME — Wolf's Cycles (jaune & noir, esprit course)
   ============================================================ */
:root { --gold: #FFCB05; --gold-dark: #E0B400; }

body { font-family: 'Archivo', system-ui, sans-serif; }
h1, h2, h3, h4,
.price, .hero-stats strong, .stat strong, .placeholder-text,
.card-body h3, .finance-card h3, .acc-card h3 {
  font-family: 'Anton', sans-serif; font-weight: 400; letter-spacing: 0.5px;
}

/* Bande hazard (rayures jaune/noir 45°) */
.tape { height: 14px; background: repeating-linear-gradient(45deg, var(--gold) 0 22px, #000 22px 44px); }

/* Boutons course */
.btn { text-transform: uppercase; letter-spacing: 0.06em; font-weight: 800; border-radius: 4px; }
.btn-primary { background: var(--gold); color: #0a0a0a; }
.btn-primary:hover { background: var(--gold-dark); box-shadow: 0 12px 30px rgba(255,203,5,0.32); transform: translateY(-2px); }
.btn-skew { transform: skewX(-8deg); }
.btn-skew > span { display: inline-block; transform: skewX(8deg); }
.btn-skew:hover { transform: skewX(-8deg) translateY(-2px); }

.navbar { border-bottom: 1px solid #1c1c1c; }
.badge { background: var(--gold); color: #0a0a0a; border-radius: 3px; transform: skewX(-8deg); }

/* Eyebrow encadré façon plaque */
.hero-moto .kick {
  display: inline-block; font-family: 'Archivo'; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.72rem;
  color: var(--gold); border: 1px solid #2a2a2a; padding: 9px 16px; margin-bottom: 24px;
}

/* ===== HERO MOTORSPORT ===== */
.hero-moto {
  min-height: 90vh; position: relative; overflow: hidden;
  background: linear-gradient(120deg, #0a0a0c 0%, #141417 55%, #0a0a0c 100%);
}
.hero-moto::before { content: none; }
.hero-moto .bigword {
  position: absolute; right: -3%; bottom: -7%;
  font-family: 'Anton', sans-serif; font-size: clamp(8rem, 27vw, 24rem);
  line-height: 0.8; letter-spacing: -0.02em; color: #111114;
  text-transform: uppercase; z-index: 0; pointer-events: none; user-select: none;
}
.hero-moto .hero-glow {
  position: absolute; right: -6%; top: 50%; transform: translateY(-50%);
  width: 60vw; max-width: 840px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255,203,5,0.16), transparent 62%);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  align-items: center; gap: 30px; padding: 54px 24px 64px;
}
.hero-moto .hero-content { padding: 0; max-width: none; }
.hero-moto h1 { font-size: clamp(2.6rem, 7vw, 6rem); text-transform: uppercase; line-height: 1.06; }
.hero-moto h1 .accent { color: var(--gold); }
.hero-moto h1 .w { color: transparent; -webkit-text-stroke: 2px var(--gold); }
.hero-moto .hero-stats strong { color: var(--gold); }
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; align-items: center; }
.hero-bike {
  width: 100%; max-width: 680px;
  filter: drop-shadow(0 26px 44px rgba(0,0,0,0.7));
  animation: bikeIn 0.9s cubic-bezier(.2,.7,.2,1) backwards;
}
@keyframes bikeIn { from { opacity: 0; transform: translateX(48px); } to { opacity: 1; transform: translateX(0); } }
.hero-logo {
  width: 100%; max-width: 460px;
  border-radius: 18px;
  filter: drop-shadow(0 0 46px rgba(245,166,35,0.38));
  animation: bikeIn 0.9s cubic-bezier(.2,.7,.2,1) backwards;
}
@media (max-width: 900px) { .hero-logo { max-width: 300px; } }
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 6px; padding: 24px 24px 44px; }
  .hero-visual { order: -1; }
  .hero-bike { max-width: 420px; }
  .hero-moto .bigword { font-size: 34vw; bottom: -3%; }
}

/* ===== Extension motorsport — tout le site ===== */
/* Numéro de course sur les cartes moto */
.card .num {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: 'Anton', sans-serif; font-size: 1.05rem; line-height: 1;
  color: var(--gold); background: #000; padding: 4px 11px; letter-spacing: 1px;
  border: 1px solid rgba(255,203,5,0.4);
}
.badge { top: 10px; left: 10px; }
.card-body h3 { text-transform: uppercase; }
.card:hover { border-color: var(--gold); }

/* Titres de section en capitales */
.section-head h2, .about-text h2, .contact-info h2, .banner h2 { text-transform: uppercase; }
.section-head h2 .accent, .about-text h2 .accent, .contact-info h2 .accent { color: var(--gold); }

/* Bandeau RACHAT — plein jaune (signature du concept) */
.banner-yellow { background: var(--gold); border-color: var(--gold); }
.banner-yellow h2 { color: #0a0a0a; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.banner-yellow p { color: #1a1a1a; font-weight: 600; }
.banner-yellow .btn-primary { background: #000; color: var(--gold); }
.banner-yellow .btn-primary:hover { background: #1a1a1a; box-shadow: 0 12px 30px rgba(0,0,0,0.35); }

/* Financement — accent course au survol + pictos nets */
.finance-card { border-top: 3px solid transparent; }
.finance-card:hover { border-top-color: var(--gold); }
.finance-icon { line-height: 0; }
.finance-icon svg { width: 44px; height: 44px; color: var(--gold); display: inline-block; }

/* À propos — chiffres Anton jaunes + filets */
.about-card { border-top: 3px solid var(--gold); }
.about-card .stat strong { color: var(--gold); }
.checks li strong { color: var(--gold); font-weight: 400; }

/* Merch — titres jaunes capitales (déjà Anton) */
.acc-card h3 { text-transform: uppercase; }

/* Footer — titres jaunes capitales */
.footer h4 { text-transform: uppercase; font-family: 'Anton', sans-serif; letter-spacing: 1px; }

/* Manifeste — l'âme biker (la meute) */
.manifesto-band {
  background: linear-gradient(rgba(9,9,11,0.72), rgba(9,9,11,0.88)), url('assets/dynas-theme.jpg') center 68% / cover no-repeat;
  padding: 0;
}
.manifesto-band .container { padding-top: 72px; padding-bottom: 72px; text-align: center; }
.manifesto-band .mb-kick { font-family: 'Archivo'; font-weight: 800; letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.74rem; color: var(--gold); margin-bottom: 18px; }
.manifesto-band h2 { font-size: clamp(2rem, 5.5vw, 4rem); text-transform: uppercase; line-height: 0.98; }
.manifesto-band h2 .accent { color: var(--gold); }
.manifesto-band .mb-lead { color: #bdbdbd; max-width: 620px; margin: 22px auto 0; font-size: 1.08rem; line-height: 1.7; }
