/* ==========================================================================
   BSK Redesign — nyt designsprog fra Claude Design-mockups (By.dc.html m.fl.)
   Creme baggrund, mørk navy, rød/koral accent. Space Grotesk + Inter.
   Indlæses kun på sider der bruger redesignet (get_header('redesign')).
   Alle klasser er rd-præfiksede så main.css ikke rammes.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --rd-bg: #f7f5f1;
  --rd-bg: oklch(0.97 0.01 80);
  --rd-ink: #20263a;
  --rd-ink: oklch(0.2 0.03 264);
  --rd-muted: #626880;
  --rd-muted: oklch(0.45 0.02 264);
  --rd-accent: #e05243;
  --rd-accent: oklch(0.66 0.19 24);
  --rd-accent-dark: #a92e24;
  --rd-accent-dark: oklch(0.52 0.19 24);
  --rd-ink-soft: #ccd0dd;
  --rd-ink-soft: oklch(0.85 0.02 264);
  --rd-line: rgba(32, 38, 58, 0.08);
  --rd-line: oklch(0.2 0.03 264 / 0.08);
  --rd-font-display: 'Space Grotesk', sans-serif;
  --rd-font-body: 'Inter', sans-serif;
}

body.bsk-redesign {
  background: var(--rd-bg);
  font-family: var(--rd-font-body);
  color: var(--rd-ink);
}

body.bsk-redesign a { text-decoration: none; }

.rd-container { max-width: 1280px; margin: 0 auto; }
.rd-container--narrow { max-width: 820px; margin: 0 auto; }

/* ── Header ── */
.rd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 56px;
  background: var(--rd-bg);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--rd-line);
}

.rd-logo { display: flex; align-items: center; gap: 10px; }

.rd-logo__badge {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--rd-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rd-font-display);
  font-weight: 700;
  color: #fff;
  font-size: 17px;
}

.rd-logo__name {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--rd-ink);
}

.rd-nav { display: flex; align-items: center; gap: 20px; }

.rd-nav a {
  color: var(--rd-ink);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.rd-nav a:hover { color: var(--rd-accent); }

.rd-btn {
  display: inline-block;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  padding: 12px 24px;
  transition: background 0.2s;
}

.rd-btn--dark { background: var(--rd-ink); color: #fff; }
.rd-btn--dark:hover { background: var(--rd-accent); color: #fff; }

.rd-btn--accent {
  background: var(--rd-accent);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
}

.rd-btn--accent:hover { background: var(--rd-accent-dark); color: #fff; }

/* Mobil-menu */
.rd-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}

.rd-menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--rd-ink);
  border-radius: 2px;
}

.rd-mobile-menu {
  display: none;
  position: sticky;
  top: 75px;
  z-index: 49;
  background: var(--rd-bg);
  border-bottom: 1px solid var(--rd-line);
  padding: 8px 24px 20px;
}

.rd-mobile-menu.is-open { display: block; }

.rd-mobile-menu a {
  display: block;
  padding: 12px 0;
  color: var(--rd-ink);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--rd-line);
}

/* ── Hero ── */
.rd-hero {
  padding: 48px 56px 96px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.rd-eyebrow {
  font-weight: 700;
  color: var(--rd-accent);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.rd-hero h1 {
  font-family: var(--rd-font-display);
  font-size: 42px;
  margin: 0 0 16px;
  color: var(--rd-ink);
  font-weight: 700;
  line-height: 1.15;
}

.rd-hero__intro {
  font-size: 17px;
  color: var(--rd-muted);
  line-height: 1.6;
  margin: 0 0 32px;
}

.rd-hero__image img,
.rd-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.rd-hero__image { height: 320px; }

/* ── Trust-bar ── */
.rd-trust {
  display: flex;
  justify-content: center;
  gap: 64px;
  padding: 36px 56px;
  background: #fff;
  border-bottom: 1px solid var(--rd-line);
  flex-wrap: wrap;
}

.rd-trust__stat { text-align: center; }

.rd-trust__value {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--rd-ink);
}

.rd-trust__label { font-size: 13.5px; color: var(--rd-muted); margin-top: 4px; }

/* ── Sektioner ── */
.rd-section { padding: 96px 56px 0; }
.rd-section:last-of-type { padding-bottom: 96px; }

.rd-section h2,
.rd-h2 {
  font-family: var(--rd-font-display);
  font-size: 32px;
  margin: 0;
  color: var(--rd-ink);
  font-weight: 700;
}

.rd-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.rd-section-head a { font-weight: 600; font-size: 15px; color: var(--rd-accent); }
.rd-section-head a:hover { color: var(--rd-accent-dark); }

/* ── Pristabel ── */
.rd-price-card {
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
  overflow-x: auto;
}

.rd-price-table { width: 100%; border-collapse: collapse; min-width: 560px; }

.rd-price-table th {
  text-align: left;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--rd-muted);
  font-weight: 700;
  padding: 0 16px 12px 0;
  border-bottom: 1px solid var(--rd-line);
}

.rd-price-table td {
  padding: 16px 16px 16px 0;
  font-size: 15px;
  color: var(--rd-ink);
  border-bottom: 1px solid var(--rd-line);
}

.rd-price-table tr:last-child td { border-bottom: 0; }

.rd-price-table a { color: var(--rd-accent); font-weight: 600; }
.rd-price-table a:hover { color: var(--rd-accent-dark); }

.rd-price-note { font-size: 15px; color: var(--rd-muted); margin: 12px 0 0; line-height: 1.6; }

.rd-highlight {
  background: #fff;
  border: 1px solid var(--rd-line);
  border-left: 4px solid var(--rd-accent);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 20px;
  font-size: 15px;
  color: var(--rd-ink);
  line-height: 1.6;
}

.rd-highlight p { margin: 0; }

/* ── Vogntype-kort ── */
.rd-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.rd-vehicle-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rd-line);
  transition: transform 0.15s, box-shadow 0.15s;
}

.rd-vehicle-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(32, 38, 58, 0.1);
}

.rd-vehicle-card__image { height: 120px; }

.rd-vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rd-vehicle-card__body { padding: 20px; }

.rd-vehicle-card__name {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--rd-ink);
}

/* ── Om-sektion (split) ── */
.rd-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.rd-split .rd-media { height: 300px; }

.rd-split h2 {
  font-family: var(--rd-font-display);
  font-size: 26px;
  margin: 0 0 20px;
  color: var(--rd-ink);
  font-weight: 700;
}

.rd-split p { font-size: 16px; line-height: 1.8; color: var(--rd-muted); margin: 0; }

/* ── Artikel / lokale detaljer ── */
.rd-article { font-size: 16px; line-height: 1.8; color: var(--rd-muted); }

.rd-article h2,
.rd-article h3 {
  font-family: var(--rd-font-display);
  color: var(--rd-ink);
  font-weight: 700;
  margin: 40px 0 16px;
}

.rd-article h2 { font-size: 26px; }
.rd-article h3 { font-size: 20px; }
.rd-article h2:first-child, .rd-article h3:first-child { margin-top: 0; }
.rd-article p { margin: 0 0 24px; }
.rd-article ul { margin: 0 0 24px; padding-left: 1.25rem; }
.rd-article li { margin-bottom: 10px; }
.rd-article strong { color: var(--rd-ink); }

/* ── FAQ ── */
.rd-faq h2 {
  font-family: var(--rd-font-display);
  font-size: 26px;
  margin: 0 0 28px;
  color: var(--rd-ink);
  font-weight: 700;
}

.rd-faq__list { display: flex; flex-direction: column; gap: 12px; }

.rd-faq__item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--rd-line);
  overflow: hidden;
}

.rd-faq__question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font-family: var(--rd-font-body);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--rd-ink);
  background: none;
  border: 0;
  text-align: left;
}

.rd-faq__icon::before { content: "+"; font-size: 18px; color: var(--rd-muted); }
.rd-faq__question[aria-expanded="true"] .rd-faq__icon::before { content: "–"; }

.rd-faq__answer { display: none; padding: 0 24px 20px; font-size: 14.5px; line-height: 1.6; color: var(--rd-muted); }
.rd-faq__answer.is-open { display: block; }
.rd-faq__answer p { margin: 0; }

/* ── Andre byer ── */
.rd-city-links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.rd-city-links a {
  background: #fff;
  border: 1px solid var(--rd-line);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--rd-ink);
}

.rd-city-links a:hover { border-color: var(--rd-accent); color: var(--rd-accent); }

/* ── CTA-banner ── */
.rd-cta {
  margin: 96px 56px;
  background: var(--rd-ink);
  border-radius: 24px;
  padding: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.rd-cta h2 {
  font-family: var(--rd-font-display);
  font-size: 32px;
  color: #fff;
  margin: 0 0 12px;
  font-weight: 700;
}

.rd-cta p { color: var(--rd-ink-soft); font-size: 16px; margin: 0; }

/* ── Footer ── */
.rd-footer { padding: 64px 56px 40px; background: var(--rd-ink); color: #fff; }

.rd-footer__grid {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 28px;
}

.rd-footer__brand {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.rd-footer__desc {
  font-size: 14px;
  color: var(--rd-ink-soft);
  max-width: 220px;
  line-height: 1.6;
  margin: 0;
}

.rd-footer__heading { font-weight: 700; font-size: 14px; margin-bottom: 16px; }

.rd-footer__links { display: flex; flex-direction: column; gap: 10px; }

.rd-footer__links a,
.rd-footer__links span { color: var(--rd-ink-soft); font-size: 14px; }

.rd-footer__links a:hover { color: #fff; }

.rd-footer__bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.rd-footer__copy { font-size: 13px; color: rgba(204, 208, 221, 0.7); }

.rd-footer__legal { display: flex; gap: 20px; }

.rd-footer__legal a { color: rgba(204, 208, 221, 0.85); font-size: 13px; }
.rd-footer__legal a:hover { color: #fff; }

/* ── Mørk hero (forside) ── */
.rd-hero-dark {
  position: relative;
  overflow: hidden;
  padding: 88px 56px 100px;
  background: var(--rd-ink);
}

.rd-hero-dark__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}

.rd-hero-dark__blob--accent {
  right: -80px;
  top: -80px;
  width: 340px;
  height: 340px;
  background: rgba(224, 82, 67, 0.25);
  background: oklch(0.66 0.19 24 / 0.25);
}

.rd-hero-dark__blob--gold {
  right: 180px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  background: rgba(196, 158, 44, 0.2);
  background: oklch(0.66 0.19 90 / 0.2);
}

.rd-hero-dark__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.rd-hero-dark__copy { flex: 1; min-width: 320px; }

.rd-hero-dark__badge {
  display: inline-block;
  background: rgba(196, 158, 44, 0.18);
  background: oklch(0.66 0.19 90 / 0.18);
  color: #e3c96a;
  color: oklch(0.85 0.13 90);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 24px;
}

.rd-hero-dark h1 {
  font-family: var(--rd-font-display);
  font-size: 56px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 24px;
  font-weight: 700;
}

.rd-accent-text { color: #ef6a56; color: oklch(0.7 0.19 24); }

.rd-hero-dark__sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--rd-ink-soft);
  max-width: 520px;
  margin: 0 0 36px;
}

.rd-hero-dark__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.rd-btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 32px;
}

.rd-btn--ghost:hover { border-color: #fff; color: #fff; }

/* ── Mini-bookingform (forside-hero) ── */
.rd-form-card {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}

.rd-form-card__title {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--rd-ink);
  margin-bottom: 20px;
}

.rd-form-card__fields { display: flex; flex-direction: column; gap: 16px; }

.rd-form-card label { display: flex; flex-direction: column; gap: 6px; }

.rd-form-card__label { font-size: 13px; font-weight: 600; color: var(--rd-muted); }

.rd-form-card input,
.rd-form-card select {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(32, 38, 58, 0.15);
  font-size: 15px;
  font-family: var(--rd-font-body);
  background: var(--rd-bg);
  box-sizing: border-box;
  width: 100%;
}

.rd-form-card__dates { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

.rd-form-card__dates input { flex: 1; min-width: 120px; width: auto; }

.rd-form-card__addday {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px dashed rgba(32, 38, 58, 0.3);
  font-size: 13px;
  font-weight: 600;
  color: var(--rd-ink);
  background: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--rd-font-body);
}

.rd-form-card__hint { font-size: 12px; color: var(--rd-muted); }

.rd-form-card__submit {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 22px;
  background: var(--rd-ink);
  color: #fff;
  padding: 15px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  font-family: var(--rd-font-body);
}

.rd-form-card__submit:hover { background: var(--rd-accent); }

/* ── Sektionsvarianter ── */
.rd-section--alt { background: #fdfcfa; background: oklch(0.99 0.005 80); padding-bottom: 96px; }
.rd-section-head--center { display: block; text-align: center; }

.rd-vehicle-card__meta { font-size: 13px; color: var(--rd-muted); margin: 6px 0 12px; }
.rd-vehicle-card__price { font-size: 14px; font-weight: 700; color: var(--rd-accent); }

/* ── Trin ── */
.rd-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.rd-step { text-align: center; }

.rd-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rd-ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 20px;
  margin: 0 auto 20px;
}

.rd-step__title { font-weight: 700; font-size: 17px; color: var(--rd-ink); margin-bottom: 8px; }
.rd-step__desc { font-size: 14px; color: var(--rd-muted); line-height: 1.5; }

.rd-steps--auto { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }

/* ── Søjle-kort (om os) ── */
.rd-pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.rd-pillar {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--rd-line);
}

.rd-pillar__title {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--rd-ink);
  margin-bottom: 10px;
}

.rd-pillar__desc { font-size: 14px; color: var(--rd-muted); line-height: 1.6; }

.rd-divider {
  width: 64px;
  height: 3px;
  background: var(--rd-accent);
  border-radius: 2px;
  margin: 0 auto;
}

.rd-prose { max-width: 960px; margin: 0 auto; }
.rd-prose h2 {
  font-family: var(--rd-font-display);
  font-size: 30px;
  color: var(--rd-ink);
  font-weight: 700;
  margin: 40px 0 20px;
}
.rd-prose h2:first-child { margin-top: 0; }
.rd-prose p { font-size: 17px; line-height: 1.8; color: var(--rd-muted); margin: 0 0 24px; }

/* ── Artikel-kort (viden) ── */
.rd-post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.rd-post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rd-line);
  transition: transform 0.15s, box-shadow 0.15s;
}

.rd-post-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(32, 38, 58, 0.1);
}

.rd-post-card__media {
  height: 150px;
  background: linear-gradient(135deg, var(--rd-ink), #333a54);
}

.rd-post-card__body { padding: 20px; }

.rd-post-card__tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--rd-accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.rd-post-card__title { font-weight: 700; font-size: 16px; color: var(--rd-ink); line-height: 1.4; }

/* ── CTA-banner accentvariant ── */
.rd-cta--accent { background: var(--rd-accent); }
.rd-cta--accent p { color: rgba(255, 255, 255, 0.85); }

.rd-btn--white { background: #fff; color: var(--rd-accent); font-weight: 700; font-size: 16px; padding: 16px 36px; }
.rd-btn--white:hover { background: var(--rd-bg); color: var(--rd-accent-dark); }

/* ── Sidehoved (undersider) ── */
.rd-page-head { padding: 64px 56px 40px; max-width: 1280px; margin: 0 auto; }

.rd-page-head h1 {
  font-family: var(--rd-font-display);
  font-size: 44px;
  margin: 0 0 16px;
  color: var(--rd-ink);
  font-weight: 700;
  line-height: 1.1;
}

.rd-page-head__intro {
  font-size: 17px;
  color: var(--rd-muted);
  max-width: 640px;
  line-height: 1.6;
  margin: 0;
}

/* ── Vogntype-hub ── */
.rd-hub-grid {
  padding: 16px 56px 96px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.rd-hub-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--rd-line);
  display: flex;
  flex-direction: column;
}

.rd-hub-card__image { height: 220px; position: relative; }

.rd-hub-card__image img { width: 100%; height: 100%; object-fit: cover; display: block; }

.rd-hub-card__stamp {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--rd-ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

.rd-hub-card__body { padding: 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }

.rd-hub-card__name {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--rd-ink);
}

.rd-hub-card__desc { font-size: 14.5px; line-height: 1.6; color: var(--rd-muted); margin: 0; }

.rd-hub-card__tags { display: flex; gap: 8px; flex-wrap: wrap; }

.rd-hub-card__tag {
  font-size: 12.5px;
  font-weight: 600;
  background: var(--rd-bg);
  color: var(--rd-ink);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid var(--rd-line);
}

.rd-hub-card__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}

.rd-hub-card__actions > a:first-child { font-weight: 700; font-size: 14px; color: var(--rd-accent); }
.rd-hub-card__actions > a:first-child:hover { color: var(--rd-accent-dark); }

.rd-btn--dark-sm {
  background: var(--rd-ink);
  color: #fff;
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14.5px;
}

.rd-btn--dark-sm:hover { background: var(--rd-accent); color: #fff; }

/* ── Tab-pills (vogntype-detail) ── */
.rd-tabs {
  padding: 20px 56px 0;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.rd-tab {
  padding: 9px 18px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 13.5px;
  background: #fff;
  color: var(--rd-ink);
  border: 1px solid rgba(32, 38, 58, 0.12);
}

.rd-tab:hover { color: var(--rd-accent); }
.rd-tab--active { background: var(--rd-ink); color: #fff; }
.rd-tab--active:hover { color: #fff; }

/* ── Detail-hero ── */
.rd-detail-hero {
  padding: 40px 56px 0;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.rd-detail-hero h1 {
  font-family: var(--rd-font-display);
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: var(--rd-ink);
  font-weight: 700;
}

.rd-detail-hero__intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--rd-muted);
  margin: 0 0 28px;
  max-width: 480px;
}

.rd-badge-accent {
  display: inline-block;
  background: rgba(224, 82, 67, 0.1);
  background: oklch(0.66 0.19 24 / 0.1);
  color: var(--rd-accent-dark);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
}

.rd-price-from { margin-bottom: 32px; }
.rd-price-from__label { font-size: 12.5px; color: var(--rd-muted); font-weight: 600; margin-bottom: 4px; }
.rd-price-from__value {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--rd-accent);
}

.rd-detail-hero__image { height: 380px; }
.rd-detail-hero__image img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; display: block; }

/* ── Feature-kort ── */
.rd-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.rd-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--rd-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rd-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(224, 82, 67, 0.1);
  background: oklch(0.66 0.19 24 / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.rd-feature-card__title {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--rd-ink);
}

.rd-feature-card__desc { font-size: 14px; line-height: 1.5; color: var(--rd-muted); margin: 0; }

.rd-page-head--center { text-align: center; max-width: 900px; }
.rd-page-head--center .rd-page-head__intro { margin: 0 auto; }

.rd-faq__group { margin-bottom: 40px; }

.rd-faq__group-title {
  font-family: var(--rd-font-display);
  font-size: 22px;
  color: var(--rd-ink);
  font-weight: 700;
  margin: 0 0 16px;
}

/* ── Featured artikel-kort (viden) ── */
.rd-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--rd-line);
  margin-bottom: 40px;
}

.rd-featured-card__media {
  min-height: 280px;
  background: linear-gradient(135deg, var(--rd-ink), #333a54);
}

.rd-featured-card__body {
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.rd-featured-card__tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--rd-accent);
  text-transform: uppercase;
}

.rd-featured-card__title {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--rd-ink);
  line-height: 1.3;
}

.rd-featured-card__excerpt { font-size: 14.5px; color: var(--rd-muted); line-height: 1.6; margin: 0; }
.rd-featured-card__link { font-weight: 700; font-size: 14px; color: var(--rd-accent); }

.rd-post-card__excerpt { font-size: 13.5px; color: var(--rd-muted); line-height: 1.5; margin: 8px 0 0; }

.rd-btn--outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
}

.rd-btn--outline-white:hover { border-color: #fff; color: #fff; }

.rd-cta__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Artikel-layout (blogindlæg + indholdssider) ── */
.rd-article-shell { max-width: 760px; margin: 0 auto; padding: 64px 24px 0; }

.rd-backlink { font-size: 14px; font-weight: 600; color: var(--rd-accent); }
.rd-backlink:hover { color: var(--rd-accent-dark); }

.rd-article-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 28px 0 20px;
  font-size: 13px;
  color: var(--rd-muted);
  flex-wrap: wrap;
}

.rd-article-meta__tag { font-weight: 700; color: var(--rd-accent); text-transform: uppercase; }

.rd-article-shell h1 {
  font-family: var(--rd-font-display);
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 28px;
  color: var(--rd-ink);
  font-weight: 700;
}

.rd-article-shell h1:first-child { margin-top: 28px; }

.rd-article-body { font-size: 17px; line-height: 1.85; color: #333848; color: oklch(0.25 0.02 264); }

.rd-article-body h2,
.rd-article-body h3 {
  font-family: var(--rd-font-display);
  color: var(--rd-ink);
  font-weight: 700;
  margin: 40px 0 16px;
}

.rd-article-body h2 { font-size: 24px; }
.rd-article-body h3 { font-size: 19px; }
.rd-article-body p { margin: 0 0 20px; }
.rd-article-body ul, .rd-article-body ol { margin: 0 0 20px; padding-left: 1.4rem; }
.rd-article-body li { margin-bottom: 8px; }
.rd-article-body img { border-radius: 16px; }

.rd-article-body blockquote {
  margin: 32px 0;
  padding: 24px 28px;
  background: #fff;
  border-radius: 14px;
  border-left: 4px solid var(--rd-accent);
  font-style: italic;
  font-size: 16.5px;
  color: var(--rd-ink);
}

.rd-article-body blockquote p { margin: 0; }

.rd-inline-cta {
  margin: 56px 0 80px;
  padding: 32px;
  background: rgba(224, 82, 67, 0.06);
  background: oklch(0.66 0.19 24 / 0.06);
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.rd-inline-cta__title {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--rd-ink);
  margin-bottom: 6px;
}

.rd-inline-cta__text { font-size: 14.5px; color: var(--rd-muted); }

.rd-btn--accent-sm {
  background: var(--rd-accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
}

.rd-btn--accent-sm:hover { background: var(--rd-accent-dark); color: #fff; }

/* ── By-kort (region-sider) ── */
.rd-city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.rd-city-grid--3 { grid-template-columns: repeat(3, 1fr); }

.rd-city-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--rd-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.rd-city-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(32, 38, 58, 0.1);
}

.rd-city-card__name {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--rd-ink);
}

.rd-city-card__desc { font-size: 14px; color: var(--rd-muted); line-height: 1.6; margin: 0; }

.rd-city-card__link { font-weight: 700; font-size: 14px; color: var(--rd-accent); margin-top: auto; padding-top: 6px; }

/* ── Kontakt ── */
.rd-contact-grid {
  padding: 16px 56px 96px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: flex-start;
}

.rd-contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--rd-line);
}

.rd-contact-form__fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.rd-contact-form label { display: flex; flex-direction: column; gap: 6px; }
.rd-contact-form label.rd-field--full { grid-column: span 2; }

.rd-contact-form .rd-form-card__label { font-size: 13px; font-weight: 600; color: var(--rd-muted); }

.rd-contact-form input,
.rd-contact-form textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(32, 38, 58, 0.15);
  font-size: 15px;
  font-family: var(--rd-font-body);
  box-sizing: border-box;
  width: 100%;
  resize: vertical;
}

.rd-contact-form__submit {
  display: block;
  width: 100%;
  background: var(--rd-accent);
  color: #fff;
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  border: 0;
  cursor: pointer;
  font-family: var(--rd-font-body);
}

.rd-contact-form__submit:hover { background: var(--rd-accent-dark); }

.rd-contact-form__success {
  background: rgba(80, 160, 90, 0.12);
  border: 1px solid rgba(80, 160, 90, 0.4);
  color: #2c6435;
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 15px;
  margin-bottom: 20px;
}

.rd-info-card {
  background: var(--rd-ink);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
}

.rd-info-card__title {
  font-family: var(--rd-font-display);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 20px;
}

.rd-info-card__rows { display: flex; flex-direction: column; gap: 16px; font-size: 14.5px; }
.rd-info-card__label { font-size: 12px; color: var(--rd-ink-soft); margin-bottom: 4px; }
.rd-info-card__value { font-weight: 600; }
.rd-info-card__value a { color: #fff; }
.rd-info-card__value a:hover { color: var(--rd-ink-soft); }

/* ── Responsivt ── */
@media (max-width: 1080px) {
  .rd-nav { display: none; }
  .rd-menu-toggle { display: flex; }
  .rd-header .rd-btn--dark { display: none; }
}

@media (max-width: 900px) {
  .rd-header { padding: 16px 24px; }
  .rd-hero-dark { padding: 56px 24px 64px; }
  .rd-hero-dark h1 { font-size: 36px; }
  .rd-hero-dark__sub { font-size: 16px; }
  .rd-form-card { max-width: 100%; }
  .rd-steps { grid-template-columns: 1fr; gap: 36px; }
  .rd-post-grid { grid-template-columns: 1fr; }
  .rd-section--alt { padding-bottom: 64px; }
  .rd-page-head { padding: 40px 24px 24px; }
  .rd-page-head h1 { font-size: 32px; }
  .rd-hub-grid { grid-template-columns: 1fr; padding: 8px 24px 64px; }
  .rd-pillar-grid { grid-template-columns: 1fr; }
  .rd-city-grid, .rd-city-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .rd-contact-grid { grid-template-columns: 1fr; padding: 8px 24px 64px; }
  .rd-contact-form { padding: 24px; }
  .rd-contact-form__fields { grid-template-columns: 1fr; }
  .rd-contact-form label.rd-field--full { grid-column: auto; }
  .rd-featured-card { grid-template-columns: 1fr; }
  .rd-featured-card__media { min-height: 180px; }
  .rd-featured-card__body { padding: 28px; }
  .rd-tabs { padding: 16px 24px 0; }
  .rd-detail-hero { grid-template-columns: 1fr; padding: 32px 24px 0; gap: 32px; }
  .rd-detail-hero h1 { font-size: 32px; }
  .rd-detail-hero__image { height: 240px; }
  .rd-feature-grid { grid-template-columns: 1fr; }
  .rd-hero { grid-template-columns: 1fr; padding: 32px 24px 64px; gap: 32px; }
  .rd-hero h1 { font-size: 32px; }
  .rd-hero__image { height: 240px; }
  .rd-trust { gap: 32px; padding: 28px 24px; }
  .rd-section { padding: 64px 24px 0; }
  .rd-section:last-of-type { padding-bottom: 64px; }
  .rd-section h2, .rd-h2 { font-size: 26px; }
  .rd-vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .rd-split { grid-template-columns: 1fr; gap: 32px; }
  .rd-split .rd-media { height: 220px; }
  .rd-cta { margin: 64px 24px; padding: 40px 32px; }
  .rd-cta h2 { font-size: 26px; }
  .rd-price-card { padding: 20px; }
  .rd-footer { padding: 48px 24px 32px; }
  .rd-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .rd-vehicle-grid { grid-template-columns: 1fr; }
  .rd-city-grid, .rd-city-grid--3 { grid-template-columns: 1fr; }
  .rd-footer__grid { grid-template-columns: 1fr; }
}
