/* ── FONT: Manrope (self-hosted variabel font, vægt 200–800) ────── */
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 200 800; font-display: swap;
  src: url('assets/fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Manrope'; font-style: normal; font-weight: 200 800; font-display: swap;
  src: url('assets/fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

/* ── 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-600: #4b5159;
  --gray-500: #5f6670;
  --gray-300: #c9ced4;
  --gray-200: #e4e7eb;
  --gray-100: #f2f4f6;
  --gray-50:  #f7f9fb;
  --white:    #ffffff;

  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-heading: var(--font);
  --radius: 8px;
  --radius-lg: 14px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --transition: 0.25s var(--ease);
  --shadow-sm: 0 1px 2px rgba(16,24,40,0.05), 0 1px 3px rgba(16,24,40,0.06);
  --shadow-md: 0 14px 34px -10px rgba(16,24,40,0.18);
  --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.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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.02em;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Skjult visuelt, men læses af Google og skærmlæsere */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
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.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow 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); box-shadow: 0 8px 20px -8px rgba(238,49,36,0.6); }

.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: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  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;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.4s ease;
}
/* Baggrund og blur ligger på et pseudo-element. Sidder backdrop-filter direkte på
   .header, bliver den faste mobilmenu låst inde i headerens 76px og kan ikke ses. */
.header::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55), rgba(10,10,10,0.3));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.4s ease;
}
.header--scrolled { border-bottom-color: rgba(0,0,0,0.08); }
.header--scrolled::before {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.header--scrolled .hamburger span { background: var(--gray-900); }
.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 .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 (assets/images/rydbergs-logo.png – 298×51px, gennemsigtig baggrund) */
.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 0;
  line-height: 0;
}
.logo__img {
  width: auto;
  height: 30px;
  object-fit: contain;
  transition: opacity var(--transition);
}
.logo:hover .logo__img { opacity: 0.85; }
.logo--footer .logo__img { height: 34px; }

/* Siden bag mobilmenuen må ikke scrolle */
html.nav-open, html.nav-open body { overflow: hidden; }

/* 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;
  white-space: nowrap;
  padding: 0.5rem 0.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  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;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;               /* Apple/Google anbefaler min. 44px tryk-område */
  height: 44px;
  margin-right: -10px;       /* flugter ikonet med kanten, selvom tryk-området er større */
  padding: 0;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.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;
  transition: transform 1.2s var(--ease);
}
.split-panel:hover .split-panel__video-wrap {
  transform: scale(1.04);
}
.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(1.9rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.04;
  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;
}

.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: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  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: clamp(1.75rem, 2.6vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.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: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.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.7s var(--ease);
}
.listing-card:hover .listing-card__img img { transform: scale(1.03); }
.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;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.2rem 0.75rem;
  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: 800;
  white-space: nowrap;
  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);
  gap: 1rem;
}
.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  height: 240px;
  border-radius: var(--radius-lg);
  isolation: isolate;
}
.cat-card__img { transition: transform 0.9s var(--ease); }
.cat-card:hover .cat-card__img { transform: scale(1.05); }
.cat-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.08) 60%);
}
/* Mørkere lag der fader ind ved hover (opacity kan animeres – gradients kan ikke) */
.cat-card__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.cat-card:hover .cat-card__overlay::after { opacity: 1; }
.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: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.cat-card__content svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.8;
  transition: transform 0.35s var(--ease);
}
.cat-card:hover .cat-card__content svg { transform: translateX(4px); }

/* Brand-kort (Honda / Kawasaki): hvidt kort med logo – hover i mærkets egen farve */
.cat-card--brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.cat-card--honda    { --brand: #e4002b; }
.cat-card--kawasaki { --brand: #66b32e; }
.cat-card--brand .cat-card__overlay { background: none; }
.cat-card--brand .cat-card__overlay::after {
  inset: auto 0 0 0;
  height: 4px;
  background: var(--brand);
  opacity: 1;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.cat-card--brand:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--gray-200));
  box-shadow: var(--shadow-md);
}
.cat-card--brand:hover .cat-card__overlay::after { transform: scaleX(1); }
.cat-card__brand-logo {
  width: auto !important;
  height: auto !important;
  max-width: 60%;
  max-height: 45%;
  object-fit: contain !important;
  transform: translateY(-0.75rem);
  transition: transform 0.6s var(--ease);
}
.cat-card--brand:hover .cat-card__brand-logo { transform: translateY(-0.75rem) scale(1.04); }
/* Kawasaki-ordmærket er bredt – gør det visuelt lige så tungt som Honda-logoet */
.cat-card--kawasaki .cat-card__brand-logo { max-width: 40%; }
.cat-card--brand .cat-card__content { color: var(--gray-900); }
.cat-card--brand:hover .cat-card__content svg { color: var(--brand); }

/* ── 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 16s 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: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  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: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  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; padding: 0.5rem 0; margin-top: 0.75rem; }
.contact__address small { display: block; margin-top: 0.15rem; font-size: 0.85rem; color: var(--gray-500); }
.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: 44px;
  height: 44px;
  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.1rem; }
.footer__link {
  display: inline-block;
  padding: 0.35rem 0;
  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(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--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; }
}

/* Menuen kan ikke være på én linje under 960px → burgermenu */
@media (max-width: 1100px) {
  .header__inner { gap: 1rem; }
  .nav__link { padding: 0.5rem 0.6rem; font-size: 0.9rem; }
}
@media (max-width: 960px) {
  .header__inner { grid-template-columns: auto 1fr; }
  /* justify-content: flex-start er vigtig: centreret indhold i et panel lavere end menuen
     skjuler toppen af menuen, så den ikke kan nås (sker på iPhones med Safaris værktøjslinjer) */
  .nav {
    display: none; position: fixed; inset: 76px 0 0 0; z-index: 1;
    background: var(--black);
    overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0.5rem 1.5rem calc(2rem + env(safe-area-inset-bottom, 0px));
  }
  .nav.open { display: flex; flex-direction: column; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    display: flex; justify-content: space-between; width: 100%; min-height: 52px;
    font-size: 1.05rem; padding: 0.85rem 0; border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav__link:hover { background: transparent; }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; padding: 0.35rem 0 0.75rem 1rem; background: transparent; flex-direction: column; gap: 0; min-width: 0; }
  .dropdown__col { min-width: 0; gap: 0; }
  .dropdown__link { display: flex; align-items: center; min-height: 44px; padding: 0.5rem 0; font-size: 0.95rem; color: rgba(255,255,255,0.6); border-radius: 0; }
  .dropdown__link:hover { background: transparent; color: var(--white); }
  .hamburger { display: flex; }

  /* Menupanelet er altid mørkt – også når headeren er hvid efter scroll */
  .header--scrolled .nav__link { color: rgba(255,255,255,0.85); }
  .header--scrolled .nav__link:hover { color: var(--white); background: transparent; }
  .header--scrolled .chevron { stroke: rgba(255,255,255,0.5); }

  /* Motorcykler: vis mærkerne som almindelige links i stedet for hover-megamenuen */
  .mega-menu,
  .mega-menu.is-open {
    position: static; display: block; opacity: 1; pointer-events: all; transform: none;
    box-shadow: none; background: transparent; border-radius: 0; max-height: none; overflow: visible;
  }
  .mega-menu__brands { width: auto; border-right: none; padding: 0.75rem 0 0.75rem 1rem; gap: 0.75rem; }
  .mega-menu__label { color: rgba(255,255,255,0.35); margin-bottom: 0; }
  .mega-brand { min-height: 44px; padding: 0.5rem 0; border-radius: 0; }
  .mega-brand:hover, .mega-brand.is-active { background: transparent; }
  .mega-brand__name, .mega-brand:hover .mega-brand__name, .mega-brand.is-active .mega-brand__name { font-size: 0.95rem; color: rgba(255,255,255,0.6); }
  .mega-brand__arrow, .mega-menu__panel { display: none; }
}

@media (max-width: 768px) {
  .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: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .categories__grid { grid-template-columns: 1fr; }
  .cat-card { height: 160px; }
  .logo__img { height: 24px; }
  .header__actions { gap: 0.75rem; }
  .header__actions .btn { padding: 0.6rem 1rem; font-size: 0.75rem; }
}

/* ── 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__eyebrow, .brand-hero__title, .brand-hero__sub { text-shadow: 0 1px 12px rgba(0,0,0,0.35); }
.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(2.4rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  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: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.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.25rem 0.6rem;
  border-radius: 6px;
  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; }
  /* På telefon fylder teksten det meste af billedet → mørkere hele vejen op */
  .brand-hero__overlay { background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.35) 100%); }
  .brand-hero__eyebrow { color: #ff6a5e; }
}

@media (max-width: 600px) {
  /* Motorcykler 2 pr. række som på forsiden – mindre scroll */
  .brand-section__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .brand-section__grid .listing-card__body,
  .listings__grid .listing-card__body { padding: 0.8rem 0.85rem 0.95rem; }
  .brand-section__header { flex-wrap: wrap; }
  .listings__header { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ── 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: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.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.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  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.4rem, 2.4vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  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;
  flex-wrap: wrap;
  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: stretch; }
  .ws-cta__actions { width: 100%; gap: 0.75rem; }
  .ws-cta__actions .btn { flex: 1 1 auto; justify-content: center; }
}

/* ── 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;
  color: var(--gray-500);
  padding: 3rem 0;
  font-size: 1rem;
}

/* ── 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: 16px;
  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: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
  transition: border-color .2s var(--ease), opacity .2s var(--ease);
  flex-shrink: 0;
}
.mc-gallery__thumb:hover { opacity: 1; }
.mc-gallery__thumb.is-active { border-color: var(--red); opacity: 1; }
.mc-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Sidebar – grå boks med afrundede hjørner */
.mc-sidebar {
  background: var(--gray-50);
  border-radius: 16px;
  padding: 2rem;
}
@media (min-width: 901px) and (min-height: 820px) {
  .mc-sidebar { position: sticky; top: calc(76px + 1.5rem); }
}
.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: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 .25rem;
}
.mc-sidebar__variant {
  font-size: 1rem;
  color: var(--gray-500);
  margin: 0 0 1.5rem;
}
.mc-sidebar__price {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  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: 1rem;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0;
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
  margin-bottom: .6rem;
}
.mc-contact-btn:hover { background: var(--red-dark); box-shadow: 0 10px 22px -10px rgba(238,49,36,0.7); }
.mc-contact-btn:active { transform: scale(0.98); }

/* 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: .7rem 0;
  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.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  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: -0.6rem 0 1.4rem;
  padding: 0.6rem 0.2rem 0.6rem 0;
  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 { padding: 1.5rem; }
  .mc-sidebar__title { font-size: 1.6rem; }
  .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 h2 { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.02em; margin: 1.75rem 0 .55rem; color: var(--gray-900); }
.udstyr-content__col h2: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.3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  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.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  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: var(--radius-lg);
  padding: 1.75rem 1.75rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.event-card::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--red);
}
.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.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1.3;
  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(--gray-50); }
.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.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  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: 780px;
  position: relative;
}
/* Lodret linje */
.timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 2rem;
  bottom: 2rem;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(to bottom, var(--red) 0%, var(--gray-200) 100%);
}
/* Hvert punkt er et kort til højre for linjen */
.timeline__item {
  position: relative;
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.25rem 52px;
  padding: 1.5rem 1.75rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.timeline__item:last-child { margin-bottom: 0; }
/* Prik på linjen – flugter med årstallet */
.timeline__marker {
  position: absolute;
  left: -49px;
  top: 1.65rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--red);
  box-shadow: 0 0 0 5px var(--white);
}
.timeline__marker::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--red);
}
.timeline__item:last-child .timeline__marker { background: var(--red); }
.timeline__item:last-child .timeline__marker::after { background: var(--white); inset: 6px; }
/* Årstal som rød "chip" */
.timeline__year {
  justify-self: start;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--red);
  background: rgba(238,49,36,0.08);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  line-height: 1.4;
}
.timeline__title {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}
.timeline__body p {
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
}
@media (max-width: 640px) {
  .timeline::before { left: 10px; }
  .timeline__item { margin-left: 36px; padding: 1.25rem 1.25rem 1.35rem; }
  .timeline__marker { left: -35px; top: 1.4rem; width: 18px; height: 18px; box-shadow: 0 0 0 4px var(--white); }
  .timeline__marker::after { inset: 3px; }
  .timeline__item:last-child .timeline__marker::after { inset: 5px; }
  .timeline__title { font-size: 1.1rem; }
}

/* ── TEAM / PROFIL ───────────────────────────────────────────── */
.team { padding: 5rem 0; background: var(--white); }
.team__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  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: 0.8rem;
  font-weight: 800;
  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(250px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.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.1rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.3;
  margin: 1.1rem 1.25rem 0.2rem;
  letter-spacing: -0.02em;
}
.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;
  margin: 0 1.25rem 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--gray-200);
}
.team-card__link {
  display: block;
  padding: 0.4rem 0;
  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; }
}

/* ── 404-SIDE ────────────────────────────────────────────────────── */
.page-404 { padding: calc(76px + 5rem) 0 6rem; background: #fff; }
.page-404__inner { max-width: 720px; text-align: center; }
.page-404__code {
  display: block;
  font-family: var(--font-heading);
  font-size: 6rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--red);
}
.page-404__title {
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0.5rem 0 1rem;
  color: var(--gray-900);
}
.page-404__text { font-size: 1.05rem; color: var(--gray-500); margin-bottom: 2rem; }
.page-404__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.page-404 .btn--outline { color: var(--gray-900); border-color: var(--gray-300); }
.page-404 .btn--outline:hover { border-color: var(--gray-900); background: transparent; }

/* ── VINTEROPBEVARING (forside) ──────────────────────────────────── */
.winter { background: var(--gray-100); padding: 5rem 0; scroll-margin-top: 76px; } /* 76px = headerens højde */
.winter__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.winter__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.85rem;
}
.winter__title {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.winter__text { font-size: 1rem; color: var(--gray-500); line-height: 1.75; max-width: 520px; }
.winter__usps { margin-top: 1.75rem; }
.winter__card {
  background: var(--gray-900);
  color: var(--white);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.winter__card-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.winter__price {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-top: 0.75rem;
}
.winter__price-note { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0.25rem 0 1.75rem; }
.winter__card-note { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 1rem; text-align: center; }

@media (max-width: 900px) {
  .winter__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 768px) {
  .winter { padding: 3.5rem 0; }
  .winter__title { font-size: 1.7rem; }
  .winter__card { padding: 1.75rem; }
  .winter__card .btn { white-space: normal; text-align: center; }
}

/* ── FORMULAR-DIALOG ─────────────────────────────────────────────── */
.form-dialog {
  border: none;
  padding: 0;
  margin: auto;
  border-radius: 12px;
  width: min(600px, calc(100% - 2rem));
  max-height: calc(100svh - 2rem);
  overflow-y: auto;
  background: var(--white);
  color: var(--gray-900);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.form-dialog::backdrop { background: rgba(0,0,0,0.6); }
.form-dialog__box { position: relative; padding: 2rem; }
.form-dialog__close {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--gray-500);
  padding: 0.2rem 0.45rem;
  border-radius: var(--radius);
}
.form-dialog__close:hover { color: var(--gray-900); }
.form-dialog__title:focus { outline: none; }
.form-dialog__title { font-size: 1.6rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; padding-right: 2rem; }
.form-dialog__summary {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--gray-500);
  background: var(--gray-100);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 0.6rem 0.9rem;
}
.form-dialog__summary strong { color: var(--gray-900); }
.form-dialog__note { font-size: 0.8rem; color: var(--gray-500); text-align: center; }
.form-dialog .contact-form { margin-top: 1.25rem; gap: 0.9rem; }
.form-dialog .form-group textarea { min-height: 80px; }

@media (max-width: 600px) {
  .form-dialog__box { padding: 1.5rem 1.25rem; }
  .form-dialog__title { font-size: 1.4rem; }
}

/* ── FORMULAR: afkrydsning, spam-fælde, fejl og kvittering ────────── */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--gray-700);
  cursor: pointer;
}
.form-check input {
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: var(--red);
  cursor: pointer;
}
.form-honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status {
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: #fdecea;
  color: #b3261e;
  font-size: 0.88rem;
  line-height: 1.5;
}
.form-status a { color: inherit; text-decoration: underline; }
.form-success {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #22c55e;
  background: #ecf8f0;
  color: #1e6b3a;
  font-size: 1rem;
  line-height: 1.6;
}

/* ── REDUCERET BEVÆGELSE ─────────────────────────────────────────── */
/* Brugere der har slået animationer fra i styresystemet får en rolig side */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}
