/* ── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:      #EE3124;
  --red-dark: #c4261b;
  --black:    #0a0a0a;
  --gray-900: #111111;
  --gray-800: #1a1a1a;
  --gray-700: #2a2a2a;
  --gray-500: #3d3d3d;
  --gray-300: #c0c0c0;
  --gray-100: #f2f2f2;
  --white:    #ffffff;

  --font: 'Manrope', system-ui, sans-serif;
  --font-heading: 'Manrope', system-ui, sans-serif;
  --radius: 4px;
  --transition: 0.22s ease;
  --max-w: 1280px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4,
.hero__title,
.split-panel__headline,
.split-panel__brand,
.section-title,
.alt-row__title,
.dealer-banner__title,
.award-banner__title,
.bike-card__name,
.service-card__title,
.listings__title,
.footer__heading {
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.07); }

.btn--outline {
  background: transparent;
  color: var(--gray-900);
  border: 1.5px solid var(--gray-300);
}
.btn--outline:hover { border-color: var(--gray-900); }

.btn--sm { padding: 0.5rem 1.1rem; font-size: 0.75rem; }
.btn--lg { padding: 1rem 2.25rem; font-size: 0.9rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── LINK ARROW ────────────────────────────────────────────────── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  transition: color var(--transition), gap var(--transition);
}
.link-arrow svg { width: 14px; height: 14px; flex-shrink: 0; }
.link-arrow:hover { color: var(--red); gap: 0.7rem; }

/* ── SECTION HELPERS ───────────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
}
.section-title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-sub {
  margin-top: 0.5rem;
  color: var(--gray-500);
  font-size: 1rem;
}

/* ── HEADER ────────────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.4s ease, border-color 0.4s ease;
}
.header--scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(0,0,0,0.08);
}
.header--scrolled .nav__link { color: rgba(0,0,0,0.65); }
.header--scrolled .nav__link:hover { color: var(--black); background: rgba(0,0,0,0.04); }
.header--scrolled .logo { color: var(--black); }
.header--scrolled .logo__r { color: var(--red); }
.header--scrolled .logo__ydbergs { color: var(--red); }
.header--scrolled .chevron { stroke: rgba(0,0,0,0.5); }

.header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 76px;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--white);
  flex-shrink: 0;
}
.logo__r { color: var(--red); }
.logo__ydbergs { color: var(--red); }
.logo__mc {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-300);
  margin-left: 0.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nav */
.nav { display: flex; justify-content: center; }
.nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav__item { position: relative; }

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.8rem;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.chevron { width: 10px; height: 6px; flex-shrink: 0; }

/* simple dropdown (Om Os) */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.2);
  padding: 1rem;
  display: flex;
  gap: 2rem;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav__item--dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown__col { display: flex; flex-direction: column; gap: 0.15rem; min-width: 220px; }
.dropdown__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.4rem;
  padding: 0 0.65rem;
  display: block;
}
.dropdown__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.dropdown__link:hover { background: var(--gray-100); color: var(--red); }

/* ── MEGA MENU ──────────────────────────────────────────────────── */
.nav__item--mega { position: relative; }

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-100px) translateY(6px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.18);
  display: flex;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 200;
  max-height: 340px;
}
.mega-menu.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-100px) translateY(0);
}

/* Col 1: brand list */
.mega-menu__brands {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 200px;
  flex-shrink: 0;
  border-right: 1px solid #f0f0f0;
}
.mega-menu__group { display: flex; flex-direction: column; gap: 0.1rem; }
.mega-menu__label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 0.4rem;
  display: block;
}
.mega-brand {
  display: flex;
  align-items: center;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  transition: background var(--transition);
  cursor: pointer;
}
.mega-brand:hover,
.mega-brand.is-active { background: var(--gray-100); }
.mega-brand__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color var(--transition);
  flex: 1;
}
.mega-brand:hover .mega-brand__name,
.mega-brand.is-active .mega-brand__name { color: var(--red); }
.mega-brand__arrow {
  width: 13px; height: 13px;
  color: var(--gray-300);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}
.mega-brand:hover .mega-brand__arrow,
.mega-brand.is-active .mega-brand__arrow { color: var(--red); transform: translateX(2px); }

/* Col 2+3: sliding model panel */
.mega-menu__panel {
  width: 0;
  overflow: hidden;
  transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  position: relative;
}
.mega-menu__panel.is-open { width: 560px; }

.mega-panel {
  display: flex;
  width: 560px;
  min-width: 560px;
  position: absolute;
  top: 0; left: 0; bottom: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.mega-panel.is-active {
  opacity: 1;
  pointer-events: all;
  position: relative;
}

/* Model links – narrow, just names */
.mega-panel__links {
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  width: 190px;
  flex-shrink: 0;
  background: var(--gray-100);
  border-right: 1px solid #e8e8e8;
}
.mega-link {
  display: flex;
  align-items: center;
  padding: 0.6rem 0.75rem;
  border-radius: 6px;
  transition: background var(--transition);
  cursor: pointer;
}
.mega-link:hover,
.mega-link.is-active { background: var(--gray-100); }
.mega-link__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-900);
  transition: color var(--transition);
}
.mega-link:hover .mega-link__name,
.mega-link.is-active .mega-link__name { color: var(--red); }

/* Filmstrimmel – stor og dominant */
.mega-menu__preview {
  width: 340px;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
  position: relative;
}
.mega-menu__strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.mega-menu__slide {
  width: 100%;
  height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 8px;
}
.mega-menu__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.4s ease;
  display: block;
}
.mega-menu__slide:hover img { transform: scale(1.04); }

.header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── SPLIT HERO ────────────────────────────────────────────────── */
.split-hero {
  display: flex;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}

.split-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: pointer;
}

/* Local video background */
.split-panel__video-wrap {
  position: absolute;
  inset: -3%;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.split-panel:hover .split-panel__video-wrap {
  transform: scale(1.06);
}
.split-panel__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Fallback colour while video loads */
.split-panel--honda { background: #1a1008; }
.split-panel--kawasaki { background: #080d18; }

/* Gradient overlay – darker at bottom for text legibility */
.split-panel__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.45) 45%,
    rgba(0,0,0,0.15) 100%
  );
}

/* Inward shadow on Honda panel – right edge bleeds into Kawasaki */
.split-panel--honda::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  box-shadow: inset -80px 0 120px rgba(0,0,0,0.75);
  pointer-events: none;
}

/* Thin divider line between panels */
.split-panel--honda::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px;
  height: 100%;
  background: rgba(255,255,255,0.12);
  z-index: 3;
}

/* Content */
.split-panel__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2.5rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.split-panel__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.split-panel__headline {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.btn--pill {
  border-radius: 50px;
  padding: 0.85rem 2rem;
}

/* Mini model list at the bottom */
.split-panel__models {
  display: flex;
  gap: 0;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
}
.mini-model {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 1rem 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: opacity var(--transition);
}
.mini-model:last-child { border-right: none; padding-right: 0; padding-left: 1rem; }
.mini-model:first-child { padding-left: 0; }
.mini-model:hover { opacity: 0.7; }

.mini-model__name {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-model__type {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}

/* ── ALTERNATING SECTIONS ──────────────────────────────────────── */
.alt-sections {
  background: var(--white);
  padding: 5rem 0;
}
.alt-sections .container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.alt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.alt-row--reverse .alt-row__media { order: 2; }
.alt-row--reverse .alt-row__content { order: 1; }

.alt-row__media {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  aspect-ratio: 4/3;
}
.alt-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.alt-row:hover .alt-row__media img { transform: scale(1.04); }

.alt-row__content {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: transparent;
}

.alt-row__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
  display: block;
}
.alt-row__title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.alt-row__content p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 480px;
}
.alt-row__content p + p { margin-top: 0.85rem; }
.alt-row__content .btn { margin-top: 1.5rem; align-self: flex-start; }

@media (max-width: 768px) {
  .alt-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .alt-row--reverse .alt-row__media { order: 0; }
  .alt-row--reverse .alt-row__content { order: 0; }
  .alt-row__content .btn { align-self: stretch; justify-content: center; }
}

/* ── BRANDS ────────────────────────────────────────────────────── */
.brands {
  background: var(--gray-900);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brands__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  flex-wrap: wrap;
}
.brands__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  white-space: nowrap;
}
.brands__logos { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.brand-logo { color: rgba(255,255,255,0.5); transition: color var(--transition); }
.brand-logo:hover { color: var(--white); }
.brand-logo svg { height: 28px; width: auto; }
.brand-logo--used { opacity: 0.5; }

/* ── LISTINGS ───────────────────────────────────────────────────── */
.listings {
  padding: 4rem 0;
  background: var(--gray-100);
}
.listings__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
}
.listings__title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.listings__sub { color: var(--gray-500); font-size: 1rem; margin-top: 0.25rem; }
.listings__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.listing-card {
  display: block;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.listing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.listing-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
}
.listing-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.listing-card:hover .listing-card__img img { transform: scale(1.04); }
.listing-card__body {
  padding: 1rem 1.1rem 1.2rem;
}
.listing-card__brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.listing-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0.2rem;
  letter-spacing: -0.01em;
}
.listing-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
}
.listing-card__year {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}
.listing-card__price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
}

/* ── FEATURED BIKES ─────────────────────────────────────────────── */
.featured {
  padding: 5rem 0;
  background: var(--white);
}
.bikes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.bike-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ebebeb;
  background: var(--white);
  transition: box-shadow var(--transition), transform var(--transition);
}
.bike-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.bike-card__img-wrap {
  position: relative;
  height: 220px;
  background: var(--gray-100);
  overflow: hidden;
}
.bike-card__img { transition: transform 0.4s ease; }
.bike-card:hover .bike-card__img { transform: scale(1.04); }

.bike-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}
.bike-card__badge--new { background: var(--red); color: var(--white); }
.bike-card__badge--used { background: var(--gray-800); color: var(--white); }

.bike-card__body { padding: 1.25rem; }
.bike-card__brand {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}
.bike-card__name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 0.2rem;
}
.bike-card__spec {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 0.3rem;
}
.bike-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1rem;
  gap: 0.5rem;
}
.bike-card__price {
  font-size: 0.95rem;
  font-weight: 700;
}

/* ── CATEGORIES ─────────────────────────────────────────────────── */
.categories { padding: 5rem 0; background: var(--white); }
.categories .section-title { margin-bottom: 1.75rem; }

.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 12px;
  overflow: hidden;
  gap: 3px;
  height: auto;
}
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 240px;
}
.cat-card__img { transition: transform 0.5s ease; }
.cat-card:hover .cat-card__img { transform: scale(1.06); }
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
  transition: background var(--transition);
}
.cat-card:hover .cat-card__overlay { background: linear-gradient(to top, rgba(238,49,36,0.55) 0%, rgba(0,0,0,0.2) 60%); }
.cat-card__content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: var(--white);
}
.cat-card__label {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.cat-card__content svg { width: 20px; height: 20px; flex-shrink: 0; opacity: 0.7; }

/* Brand-card variants: solid brand-colored background with wordmark as visual */
.cat-card--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.cat-card--brand .cat-card__overlay {
  background: transparent;
  transition: background var(--transition);
}
.cat-card--brand:hover .cat-card__overlay {
  background: linear-gradient(to top, rgba(238,49,36,0.85) 0%, rgba(238,49,36,0) 35%);
}
.cat-card--kawasaki:hover .cat-card__overlay {
  background: linear-gradient(to top, rgba(67,176,42,0.85) 0%, rgba(67,176,42,0) 35%);
}
.cat-card--brand:hover .cat-card__content { color: var(--white); }
.cat-card__brand-logo {
  width: auto !important;
  height: auto !important;
  max-width: 60%;
  max-height: 45%;
  object-fit: contain !important;
  transition: transform 0.4s ease;
}
.cat-card--brand:hover .cat-card__brand-logo { transform: scale(1.05); }
.cat-card--brand .cat-card__content {
  color: var(--gray-900);
}
.cat-card--brand .cat-card__content svg { opacity: 0.5; }

.cat-card--honda,
.cat-card--kawasaki {
  background: var(--white);
  border: 1px solid var(--gray-200);
}

/* ── SERVICES ───────────────────────────────────────────────────── */
.services {
  padding: 5rem 0;
  background: var(--gray-100);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem 1.75rem;
  border: 1px solid #ebebeb;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(238,49,36,0.08);
  border-radius: 8px;
  margin-bottom: 1.25rem;
  color: var(--red);
}
.service-card__icon svg { width: 22px; height: 22px; }
.service-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.service-card__text {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* ── DEALER BANNER ──────────────────────────────────────────────── */
.dealer-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a08 50%, #0a0a0a 100%);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dealer-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(238,49,36,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.dealer-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.dealer-banner__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.dealer-banner__title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--white);
}
.dealer-banner__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 0.5rem;
}
.dealer-banner__stats {
  display: flex;
  gap: 3.5rem;
  margin: 1.5rem 0 0.5rem;
}
.dealer-banner .stat__num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.dealer-banner .stat__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
  display: block;
}

/* ── AWARD BANNER ───────────────────────────────────────────────── */
.award-banner {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.award-banner__bg {
  position: absolute;
  inset: 0;
}
.award-banner__img { object-position: center 40%; }
.award-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.88) 40%, rgba(0,0,0,0.4) 100%);
}
.award-banner__inner { position: relative; z-index: 1; }
.award-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 3.5rem;
  max-width: 900px;
}
.award-badge {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.award-badge__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--red);
  animation: spin 8s linear infinite;
  border-top-color: transparent;
}
@keyframes spin { to { transform: rotate(360deg); } }
.award-badge__inner {
  position: absolute;
  inset: 8px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.award-badge__num {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.award-badge__txt {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7);
}

.award-banner__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.award-banner__title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.award-banner__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}
.award-banner__stats {
  display: flex;
  gap: 2.5rem;
}
.stat {}
.stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat__label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.2rem;
  display: block;
}

/* ── CONTACT ────────────────────────────────────────────────────── */
.contact { padding: 5rem 0; background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
}
.contact__address, .contact__link {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--gray-700);
  transition: color var(--transition);
}
.contact__link { align-items: center; }
.contact__link:hover { color: var(--red); }
.contact__address svg,
.contact__link svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }

.hours { margin-top: 2rem; }
.hours__title { font-size: 1rem; font-weight: 700; margin-bottom: 0.75rem; }
.hours__table { border-collapse: collapse; width: 100%; font-size: 1rem; }
.hours__table td { padding: 0.4rem 0; color: var(--gray-700); }
.hours__table td:last-child { text-align: right; font-weight: 600; }
.hours__closed td { color: var(--gray-500); }
.hours__note {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* Contact form */
.contact-form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--gray-100);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--gray-900);
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer { background: var(--gray-900); color: var(--white); }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__tagline {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.75rem;
  max-width: 240px;
  line-height: 1.6;
}
.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: border-color var(--transition), color var(--transition);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--red); color: var(--red); }

.footer__heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__link {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--white); }

.footer__bottom {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* ── SCROLL ANIMATIONS ──────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bikes-grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .cat-card { height: 200px; }
  .award-banner__content { flex-direction: column; gap: 2rem; }
  .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav { display: none; position: fixed; inset: 72px 0 0 0; background: var(--black); overflow-y: auto; padding: 1.5rem; }
  .nav.open { display: flex; flex-direction: column; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link { font-size: 1rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; padding: 0.5rem 0 0.5rem 1rem; background: transparent; flex-direction: column; gap: 0; }
  .dropdown__link { color: rgba(255,255,255,0.5); }
  .hamburger { display: flex; }

  .bikes-grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .cat-card { height: 180px; }
  .footer__top { grid-template-columns: 1fr; }
  .listings__grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .award-banner__stats { gap: 1.5rem; flex-wrap: wrap; }
  .split-hero { flex-direction: column; height: auto; }
  .split-panel { min-height: 60svh; }

  .split-panel--honda::after { display: none; }
}

@media (max-width: 480px) {
  .categories__grid { grid-template-columns: 1fr; }
  .cat-card { height: 160px; }
}

/* ── BRAND PAGE ─────────────────────────────────────────────────── */
.brand-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.brand-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.brand-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.brand-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 65%);
}
.brand-hero__inner {
  position: relative;
  padding-bottom: 3.5rem;
  color: var(--white);
}
.brand-hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.brand-hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}
.brand-hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  line-height: 1.6;
}

.brand-intro {
  padding: 3rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.brand-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.brand-intro__text {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.8;
}
.brand-intro__usps {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.brand-usp {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
}
.brand-usp__icon {
  width: 20px;
  height: 20px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-usp__icon svg { width: 10px; height: 10px; }

.brand-bikes {
  padding: 4rem 0 5rem;
  background: var(--gray-100);
}
.brand-section {
  margin-bottom: 3.5rem;
}
.brand-section:last-child { margin-bottom: 0; }
.brand-section__header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--gray-300);
}
.brand-section__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.brand-section__count {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
}
.brand-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.25rem;
}

/* Badge on listing cards */
.listing-card__img { position: relative; }
.listing-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 1;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  color: var(--white);
}
.listing-card__badge--new  { background: var(--red); }
.listing-card__badge--used { background: var(--gray-800); }
.listing-card__badge--demo { background: #6366f1; }
.listing-card__badge--sold { background: var(--gray-900); }
.listing-card--sold .listing-card__img img { opacity: 0.55; filter: grayscale(0.4); }
.listing-card--sold .listing-card__price { color: var(--gray-500); text-decoration: line-through; }

.listing-card__variant {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-500);
}

@media (max-width: 768px) {
  .brand-intro__inner { grid-template-columns: 1fr; gap: 2rem; }
  .brand-hero { height: 50vh; }
}

/* ── WORKSHOP PAGE ──────────────────────────────────────────────── */
.ws-services {
  padding: 4rem 0;
  background: var(--gray-50);
}
.ws-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.ws-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-100);
}
.ws-card__icon {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.ws-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
}
.ws-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.6rem;
}
.ws-card__body {
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.ws-cta {
  padding: 4rem 0;
  background: var(--gray-900);
}
.ws-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.ws-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.ws-cta__sub {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}
.ws-cta__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}
.btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .ws-services__grid { grid-template-columns: 1fr; }
  .ws-cta__inner { flex-direction: column; align-items: flex-start; }
}

/* ── PAGE PROGRESS BAR ──────────────────────────────────────────── */
.mc-topbar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--red);
  z-index: 9999;
  transition: width .08s linear, opacity .35s ease;
  pointer-events: none;
}
.mc-page-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9998;
  transition: opacity .35s ease;
  pointer-events: none;
}

/* ── FEED LOADER & EMPTY STATE ──────────────────────────────────── */
.mc-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 3rem 0;
}
.mc-loader span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  animation: mc-bounce 1s ease-in-out infinite;
}
.mc-loader span:nth-child(2) { animation-delay: .15s; }
.mc-loader span:nth-child(3) { animation-delay: .3s; }
@keyframes mc-bounce {
  0%, 80%, 100% { transform: scale(.6); opacity: .4; }
  40%           { transform: scale(1);  opacity: 1; }
}
.mc-empty {
  text-align: center;
  padding: 4rem 1.5rem;
  max-width: 480px;
  margin: 0 auto;
  background: var(--gray-50);
  border-radius: 10px;
  border: 1px solid var(--gray-200);
  grid-column: 1 / -1;
}
.mc-empty__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--gray-400, #b0b0b0);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}
.mc-empty__icon svg { width: 28px; height: 28px; }
.mc-empty__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.mc-empty__body {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.mc-empty__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.mc-empty__actions .btn { padding: 0.7rem 1.5rem; font-size: 0.85rem; }
.mc-empty a:not(.btn) { color: var(--red); text-decoration: none; font-weight: 500; }
.mc-empty a:not(.btn):hover { text-decoration: underline; }

/* ── MOTORCYCLE DETAIL PAGE ─────────────────────────────────────── */
.mc-detail-page { padding: calc(76px + 2.5rem) 0 5rem; }

.mc-detail {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: start;
}

/* Gallery */
.mc-gallery__main {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--gray-100);
  margin-bottom: .75rem;
}
.mc-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s;
}
.mc-gallery__thumbs {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.mc-gallery__thumb {
  width: 72px;
  height: 54px;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .15s;
  flex-shrink: 0;
}
.mc-gallery__thumb.is-active { border-color: var(--red); }
.mc-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sidebar */
.mc-sidebar__badge { margin-bottom: .75rem; }
.mc-sidebar__brand {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .25rem;
}
.mc-sidebar__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 .25rem;
}
.mc-sidebar__variant {
  font-size: 1rem;
  color: var(--gray-500);
  margin: 0 0 1.5rem;
}
.mc-sidebar__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .3rem;
}
.mc-sidebar__price-note {
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}
.mc-sidebar__discount {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--red);
  background: #fef2f2;
  border-radius: 4px;
  padding: .2rem .55rem;
  margin-bottom: 1.25rem;
}
.mc-contact-btn {
  display: block;
  width: 100%;
  padding: .9rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  letter-spacing: .02em;
  transition: background var(--transition);
  margin-bottom: .6rem;
}
.mc-contact-btn:hover { background: #d02a1f; }

/* Sold state — applied to bikes flagged with "solgt" in feed */
.mc-detail--sold .mc-gallery__main {
  position: relative;
}
.mc-detail--sold #mc-main-img {
  opacity: 0.88;
  filter: grayscale(0.15);
  transition: opacity .3s ease, filter .3s ease;
}
.mc-detail--sold .mc-gallery__main::after {
  content: "SOLGT";
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  pointer-events: none;
  z-index: 2;
}
.mc-sidebar__sold-banner {
  display: block;
  background: var(--red);
  color: var(--white);
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.8rem 1rem;
  border-radius: 6px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(238, 49, 36, 0.25);
}
.mc-sidebar__price--sold {
  color: var(--gray-500);
  text-decoration: line-through;
}
.mc-contact-btn--sold {
  background: var(--gray-800);
  text-decoration: none;
  text-align: center;
}
.mc-contact-btn--sold:hover { background: var(--gray-900); }

.mc-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.25rem;
  font-size: .9rem;
}
.mc-specs-table tr { border-bottom: 1px solid var(--gray-200); }
.mc-specs-table tr:last-child { border-bottom: none; }
.mc-specs-table td {
  padding: .5rem .25rem;
  vertical-align: top;
}
.mc-specs-table td:first-child {
  color: var(--gray-500);
  font-weight: 500;
  width: 45%;
}
.mc-specs-table td:last-child { font-weight: 600; }

/* Description + financing */
.mc-description { margin-top: 3rem; }
.mc-description h2,
.mc-finans h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--gray-200);
}
.mc-description__text {
  font-size: .95rem;
  line-height: 1.75;
  color: var(--gray-700);
  white-space: pre-line;
}
.mc-finans { margin-top: 2.5rem; }
.mc-finans p { font-size: .9rem; color: var(--gray-600); margin: .35rem 0 0; }

/* Back link */
.mc-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-600);
  text-decoration: none;
  margin-bottom: 2rem;
  transition: color var(--transition);
}
.mc-back:hover { color: var(--red); }

@media (max-width: 900px) {
  .mc-detail { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .mc-gallery__thumb { width: 56px; height: 42px; }
  .mc-sidebar__title { font-size: 1.7rem; }
  .mc-sidebar__price { font-size: 1.6rem; }
}

/* ── Category count badge in mega-menu links ─────────────────── */
.mega-link__count {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 500;
  color: #bbb;
  flex-shrink: 0;
}
.mega-link:hover .mega-link__count,
.mega-link.is-active .mega-link__count { color: var(--red); opacity: .75; }

/* ── Udstyr indholdssider (reservedele / tilbehør) ───────────── */
.udstyr-content { padding: 4.5rem 0; background: #fff; }
.udstyr-content__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.udstyr-content__col h3 { font-size: 1.2rem; font-weight: 700; margin: 1.75rem 0 .55rem; color: var(--gray-900); }
.udstyr-content__col h3:first-child { margin-top: 0; }
.udstyr-content__col p { font-size: .975rem; line-height: 1.75; color: var(--gray-600); margin-bottom: .85rem; }
.udstyr-content__col strong { color: var(--gray-900); font-weight: 600; }
.udstyr-content__col ul { list-style: disc; display: grid; grid-template-columns: 1fr 1fr; gap: .1rem; margin: .4rem 0 1rem; padding-left: 1.25rem; }
.udstyr-content__col li { font-size: .975rem; line-height: 1.75; color: var(--gray-600); }
.udstyr-content__col a { color: var(--red); text-decoration: none; }
.udstyr-content__col a:hover { text-decoration: underline; }
.udstyr-content__download { display: inline-flex; align-items: center; gap: .5rem; margin-top: .5rem; font-size: .875rem; font-weight: 600; color: var(--gray-500); text-decoration: none; border: 1.5px dashed var(--gray-300); border-radius: 6px; padding: .5rem .9rem; transition: color var(--transition), border-color var(--transition); }
.udstyr-content__download:hover { color: var(--red); border-color: var(--red); text-decoration: none; }
@media (max-width: 768px) {
  .udstyr-content__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── PROSE PAGES (single column body for finansiering, indbytte mm.) ── */
.page-prose { padding: 4.5rem 0; background: #fff; }
.page-prose__body { max-width: 720px; margin: 0 auto; }
.page-prose__body p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 1rem;
}
.page-prose__body h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray-900);
  margin: 2.5rem 0 0.85rem;
}
.page-prose__body h3:first-child { margin-top: 0; }
.page-prose__body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0 1.5rem;
}
.page-prose__body li {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-600);
}
.page-prose__body a {
  color: var(--red);
  text-decoration: none;
  font-weight: 500;
}
.page-prose__body a:hover { text-decoration: underline; }
.page-prose__body strong { color: var(--gray-900); font-weight: 600; }

/* ── EVENTS / ARRANGEMENTER ──────────────────────────────────── */
.events { padding: 4.5rem 0 5rem; background: var(--gray-50); }
.events__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray-900);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gray-300);
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}
.event-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.75rem 1.75rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--red);
}
.event-card:hover {
  transform: translateY(-4px);
  border-color: var(--gray-300);
  box-shadow: 0 14px 32px rgba(0,0,0,0.1);
}
.event-card__date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.event-card__date::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>") no-repeat center / contain;
  flex-shrink: 0;
}
.event-card__title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray-900);
  line-height: 1.2;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--gray-200);
}
.event-card__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-500);
  flex: 1;
}

/* ── TIMELINE / HISTORIE ─────────────────────────────────────── */
.timeline-section { padding: 5rem 0; background: var(--white); }
.timeline-section__head {
  max-width: 640px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.timeline-section__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.timeline-section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.timeline-section__lead {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 760px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 110px;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: var(--gray-200);
}
.timeline__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 2rem;
  padding: 1rem 0 1.75rem;
  position: relative;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute;
  left: 103px;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
  z-index: 1;
}
.timeline__year {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--red);
  text-align: right;
  padding-top: 1rem;
  letter-spacing: 0.01em;
}
.timeline__body { padding-top: 0.9rem; }
.timeline__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.timeline__body p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .timeline::before { left: 8px; }
  .timeline__item { grid-template-columns: 1fr; gap: 0.4rem; padding-left: 36px; }
  .timeline__marker { left: 0; top: 0.65rem; }
  .timeline__year { text-align: left; padding-top: 0; font-size: 1.1rem; }
  .timeline__body { padding-top: 0; }
}

/* ── TEAM / PROFIL ───────────────────────────────────────────── */
.team { padding: 5rem 0; background: var(--gray-50); }
.team__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}
.team__intro {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 3rem;
}
.team__group {
  margin-bottom: 3.5rem;
}
.team__group:last-child { margin-bottom: 0; }
.team__group-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--gray-300);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.team-card__photo {
  width: 100%;
  overflow: hidden;
  background: var(--gray-100);
  line-height: 0;
}
.team-card__photo img {
  width: 100%;
  height: auto;
  display: block;
}
.team-card__name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.2;
  margin: 1.25rem 1.25rem 0.35rem;
  letter-spacing: 0.01em;
}
.team-card__role {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0 1.25rem 1rem;
}
.team-card__contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0 1.25rem 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-200);
}
.team-card__link {
  font-size: 0.95rem;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition);
  word-break: break-word;
}
.team-card__link:hover { color: var(--red); }
@media (max-width: 480px) {
  .team__grid { grid-template-columns: 1fr; }
}
