/* =========================================================
   Ikast Bilpleje — mørk luksus
   Display: Fraunces · Body: Hanken Grotesk · Accent: guld
   ========================================================= */

:root {
  --obsidian: #0b0c0e;
  --graphite: #14161a;
  --graphite-2: #1b1e24;
  --line: rgba(243, 241, 236, 0.10);
  --line-strong: rgba(243, 241, 236, 0.18);
  --gold: #c79a4f;
  --gold-soft: #e3c486;
  --gold-deep: #a37a35;
  --chalk: #f3f1ec;
  --ash: #9aa0a8;
  --ash-dim: #6b7178;
  --max: 1180px;
  --radius: 14px;
  --radius-sm: 10px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--obsidian);
  color: var(--chalk);
  font-family: "Hanken Grotesk", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip (ikke hidden): klipper evt. vandret overløb uden at gøre body til en
     ekstra scroll-container — hidden gav et "ryk" ved scroll-op på mobil. */
  overflow-x: clip;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--gold); color: var(--obsidian); }

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--obsidian);
  border-radius: 8px;
  font-weight: 600;
  transition: top 180ms var(--ease);
}
.skip-link:focus { top: 16px; }

.shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 24px;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
}
.eyebrow-gold { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 180ms var(--ease), background 180ms var(--ease),
    border-color 180ms var(--ease), color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1a1305;
  box-shadow: 0 10px 30px rgba(199, 154, 79, 0.22);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(199, 154, 79, 0.32); }
.btn-ghost {
  background: transparent;
  color: var(--chalk);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.btn-lg { min-height: 54px; padding: 0 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 280ms var(--ease), border-color 280ms var(--ease), backdrop-filter 280ms var(--ease);
}
.topbar[data-scrolled] {
  background: rgba(11, 12, 14, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-text { display: grid; line-height: 1.15; }
.brand-text strong { font-weight: 600; font-size: 1rem; }
.brand-text small { color: var(--ash); font-size: 0.74rem; }

.nav { display: flex; gap: 22px; margin-left: auto; }
.nav a {
  font-size: 0.94rem;
  color: var(--ash);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
  transition: color 160ms var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 220ms var(--ease);
}
.nav a:hover { color: var(--chalk); }
.nav a:hover::after { width: 100%; }

.topbar-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.phone-link { color: var(--chalk); font-weight: 600; font-size: 0.94rem; }
.phone-link:hover { color: var(--gold-soft); }

.lang-toggle { display: inline-flex; border: 1px solid var(--line-strong); border-radius: 999px; overflow: hidden; }
.lang-toggle button {
  padding: 6px 11px;
  background: transparent;
  border: 0;
  color: var(--ash);
  font: inherit; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.03em;
  cursor: pointer;
  transition: 160ms var(--ease);
}
.lang-toggle button:hover { color: var(--gold-soft); }
.lang-toggle button.is-on { background: var(--gold); color: #1a1305; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--chalk); margin: 0 auto; transition: 180ms var(--ease); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=2100&q=82");
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 16s ease-out forwards;
}
.hero-veil {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,12,14,0.55) 0%, rgba(11,12,14,0.15) 30%, rgba(11,12,14,0.78) 78%, var(--obsidian) 100%),
    radial-gradient(80% 60% at 75% 30%, rgba(199,154,79,0.12), transparent 60%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: 0 24px 84px;
}
.hero-title {
  font-size: clamp(3.2rem, 9vw, 7.2rem);
  font-weight: 400;
  margin-bottom: 22px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.hero-title span { display: block; }
.hero-title-sub { color: var(--gold-soft); font-style: italic; }
.hero-lead {
  max-width: 540px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  color: rgba(243, 241, 236, 0.82);
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-scroll {
  position: absolute;
  right: 24px;
  bottom: 84px;
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
}
.hero-scroll::after {
  content: "";
  display: block;
  width: 1px; height: 46px;
  margin: 12px auto 0;
  background: linear-gradient(var(--gold), transparent);
}

/* Signature: gloss sheen across the headline */
.sheen {
  background: linear-gradient(100deg,
    var(--chalk) 0%, var(--chalk) 38%,
    var(--gold-soft) 48%, #fff7e6 52%, var(--gold-soft) 56%,
    var(--chalk) 66%, var(--chalk) 100%);
  background-size: 280% 100%;
  background-position: 120% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheenSweep 4.6s var(--ease) 0.5s infinite;
}

@keyframes sheenSweep {
  0% { background-position: 120% 0; }
  38%, 100% { background-position: -40% 0; }
}
@keyframes heroZoom { to { transform: scale(1); } }

/* ---------- Bands ---------- */
.band { padding-block: clamp(64px, 8vw, 104px); position: relative; }
.band-soft { background: linear-gradient(180deg, var(--graphite), var(--obsidian)); }
.band-config {
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(199,154,79,0.07), transparent 60%),
    var(--graphite);
  border-block: 1px solid var(--line);
}
.band-head { max-width: 680px; margin-bottom: 48px; }
.band-head h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); margin-bottom: 14px; }
.band-sub { color: var(--ash); font-size: 1.05rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: none;
}
.step {
  padding: 30px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite);
  transition: border-color 220ms var(--ease), transform 220ms var(--ease);
}
.step:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.step-no {
  font-family: "Fraunces", serif;
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
  opacity: 0.85;
}
.step h3 { font-size: 1.35rem; margin-bottom: 8px; }
.step p { color: var(--ash); }

/* ---------- Configurator ---------- */
.config { display: grid; gap: 24px; }

.vehicle-card {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(150px, 1fr));
  gap: 16px;
  align-items: end;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--graphite-2);
}

.segment { margin: 0; padding: 0; border: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.segment legend { grid-column: 1 / -1; font-size: 0.78rem; color: var(--ash); margin-bottom: 6px; padding: 0; }
.segment label {
  position: relative;
  display: grid; place-items: center;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: 160ms var(--ease);
}
.segment input { position: absolute; opacity: 0; pointer-events: none; }
.segment label:has(input:checked) {
  background: var(--gold);
  color: #1a1305;
  border-color: var(--gold);
}

.field { display: grid; gap: 7px; }
.field label { font-size: 0.78rem; color: var(--ash); letter-spacing: 0.02em; }
.field select,
.field input,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  background: var(--obsidian);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--chalk);
  font: inherit;
  transition: border-color 160ms var(--ease), box-shadow 160ms var(--ease);
}
.field select { appearance: none; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--ash) 50%), linear-gradient(135deg, var(--ash) 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.field select:focus,
.field input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 154, 79, 0.18);
}
.field select:disabled { opacity: 0.45; cursor: not-allowed; }
.contact-form textarea { resize: vertical; line-height: 1.5; }

.vehicle-note {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  background: rgba(199, 154, 79, 0.07);
  color: rgba(243, 241, 236, 0.8);
  font-weight: 500;
  border-radius: 0 8px 8px 0;
}

.hint {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 1px solid var(--gold-deep);
  border-radius: var(--radius-sm);
  background: rgba(199, 154, 79, 0.08);
  color: var(--gold-soft);
  font-family: "Fraunces", serif;
  font-size: 1.1rem;
}
.hint[hidden] { display: none; }
.hint-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(199, 154, 79, 0.22);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(199, 154, 79, 0); } }

.workspace[hidden] { display: none; }
.workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}
.workspace-main { display: grid; gap: 38px; }
.shop { display: grid; gap: 20px; }
.shop-head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: end; gap: 12px 18px; }
.shop-head > div { flex: 1 1 240px; min-width: 0; }
.shop-head h3 { font-size: 1.7rem; }

.size-badge {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: rgba(199, 154, 79, 0.12);
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 0.88rem;
  text-align: center;
}

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.svc {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--graphite);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.svc:hover { transform: translateY(-3px); border-color: var(--line-strong); }
.svc.is-selected {
  border-color: var(--gold);
  box-shadow: 0 18px 50px rgba(199, 154, 79, 0.16);
}
/* gloss sweep on selected card */
.svc.is-selected::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 247, 230, 0.10) 50%, transparent 65%);
  background-size: 250% 100%;
  animation: cardSheen 3.4s var(--ease) infinite;
  pointer-events: none;
}
@keyframes cardSheen { 0% { background-position: 120% 0; } 60%, 100% { background-position: -40% 0; } }

.svc .pill {
  align-self: start;
  display: inline-flex;
  padding: 4px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 14px;
}
.svc.is-selected .pill { border-color: var(--gold); color: var(--gold-soft); }
.svc h4 { font-family: "Fraunces", serif; font-weight: 500; font-size: 1.3rem; margin: 0 0 6px; }
.svc .svc-desc { color: var(--ash); font-size: 0.92rem; margin-bottom: 16px; }
.svc-detail { color: var(--ash); font-size: 0.88rem; margin: 0 0 16px; }
.svc-save {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--gold);
  color: #1a1305;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 14px rgba(199, 154, 79, 0.3);
}
.svc-save sup { font-size: 0.7em; }
.svc-detail-note { margin: 12px 0 0; color: var(--gold-soft); font-size: 0.82rem; }
.svc-meta { margin-top: auto; display: grid; gap: 4px; }
.svc-meta .muted { color: var(--ash-dim); font-size: 0.78rem; }
.svc-price { font-family: "Fraunces", serif; font-size: 1.7rem; color: var(--chalk); font-variant-numeric: tabular-nums; }
.svc-actions { display: flex; gap: 8px; margin-top: 16px; }
.svc-actions .mini {
  flex: 1;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--chalk);
  font: inherit; font-weight: 600; font-size: 0.86rem;
  cursor: pointer;
  transition: 160ms var(--ease);
}
.svc-actions .mini:hover { border-color: var(--gold); color: var(--gold-soft); }
.svc-actions .mini.is-on { background: var(--gold); color: #1a1305; border-color: var(--gold); }

/* ---------- Addons ---------- */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.addon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--graphite);
  cursor: pointer;
  transition: 160ms var(--ease);
}
.addon:hover { border-color: var(--line-strong); }
.addon.is-selected { border-color: var(--gold); background: rgba(199, 154, 79, 0.08); }
.addon input { width: 20px; height: 20px; accent-color: var(--gold); cursor: pointer; flex-shrink: 0; }
.addon-text { display: grid; gap: 1px; min-width: 0; }
.addon-text strong { font-weight: 600; font-size: 0.95rem; }
.addon-text b { color: var(--gold-soft); font-weight: 600; font-size: 0.88rem; font-variant-numeric: tabular-nums; }
.addon-qty { justify-content: space-between; cursor: default; }
.addon-stepper { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.step-btn {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: transparent;
  color: var(--chalk);
  font-size: 1.1rem; line-height: 1;
  cursor: pointer;
  transition: 160ms var(--ease);
}
.step-btn:hover { border-color: var(--gold); color: var(--gold-soft); }
.step-count { min-width: 18px; text-align: center; font-weight: 600; font-variant-numeric: tabular-nums; }

/* ---------- Før/Efter-slider ---------- */
.ba-wrap { max-width: 860px; margin: 0 auto; }
.ba {
  position: relative;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  aspect-ratio: 3 / 2;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-top { clip-path: inset(0 50% 0 0); }
/* Blødt skift mellem biler (opacity animeres, clip-path/left gør ikke → slæb forbliver instant) */
.ba-base, .ba-top, .ba-divider, .ba-handle, .ba-tag { transition: opacity 300ms var(--ease); }
.ba.is-switching .ba-base,
.ba.is-switching .ba-top,
.ba.is-switching .ba-divider,
.ba.is-switching .ba-handle,
.ba.is-switching .ba-tag { opacity: 0; }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--gold-soft);
  transform: translateX(-1px); pointer-events: none;
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 46px; height: 46px;
  border-radius: 999px;
  background: var(--obsidian);
  border: 2px solid var(--gold);
  color: var(--gold-soft);
  display: grid; place-items: center;
  cursor: ew-resize;
  animation: baPulse 1.8s var(--ease) infinite;
}
/* Pulserer indtil brugeren rører slideren; stopper når .ba får .is-touched.
   Genstarter automatisk ved refresh (klassen findes ikke på frisk DOM). */
@keyframes baPulse {
  0%   { box-shadow: 0 0 0 0 rgba(199, 154, 79, 0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(199, 154, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(199, 154, 79, 0); }
}
.ba.is-touched .ba-handle { animation: none; }
.ba-tag {
  position: absolute; bottom: 14px;
  padding: 4px 10px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-radius: 999px;
}
.ba-tag-left { left: 14px; background: rgba(11, 12, 14, 0.78); color: var(--chalk); }
.ba-tag-right { right: 14px; background: var(--gold); color: #1a1305; }
.ba-cue { margin-top: 16px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.ba-uparrow {
  display: block; line-height: 0;
  animation: baFloat 1.9s var(--ease) infinite;
}
.ba-uparrow svg { display: block; filter: drop-shadow(0 0 7px rgba(199, 154, 79, 0.4)); }
@keyframes baFloat {
  0%, 100% { transform: translateY(4px); }
  50% { transform: translateY(-3px); }
}
.ba-hint {
  margin: 0; text-align: center;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ash);
}
.ba-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(11, 12, 14, 0.7);
  border: 1px solid var(--line-strong);
  color: var(--chalk);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: 160ms var(--ease);
}
.ba-nav:hover { border-color: var(--gold); color: var(--gold-soft); }
.ba-prev { left: 12px; }
.ba-next { right: 12px; }
.ba-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.ba-dot {
  width: 9px; height: 9px; padding: 0;
  border: 0; border-radius: 999px;
  background: var(--line-strong);
  cursor: pointer; transition: 150ms var(--ease);
}
.ba-dot:hover { background: var(--ash); }
.ba-dot.is-on { background: var(--gold); }

/* ---------- Summary ---------- */
.summary {
  position: sticky;
  top: 92px;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--graphite-2), var(--graphite));
}
.summary h3 { font-size: 1.5rem; margin-bottom: 18px; }
.summary-list { display: grid; gap: 12px; margin-bottom: 18px; }
.summary-list div { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.summary-list dt { color: var(--ash); font-size: 0.86rem; }
.summary-list dd { margin: 0; text-align: right; font-weight: 500; }
.summary-total {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.summary-total span { color: var(--ash); font-size: 0.86rem; }
.summary-total strong { font-family: "Fraunces", serif; font-size: 1.9rem; color: var(--gold-soft); font-variant-numeric: tabular-nums; }
.summary-fields { display: grid; gap: 12px; margin-bottom: 18px; }

/* ---------- Split sections ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: 52px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(320px, 1fr) minmax(0, 0.92fr); }
.split-copy h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 16px; }
.split-copy > p { color: var(--ash); margin-bottom: 22px; }
.split-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.split-media::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 120px rgba(11, 12, 14, 0.55);
  pointer-events: none;
}
.split-media img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }

.ticks { display: grid; gap: 12px; margin-bottom: 26px; }
.ticks li { position: relative; padding-left: 30px; color: rgba(243, 241, 236, 0.86); }
.ticks li::before {
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 16px; height: 9px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}

/* ---------- Gift ---------- */
.gift-panel {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  background: var(--graphite);
}
.gift-panel-copy h3 { font-size: 1.7rem; margin-bottom: 12px; }
.gift-panel-copy > p { color: var(--ash); margin-bottom: 20px; }
.gift-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-soft); margin-bottom: 12px;
}
.gift-amounts { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.chip {
  flex: 1 1 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--chalk);
  font: inherit; font-weight: 600; font-size: 0.92rem;
  font-variant-numeric: tabular-nums;
  cursor: pointer;
  transition: 150ms var(--ease);
}
.chip:hover { border-color: var(--gold); color: var(--gold-soft); }
.chip.is-on { background: var(--gold); color: #1a1305; border-color: var(--gold); }
.gift-custom {
  width: 100%;
  min-height: 44px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: var(--obsidian);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--chalk);
  font: inherit;
}
.gift-custom:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(199,154,79,0.18); }

/* Gavekort-formular */
.gift-form { display: grid; gap: 12px; }
.gift-form .gift-amounts,
.gift-form .gift-custom { margin-bottom: 0; }
.gift-subhead {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-soft);
  margin: 10px 0 0;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 820px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--graphite);
  padding: 4px 20px;
  transition: border-color 200ms var(--ease);
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 0;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; transition: transform 200ms var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ash); padding: 0 0 18px; }

/* ---------- Contact ---------- */
.contact-lines { display: grid; gap: 8px; margin-top: 8px; }
.contact-lines li { color: var(--ash); }
.contact-lines a:hover { color: var(--gold-soft); }
.contact-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--graphite-2);
}
.inquiry { margin: 0; padding: 0; border: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.inquiry legend { font-size: 0.78rem; color: var(--ash); margin-bottom: 8px; padding: 0; }
.inquiry label {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
  transition: 160ms var(--ease);
}
.inquiry input { position: absolute; opacity: 0; pointer-events: none; }
.inquiry span { display: grid; gap: 2px; }
.inquiry strong { font-size: 0.95rem; }
.inquiry small { color: var(--ash); font-size: 0.76rem; }
.inquiry label:has(input:checked) { border-color: var(--gold); background: rgba(199, 154, 79, 0.08); }

.form-note { color: var(--gold-soft); font-size: 0.9rem; min-height: 1em; }
.form-note.is-error { color: #e08585; }
/* Honeypot: skjult uden at skubbe ud af skærmen (left:-9999px gav vandret overløb på mobil) */
.hp-field { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; opacity: 0; pointer-events: none; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-top: 56px; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 36px; justify-content: space-between; padding-bottom: 36px; }
.footer-brand { max-width: 420px; display: grid; gap: 12px; }
.footer-brand p { color: var(--ash); }
.footer-fine { font-size: 0.86rem; color: var(--ash-dim) !important; }
.footer-nav { display: grid; gap: 10px; align-content: start; }
.footer-nav a { color: var(--ash); font-size: 0.94rem; }
.footer-nav a:hover { color: var(--gold-soft); }
.footer-base {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 24px; gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--ash-dim); font-size: 0.84rem;
}
.text-link { background: none; border: 0; color: var(--ash); font: inherit; cursor: pointer; }
.text-link:hover { color: var(--gold-soft); }

/* ---------- Cookie ---------- */
.cookie { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 150; display: flex; justify-content: center; }
.cookie[hidden] { display: none; }
.cookie-card {
  max-width: 620px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(20, 22, 26, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.cookie-card p { color: var(--ash); font-size: 0.9rem; flex: 1 1 260px; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { min-height: 42px; padding: 0 18px; font-size: 0.9rem; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav, .phone-link { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    padding: 18px 24px 26px;
    background: rgba(11, 12, 14, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    gap: 4px;
  }
  .nav.is-open a { padding: 12px 0; font-size: 1.05rem; }
  .workspace { grid-template-columns: 1fr; }
  .summary { position: static; }
  .vehicle-card { grid-template-columns: 1fr 1fr; }
  .split, .split.reverse { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-media { order: -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .steps, .cards-grid, .addon-grid, .inquiry { grid-template-columns: 1fr; }
  .gift-panel { grid-template-columns: 1fr; padding: 28px; gap: 26px; }
  .vehicle-card { grid-template-columns: 1fr; }
  .segment { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding-bottom: 64px; }
  .hero-scroll { display: none; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}

/* Topbar: undgå vandret overløb på smalle skærme — rækken kan ellers ikke krympe */
@media (max-width: 560px) {
  .topbar-inner { gap: 12px; }
  .brand { flex-shrink: 1; min-width: 0; }
  .brand-text { min-width: 0; }
  .brand-text strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand-text small { display: none; }            /* skjul taglinen på mobil */
  .topbar-actions .btn-gold { display: none; }    /* "Få pris" findes i hero + menu */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .sheen { color: var(--chalk); -webkit-text-fill-color: currentColor; }
  .reveal { opacity: 1; transform: none; }
  .hero-bg { transform: none; }
}
