/* ==========================================================================
   SKR Auto — Designsystem
   Farver:  Antracit #1F2329 · Orange #E57C1F · Hvid · Grå nuancer
   Font:    Montserrat (overskrifter) · Inter (brødtekst)
   ========================================================================== */

/* ---------- 0. Skrifttyper (self-hosted, variable, latin) ---------------- */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400 600; font-display: swap;
  src: url('../fonts/inter-var.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: 'Montserrat'; font-style: normal; font-weight: 600 700; font-display: swap;
  src: url('../fonts/montserrat-var.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; }

/* ---------- 1. Tokens ---------------------------------------------------- */
:root {
  /* Brand */
  --c-ink:        #1F2329;
  --c-ink-900:    #15181D;
  --c-ink-700:    #2C323A;
  --c-ink-500:    #4A525C;
  --c-accent:     #E57C1F;   /* flader, ikoner, knapper */
  --c-accent-text:#B25508;   /* orange TEKST på lys baggrund (4,5:1+) */
  --c-accent-600: #C9660F;
  --c-accent-100: #FDF1E5;
  --c-green:      #2E7D52;
  --c-green-100:  #EAF4EE;

  /* Neutraler */
  --c-white:  #FFFFFF;
  --c-g-50:   #FAFAFA;
  --c-g-100:  #F4F5F6;
  --c-g-200:  #E8EAEC;
  --c-g-300:  #D5D8DC;
  --c-g-500:  #8A9199;   /* kun til dekoration/ikoner – ikke tekst */
  --c-g-600:  #5F6670;   /* mindste tekstfarve: 4,5:1 på hvid og g-100 */

  /* Typografi */
  --f-head: 'Montserrat', 'Manrope', system-ui, -apple-system, sans-serif;
  --f-body: 'Inter', 'Open Sans', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --s-1: .25rem;  --s-2: .5rem;   --s-3: .75rem;  --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;    --s-7: 3rem;    --s-8: 4rem;
  --s-9: 6rem;    --s-10: 8rem;

  /* Øvrigt */
  --radius:    4px;
  --radius-lg: 8px;
  --maxw:      1240px;
  --maxw-text: 720px;
  --shadow-sm: 0 1px 2px rgba(31,35,41,.06), 0 1px 3px rgba(31,35,41,.05);
  --shadow-md: 0 4px 16px rgba(31,35,41,.08);
  --shadow-lg: 0 12px 40px rgba(31,35,41,.12);
  --ease: cubic-bezier(.22,.61,.36,1);
  --header-h: 76px;
}

/* ---------- 2. Reset ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  font-family: var(--f-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--c-ink-700);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; }

/* ---------- 3. Typografi ------------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-head);
  color: var(--c-ink);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.25rem, 1.4rem + 3.6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 1.05rem + .8vw, 1.5rem); letter-spacing: -.01em; }
h4 { font-size: 1.0625rem; letter-spacing: 0; }
p  { text-wrap: pretty; }
p + p { margin-top: var(--s-4); }

.eyebrow {
  font-family: var(--f-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-accent-text);
  display: block;
  margin-bottom: var(--s-4);
}
.eyebrow--muted { color: var(--c-g-600); }
.lead {
  font-size: clamp(1.0625rem, 1rem + .35vw, 1.25rem);
  line-height: 1.65;
  color: var(--c-ink-500);
}
.u-muted { color: var(--c-g-600); }
.u-small { font-size: .875rem; }
.u-center { text-align: center; }
.u-mt-5 { margin-top: var(--s-5); }
.u-mt-6 { margin-top: var(--s-6); }
.u-nowrap { white-space: nowrap; }

/* ---------- 4. Layout ---------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--s-5); }
.section { padding-block: clamp(3.5rem, 2rem + 6vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem); }
.section--gray { background: var(--c-g-100); }
.section--ink { background: var(--c-ink); color: rgba(255,255,255,.78); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .lead { color: rgba(255,255,255,.72); }

.section-head { max-width: var(--maxw-text); margin-bottom: var(--s-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: var(--s-4); }

.grid { display: grid; gap: var(--s-5); grid-template-columns: 1fr; }
@media (min-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 980px) {
  .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1rem + 4vw, 4.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--top { align-items: start; }
  .split--reverse > *:first-child { order: 2; }
}

/* ---------- 5. Knapper --------------------------------------------------- */
.btn {
  --btn-bg: var(--c-accent);
  --btn-fg: var(--c-ink-900);
  --btn-bd: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--f-head);
  font-size: .9375rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1;
  padding: 1rem 1.75rem;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-decoration: none;
  cursor: pointer;
  transition: background .22s var(--ease), border-color .22s var(--ease),
              color .22s var(--ease), transform .22s var(--ease);
}
.btn:hover { --btn-bg: #F08A2E; --btn-bd: #F08A2E; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--ghost   { --btn-bg: transparent; --btn-fg: var(--c-ink); --btn-bd: var(--c-g-300); }
.btn--ghost:hover { --btn-bg: var(--c-ink); --btn-fg: #fff; --btn-bd: var(--c-ink); }
.btn--onink   { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.35); }
.btn--onink:hover { --btn-bg: #fff; --btn-fg: var(--c-ink); --btn-bd: #fff; }
.btn--wide { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-6); }
.btn-row--center { justify-content: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--f-head); font-weight: 600; font-size: .9375rem;
  color: var(--c-ink); text-decoration: none;
  border-bottom: 1.5px solid var(--c-accent); padding-bottom: 2px;
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.link-arrow:hover { gap: .85rem; color: var(--c-accent-text); }
.link-arrow::after { content: "→"; }

/* ---------- 6. Header ---------------------------------------------------- */
.topbar {
  background: var(--c-ink-900);
  color: rgba(255,255,255,.72);
  font-size: .8125rem;
  letter-spacing: .01em;
}
.topbar__inner { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); align-items: center; justify-content: space-between; padding-block: .6rem; }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--c-accent); }
.topbar__list { display: flex; flex-wrap: wrap; gap: var(--s-5); list-style: none; padding: 0; }
.topbar__list li { display: flex; align-items: center; gap: .45rem; }
.topbar svg { width: 15px; height: 15px; color: var(--c-accent); flex: none; }
@media (max-width: 720px) { .topbar { display: none; } }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-g-200);
  transition: box-shadow .25s var(--ease);
}
.header.is-stuck { box-shadow: var(--shadow-md); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); min-height: var(--header-h); }
.brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.brand img, .brand svg { height: 44px; width: auto; }

.nav { display: flex; align-items: center; gap: var(--s-1); }
.nav__list { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav__link {
  display: block;
  font-family: var(--f-head); font-size: .875rem; font-weight: 600;
  color: var(--c-ink-700); text-decoration: none;
  padding: .6rem .7rem; border-radius: var(--radius);
  transition: color .18s var(--ease), background .18s var(--ease);
}
.nav__link:hover { color: var(--c-accent-text); background: var(--c-g-100); }
.nav__link[aria-current="page"], .nav__item.is-current > .nav__link { color: var(--c-accent-text); }
.nav__drop a[aria-current="page"] { color: var(--c-accent-text); background: var(--c-g-100); }

.nav__item { position: relative; }
.nav__toggle { display: flex; align-items: center; gap: .3rem; background: none; border: 0; cursor: pointer; }
.nav__toggle svg { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.nav__item.is-open .nav__toggle svg { transform: rotate(180deg); }
.nav__drop {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 250px; padding: var(--s-2);
  background: #fff; border: 1px solid var(--c-g-200); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__item.is-open .nav__drop, .nav__item:hover .nav__drop { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__drop a {
  display: block; padding: .6rem .75rem; border-radius: var(--radius);
  font-size: .9375rem; text-decoration: none; color: var(--c-ink-700);
  transition: background .16s var(--ease), color .16s var(--ease);
}
.nav__drop a:hover { background: var(--c-g-100); color: var(--c-accent-text); }

.header__cta { display: flex; align-items: center; gap: var(--s-3); flex: none; }
.header__cta .btn { padding: .8rem 1.35rem; }

.burger {
  display: none; width: 44px; height: 44px; padding: 0;
  background: none; border: 1px solid var(--c-g-300); border-radius: var(--radius);
  cursor: pointer; align-items: center; justify-content: center;
}
.burger span { display: block; width: 20px; height: 1.5px; background: var(--c-ink); position: relative; transition: background .2s; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 1.5px; background: var(--c-ink);
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1080px) {
  /* backdrop-filter ville gøre headeren til containing block for den fixed nav */
  .header { backdrop-filter: none; background: #fff; }
  .burger { display: inline-flex; }
  .header__cta .btn--ghost { display: none; }
  .nav {
    position: fixed; inset: var(--header-h) 0 0 0;
    display: block; overflow-y: auto;
    background: #fff; padding: var(--s-5) var(--s-5) var(--s-8);
    transform: translateX(100%); visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), visibility .3s;
  }
  .nav.is-open { transform: translateX(0); visibility: visible; pointer-events: auto; }
  .nav__list { display: block; }
  .nav__link { padding: .9rem .25rem; font-size: 1.0625rem; border-bottom: 1px solid var(--c-g-200); border-radius: 0; }
  .nav__toggle { width: 100%; justify-content: space-between; }
  .nav__drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0; padding: 0 0 var(--s-3) var(--s-4);
    display: none; min-width: 0;
  }
  .nav__item.is-open .nav__drop { display: block; }
  .nav__item:hover .nav__drop { display: none; }
  .nav__item.is-open:hover .nav__drop { display: block; }
}
@media (max-width: 560px) {
  /* Callbaren i bunden har allerede "Bestil tid" – undgå navnløs ikonknap */
  .header__cta .btn { display: none; }
}

/* ---------- 7. Hero ------------------------------------------------------ */
.hero { position: relative; background: var(--c-ink); color: #fff; overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture { display: block; width: 100%; height: 100%; }
.hero__media img, .hero__media svg { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(21,24,29,.55) 0%, rgba(21,24,29,0) 30%, rgba(21,24,29,.65) 100%),
    linear-gradient(100deg, rgba(21,24,29,.97) 0%, rgba(21,24,29,.93) 34%,
                    rgba(21,24,29,.80) 56%, rgba(21,24,29,.46) 78%, rgba(21,24,29,.30) 100%);
}
@media (max-width: 900px) {
  .hero::after {
    background:
      linear-gradient(180deg, rgba(21,24,29,.62) 0%, rgba(21,24,29,.74) 45%, rgba(21,24,29,.88) 100%),
      linear-gradient(100deg, rgba(21,24,29,.62) 0%, rgba(21,24,29,.42) 100%);
  }
  .hero__media img { object-position: 62% center; }
}
.hero__inner { padding-block: clamp(4rem, 2rem + 10vw, 8.5rem); max-width: 760px; }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.8); margin-top: var(--s-5); max-width: 58ch; }
.hero__badges { display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); margin-top: var(--s-7); list-style: none; padding: 0; }
.hero__badges li { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.85); font-weight: 500; }
.hero__badges svg { width: 17px; height: 17px; color: var(--c-accent); flex: none; }

.hero--sub .hero__inner { padding-block: clamp(3rem, 2rem + 5vw, 5.5rem); }
.hero--sub h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.25rem); }

.crumbs { font-size: .8125rem; color: rgba(255,255,255,.6); margin-bottom: var(--s-4); }
.crumbs a { color: rgba(255,255,255,.85); text-decoration: none; }
.crumbs a:hover { color: var(--c-accent); }
.crumbs span { margin-inline: .45rem; opacity: .5; }

/* ---------- 8. USP-bånd -------------------------------------------------- */
.usp { border-bottom: 1px solid var(--c-g-200); background: var(--c-white); }
.usp__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.usp__item { padding: var(--s-6) var(--s-5); border-right: 1px solid var(--c-g-200); }
.usp__item:last-child { border-right: 0; }
.usp__item svg { width: 26px; height: 26px; color: var(--c-accent); margin-bottom: var(--s-3); }
.usp__item h3 { font-size: 1.0625rem; letter-spacing: 0; margin-bottom: .35rem; }
.usp__item p { font-size: .875rem; color: var(--c-g-600); line-height: 1.55; }
@media (max-width: 900px) {
  /* 2×2 i stedet for fire høje blokke */
  .usp__grid { grid-template-columns: 1fr 1fr; }
  .usp__item { padding: var(--s-5) var(--s-4); border-bottom: 1px solid var(--c-g-200); }
  .usp__item:nth-child(even) { border-right: 0; }
  .usp__item:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 359px) {
  .usp__grid { grid-template-columns: 1fr; }
  .usp__item { border-right: 0; border-bottom: 1px solid var(--c-g-200); padding-block: var(--s-4); }
  .usp__item:last-child { border-bottom: 0; }
}

/* ---------- 9. Kort ------------------------------------------------------ */
.card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--c-g-200); border-radius: var(--radius-lg);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
a.card:hover { border-color: var(--c-g-300); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card__media { aspect-ratio: 16/10; background: var(--c-ink); overflow: hidden; }
.card__media img, .card__media svg { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
a.card:hover .card__media img, a.card:hover .card__media svg { transform: scale(1.04); }
.card__body { padding: var(--s-5); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.card__body p { font-size: .9375rem; color: var(--c-g-600); line-height: 1.6; }
.card__more { margin-top: auto; font-family: var(--f-head); font-weight: 600; font-size: .875rem; color: var(--c-accent-text); }
.card__more::after { content: " →"; }
.card__body > svg, .card__icon {
  width: 34px; height: 34px; flex: none; color: var(--c-accent); stroke-width: 1.6;
}

.card--flat { border: 0; background: var(--c-g-100); }

/* Biler til salg */
.car .card__media { position: relative; }
.car__badge {
  position: absolute; top: .75rem; left: .75rem;
  font-family: var(--f-head); font-size: .75rem; font-weight: 700; letter-spacing: .04em;
  padding: .35rem .65rem; border-radius: var(--radius); background: #fff; color: var(--c-ink);
  box-shadow: var(--shadow-sm);
}
.car__badge--sold { background: var(--c-ink); color: #fff; }
.car__specs { font-family: var(--f-head); font-size: .8125rem !important; font-weight: 600; color: var(--c-ink-500) !important; }
.car__foot { margin-top: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-3); padding-top: var(--s-3); border-top: 1px solid var(--c-g-200); }
.car__price { font-family: var(--f-head); font-size: 1.25rem; color: var(--c-ink); }
.car--sold { opacity: .6; }
.car--sold .card__media img { filter: grayscale(1); }
.card--ink { background: var(--c-ink-700); border-color: rgba(255,255,255,.1); color: rgba(255,255,255,.75); }
.card--ink h3 { color: #fff; }
.card--ink p { color: rgba(255,255,255,.65); }

/* ---------- 10. Media / billeder ----------------------------------------- */
.media { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--c-ink); }
.media img, .media svg { width: 100%; height: 100%; object-fit: cover; }
.media--4x3 { aspect-ratio: 4/3; }
.media--16x9 { aspect-ratio: 16/9; }
.media--1x1 { aspect-ratio: 1/1; }

.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: var(--s-5); }
.stat__num { font-family: var(--f-head); font-size: clamp(2rem, 1.4rem + 2vw, 3rem); font-weight: 700; color: var(--c-accent); line-height: 1; letter-spacing: -.03em; }
.stat__label { margin-top: var(--s-2); font-size: .875rem; color: var(--c-g-600); }
.section--ink .stat__label { color: rgba(255,255,255,.6); }

/* ---------- 11. Lister --------------------------------------------------- */
.ticklist { list-style: none; padding: 0; display: grid; gap: var(--s-3); }
.ticklist li { display: flex; gap: var(--s-3); align-items: flex-start; font-size: .9875rem; }
.ticklist li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 3px; border-radius: 50%;
  background: var(--c-accent-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E57C1F' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.section--ink .ticklist li::before { background-color: rgba(229,124,31,.18); }
.ticklist--2 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--s-3) var(--s-5); }

.steps { list-style: none; padding: 0; counter-reset: step; display: grid; gap: var(--s-5); }
.steps li { counter-increment: step; display: grid; grid-template-columns: 46px 1fr; gap: var(--s-4); align-items: start; }
.steps li::before {
  content: counter(step,decimal-leading-zero);
  font-family: var(--f-head); font-weight: 700; font-size: .875rem;
  width: 46px; height: 46px; display: grid; place-items: center;
  border: 1.5px solid var(--c-accent); border-radius: 50%; color: var(--c-accent);
}
.steps h4 { margin-bottom: .25rem; }
.steps p { font-size: .9375rem; color: var(--c-g-600); }

.pricelist { border-top: 1px solid var(--c-g-200); }
.pricelist__row { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: space-between; align-items: baseline; padding: var(--s-4) 0; border-bottom: 1px solid var(--c-g-200); }
.pricelist__row strong { font-family: var(--f-head); }
.pricelist__row span { color: var(--c-g-600); font-size: .9375rem; }

/* ---------- 12. FAQ / accordion ------------------------------------------ */
.faq { border-top: 1px solid var(--c-g-200); }
.faq__item { border-bottom: 1px solid var(--c-g-200); }
.faq__h { font: inherit; margin: 0; }
.faq__q {
  width: 100%; display: flex; gap: var(--s-4); align-items: center; justify-content: space-between;
  padding: var(--s-5) 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--f-head); font-weight: 600; font-size: 1.0625rem; color: var(--c-ink);
  transition: color .18s var(--ease);
}
.faq__q:hover { color: var(--c-accent-text); }
.faq__q::after {
  content: ""; flex: none; width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231F2329' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/18px no-repeat;
  transition: transform .25s var(--ease);
}
.faq__item.is-open .faq__q::after { transform: rotate(45deg); }
.faq__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p { padding-bottom: var(--s-5); max-width: 68ch; color: var(--c-ink-500); }

/* ---------- 13. Formularer ----------------------------------------------- */
.form { display: grid; gap: var(--s-4); }
.form__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--s-4); }
.field { display: grid; gap: .45rem; }
.field label { font-family: var(--f-head); font-size: .8125rem; font-weight: 600; color: var(--c-ink); letter-spacing: .01em; }
.field label .req { color: var(--c-accent-text); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem;
  background: #fff; border: 1.5px solid var(--c-g-300); border-radius: var(--radius);
  font-size: .9875rem; color: var(--c-ink);
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px rgba(229,124,31,.14);
}
.field input::placeholder, .field textarea::placeholder { color: var(--c-g-600); }
.field__hint { font-size: .8125rem; color: var(--c-g-600); }
.field__error { font-size: .8125rem; font-weight: 600; color: #B3261E; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea {
  border-color: #B3261E; box-shadow: 0 0 0 3px rgba(179,38,30,.12);
}
.check { flex-wrap: wrap; }
.check.is-invalid { color: #B3261E; }
.check .field__error { flex-basis: 100%; }
.field--full { grid-column: 1 / -1; }

.filedrop {
  position: relative;
  display: grid; place-items: center; gap: .35rem; text-align: center;
  padding: var(--s-6) var(--s-4);
  border: 1.5px dashed var(--c-g-300); border-radius: var(--radius-lg);
  background: var(--c-g-50); cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.filedrop:hover, .filedrop.is-drag { border-color: var(--c-accent); background: var(--c-accent-100); }
.filedrop svg { width: 26px; height: 26px; color: var(--c-accent); }
.filedrop strong { font-family: var(--f-head); font-size: .9375rem; }
.filedrop small { color: var(--c-g-600); font-size: .8125rem; }
.filedrop input[type=file] { position: absolute; width: 1px; height: 1px; opacity: 0; }
.filedrop__names { font-size: .8125rem; color: var(--c-accent-text); font-weight: 600; }

.check { display: flex; gap: var(--s-3); align-items: flex-start; font-size: .875rem; color: var(--c-g-600); }
.check input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--c-accent); }

.form-note { font-size: .8125rem; color: var(--c-g-600); }
.form-status { padding: var(--s-4); border-radius: var(--radius); font-size: .9375rem; display: none; }
.form-status.is-ok   { display: block; background: var(--c-green-100); color: var(--c-green); border: 1px solid rgba(46,125,82,.25); }
.form-status.is-err  { display: block; background: #FDECEC; color: #B3261E; border: 1px solid rgba(179,38,30,.2); }

.form-panel { background: #fff; border: 1px solid var(--c-g-200); border-radius: var(--radius-lg); padding: clamp(1.5rem, 1rem + 2vw, 2.5rem); box-shadow: var(--shadow-sm); }

/* ---------- 14. Kontakt -------------------------------------------------- */
.contact-list { list-style: none; padding: 0; display: grid; gap: var(--s-5); }
.contact-list li { display: grid; grid-template-columns: 40px 1fr; gap: var(--s-4); }
.contact-list svg { width: 22px; height: 22px; color: var(--c-accent); margin-top: 4px; }
.contact-list strong { display: block; font-family: var(--f-head); font-size: .8125rem; text-transform: uppercase; letter-spacing: .1em; color: var(--c-g-600); margin-bottom: .2rem; }
.contact-list a { color: var(--c-ink); text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--c-accent-text); }

.hours { list-style: none; padding: 0; }
.hours li { display: flex; justify-content: space-between; gap: var(--s-4); padding: .6rem 0; border-bottom: 1px solid var(--c-g-200); font-size: .9375rem; }
.hours li:last-child { border-bottom: 0; }
.hours span:first-child { color: var(--c-g-600); }
.hours span:last-child { font-weight: 600; font-family: var(--f-head); }
.footer .hours span:first-child { color: rgba(255,255,255,.62); }
.footer .hours li { border-bottom-color: rgba(255,255,255,.08); }

.map { border: 0; width: 100%; aspect-ratio: 16/9; border-radius: var(--radius-lg); }
iframe.map { filter: grayscale(1) contrast(1.05); transition: filter .4s var(--ease); }
iframe.map:hover { filter: grayscale(0); }
.map-consent { display: grid; place-items: center; background: var(--c-g-100); border: 1px dashed var(--c-g-300); text-align: center; padding: var(--s-5); }
.map-consent__inner { display: grid; gap: var(--s-4); justify-items: center; max-width: 46ch; }
.map-consent__inner svg { width: 32px; height: 32px; color: var(--c-accent); }
.map-consent__inner p { font-size: .9375rem; color: var(--c-g-600); }
.map-consent__inner a { color: var(--c-g-600); }
@media (max-width: 700px) { .map { aspect-ratio: 4/3; } }

/* ---------- 15. Anmeldelser ---------------------------------------------- */
.quote { display: flex; flex-direction: column; gap: var(--s-4); padding: var(--s-6); background: #fff; border: 1px solid var(--c-g-200); border-radius: var(--radius-lg); height: 100%; }
.quote__stars { display: flex; gap: 3px; color: var(--c-accent); }
.quote__stars svg { width: 16px; height: 16px; }
.quote p { font-size: .9875rem; color: var(--c-ink-500); flex: 1; }
.quote footer { font-family: var(--f-head); font-size: .875rem; font-weight: 600; color: var(--c-ink); }
.quote footer span { display: block; font-weight: 400; font-size: .8125rem; color: var(--c-g-600); margin-top: .15rem; }

/* ---------- 16. CTA-bånd ------------------------------------------------- */
.cta-band { background: var(--c-ink); color: #fff; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; right: -8%; top: -40%; width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(229,124,31,.22) 0%, transparent 68%);
}
.cta-band__inner { position: relative; display: grid; gap: var(--s-6); align-items: center; padding-block: clamp(3rem, 2rem + 4vw, 5rem); }
@media (min-width: 900px) { .cta-band__inner { grid-template-columns: 1.4fr auto; gap: var(--s-8); } }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.72); margin-top: var(--s-3); max-width: 56ch; }
.cta-band .btn-row { margin-top: 0; }

/* ---------- 17. Footer --------------------------------------------------- */
.footer { background: var(--c-ink-900); color: rgba(255,255,255,.62); font-size: .9375rem; }
.footer__top { display: grid; gap: var(--s-7); padding-block: clamp(3rem, 2rem + 3vw, 4.5rem); }
@media (min-width: 860px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--s-6); } }
.footer h4 { color: #fff; font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: var(--s-4); }
.footer ul { list-style: none; padding: 0; display: grid; gap: .6rem; }
.footer a { color: rgba(255,255,255,.62); text-decoration: none; transition: color .18s var(--ease); }
.footer a:hover { color: var(--c-accent); }
.footer__brand img, .footer__brand svg { height: 46px; width: auto; margin-bottom: var(--s-4); }
.footer__brand p { max-width: 38ch; line-height: 1.65; }
.footer__badges { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-5); }
.pill { display: inline-flex; align-items: center; gap: .35rem; font-size: .75rem; font-weight: 600; font-family: var(--f-head); padding: .35rem .7rem; border: 1px solid rgba(255,255,255,.18); border-radius: 100px; color: rgba(255,255,255,.8); }
.pill--green { border-color: rgba(46,125,82,.5); color: #7FD1A4; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: var(--s-5); display: flex; flex-wrap: wrap; gap: var(--s-3) var(--s-5); justify-content: space-between; font-size: .8125rem; }

/* ---------- 18. Diverse -------------------------------------------------- */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  grid-template-columns: 1fr 1fr; gap: 1px; background: var(--c-g-200);
  box-shadow: 0 -2px 16px rgba(31,35,41,.12);
}
.callbar a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .95rem; background: #fff; text-decoration: none;
  font-family: var(--f-head); font-weight: 600; font-size: .9375rem; color: var(--c-ink);
}
.callbar a.is-primary { background: var(--c-accent); color: var(--c-ink-900); }
.callbar svg { width: 18px; height: 18px; }
@media (max-width: 720px) { .callbar { display: grid; } body { padding-bottom: 56px; } }

.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

.skip {
  position: absolute; left: 0; top: 0; z-index: 200; transform: translateY(-200%);
  background: var(--c-accent); color: var(--c-ink-900); padding: .75rem 1.25rem; border-radius: 0 0 var(--radius) 0;
  font-family: var(--f-head); font-weight: 600; text-decoration: none;
}
.skip:focus { transform: none; }
:focus-visible { outline: 2.5px solid var(--c-accent); outline-offset: 3px; border-radius: 2px; }

.prose { max-width: var(--maxw-text); }
.prose h2 { margin-top: var(--s-7); margin-bottom: var(--s-4); }
.prose h3 { margin-top: var(--s-6); margin-bottom: var(--s-3); }
.prose > *:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2rem; display: grid; gap: .5rem; margin-top: var(--s-4); }

/* ---------- 19. Cookie-samtykke ------------------------------------------ */
.cc {
  position: fixed; z-index: 120; left: var(--s-4); bottom: var(--s-4);
  width: min(560px, calc(100% - 2 * var(--s-4)));
  background: #fff; color: var(--c-ink); border: 1px solid var(--c-g-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: var(--s-5); display: grid; gap: var(--s-4);
  max-height: calc(100vh - 2 * var(--s-4)); overflow-y: auto;
}
.cc__title { font-family: var(--f-head); font-size: 1.125rem; margin: 0; }
.cc__text { margin: 0; font-size: .9375rem; line-height: 1.55; color: var(--c-ink-500); }
.cc__text a { color: var(--c-accent-text); }
.cc__details { display: grid; gap: var(--s-3); border-top: 1px solid var(--c-g-200); padding-top: var(--s-4); }
.cc__details[hidden] { display: none; }
.cc__row { display: grid; grid-template-columns: 20px 1fr; gap: var(--s-3); align-items: start; cursor: pointer; }
.cc__row input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--c-accent); }
.cc__row strong { display: block; font-family: var(--f-head); font-size: .9375rem; }
.cc__row small { display: block; font-size: .8125rem; color: var(--c-g-600); line-height: 1.45; }
.cc__actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-2); }
.cc__btn { padding: .85rem .75rem; font-size: .875rem; }
.cc__btn:focus-visible, .cc__row input:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; }
.footer__bottom button.linklike { background: none; border: 0; padding: 0; font: inherit; color: inherit; text-decoration: underline; cursor: pointer; }
@media (max-width: 720px) {
  .cc { left: 0; bottom: 56px; width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; max-height: calc(100vh - 56px); padding: var(--s-4); }
  .cc__actions { grid-template-columns: 1fr 1fr; }
  .cc__actions [data-cc="custom"] { grid-column: 1 / -1; order: 3; }
}
@media print { .cc { display: none; } }
.table-wrap { overflow-x: auto; margin-block: var(--s-4); }
.cookie-table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: .875rem; }
.cookie-table th, .cookie-table td { text-align: left; vertical-align: top; padding: .6rem .75rem; border-bottom: 1px solid var(--c-g-200); }
.cookie-table th { font-family: var(--f-head); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--c-g-600); background: var(--c-g-100); }
.cookie-table code { font-size: .8125rem; background: var(--c-g-100); padding: .1rem .3rem; border-radius: 3px; }
