/* =====================================================================
   fixStore – design v14 "kontrolrum"
   Mørkt, fladt og struktureret (efter brugerens reference): nær-sort
   baggrund med et fint gråt kvadrat-net som tekstur, matte paneler med
   tynde kanter, fed uppercase-typografi (Chakra Petch/Rajdhani) og orange
   som eneste accent. Alle bokse og knapper har afskårne hjørner; baggrunds-
   teksturen er vores egen: tekniske kryds-markeringer (blueprint-kryds).
   Billederne beholdes og vises tydeligt.
   Alle klasser/id'er som HTML + script.js bruger, er bevaret.
   ===================================================================== */

/* ===== Tokens – samme materialer som referencen: rene grå, synlige streger ===== */
:root {
  /* Matte grå flader – et trin lysere end nær-sort, så siden ikke bliver tung */
  --bg: #1e1e1e;
  --surface: #262626;
  --surface-2: #2c2c2c;
  --line: #3a3a3a;
  --line-2: #4c4c4c;
  --ink: #f5f5f5;
  --text: #b5b5b5;
  --muted: #8a8a8a;
  /* Foto-bånd, footer */
  --night: #222222;
  --night-line: rgba(255, 255, 255, .12);
  --night-text: rgba(255, 255, 255, .72);
  /* Accent – samme orange som logoet */
  --accent: #f97316;
  --accent-2: #fb923c;
  --accent-dark: #ea580c;
  --accent-soft: rgba(249, 115, 22, .14);
  --ring: 0 0 0 4px rgba(249, 115, 22, .2);
  /* Form & skygger – fladt, ingen svævende skygger */
  --radius: 0;
  --radius-sm: 0;
  --shadow-sm: none;
  --shadow: none;
  --font: "Rajdhani", "Inter", system-ui, sans-serif;
  --font-display: "Chakra Petch", "Rajdhani", system-ui, sans-serif;
  --container: 1150px;
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; font-size: 17px; }
html, body { overflow-x: clip; }
body {
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.55;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }

h1, h2, h3 { color: var(--ink); font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: .01em; text-transform: uppercase; }
h4 { color: var(--ink); }

/* Fremhævede ord i overskrifter */
.accent { color: var(--accent); }

::selection { background: rgba(249, 115, 22, .85); color: #fff; }

/* ===== Knapper – som referencens: afskårne hjørner (clip-path), uppercase, løft ved hover ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: .9rem; line-height: 1;
  text-transform: uppercase; letter-spacing: .06em;
  padding: 16px 28px; border: 1px solid transparent; border-radius: 0; cursor: pointer;
  -webkit-clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  transition: transform .12s ease, filter .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
.btn--primary { background: var(--accent); color: #1f0e02; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--sm {
  padding: 10px 16px; font-size: .78rem; background: var(--accent-soft); border-color: transparent; color: var(--accent-2);
  -webkit-clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
.btn--sm:hover { background: rgba(249, 115, 22, .26); color: #fff; }
.btn--lg { padding: 18px 30px; font-size: .94rem; }
.btn--block { width: 100%; }
/* Ghost-knapper på mørke flader er lyse */
.page-hero .btn--ghost, .contact-section .btn--ghost {
  background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4);
}
.page-hero .btn--ghost:hover, .contact-section .btn--ghost:hover {
  border-color: #fff; color: #fff;
}

/* ===== Eyebrow / sektions-hoveder ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font); font-weight: 700; font-size: .74rem;
  text-transform: uppercase; letter-spacing: .16em; color: var(--accent-2);
  margin-bottom: 14px;
}
.eyebrow--light, .page-hero .eyebrow, .contact-section .eyebrow { color: var(--accent-2); }

.section { padding: 92px 0; }
/* farve2: hver anden sektion er en LYS flade – mørk/lys-skiftet kan ses med det samme.
   Samme design (snit-hjørner, orange, kryds-tekstur) – kortene er bare hvide og teksten mørk. */
.section--blue {
  background-color: #ececec;   /* ren lys flade – ingen tekstur */
  --bg: #ececec;
  --surface: #ffffff;
  --surface-2: #f5f5f5;
  --line: #d8d8d8;
  --line-2: #bfbfbf;
  --ink: #1b1b1b;
  --text: #454545;
  --muted: #6e6e6e;
  --accent-2: #c2410c;              /* mørkere orange – lys orange kan ikke læses på lys baggrund */
  --accent-soft: rgba(234, 88, 12, .1);
}
.section--blue .btn--sm:hover { color: #7c2d12; }
.section--blue .form__status.err { color: #dc2626; }
.section__head { max-width: 640px; margin: 0 auto 50px; text-align: center; }   /* alle sektioner åbner ens: centreret eyebrow + overskrift */
.section__head--center { margin-inline: auto; text-align: center; }
.section__head h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); text-wrap: balance; }
.section__head p { margin-top: 14px; font-size: 1.07rem; color: var(--text); text-wrap: pretty; }
.section__head p a { color: var(--accent-2); font-weight: 600; }

/* ===== Header – mørk, hører til siden og scroller væk med den; nettet skinner igennem ===== */
/* Headeren ligger OVEN PÅ hero-billedet (billedet går helt op i toppen) – den scroller stadig væk med siden */
.site-top { position: absolute; top: 0; left: 0; right: 0; z-index: 60; background: transparent; }
.header {
  position: relative; z-index: 50;
  background: transparent;
  padding: 18px 16px;   /* boksen har luft til alle sider – også på små skærme */
}
/* "Floating" header: en fritsvævende boks med samme snit-hjørner som knapperne.
   Den scroller VÆK med siden – aldrig sticky/fixed. */
.header__inner {
  display: flex; align-items: center; justify-content: space-between; height: var(--header-h);
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid var(--line);
  -webkit-clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
/* Mobilmenuen ligger inde i boksen og stikker ud under den – slå klippet fra mens den er åben */
.header__inner:has(.nav.open) { -webkit-clip-path: none; clip-path: none; }
.logo { display: inline-flex; align-items: center; gap: 9px; }
.logo__text { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; letter-spacing: -.01em; color: var(--ink); line-height: 1; }
.logo__accent { color: var(--accent); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav a { font-family: var(--font-display); font-weight: 600; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text); padding: 9px 2px; transition: color .15s; }
.nav a:hover { color: var(--ink); }
.nav a.active { color: var(--accent); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ===== Hero (forside): fotoet fylder hele fladen, tekst og åbningstider ovenpå ===== */
.hero { position: relative; overflow: hidden; background: var(--night); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__bg.is-fallback { display: none; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(30, 30, 30, .92) 0%, rgba(30, 30, 30, .66) 52%, rgba(30, 30, 30, .22) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  align-items: center; gap: clamp(44px, 6vw, 90px);
  padding-top: calc(clamp(84px, 10vw, 124px) + 112px); padding-bottom: clamp(84px, 10vw, 124px);   /* +112px = plads til den svævende header */
}
.hero__content { max-width: 620px; }
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .76rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent-2);
}
.tag__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 4.2vw, 3.4rem); line-height: 1.08; margin: 20px 0 20px; }
.hero h1 .accent { color: var(--accent-2); }
.hero__lead { font-size: 1.13rem; color: rgba(255, 255, 255, .87); max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* Åbningstiderne står i et mørkt panel oven på fotoet */
.hero__card {
  justify-self: end; width: min(330px, 100%);
  background: rgba(30, 30, 30, .92); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 22px 24px;
}
.hero__card-label { display: block; font-weight: 700; font-size: .72rem; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); margin-bottom: 10px; }
.hero__hours { list-style: none; }
.hero__hours li { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-top: 1px solid var(--line); color: var(--ink); font-weight: 600; font-size: .93rem; }
.hero__hours li:first-child { border-top: 0; padding-top: 0; }
.hero__hours li span:first-child { color: var(--text); font-weight: 500; }
.hero__card-btn { margin-top: 16px; }
.hero__card-spm { margin-top: 8px; }

/* Nøgletal under hero – rækken med orange tal, som på referencen */
.hero__stats { position: relative; z-index: 2; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.hero__stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { display: flex; flex-direction: column; gap: 2px; padding: 24px 18px; border-left: 1px solid var(--line); min-width: 0; }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat strong { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; color: var(--accent); font-size: 1.2rem; letter-spacing: .02em; }
.stat span { font-size: .84rem; color: var(--muted); }

/* ===== Sidehoved (undersider): billedet er synligt, teksten står til venstre ===== */
.page-hero { position: relative; overflow: hidden; background: var(--night); color: #fff; padding: calc(84px + 112px) 0 76px; }
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: .62;
  filter: saturate(.92);
}
.page-hero__bg.is-fallback { display: none; }
.page-hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, rgba(30, 30, 30, .93) 0%, rgba(30, 30, 30, .62) 55%, rgba(30, 30, 30, .3) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.7rem); max-width: 640px; }
.page-hero p { color: rgba(255, 255, 255, .85); max-width: 560px; margin: 14px 0 0; font-size: 1.06rem; }

/* USP-punkter: enkel linje med orange flueben */
.uspline { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 28px; margin-top: 20px; }
.uspline li { display: inline-flex; align-items: center; gap: 8px; font-size: .92rem; font-weight: 600; }
.uspline li::before { content: "✓"; color: var(--accent-2); font-weight: 800; }
.page-hero .uspline li, .contact-section .uspline li { color: rgba(255, 255, 255, .9); }
.contact__head .uspline { justify-content: center; }

/* ===== Mærke-bånd (rullende logoer, forside) ===== */
/* ===== Kort (fælles) ===== */
.grid { display: grid; gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm);
  transition: transform .12s ease, border-color .12s ease;
}
.card:hover { transform: translateY(-2px); border-color: var(--accent); }

/* ===== Afskårne hjørner – samme snit som knapperne – på alle firkantede bokse ===== */
.card, .hero__card, .contact__form, .finder, .finder__card,
.hours--card, .infopanel, .browse__brand {
  -webkit-clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
/* Mindre/lave bokse får et mindre snit */
.faq details, .browse__model, .bookform__estimat {
  -webkit-clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}
/* Prissøgerens søgeforslag skal kunne stikke ud under panelet – slå klippet fra mens listen er åben */
.finder:has(.finder__suggest:not([hidden])) { -webkit-clip-path: none; clip-path: none; }

/* Boksene er RENE flader – stjernerne ligger kun på baggrundene, så kortene står skarpt oven på dem */

/* HUD-hjørner: orange vinkler i de to hele hjørner (de andre to er skåret af) */
.hero__card, .contact__form, .finder, .hours--card { position: relative; }
.hero__card::before, .contact__form::before, .finder::before, .hours--card::before,
.hero__card::after, .contact__form::after, .finder::after, .hours--card::after {
  content: ""; position: absolute; width: 14px; height: 14px; pointer-events: none;
}
.hero__card::before, .contact__form::before, .finder::before, .hours--card::before {
  top: 0; right: 0; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent);
}
.hero__card::after, .contact__form::after, .finder::after, .hours--card::after {
  bottom: 0; left: 0; border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent);
}

/* ===== Services (forside) ===== */
.service__icon {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 0;
  background: var(--accent-soft); color: var(--accent-2); margin-bottom: 16px;
}
.service__icon svg { width: 26px; height: 26px; }
.service--photo { padding: 0; overflow: hidden; }
.service--photo .service__body { padding: 20px 22px 22px; }
.service__img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--surface-2); }
.service h3 { font-size: 1.22rem; margin-bottom: 8px; }
.service p { color: var(--text); font-size: .95rem; }
.service ul { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 6px; }
.service ul li { font-size: .86rem; font-weight: 500; color: var(--text); padding-left: 18px; position: relative; }
.service ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* ===== Gode råd / tips (forside) ===== */
.tip { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.tip__media {
  position: relative; width: 52px; height: 52px; border-radius: 0; overflow: hidden;
  display: grid; place-items: center; background: var(--accent-soft);
  color: var(--accent-2); margin-bottom: 16px;
}
.tip__media svg { width: 25px; height: 25px; }
.tip__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tip h3 { font-size: 1.15rem; margin-bottom: 8px; }
.tip p { color: var(--text); font-size: .95rem; }

/* ===== Proces-trin (forside): samme kort-stil som resten af siden ===== */
.section--proces .steps { list-style: none; }
.step__num {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 2rem; line-height: 1; margin-bottom: 12px; color: var(--accent);
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--text); font-size: .95rem; }

/* ===== Zig-zag feature-rækker (Om os) ===== */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature--flip .feature__visual { order: -1; }
.feature__body h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 14px; }
.feature__body > p { color: var(--text); font-size: 1.07rem; }
.feature__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 0; border: 1px solid var(--line); box-shadow: var(--shadow); background: var(--surface-2); }
.feature__img.is-fallback { object-fit: contain; }

.ticks { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.ticks li { padding-left: 30px; position: relative; font-weight: 500; color: var(--text); }
.ticks li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 800; }

/* ===== Anmeldelser ===== */
.quote { display: flex; flex-direction: column; }
.quote__stars { color: #eab308; letter-spacing: 2px; margin-bottom: 12px; }
.quote p { color: var(--ink); font-size: 1rem; }
.quote footer { margin-top: 16px; font-weight: 600; color: var(--muted); }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 10px; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 2px 20px; }
.faq details[open] { border-color: var(--line-2); }
.faq summary { list-style: none; cursor: pointer; font-weight: 600; color: var(--ink); padding: 16px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); font-weight: 400; line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--text); padding-bottom: 17px; }

/* ===== Åbningstider-kort (lyst) ===== */
.hours--card {
  max-width: 460px; margin: 0 auto; list-style: none;
  background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--line);
}
.hours--card li { display: flex; justify-content: space-between; gap: 16px; padding: 15px 24px; border-top: 1px solid var(--line); font-weight: 600; color: var(--ink); }
.hours--card li:first-child { border-top: 0; }
.hours--card li span:first-child { color: var(--text); font-weight: 500; }

/* ===== Model-finder (priser) ===== */
.finder { max-width: 600px; background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; }
.finder--page { max-width: 620px; margin: 0 auto; }
.finder--full { max-width: 900px; }
.finder__box { position: relative; }
.finder__searchwrap { position: relative; display: flex; align-items: center; }
.finder__searchwrap svg { position: absolute; left: 18px; color: var(--muted); pointer-events: none; }
.finder__input {
  width: 100%; font-family: inherit; font-size: 1.03rem; color: var(--ink);
  padding: 15px 18px 15px 50px; border: 1px solid var(--line-2); border-radius: 0; background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
}
.finder__input::placeholder { color: var(--muted); }
.finder__input:focus { outline: none; border-color: var(--accent); box-shadow: var(--ring); }
.finder__suggest {
  position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 20;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 0; box-shadow: var(--shadow);
  overflow: hidden; max-height: 320px; overflow-y: auto;
}
.finder__sugg {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%;
  font-family: inherit; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 13px 18px; border-bottom: 1px solid var(--line); font-weight: 600; font-size: .95rem; color: var(--ink);
}
.finder__sugg:last-child { border-bottom: 0; }
.finder__sugg:hover { background: var(--accent-soft); color: var(--accent-2); }
.finder__sugg small { color: var(--muted); font-weight: 500; }
.finder__suggnavn { flex: 1 1 auto; }
.finder__suggimg { width: 34px; height: 34px; flex: none; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 0; padding: 2px; }
.finder__noresult { padding: 16px 18px; color: var(--muted); font-size: .92rem; }
.finder__noresult a { color: var(--accent-2); font-weight: 600; }
.finder__chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }
.finder__chip {
  font-family: var(--font-display); font-weight: 600; font-size: .76rem; text-transform: uppercase; letter-spacing: .05em; color: var(--text);
  background: var(--bg); border: 1px solid var(--line-2); padding: 8px 15px; cursor: pointer; transition: all .15s;
}
.finder__chip:hover { border-color: var(--accent); color: var(--accent-2); background: var(--accent-soft); }
.finder__result { margin-top: 22px; }
.finder__card { background: var(--surface-2); border: 1px solid var(--line); border-radius: 0; padding: 22px 24px; animation: fadeUp .25s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.finder__cardhead { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.finder__billede { width: 64px; height: 64px; flex: none; object-fit: contain; background: #fff; border: 1px solid var(--line); border-radius: 0; padding: 6px; }
.finder__model { font-size: 1.3rem; margin-bottom: 10px; }
.finder__cardhead .finder__model { margin-bottom: 0; }
.finder__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.finder__row:last-of-type { border-bottom: 0; }
.finder__row span:first-child { color: var(--text); }
.finder__pris { font-weight: 700; color: var(--ink); white-space: nowrap; }
.finder__pris--aftale { color: var(--accent-2); font-weight: 700; }
.finder__ask { font-weight: 600; color: var(--accent-2); white-space: nowrap; }
.finder__book { margin-top: 18px; }
.finder__note { color: var(--muted); font-size: .86rem; margin-top: 16px; }
.finder__note a { color: var(--accent-2); font-weight: 600; }
.finder__or { display: flex; align-items: center; gap: 14px; margin: 28px 0 24px; color: var(--muted); font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.finder__or::before, .finder__or::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }

/* ===== Bladr: kategori → mærke → model ===== */
.browse { max-width: 920px; margin: 0 auto; }
.browse__tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 26px; }
.browse__tab {
  border: 1px solid var(--line-2); background: var(--surface); color: var(--text);
  padding: 10px 20px; font-family: var(--font-display); font-size: .8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  cursor: pointer; transition: all .15s ease;
}
.browse__tab:hover { border-color: var(--accent); color: var(--accent-2); }
.browse__tab.is-on { background: var(--accent); border-color: var(--accent); color: #1f0e02; }
.browse__brands { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 16px; }
.browse__brand {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 0;
  padding: 22px 16px; cursor: pointer; font: inherit; text-align: center;
  transition: border-color .15s ease; box-shadow: var(--shadow-sm);
}
.browse__brand:hover { border-color: var(--accent); }
.browse__brandimg {
  width: 72px; height: 72px; display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1px solid var(--line); border-radius: 0; overflow: hidden;
}
.browse__brandimg img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.browse__brandimg.is-tom { background: var(--accent-soft); border-color: transparent; }
.browse__brandinit { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--accent-2); }
.browse__brandnavn { font-weight: 600; color: var(--ink); }
.browse__brand small { color: var(--muted); font-size: .8rem; }
.browse__back {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 18px;
  background: none; border: 0; color: var(--accent-2); font: inherit; font-weight: 600; cursor: pointer;
}
.browse__back:hover { text-decoration: underline; }
.browse__title { font-size: 1.35rem; margin-bottom: 18px; }
.browse__models { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.browse__model {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 0;
  padding: 14px 18px; cursor: pointer; font: inherit; font-weight: 600; color: var(--text);
  text-align: left; transition: all .15s ease;
}
.browse__model:hover { border-color: var(--accent); color: var(--accent-2); background: var(--accent-soft); }
.browse__chev { color: var(--muted); font-size: 1.2rem; line-height: 1; }
.browse__panel .finder__card { max-width: 600px; margin: 0 auto; }

/* ===== Produkter (tilbehør) ===== */
.product { padding: 0; overflow: hidden; }
.product__img { aspect-ratio: 4 / 3; width: 100%; object-fit: contain; background: #fff; padding: 18px; }
.product__img.is-fallback { object-fit: contain; }
.product__body { padding: 20px 22px 22px; }
.product h3 { font-size: 1.12rem; margin-bottom: 4px; }
.product p { color: var(--text); font-size: .9rem; }
.product__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.price { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--ink); }

/* ===== Kontakt-bånd (kontakt.html): synligt billede + hvidt formular-kort ===== */
.contact-section { position: relative; overflow: hidden; background: var(--night); padding-top: calc(84px + 112px); }
.contact__bg {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; opacity: .52;
  filter: saturate(.92);
}
.contact__bg.is-fallback { display: none; }
.contact__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(30, 30, 30, .55) 0%, rgba(30, 30, 30, .85) 100%);
}
.contact-section__glow { display: none; }
.contact-section > .container { position: relative; z-index: 2; }
.contact { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; gap: 44px; align-items: start; }
.contact--single { display: block; max-width: 680px; margin: 0 auto; }
.contact__head { text-align: center; margin-bottom: 34px; }
.contact__lead { align-self: start; }
.contact__title { font-size: clamp(1.8rem, 3.6vw, 2.5rem); line-height: 1.1; margin-bottom: 16px; color: #fff; }
.contact__sub { font-size: 1.06rem; color: rgba(255, 255, 255, .85); max-width: 460px; }
.contact__head .contact__sub { max-width: 500px; margin-inline: auto; }
.contact__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 32px; }
.contact__head .contact__cta { justify-content: center; margin: 24px 0 0; }
.contact__head .contact__cta:empty { display: none; }
.infopanel { border: 1px solid var(--night-line); border-radius: var(--radius); overflow: hidden; background: rgba(255, 255, 255, .06); }
.infopanel__row { display: grid; gap: 6px; padding: 18px 22px; border-top: 1px solid var(--night-line); }
.infopanel__row:first-child { border-top: 0; }
.infopanel__label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, .65); }
.infopanel__val { color: #fff; font-weight: 600; font-size: 1.02rem; }
.infopanel__contact { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.infopanel__contact a:hover { text-decoration: underline; }
.infopanel__dot { color: rgba(255, 255, 255, .55); }
.infopanel .hours { list-style: none; display: flex; flex-direction: column; gap: 3px; }
.infopanel .hours li { display: flex; justify-content: space-between; gap: 16px; font-size: 1rem; color: #fff; font-weight: 600; }
.infopanel .hours li span:first-child { color: rgba(255, 255, 255, .75); font-weight: 500; }

/* ===== Formular-kort + felter ===== */
.contact__form { background: linear-gradient(180deg, var(--surface), var(--surface-2)); border: 1px solid var(--line); border-radius: 0; padding: 30px; }
.bookform { display: flex; flex-direction: column; gap: 18px; }
.bookform__group { display: flex; flex-direction: column; gap: 10px; }
.bookform__label { font-weight: 600; font-size: .96rem; color: var(--ink); }
.field__opt { font-weight: 500; color: var(--muted); font-size: .85em; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: var(--font-display); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink); cursor: pointer;
  background: var(--bg); border: 1px solid var(--line-2); padding: 10px 16px;
  transition: border-color .15s, background .15s, color .15s;
}
.chip:hover { border-color: var(--accent); }
.chip.is-on { border-color: var(--accent); background: var(--accent); color: #1f0e02; }
.bookform__estimat {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--accent-soft); border: 1px solid rgba(249, 115, 22, .25); border-radius: var(--radius-sm); padding: 13px 18px;
}
.bookform__estimat span { color: var(--text); font-weight: 600; font-size: .9rem; }
.bookform__estimat strong { color: var(--accent-2); font-size: 1.12rem; font-family: var(--font-display); }
.bookform #bookSend { margin-top: 4px; }
.bookform__receipt { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 14px 0; }
.bookform__receipt p { color: var(--text); max-width: 400px; font-size: .94rem; }

.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field-row > .field { min-width: 0; }
.field label { font-weight: 600; font-size: .9rem; color: var(--ink); }
.field input, .field textarea, .field select {
  font-family: inherit; font-size: .95rem; color: var(--ink); width: 100%; min-width: 0;
  padding: 12px 14px; border: 1px solid var(--line-2); border-radius: var(--radius-sm); background: var(--bg);
  transition: border-color .15s, box-shadow .15s, background .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background: var(--surface); box-shadow: var(--ring); }
.field textarea { resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none; cursor: pointer;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23aab0bb' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.field select[hidden], .field input[hidden] { display: none; }
.field .field__hint { margin: 2px 0 0; font-size: .85rem; color: var(--muted); }
.field #bookModelText { margin-top: 8px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form__status { font-weight: 600; font-size: .9rem; text-align: center; min-height: 20px; color: var(--text); }
.form__status a { color: var(--accent-2); font-weight: 700; }
.form__status.ok { color: var(--accent-2); }
.form__status.err { color: #f87171; }
/* Lille note under et formular-kort (fx link til FAQ) */
.formfoot { text-align: center; margin-top: 20px; color: var(--muted); font-size: .92rem; }
.contact-section .formfoot { color: rgba(255, 255, 255, .7); }
.formfoot a { color: var(--accent-2); font-weight: 600; }
.contact-section .formfoot a { color: var(--accent-2); }
.formfoot a:hover { text-decoration: underline; }

/* Kvittering (deles af booking + simple formularer) */
.wiz__check { width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 1.7rem; font-weight: 700; }
.wiz__title { font-size: 1.2rem; color: var(--ink); }
.wiz__ref { background: var(--accent-soft); color: var(--accent-2); border-radius: 0; padding: 7px 16px; font-size: .88rem; }
.wiz__ref b { letter-spacing: 1.5px; }

/* ===== Footer – fladt og enkelt: logo + genveje øverst, info nederst ===== */
.footer { background: #141414; border-top: 1px solid var(--line); color: var(--night-text); padding: 54px 16px 0; }
.footer__row { display: flex; align-items: center; justify-content: space-between; gap: 16px 36px; flex-wrap: wrap; padding-bottom: 26px; }
.footer__row--top { border-bottom: 1px solid var(--night-line); margin-bottom: 26px; }
.footer .logo__text { font-size: 1.6rem; }
.logo--light .logo__text { color: #fff; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 30px; }
.footer__nav a { font-family: var(--font-display); font-weight: 600; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text); transition: color .15s; }
.footer__nav a:hover { color: #fff; }
.footer__tagline { font-size: .93rem; color: var(--night-text); max-width: 470px; }
.footer__contact { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 24px; }
.footer__contact a, .footer__contact span { color: var(--night-text); font-size: .93rem; font-weight: 600; transition: color .15s; }
.footer__contact a:hover { color: var(--accent-2); }
.footer__bottom { margin-top: 14px; border-top: 1px solid var(--night-line); padding: 18px 0; }
.footer__bottom .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(255, 255, 255, .42);
}

/* ===== Mobil-bjælke (Ring / Book) ===== */
.callbar { display: none; }
@media (max-width: 720px) {
  .callbar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: var(--surface); border-top: 1px solid var(--line);
    box-shadow: 0 -8px 26px -14px rgba(0, 0, 0, .6);
  }
  .callbar__btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 48px;
    font-family: var(--font-display); font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .05em;
    -webkit-clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
    clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  }
  .callbar--single { grid-template-columns: 1fr; }
  .callbar__call { background: var(--surface); color: var(--ink); border: 1px solid var(--line-2); }
  .callbar__book { background: var(--accent); color: #1f0e02; }
  body { padding-bottom: 72px; }
}

/* ===== Scroll-til-top ===== */
.to-top {
  position: fixed; right: 22px; bottom: 24px; z-index: 44;
  width: 44px; height: 44px; display: grid; place-items: center;
  border: 0; cursor: pointer;
  -webkit-clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  background: var(--accent); color: #1f0e02;
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s, background .15s;
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--accent-dark); }
.to-top svg { width: 21px; height: 21px; }
@media (max-width: 720px) { .to-top { bottom: 84px; } }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav {
    position: absolute; left: 16px; right: 16px; top: calc(var(--header-h) + 22px); z-index: 49;
    flex-direction: column; align-items: stretch;
    background: var(--surface); border: 1px solid var(--line);
    padding: 8px 24px 18px; gap: 0;
    display: none;
    -webkit-clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
  }
  .nav.open { display: flex; }
  .nav a { padding: 12px 4px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: flex; }
  /* Mobil: teksten øverst, åbningstiderne nedenunder – fotoet bag det hele */
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding-top: calc(60px + 112px); padding-bottom: 64px; }
  .hero__content { max-width: 560px; }
  .hero__scrim { background: rgba(30, 30, 30, .82); }
  .hero__card { justify-self: start; width: 100%; max-width: 440px; }
  .feature { grid-template-columns: 1fr; gap: 32px; }
  .feature--flip .feature__visual { order: 0; }
  .feature__img { max-width: 520px; }
  .contact { grid-template-columns: 1fr; gap: 32px; }
  .section__head { text-align: center; margin-inline: auto; }
  .hero__stats-inner { grid-template-columns: 1fr 1fr; }
  .stat { border-left: 0; padding-left: 0; padding-block: 13px; }
  .section { padding: 70px 0; }
  .page-hero { padding: calc(60px + 112px) 0 54px; }
}
@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
  .footer__row { padding-bottom: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .hero h1 { font-size: clamp(1.8rem, 8.6vw, 2.2rem); }
  .contact__form, .finder { padding: 22px 18px; }
}
