/* ============================================================
   Simon Møller ApS — Tømrer & Entreprise, Vejle
   Global stylesheet — design tokens + components + responsive
   Fonts: Comfortaa (headings) + Inter (body)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --navy: #0F2540;
  --navy-deep: #0A1929;
  --blue: #2A6FBF;
  --sky: #4A90D9;
  --sky-light: #EBF4FF;
  --sky-light2: #C5DCF5;
  --sky-tint: #CFE0F7;
  --navy-2: #1A3A5C;
  --sky-rgb: 74,144,217;
  --blue-rgb: 42,111,191;
  --navy-rgb: 15,37,64;
  --navy-deep-rgb: 10,25,41;
  --dark-rgb: 10,28,58;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --off-white-rgb: 247,249,252;
  --text-dark: #1A1A2E;
  --text-body: #444444;
  --text-muted: #888888;
  --glass-fill: rgba(255,255,255,0.13);
  --glass-border: rgba(255,255,255,0.22);
  --line: #E2E8F0;

  --r-card: 20px;
  --r-input: 12px;
  --pill: 999px;
  --shadow-card: 0 4px 32px rgba(var(--navy-rgb),0.08);
  --shadow-elev: 0 8px 48px rgba(var(--navy-rgb),0.14);
  --shadow-nav: 0 2px 24px rgba(var(--navy-rgb),0.10);
  --ease: cubic-bezier(0.4,0,0.2,1);
  --maxw: 1600px;
  --photo-grad: linear-gradient(to top, rgba(var(--dark-rgb),0.88) 0%, rgba(var(--dark-rgb),0.3) 40%, transparent 70%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--white); color: var(--text-body);
  zoom: 1.15;
  font-family: 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
/* zoom:1.15 er et desktop-greb — på mobil gør den alt 15% for bredt (vandret scroll). */
@media (max-width: 900px) { body { zoom: 1; } }
h1,h2,h3,h4,h5 { font-family: 'Comfortaa', cursive; color: var(--text-dark); margin: 0; font-weight: 700; letter-spacing: -0.01em; line-height: 1.15; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(var(--maxw), calc(100% - clamp(56px, 11vw, 160px))); margin: 0 auto; }
.u-sky { text-decoration: underline; text-decoration-color: var(--sky); text-decoration-thickness: 4px; text-underline-offset: 6px; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--sky); color: var(--sky-ink, #fff); padding: 10px 16px; border-radius: 0 0 10px 0; z-index: 2000; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 28px; border-radius: var(--pill); border: 2px solid transparent; cursor: pointer;
  transition: all 0.2s var(--ease); white-space: nowrap; }
.btn svg { width: 18px; height: 18px; }
.btn-sky { background: var(--sky); color: var(--sky-ink, #fff); box-shadow: 0 8px 24px -8px rgba(var(--sky-rgb),0.6); }
.btn-sky:hover { background: var(--blue); transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 30px -8px rgba(var(--blue-rgb),0.6); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-2px) scale(1.02); }
.btn-grad { background: linear-gradient(135deg, var(--blue), var(--sky)); color: var(--sky-ink, #fff); box-shadow: var(--shadow-elev); }
.btn-grad:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-outline-light { background: transparent; border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-navy { background: transparent; border-color: var(--line); color: var(--navy); }
.btn-outline-navy:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.btn-lg { font-size: 16px; padding: 16px 36px; font-weight: 700; }
.btn-block { width: 100%; }
.circ-arrow { width: 42px; height: 42px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.25s var(--ease); }
.circ-arrow svg { width: 18px; height: 18px; color: var(--navy); }
a:hover > .circ-arrow, .circ-arrow:hover { transform: translateX(3px); }

/* ---------- Badges / eyebrows ---------- */
.eyebrow { font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 13px; letter-spacing: 0.3px; color: var(--sky); }
.eyebrow-center { display: inline-flex; align-items: center; gap: 14px; }
.eyebrow-center::before, .eyebrow-center::after { content: ""; width: 28px; height: 2px; background: var(--sky); border-radius: 2px; display: inline-block; }
.badge-pill { display: inline-flex; align-items: center; gap: 8px; font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 13px; padding: 8px 16px; border-radius: var(--pill); }
/* Ikon-eneste badge (24/9): rund chip uden tekst - ens padding hele vejen rundt */
.badge-pill.badge-ikon { padding: 11px; font-size: 15px; gap: 0; }
.badge-pill.badge-ikon .mwh-svc-ico, .badge-pill.badge-ikon svg, .badge-pill.badge-ikon i { width: 1.25em; height: 1.25em; }
.badge-sky { background: rgba(var(--sky-rgb),0.18); border: 1px solid rgba(var(--sky-rgb),0.4); color: var(--sky); }
.badge-glass { background: var(--glass-fill); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid var(--glass-border); color: #fff; }
/* AI-genereret ydelses-ikon — renderes som MASKE i currentColor, så det
   skifter farve på hover præcis som Lucide-ikonerne (hvid på mørk osv.) */
.mwh-svc-ico { width: 1.2em; height: 1.2em; display: inline-block; vertical-align: -0.25em; background-color: currentColor; -webkit-mask-size: contain; mask-size: contain; -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: center; mask-position: center; }
.mg-ic .mwh-svc-ico { width: 22px; height: 22px; }

/* ---------- Section header ---------- */
.sec { padding: 128px 0; }
.sec-head { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.sec-head .eyebrow { margin-bottom: 16px; display: inline-flex; }
.sec-head h2, .sec-head h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.sec-head h2.nowrap-desktop { white-space: nowrap; }
@media (max-width: 600px) { .sec-head h2.nowrap-desktop { white-space: normal; } }
.sec-sub { color: var(--text-muted); font-size: 17px; line-height: 1.6; margin-top: 16px; }

/* ---------- Navbar ---------- */
.nav { position: fixed; top: 16px; left: 24px; right: 24px; z-index: 1000; }
.nav-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: rgba(255,255,255,0.9); -webkit-backdrop-filter: blur(16px) saturate(1.4); backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(var(--navy-rgb),0.08); border-radius: var(--pill); padding: 16px 16px 16px 26px; box-shadow: var(--shadow-nav);
  transition: background 0.3s var(--ease); }
.nav.scrolled .nav-inner { background: #fff; }
.nav-brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.nav-brand img { height: 48px; width: auto; max-width: none; filter: brightness(0); }
/* Mange menupunkter (Ydelser, Priser, Oplagte spørgsmål, Om os, Kontakt osv.)
   maa ALDRIG presse CTA-knappen ud over kanten af navbaren. min-width:0
   tillader flex-itemet reelt at krympe under sit indhold, saa nav-links er
   det eneste der giver efter — nav-brand og nav-cta har flex-shrink:0 og
   forbliver altid fuldt synlige. (Bevidst INGEN overflow-x her: det ville
   pga. CSS'ens kobling mellem overflow-x/-y ogsaa klippe "Ydelser ▾"-
   dropdown'et, som stikker ned under baren.) */
.nav-links { display: flex; align-items: center; gap: 8px; flex-shrink: 1; min-width: 0; }
.nav-links a { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 15px; color: var(--navy); transition: opacity 0.2s; }
.nav-links > a, .nav-item > a { white-space: nowrap; padding: 11px 18px; border-radius: var(--pill); transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.nav-links > a:hover, .nav-item > a:hover { background: var(--sky-light); color: var(--blue); }
.nav-links a.active { background: var(--sky-light); color: var(--blue); opacity: 1; }
.nav-item { position: relative; }
.nav-item > a { display: inline-flex; align-items: center; gap: 6px; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 15px; color: var(--navy); cursor: pointer; transition: opacity 0.2s; }
.nav-item > a:hover { opacity: 0.65; }
.nav-item > a svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.nav-item:hover > a svg { transform: rotate(180deg); }
.nav-item::after { content: ""; position: absolute; left: -12px; right: -12px; top: 100%; height: 18px; }
.nav-drop { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 232px; background: rgba(var(--navy-deep-rgb),0.97); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.14); border-radius: 14px; padding: 8px; display: flex; flex-direction: column; gap: 2px; opacity: 0; visibility: hidden; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease); box-shadow: 0 20px 44px rgba(8,18,33,0.4); z-index: 20; }
.nav-item:hover .nav-drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop a { color: rgba(255,255,255,0.78); font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; padding: 10px 14px; border-radius: 9px; white-space: nowrap; transition: background 0.18s, color 0.18s; }
.nav-drop a:hover { background: rgba(255,255,255,0.08); color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone { display: flex; align-items: center; gap: 10px; padding-right: 16px; border-right: 1.5px solid var(--line); }
.nav-phone .np-ic { width: 40px; height: 40px; border-radius: 50%; background: var(--sky-light); color: var(--sky-text, var(--blue)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s, color 0.2s; }
.nav-phone .np-ic svg { width: 18px; height: 18px; }
.nav-phone:hover .np-ic { background: var(--sky); color: var(--sky-ink, #fff); }
.np-tx { display: flex; align-items: center; }
.np-l { display: none; }
.np-n { white-space: nowrap; }
.np-n { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 15px; color: var(--sky-text, var(--blue)); }
.nav-kontakt { padding: 12px 24px; font-weight: 700; }
.nav-toggle { display: none; background: transparent; border: none; color: var(--navy); cursor: pointer; }
.nav-mobile { position: fixed; inset: 0; z-index: 2000; background: #fff; display: flex; flex-direction: column; padding: 18px 22px 30px; transform: translateX(100%); visibility: hidden; opacity: 0; transition: transform 0.36s cubic-bezier(0.4,0,0.2,1), opacity 0.36s var(--ease), visibility 0.36s; overflow-y: auto; }
.nav-mobile.open { transform: translateX(0); visibility: visible; opacity: 1; }
.nm-head { display: flex; align-items: center; justify-content: space-between; }
.nm-logo { height: 42px; width: auto; filter: brightness(0); }
.nm-close { width: 48px; height: 48px; border-radius: 50%; background: var(--off-white); border: none; display: flex; align-items: center; justify-content: center; color: var(--navy); cursor: pointer; transition: background 0.2s; }
.nm-close:active { background: var(--sky-light); }
.nm-close svg { width: 24px; height: 24px; }
.nm-links { display: flex; flex-direction: column; margin-top: 24px; }
.nm-links > a { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 21px; color: var(--navy); padding: 16px 4px; border-bottom: 1px solid var(--line); }
.nm-links > a:active { color: var(--sky); }
.nm-sub { display: flex; flex-direction: column; padding: 10px 0 14px; border-bottom: 1px solid var(--line); }
.nm-sub a { display: flex; align-items: center; gap: 11px; font-family: 'Inter', sans-serif; font-size: 15px; color: var(--text-body); padding: 10px 4px 10px 8px; }
.nm-sub a::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }
.nm-foot { margin-top: auto; padding-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.nm-phone { display: flex; align-items: center; gap: 13px; background: var(--sky-light); border-radius: 16px; padding: 14px 18px; }
.nm-ph-ic { width: 42px; height: 42px; border-radius: 50%; background: var(--sky); color: var(--sky-ink, #fff); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nm-ph-ic svg { width: 20px; height: 20px; }
.nm-ph-tx { display: flex; flex-direction: column; line-height: 1.2; }
.nm-ph-l { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-muted); }
.nm-ph-n { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 17px; color: var(--blue); }
body.nav-open { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 87vh; display: flex; align-items: center; overflow: hidden; }
.hero.short { min-height: 46vh; }
.hero.mid { min-height: 42vh; }
/* Lidt luft i top/bund saa parallax-forskydningen aldrig blotter en kant. */
.hero-bg { position: absolute; top: -8%; left: 0; right: 0; bottom: -8%; width: 100%; height: 116%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(115deg, rgba(var(--dark-rgb),0.94) 0%, rgba(var(--dark-rgb),0.75) 40%, rgba(var(--dark-rgb),0.2) 65%, transparent 80%); animation: heroHue 20s ease-in-out infinite alternate; }
/* Subtle background life: ken-burns zoom + drifting sky glows + gentle colour breathing */
@keyframes heroZoom { from { transform: translate3d(0, var(--mwh-par, 0px), 0) scale(1.06); } to { transform: translate3d(0, var(--mwh-par, 0px), 0) scale(1.14); } }
@keyframes heroHue { from { filter: hue-rotate(-7deg) saturate(1); } to { filter: hue-rotate(11deg) saturate(1.14); } }
@keyframes heroGlow { from { opacity: 0.5; background-position: 0% 100%, 100% 0%; } to { opacity: 0.95; background-position: 14% 84%, 86% 10%; } }
.hero-bg { animation: heroZoom 30s ease-in-out infinite alternate; will-change: transform; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(52% 48% at 16% 82%, rgba(var(--sky-rgb),0.22), transparent 66%), radial-gradient(42% 40% at 86% 12%, rgba(var(--blue-rgb),0.18), transparent 70%); background-size: 200% 200%; animation: heroGlow 17s ease-in-out infinite alternate; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.3; mix-blend-mode: overlay; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
@keyframes heroRise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero h1 { background: linear-gradient(176deg, #ffffff 52%, var(--sky-tint)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--sky); font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 13px; letter-spacing: 0.3px; margin-bottom: 18px; }
.hero-eyebrow .tick { width: 30px; height: 2px; background: var(--sky); border-radius: 2px; }
.hero-tag { color: rgba(255,255,255,0.82); font-family: 'Comfortaa', cursive; font-weight: 500; font-size: clamp(16px, 1.9vw, 20px); margin-top: 16px; }
.hero-pill { display: inline-flex; align-items: center; gap: 9px; background: rgba(var(--dark-rgb),0.4); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.22); border-radius: var(--pill); padding: 10px 18px; color: rgba(255,255,255,0.92); font-family: 'Comfortaa', cursive; font-weight: 500; font-size: 14px; margin-bottom: 22px; }
.hero-pill .ico { display: inline-flex; color: var(--sky); }
.hero-pill .ico svg { width: 15px; height: 15px; }
.hero-checks { margin-top: 22px; display: flex; flex-direction: column; gap: 11px; }
.hero-checks li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.9); font-size: 15.5px; font-weight: 500; }
.hc-mark { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--sky); color: var(--sky-ink, #fff); flex-shrink: 0; }
.hc-mark svg { width: 13px; height: 13px; }
.hero-menu { margin-top: 34px; max-width: 680px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hm-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 22px; text-decoration: none; border-radius: 18px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease); }
.hm-row:first-child { background: rgba(var(--navy-deep-rgb),0.55); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border: 1px solid rgba(var(--sky-rgb),0.39); }
.hm-row:last-child { background: rgba(255,255,255,0.13); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.22); }
.hm-row:last-child:hover { background: rgba(255,255,255,0.19); border-color: rgba(255,255,255,0.34); }
.hm-row:hover { transform: translateY(-2px); }
.hm-row:first-child:hover { border-color: rgba(var(--sky-rgb),0.7); background: rgba(var(--navy-deep-rgb),0.68); }
.hm-row:last-child:hover { background: rgba(26,28,34,0.75); }
@media (max-width: 560px) { .hero-menu { grid-template-columns: 1fr; } }
.hm-tx { display: flex; flex-direction: column; gap: 3px; }
.hm-label { color: rgba(255,255,255,0.85); font-size: 14px; }
.hm-row:first-child .hm-label { color: var(--sky); font-weight: 700; }
.hm-title { color: #fff; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.hm-sub { color: rgba(255,255,255,0.8); font-size: 13px; line-height: 1.4; margin-top: 3px; }
.hm-arrow { width: 38px; height: 38px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.25s var(--ease); }
.hm-row:first-child .hm-arrow { background: var(--sky); color: var(--sky-ink, #fff); }
.hm-row:last-child .hm-arrow { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.hm-arrow svg { width: 19px; height: 19px; }
.hm-row:hover .hm-arrow { transform: translate(3px, -3px); }
.hero-spec { position: absolute; left: 0; right: 0; bottom: 0; z-index: 4; border-top: 1px solid rgba(255,255,255,0.14); background: linear-gradient(to top, rgba(var(--dark-rgb),0.6), transparent); }
.hero-spec .container { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; padding: 16px 0; color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 500; letter-spacing: 0.4px; }
.hero-spec .star { color: #FBBF24; }
.hero-spec .dot { color: rgba(255,255,255,0.35); }
.hero .glass-card { overflow: hidden; box-shadow: 0 18px 44px -18px rgba(0,0,0,0.5); display: flex; flex-direction: column; }
.glass-card::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--sky), transparent); opacity: 0; transition: opacity 0.25s; }
.glass-card:hover::after { opacity: 1; }
.hero-rating { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--pill); padding: 8px 16px; color: rgba(255,255,255,0.85); font-size: 13.5px; font-weight: 500; }
.hero-rating .star { width: 15px; height: 15px; color: #FBBF24; fill: #FBBF24; }
.hero-rating strong { color: #fff; font-family: 'Comfortaa', cursive; }
.hero-rating .ico { display: inline-flex; color: var(--sky); }
.hero-rating .ico svg { width: 15px; height: 15px; }
.hero-scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; }
.hero-scroll .mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,0.45); border-radius: 14px; display: flex; justify-content: center; padding-top: 7px; }
.hero-scroll .dot { width: 4px; height: 8px; background: var(--sky); border-radius: 2px; animation: scrollDot 1.6s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-3px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(9px); } 100% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .hero-bg, .hero-overlay, .hero::after, .hero-content > *, .hero-scroll .dot { animation: none; } }
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 176px max(clamp(28px, 5.5vw, 80px), calc((100% - var(--maxw)) / 2)) 88px; } /* top = navhoejde (~88px) + 88px luft, bund = 88px: SYNLIG luft efter menuen == luft i bunden */
/* Headeren overlapper heroens top (~88px) — uden kompensation ser topluften
   mindre ud end bundluften. Skub indholdet en halv header-højde ned. */
/* margin-top-kompensationen er baget ind i padding-top ovenfor, saa flex-centreringen fordeler ekstra plads ligeligt */
.hero.short .hero-inner, .hero.mid .hero-inner { padding-top: 138px; padding-bottom: 66px; }
.hero-content { max-width: 580px; }
.hero-content.center { max-width: 720px; margin: 0 auto; text-align: center; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 4.4vw, 3.2rem); line-height: 1.08; letter-spacing: -0.022em; margin-top: 20px; }
.hero.short h1, .hero.mid h1 { font-size: clamp(1.8rem, 2.9vw, 2.4rem); margin-top: 14px; }
.hero h1 span.line { display: block; }
.hero-sub { font-family: 'Comfortaa', cursive; font-weight: 500; color: rgba(255,255,255,0.9); font-size: clamp(1rem, 2vw, 1.25rem); margin-top: 16px; }
.checklist { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.checklist.center { align-items: center; }
.check-item { display: flex; align-items: center; gap: 12px; color: #fff; font-size: 16px; font-weight: 500; }
.check-ico { width: 22px; height: 22px; border-radius: 50%; background: var(--sky); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-ico svg { width: 13px; height: 13px; color: var(--sky-ink, #fff); }
.hero-btns { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-tagline { margin-top: 40px; font-style: italic; color: rgba(255,255,255,0.5); font-size: 14px; }
.breadcrumb { color: rgba(255,255,255,0.5); font-size: 13px; margin-top: 20px; }

/* floating hero cards */
.hero-cards { position: absolute; bottom: -64px; left: 0; right: 0; z-index: 5; }
.hero-cards-inner { display: flex; gap: 24px; }
.glass-card { background: rgba(255,255,255,0.11); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--r-card); padding: 20px 24px; width: 300px; transition: transform 0.25s var(--ease), border-color 0.25s; }
.glass-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.45); }
.gc-num { width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 14px; }
.gc-label { color: rgba(255,255,255,0.65); font-size: 12px; margin-top: 14px; }
.gc-name { color: #fff; font-size: 20px; margin: 3px 0 4px; }
.gc-sub { color: rgba(255,255,255,0.6); font-size: 13px; }
.gc-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; }
.gc-foot .btn { padding: 9px 18px; font-size: 13px; }
.glass-card .circ-arrow { width: 40px; height: 40px; background: rgba(255,255,255,0.12); border: 1.5px solid rgba(255,255,255,0.45); }
.glass-card .circ-arrow svg { color: #fff; }
.glass-card .circ-arrow:hover { background: var(--sky); border-color: var(--sky); }
.gc-ico { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.gc-ico svg { width: 18px; height: 18px; }
.glass-card.gc-primary { background: linear-gradient(140deg, var(--sky), var(--blue)); border: 1px solid rgba(255,255,255,0.28); }
.gc-primary .gc-ico { background: rgba(255,255,255,0.2); color: #fff; }
.gc-glass .gc-ico { background: rgba(var(--sky-rgb),0.25); color: var(--sky); }
.gc-primary .gc-label, .gc-primary .gc-sub { color: rgba(255,255,255,0.88); }
.gc-primary .btn { background: #fff; color: var(--navy); border-color: #fff; box-shadow: none; }
.gc-primary .btn:hover { background: var(--off-white); border-color: var(--off-white); }
.gc-primary .circ-arrow { background: #fff; border-color: #fff; }
.gc-primary .circ-arrow svg { color: var(--navy); }
.gc-primary .circ-arrow:hover { background: var(--navy); border-color: var(--navy); }
.gc-primary .circ-arrow:hover svg { color: #fff; }
.gc-primary::after { display: none; }

/* ---------- Feature grid (Hvorfor os / værdier) ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.feature-card { background: #fff; border-radius: var(--r-card); padding: 36px; box-shadow: var(--shadow-card); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); display: flex; flex-direction: column; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elev); }
.icon-box { width: 56px; height: 56px; border-radius: 16px; background: linear-gradient(135deg, var(--sky-light), var(--sky-light2)); display: flex; align-items: center; justify-content: center; transition: filter 0.25s; }
.icon-box svg { width: 28px; height: 28px; color: var(--sky); }
.feature-card:hover .icon-box { filter: brightness(1.04); }
.feature-card h3 { font-size: 19px; margin-top: 20px; }
.feature-card p { color: var(--text-body); font-size: 15px; line-height: 1.7; margin-top: 12px; }
.card-link { color: var(--sky); font-family: 'Inter'; font-weight: 500; font-size: 14px; margin-top: auto; padding-top: 18px; display: inline-flex; gap: 6px; }
.card-link:hover { gap: 10px; }

/* Hvorfor os — kasser + billede med gradient */
.why2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: stretch; }
.why2-left { display: flex; flex-direction: column; }
.why2-left .eyebrow { display: inline-flex; margin-bottom: 16px; }
.why2-left h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.why2-intro { color: var(--text-body); font-size: 16.5px; line-height: 1.65; margin: 16px 0 0; max-width: 50ch; }
.why2-cards { margin-top: 30px; flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.why2-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px; box-shadow: var(--shadow-card); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease); display: flex; flex-direction: column; }
.why2-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elev); border-color: transparent; }
.why2-ico { width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(135deg, var(--blue), var(--sky)); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 20px -8px rgba(var(--blue-rgb),0.6); }
.why2-ico svg { width: 26px; height: 26px; color: var(--sky-ink, #fff); }
.why2-card h3 { font-size: 18px; margin-top: 18px; }
.why2-card p { color: var(--text-body); font-size: 14.5px; line-height: 1.6; margin-top: 8px; }
.why2-photo { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-elev); min-height: 540px; }
.why2-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.why2-photo:hover img { transform: scale(1.04); }
.why2-photo .grad { position: absolute; inset: 0; background: var(--photo-grad); }
.why2-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 32px; }
.why2-cap h3 { color: #fff; font-size: clamp(20px, 2.1vw, 26px); max-width: 18ch; }
.why2-cap .btn { margin-top: 18px; }

/* ---------- Testimonials (lyst) ---------- */
.reviews { background: var(--white); }
.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 18px; height: 18px; color: #FBBF24; fill: #FBBF24; }
.rating-line { display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: var(--text-body); margin-top: 16px; font-size: 15px; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 34px; display: flex; flex-direction: column; box-shadow: var(--shadow-card); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease); }
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-elev); border-color: transparent; }
.testi-card .quote { color: var(--text-body); font-size: 16px; line-height: 1.75; margin-top: 16px; }
.testi-div { height: 1px; background: var(--line); margin: 24px 0; }
.testi-foot { display: flex; align-items: center; gap: 14px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Comfortaa', cursive; font-weight: 700; color: var(--blue); font-size: 15px; flex-shrink: 0; background: var(--sky-light); }
.testi-name { color: var(--text-dark); font-family: 'Comfortaa'; font-weight: 600; font-size: 15px; }
.testi-role { color: var(--text-muted); font-size: 13px; }

/* ---------- Slideshow ---------- */
.slideshow { position: relative; width: 100%; height: 85vh; overflow: hidden; }
.slides { display: flex; height: 100%; transition: transform 0.7s var(--ease); }
.slide { min-width: 100vw; height: 100%; position: relative; }
.slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.slide .grad { position: absolute; inset: 0; background: var(--photo-grad); }
.slide-content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding-bottom: 64px; }
.slide-content h3 { color: #fff; font-size: clamp(22px, 3vw, 30px); margin: 12px 0 8px; }
.slide-content p { color: rgba(255,255,255,0.78); max-width: 46ch; }
.slide-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 50px; height: 50px; border-radius: 50%; background: var(--glass-fill); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; cursor: pointer; color: #fff; transition: background 0.2s; }
.slide-nav:hover { background: rgba(var(--sky-rgb),0.6); }
.slide-nav.prev { left: 32px; } .slide-nav.next { right: 32px; }
.dots { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 4; display: flex; justify-content: center; gap: 10px; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: all 0.3s var(--ease); }
.dot.active { background: var(--sky); width: 32px; border-radius: var(--pill); }

/* ---------- Projektgalleri (masonry-marquee, varierende højder) ---------- */
.gallery { background: var(--white); padding: 128px 0; overflow: hidden; }
.gallery .sec-head { margin-bottom: 44px; }
.gal-marquee { position: relative; width: 100%; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent); }
.gal-track { display: flex; align-items: stretch; width: max-content; height: 520px; animation: galSlide 96s linear infinite; will-change: transform; }
.gal-col { display: flex; flex-direction: column; gap: 18px; width: var(--w, 340px); margin-right: 18px; height: 100%; }
.gal-tile { position: relative; flex: 1 1 0; min-height: 0; width: 100%; overflow: hidden; border-radius: var(--r-card); box-shadow: var(--shadow-card); display: block; }
.gal-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gal-tile:hover img { transform: scale(1.05); }
.gal-tile::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(var(--dark-rgb),0.42), rgba(var(--dark-rgb),0.06) 52%, transparent); }
@keyframes galSlide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .gal-track { animation: none; } }

/* ---------- Photo card (reusable) ---------- */
.photo-card { position: relative; display: block; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform 0.7s var(--ease); }
.photo-card:hover img { transform: scale(1.05); }
.photo-card .grad { position: absolute; inset: 0; background: var(--photo-grad); }
.pc-content { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 28px; }
.pc-content h3 { color: #fff; font-size: clamp(20px, 2.2vw, 26px); line-height: 1.2; max-width: 18ch; }
.pc-eyebrow { color: rgba(255,255,255,0.75); font-size: 14px; margin-bottom: 8px; }
.pc-content p { color: rgba(255,255,255,0.78); font-size: 14px; margin: 8px 0 0; }
.pc-content .btn { margin-top: 18px; }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 40% 1fr; gap: 56px; align-items: start; }
.faq-left { position: sticky; top: 120px; }
.faq-left h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 16px 0; }
.faq-left p { color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }
.faq-phone { display: flex; align-items: center; gap: 10px; margin-top: 18px; color: var(--text-dark); font-weight: 500; }
.faq-phone svg { width: 18px; height: 18px; color: var(--sky); }
.faq-item { border-bottom: 1px solid rgba(var(--navy-rgb),0.08); border-radius: 14px; transition: background 0.3s var(--ease); padding: 0 20px; }
.faq-item.open { background: #fff; box-shadow: var(--shadow-card); }
.faq-q { width: 100%; background: transparent; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 0; text-align: left; font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 16px; color: var(--text-dark); }
.faq-q .pm { color: var(--sky); transition: transform 0.3s var(--ease); flex-shrink: 0; display: flex; }
.faq-item.open .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-a-inner { color: var(--text-body); font-size: 15px; line-height: 1.75; padding: 4px 0 24px; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border-radius: 24px; padding: 48px; box-shadow: var(--shadow-elev); }
.form-card h3 { font-size: 22px; margin-bottom: 24px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 14px; font-weight: 500; color: var(--text-dark); }
.field input, .field textarea, .field select { width: 100%; padding: 14px 18px; border-radius: var(--r-input); border: 1.5px solid var(--line); background: #fff; font-size: 15px; color: var(--text-dark); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(var(--sky-rgb),0.12); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
/* Dato-felter: kalender-ikon + klikbart overalt (native picker), så et tomt felt ikke ligner en fejl. */
.field input[type="date"] { position: relative; min-height: 51px; padding-right: 46px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2367788a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 18px; }
.field input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0; position: absolute; inset: 0; width: 100%; height: 100%; cursor: pointer; }
.field.err input, .field.err textarea, .field.err select { border-color: #E5484D; }
.err-msg { color: #E5484D; font-size: 12.5px; display: none; }
.field.err .err-msg { display: block; }
.trust-row { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 22px; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; color: var(--text-muted); font-size: 13px; }
.trust-row svg { width: 16px; height: 16px; color: var(--sky); }
.form-success { text-align: center; padding: 30px 0; display: none; }
.form-success.show { display: block; }
.form-success .ring { width: 66px; height: 66px; border-radius: 50%; background: var(--sky); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.form-success .ring svg { width: 32px; height: 32px; color: #fff; }
.faq-list--wide { max-width: 880px; margin: 8px auto 0; }
.ask-box { max-width: 720px; margin: 0 auto; text-align: center; background: var(--sky-light); border-radius: 28px; padding: 58px 52px; }
.ask-ico { width: 66px; height: 66px; border-radius: 50%; background: var(--blue); color: var(--sky-ink, #fff); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px; box-shadow: 0 10px 24px -8px rgba(var(--blue-rgb),0.65); }
.ask-ico svg { width: 30px; height: 30px; }
.ask-box h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.ask-box > p { color: var(--text-body); line-height: 1.7; margin: 12px auto 30px; max-width: 44ch; }
.ask-form { text-align: left; }
.ask-form textarea { min-height: 120px; }
@media (max-width: 620px) { .ask-box { padding: 40px 24px; } }

/* ---------- Service-detalje: proces + testimonials ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px 26px; box-shadow: var(--shadow-card); }
.step .num { width: 46px; height: 46px; border-radius: 50%; background: var(--sky-light); color: var(--blue); font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--text-body); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.svc-testi { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.svc-quote { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 34px 34px 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.svc-quote .stars { display: flex; gap: 3px; margin-bottom: 14px; }
.svc-quote .stars svg { width: 18px; height: 18px; color: #FBBF24; fill: #FBBF24; }
.svc-quote p { color: var(--text-dark); font-size: 16px; line-height: 1.7; flex: 1; }
.svc-quote .who { display: flex; align-items: center; gap: 14px; margin-top: 20px; }
.svc-quote .av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--sky)); color: var(--sky-ink, #fff); font-family: 'Comfortaa', cursive; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.svc-quote .nm { font-family: 'Comfortaa', cursive; font-weight: 600; color: var(--text-dark); font-size: 15px; }
.svc-quote .rl { color: var(--text-muted); font-size: 13px; margin-top: 2px; }
@media (max-width: 760px) { .svc-testi { grid-template-columns: 1fr; } }

/* info card / contact */
.info-card { background: var(--navy); border-radius: var(--r-card); padding: 36px; color: #fff; }
.info-card h3 { color: #fff; font-size: 18px; }
.info-card .muted { color: rgba(255,255,255,0.65); font-size: 15px; margin-top: 8px; }
.info-div { height: 1px; background: rgba(255,255,255,0.1); margin: 28px 0; }
.info-list { display: flex; flex-direction: column; gap: 16px; }
.info-list li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.78); font-size: 15px; }
.info-list svg { width: 19px; height: 19px; color: var(--sky); flex-shrink: 0; margin-top: 1px; }

/* ---------- Ydelse blocks ---------- */
.ydelse { padding: 128px 0; }
.ydelse-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ydelse.rev .ydelse-grid { direction: rtl; }
.ydelse.rev .ydelse-grid > * { direction: ltr; }
.ydelse h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 16px 0; }
.ydelse .body p { color: var(--text-body); line-height: 1.7; margin-bottom: 14px; }
.ydelse .checklist { margin: 22px 0; }
.ydelse .check-item { color: var(--text-dark); }
.ydelse .check-ico { background: var(--sky); }
.ydelse-photo { position: relative; border-radius: var(--r-card); overflow: hidden; min-height: 420px; box-shadow: var(--shadow-card); }
.ydelse-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.stat-float { position: absolute; bottom: 24px; left: 24px; background: #fff; border-radius: 16px; padding: 18px 24px; box-shadow: var(--shadow-elev); z-index: 2; }
.stat-float .big { font-family: 'Comfortaa'; font-weight: 700; color: var(--sky); font-size: 26px; }
.stat-float .small { color: var(--text-muted); font-size: 13px; margin-top: 2px; }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(135deg, var(--navy), var(--navy-2)); border-radius: var(--r-card); padding: 64px; text-align: center; }
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); }
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 17px; }
/* Generisk knap-gruppe (fx ydelses-oversigtens "Læs mere"/"Spørg om ..."-par) —
   uden denne regel sad to .btn-elementer i en .btns-boks helt op ad hinanden. */
.btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.cta-banner .btns { gap: 16px; justify-content: center; margin-top: 28px; }

/* ---------- Projects ---------- */
.filter-bar { position: sticky; top: 92px; z-index: 50; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; padding: 16px 0; background: rgba(var(--off-white-rgb),0.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.filter-btn { font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 14px; padding: 10px 22px; border-radius: var(--pill); border: 1.5px solid var(--line); background: #fff; color: var(--navy); cursor: pointer; transition: all 0.2s var(--ease); }
.filter-btn.active, .filter-btn:hover { background: var(--sky); border-color: var(--sky); color: var(--sky-ink, #fff); }
.proj-grid { columns: 3; column-gap: 24px; }
.proj-card { position: relative; border-radius: var(--r-card); overflow: hidden; margin-bottom: 24px; break-inside: avoid; display: block; box-shadow: var(--shadow-card); }
.proj-card img { width: 100%; display: block; transition: transform 0.4s var(--ease); }
.proj-card .grad { position: absolute; inset: 0; background: var(--photo-grad); }
.proj-card:hover img { transform: scale(1.04); }
.proj-meta { position: absolute; inset: 0; z-index: 2; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; }
.proj-meta .top { display: flex; justify-content: space-between; }
.proj-name { color: #fff; font-size: 20px; }
.proj-loc { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); font-size: 13px; margin-top: 4px; }
.proj-loc svg { width: 14px; height: 14px; }
.size-pill { background: var(--sky); color: var(--sky-ink, #fff); font-family: 'Comfortaa'; font-weight: 600; font-size: 12px; padding: 6px 12px; border-radius: var(--pill); height: fit-content; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-family: 'Comfortaa'; font-weight: 700; color: var(--sky-ink, #fff); font-size: 32px; background: linear-gradient(135deg, var(--blue), var(--sky)); }
.team-card h4 { font-size: 18px; }
.team-card .role { color: var(--sky); font-size: 14px; font-weight: 500; margin: 4px 0 8px; }
.team-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.cert-row { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }
.cert-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14); border-radius: 16px; padding: 20px 28px; color: #fff; font-family: 'Comfortaa'; font-weight: 600; display: flex; align-items: center; gap: 12px; }
.cert-badge svg { width: 26px; height: 26px; color: var(--sky); }

/* ---------- Contact method cards ---------- */
.method-card { background: #fff; border-radius: var(--r-card); padding: 32px; box-shadow: var(--shadow-card); text-align: center; transition: transform 0.25s var(--ease); }
.method-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-elev); }
.method-card .mc-ico { width: 56px; height: 56px; border-radius: 16px; background: var(--sky-light); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.method-card .mc-ico svg { width: 26px; height: 26px; color: var(--sky); }
.method-card .big { font-family: 'Comfortaa'; font-weight: 700; font-size: 20px; color: var(--text-dark); margin: 6px 0; }
.method-card .small { color: var(--text-muted); font-size: 14px; margin-bottom: 18px; }
.map-embed { width: 100%; height: 380px; border-radius: var(--r-card); box-shadow: var(--shadow-card); border: 0; }

/* ---------- Anmeldelser v2 (carousel) ---------- */
.reviews2 { position: relative; background-color: var(--off-white); background-image: linear-gradient(rgba(var(--off-white-rgb),0.9), rgba(var(--off-white-rgb),0.94)), url("../assets/photos/house-patio-dark-roof.png"); background-size: cover; background-position: center; overflow: hidden; }
.rev-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.rev-head .whyx-badge { margin-bottom: 4px; }
.rev-head h2 { font-family: 'Comfortaa', cursive; color: var(--text-dark); font-size: clamp(1.9rem, 3vw, 2.7rem); letter-spacing: -0.02em; line-height: 1.1; margin-top: 16px; max-width: 18ch; }
.rev-nav { display: flex; gap: 12px; flex-shrink: 0; }
.rev-arrow { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line); background: #fff; color: var(--navy); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease); }
.rev-arrow:hover { background: var(--sky); border-color: var(--sky); color: var(--sky-ink, #fff); }
.rev-next { background: var(--sky); border-color: var(--sky); color: var(--sky-ink, #fff); }
.rev-next:hover { background: var(--blue); border-color: var(--blue); }
.rev-arrow svg { width: 20px; height: 20px; }
.rev-track { display: flex; gap: 24px; margin-top: 40px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 10px; scrollbar-width: none; }
.rev-track::-webkit-scrollbar { display: none; }
.rev-card { flex: 0 0 clamp(290px, 31%, 380px); scroll-snap-align: start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 32px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.rev-top { display: flex; align-items: flex-start; justify-content: space-between; }
.rev-quote { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 52px; line-height: 0.7; color: var(--sky); }
.rev-card .stars { display: inline-flex; gap: 2px; }
.rev-card .stars svg { width: 16px; height: 16px; color: #FBBF24; fill: #FBBF24; }
.rev-text { color: var(--text-body); font-size: 15px; line-height: 1.65; margin-top: 18px; flex: 1; }
.rev-foot { display: flex; align-items: center; gap: 14px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.rev-av { width: 46px; height: 46px; border-radius: 50%; background: var(--sky-light); color: var(--blue); display: flex; align-items: center; justify-content: center; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 15px; flex-shrink: 0; }
.rev-name { font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 15px; color: var(--text-dark); }
.rev-role { color: var(--text-muted); font-size: 13px; }
.rev-bottom { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 46px; flex-wrap: wrap; }
.rev-pill { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 22px; box-shadow: var(--shadow-card); font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 14px; color: var(--text-dark); }
.rev-pill .stars { display: inline-flex; gap: 2px; }
.rev-pill .stars svg { width: 15px; height: 15px; color: #FBBF24; fill: #FBBF24; }

/* ---------- Slut-CTA banner ---------- */
.endcta-wrap { background: var(--off-white); padding: 128px 0; }
.endcta { position: relative; overflow: hidden; color: var(--sky-ink, #fff); background: linear-gradient(118deg, var(--blue), var(--sky)); border-radius: var(--r-card); padding: 52px 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.endcta-deco { position: absolute; right: 32%; top: 50%; transform: translateY(-50%); opacity: 0.16; pointer-events: none; }
.endcta-deco svg { width: 210px; height: 210px; color: var(--sky-ink, #fff); }
.endcta-tx { position: relative; z-index: 1; }
.endcta-tx h2 { color: var(--sky-ink, #fff); font-family: 'Comfortaa', cursive; font-size: clamp(1.6rem, 2.6vw, 2.3rem); letter-spacing: -0.02em; line-height: 1.14; max-width: 20ch; }
.endcta-phone { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; background: #fff; border-radius: 16px; padding: 18px 26px; box-shadow: var(--shadow-elev); flex-shrink: 0; }
.endcta-phone .ic { width: 52px; height: 52px; border-radius: 50%; background: var(--sky); color: var(--sky-ink, #fff); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.endcta-phone .ic svg { width: 24px; height: 24px; }
.endcta-phone .l { color: var(--text-muted); font-size: 13px; }
.endcta-phone .n { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 22px; color: var(--navy); margin-top: 2px; }

/* ---------- Footer åbningstider ---------- */
.footer-hours { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; padding: 4px 18px; }
.footer-hours .hrow { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-hours .hrow:first-child { border-top: none; }
.footer-hours .d { color: #fff; font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 14px; flex: 1 1 auto; min-width: 0; }
.footer-hours .t { color: rgba(255,255,255,0.55); font-size: 13.5px; flex: 0 0 auto; white-space: nowrap; text-align: right; }
/* Nyhedsbrevs-tilmelding i footeren (feature 'nyhedsbrev'). */
.f2-nl { margin-top: 16px; }
.f2-nl h4 { margin-bottom: 10px; }
.f2-nl__row { display: flex; gap: 8px; }
.f2-nl__row input { flex: 1; min-width: 0; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06); border-radius: 11px; padding: 11px 13px; font-size: 14px; color: #fff; font-family: inherit; }
.f2-nl__row input::placeholder { color: rgba(255,255,255,0.45); }
.f2-nl__row input:focus { outline: none; border-color: var(--sky); }
.f2-nl__row input.err2 { border-color: #E5484D; }
.f2-nl__row .btn { padding: 11px 18px; flex: 0 0 auto; }
.f2-nl .nl-done { display: flex; align-items: center; gap: 8px; color: #4ade80; font-weight: 600; font-size: 14px; margin: 6px 0 0; }
.f2-nl .nl-done[hidden] { display: none; }
.f2-nl .nl-done svg { width: 17px; height: 17px; }
/* Åbningstider-feature i footeren: live "Åbent nu"-badge + dagens række
   fremhævet (motoren [data-mwh-hours] bor i base og sætter klasserne). */
.f2-hours { padding-top: 12px; }
.f2-hours__badge { display: none; align-items: center; gap: 8px; margin: 2px 0 8px; padding: 6px 13px; border-radius: 999px; font-weight: 700; font-size: 13px; width: max-content; border: 1px solid transparent; }
.f2-hours__badge.is-shown { display: inline-flex; }
.f2-hours__badge.is-open { background: rgba(34,197,94,0.14); color: #4ade80; border-color: rgba(34,197,94,0.3); }
.f2-hours__badge.is-closed { background: rgba(229,72,77,0.14); color: #f87171; border-color: rgba(229,72,77,0.3); }
.f2-hours__dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; position: relative; }
.f2-hours__badge.is-open .f2-hours__dot { background: #22c55e; }
.f2-hours__badge.is-closed .f2-hours__dot { background: #e5533c; }
.f2-hours__badge.is-open .f2-hours__dot::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: #22c55e; opacity: 0.45; animation: f2HoursPulse 1.8s ease-out infinite; }
@keyframes f2HoursPulse { 0% { transform: scale(0.6); opacity: 0.5; } 100% { transform: scale(1.9); opacity: 0; } }
.f2-hours .hrow.is-today { background: rgba(255,255,255,0.07); border-radius: 9px; padding-left: 10px; padding-right: 10px; margin: 0 -10px; box-shadow: inset 2px 0 0 var(--sky); }
.f2-hours .hrow.is-today .d::after { content: "I dag"; display: inline-block; white-space: nowrap; line-height: 1.4; margin-left: 8px; font-size: 10px; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); background: var(--sky); padding: 2px 7px; border-radius: 999px; vertical-align: 1px; }
.f2-hours .hrow.is-closed-today .t { color: #f87171; }
@media (prefers-reduced-motion: reduce) { .f2-hours__badge.is-open .f2-hours__dot::after { animation: none; } }
.footer-map { border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.09); }
.footer-map iframe { width: 100%; height: 196px; border: 0; display: block; }

/* ---------- Kontakt (ref-stil) ---------- */
.kontakt-grid { display: grid; grid-template-columns: 0.78fr 1fr; gap: 28px; align-items: stretch; }
.kontakt-photo { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-elev); min-height: 560px; }
.kontakt-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.kontakt-photo .grad { position: absolute; inset: 0; background: linear-gradient(to top, rgba(var(--dark-rgb),0.92), rgba(var(--dark-rgb),0.15) 55%, transparent); }
.kp-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 34px; }
.kp-overlay p { color: #fff; font-family: 'Comfortaa', cursive; font-weight: 500; font-size: 16px; line-height: 1.5; }
.kp-overlay .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #5BD16A; margin-right: 6px; vertical-align: middle; }
.kp-call { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; background: #fff; color: var(--navy); font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 15px; padding: 13px 22px; border-radius: 999px; transition: background 0.2s, color 0.2s; }
.kp-call svg { width: 18px; height: 18px; color: var(--sky); }
.kp-call:hover { background: var(--sky); color: var(--sky-ink, #fff); }
.kp-call:hover svg { color: #fff; }
.kontakt-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 40px; box-shadow: var(--shadow-card); }
.phone-input { display: flex; align-items: stretch; }
.phone-input .flag { display: flex; align-items: center; gap: 6px; padding: 0 14px; background: var(--off-white); border: 1px solid var(--line); border-right: none; border-radius: var(--r-input) 0 0 var(--r-input); font-size: 14px; color: var(--text-body); white-space: nowrap; }
.phone-input input { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.chip-group { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 8px; }
.chip { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-input); background: #fff; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14.5px; color: var(--text-dark); cursor: pointer; transition: border-color 0.2s, background 0.2s, color 0.2s; text-align: left; }
.chip svg { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }
.chip:hover { border-color: var(--sky); }
.chip.selected { background: var(--sky-light); border-color: var(--sky); color: var(--blue); }
.chip.selected svg { color: var(--sky); }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 22px 0 18px; font-size: 14px; color: var(--text-body); cursor: pointer; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--sky); flex-shrink: 0; }
.consent a { color: var(--sky-text, var(--sky)); text-decoration: underline; }
.kontakt-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 28px; }
.ki-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 22px 26px; box-shadow: var(--shadow-card); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.ki-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-elev); }
.ki-ico { width: 48px; height: 48px; border-radius: 50%; background: var(--sky-light); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ki-ico svg { width: 22px; height: 22px; }
.ki-l { color: var(--text-muted); font-size: 13px; }
.ki-v { font-family: 'Comfortaa', cursive; font-weight: 600; color: var(--text-dark); font-size: 16px; margin-top: 3px; }

/* ---------- Vores historie, kollage + tekst (Om os) ---------- */
.hist { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hist-collage { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 18px; align-items: start; }
.hc-col { display: flex; flex-direction: column; gap: 18px; }
.hc-col--left { margin-top: 46px; }
.hc-tile { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-card); }
.hc-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.hc-tile:hover img { transform: scale(1.06); }
.hc-a1 { aspect-ratio: 4 / 5; }
.hc-a2 { aspect-ratio: 1 / 1; }
.hc-b1 { aspect-ratio: 3 / 4; }
.hc-b2 { aspect-ratio: 5 / 4; }
.hist-text h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.14; margin: 14px 0 0; }
.hist-text > p { color: var(--text-body); line-height: 1.8; margin-top: 20px; max-width: 52ch; }
.hist-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 34px 0; }
.hist-feat { display: flex; gap: 15px; }
.hist-feat .hf-ico { flex-shrink: 0; color: var(--blue); }
.hist-feat .hf-ico svg { width: 30px; height: 30px; stroke-width: 1.7; }
.hist-feat h4 { font-size: 17px; margin-bottom: 5px; }
.hist-feat p { color: var(--text-muted); font-size: 13.5px; line-height: 1.55; }
@media (max-width: 900px) {
  .hist { grid-template-columns: 1fr; gap: 40px; }
  .hist-feats { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.55); padding: 116px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1.15fr; gap: 56px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand img { height: 52px; margin-bottom: 14px; }
.footer-brand .tag { color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 10px; }
.footer-brand .body { font-size: 14px; line-height: 1.75; margin-top: 18px; max-width: 36ch; }
.trust-band { background: #fff; padding: 60px 0; border-top: 1px solid var(--line); }
.trust-band .container { display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.tb-label { font-family: 'Comfortaa', cursive; font-weight: 600; color: var(--text-muted); font-size: 14px; }
.tb-logos { display: flex; align-items: center; gap: 52px; flex-wrap: wrap; justify-content: center; }
.tb-byg { height: 56px; width: auto; }
.tb-smiley { height: 86px; width: auto; }
.tb-trophy { height: 90px; width: auto; }
.social { display: flex; gap: 14px; margin-top: 24px; }
.social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: all 0.2s; }
.social a:hover { color: var(--sky); border-color: var(--sky); }
.social svg { width: 17px; height: 17px; }
.footer-col h4 { color: #fff; font-family: 'Comfortaa'; font-weight: 600; font-size: 16px; letter-spacing: 0.3px; margin-bottom: 24px; }
.footer-col ul { display: flex; flex-direction: column; gap: 13px; }
.footer-col a, .footer-col li { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.footer-contact svg { width: 17px; height: 17px; color: var(--sky); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { margin-top: 44px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; color: rgba(255,255,255,0.4); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--sky); }
.footer .btn-sky { background: var(--blue); box-shadow: none; color: var(--sky-ink, #fff); }
.footer .btn-sky:hover { background: var(--sky); box-shadow: none; transform: translateY(-2px); }

/* ---------- Scroll polish ---------- */
.animate-on-scroll { opacity: 1; }
.sm-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 1200; background: linear-gradient(90deg, var(--sky), var(--blue)); border-radius: 0 3px 3px 0; pointer-events: none; transition: width 0.1s linear; }
.btn svg { transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
a:focus-visible, button:focus-visible { outline: 2px solid var(--sky); outline-offset: 3px; border-radius: 6px; }
.nav-inner { transition: background 0.3s var(--ease), padding 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.nav.scrolled .nav-inner { padding-top: 11px; padding-bottom: 11px; box-shadow: 0 6px 30px rgba(var(--navy-rgb),0.16); }

@media (max-width: 1150px) { .nav-phone { display: none; } .nav-cta { gap: 0; } }
/* Mellemtrin: kompakt nav så alle 6 punkter + CTA kan være der ned til burger-grænsen */
@media (max-width: 1310px) {
  .nav-links { gap: 0; }
  .nav-links > a, .nav-item > a { font-size: 14px; padding: 8px 9px; }
  .nav-kontakt { padding: 11px 18px; }
  .nav-brand img { height: 42px; }
}
@media (max-width: 1010px) and (min-width: 901px) {
  .nav-links > a, .nav-item > a { font-size: 13px; padding: 8px 6px; letter-spacing: -0.01em; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta .nav-kontakt { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; }
}
/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .proj-grid { columns: 2; }
}
@media (max-width: 768px) {
  .sec { padding: 72px 0; }
  .ydelse { padding: 72px 0; }
  .nav { top: 12px; left: 12px; right: 12px; }
  .nav-inner { padding: 12px 12px 12px 18px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .why2 { grid-template-columns: 1fr; gap: 32px; }
  .why2-cards { grid-template-columns: 1fr; }
  .why2-photo { min-height: 340px; }
  .hero-cards { position: static; margin-top: 36px; }
  .hero-cards-inner { flex-direction: column; }
  .glass-card { width: 100%; }
  /* Mobil-hero (16/9): PRAECIS een skaerm - baggrundsbilledet fylder ALTID
     100% af hoejden (100svh), og indholdet er strammet, saa det passer indeni.
     Vokser indholdet ud over skaermen paa smaa telefoner, vokser hero'en
     (min-height) og baggrunden foelger med - den skaerer aldrig. */
  .hero { min-height: 100vh; min-height: 100svh; }
  /* ENS padding top/bund: flex-centreringen rammer saa PRAECIS midten -
     skaev padding (112/36) skubbede indholdet ned og gav mere luft i toppen. */
  .hero-inner { padding-top: 96px; padding-bottom: 96px; }
  .hero-inner h1 { overflow-wrap: break-word; }
  /* Vandret overloebs-vagt: intet element maa goere siden bredere end
     skaermen paa mobil (skar overskrift/nav af i hoejre side). */
  html, body { overflow-x: hidden; overflow-x: clip; }
  .hero-tag { margin-top: 10px; }
  .hero-checks { margin-top: 16px; gap: 9px; }
  .hero-menu { margin-top: 20px; gap: 10px; }
  .hero-scroll { display: none; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
  .faq-left { position: static; }
  .ydelse-grid { grid-template-columns: 1fr; gap: 32px; }
  .ydelse.rev .ydelse-grid { direction: ltr; }
  .field-row { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 22px; }
  .kontakt-photo { min-height: 340px; }
  .kontakt-form { padding: 28px; }
  .kontakt-info { grid-template-columns: 1fr; }
  .chip-group { grid-template-columns: 1fr; }
  .form-card { padding: 28px; }
  .cta-banner { padding: 40px 24px; }
  .endcta { padding: 36px 28px; }
  .endcta-deco { display: none; }
  .rev-head { flex-wrap: wrap; }
  .rev-card { flex-basis: 85%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding: 76px 0 40px; }
  .trust-band { padding: 44px 0; }
  .trust-band .container { gap: 26px; }
  .tb-logos { gap: 30px; }
  .tb-smiley { height: 72px; }
  .tb-trophy { height: 74px; }
  .proj-grid { columns: 1; }
  .slideshow { height: 60vh; }
  .gallery { padding: 72px 0; }
  .endcta-wrap { padding: 72px 0; }
  .gallery .sec-head { margin-bottom: 30px; }
  .gal-track { height: 360px; }
  .gal-col { width: 210px; gap: 12px; margin-right: 12px; }
  .slide-nav.prev { left: 14px; } .slide-nav.next { right: 14px; }
  .footer-bottom { flex-direction: column; }
}

/* ---------- Fast kontakt-dock ---------- */
.contact-dock { position: fixed; right: 22px; top: 50%; transform: translateY(-50%); z-index: 900; display: flex; flex-direction: column; gap: 14px; }
.contact-dock a, .contact-dock .dock-mail { position: relative; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-elev); transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease); }
.contact-dock a svg, .contact-dock .dock-mail svg { width: 23px; height: 23px; }
.dock-phone { background: var(--sky); color: var(--sky-ink, #fff); }
.dock-phone:hover { background: var(--blue); transform: scale(1.09); }
.dock-mail { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.dock-mail-lbl { display: none; }
.dock-num { display: none; }
.dock-mail:hover { background: var(--navy); color: #fff; transform: scale(1.09); }
.contact-dock .lbl { position: absolute; right: 70px; top: 50%; transform: translateY(-50%) translateX(8px); white-space: nowrap; background: var(--navy); color: #fff; font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 13px; padding: 8px 14px; border-radius: var(--pill); opacity: 0; pointer-events: none; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease); box-shadow: var(--shadow-card); }
.contact-dock .lbl::after { content: ""; position: absolute; right: -4px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 9px; height: 9px; background: var(--navy); }
.contact-dock a:hover .lbl { opacity: 1; transform: translateY(-50%) translateX(0); }

/* ---------- Mobil: dock + mindre overskrifter ---------- */
@media (max-width: 768px) {
  /* Dock som FAST bund-bar: Ring-halvdel + Send besked-halvdel (de flydende
     cirkler daekkede indhold og var svaere at ramme). */
  .contact-dock { top: auto; bottom: 0; right: 0; left: 0; display: flex; flex-direction: row; gap: 0; border-radius: 14px 14px 0 0; overflow: hidden; transform: translateY(110%); transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); }
  .contact-dock.dock-show { transform: translateY(0); }
  body { padding-bottom: 56px; }
  .contact-dock a.dock-phone, .contact-dock .dock-form { flex: 1 1 50%; min-width: 0; }
  .contact-dock a, .contact-dock .dock-mail { width: 100%; height: 56px; border-radius: 0; box-shadow: 0 -10px 26px rgba(10,28,58,0.22); display: flex; align-items: center; justify-content: center; gap: 9px; }
  .contact-dock a svg, .contact-dock .dock-mail svg { width: 19px; height: 19px; flex-shrink: 0; }
  .dock-phone:hover, .dock-mail:hover { transform: none; }
  .contact-dock .lbl { display: none; }
  .dock-num { display: inline; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 15.5px; letter-spacing: 0.06em; white-space: nowrap; }
  .dock-mail { border: none; background: var(--navy); color: #fff; }
  .dock-mail-lbl { display: inline; font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 14px; }
  .dock-panel { position: fixed; left: 10px; right: 10px; bottom: 68px; top: auto; width: auto; transform: translateY(10px); }
  .dock-form:hover .dock-panel, .dock-form.open .dock-panel { transform: translateY(0); }
  .dock-panel::before, .dock-panel::after { display: none; }
  .hero h1 { font-size: clamp(1.55rem, 5vw, 2.3rem); line-height: 1.16; overflow-wrap: break-word; }
  .hero.short h1, .hero.mid h1 { font-size: clamp(1.4rem, 4.4vw, 2.05rem); }
  .hero-sub { font-size: 1rem; margin-top: 12px; }
  .hero-eyebrow, .hero-content .eyebrow { font-size: 12px; }
  .hero-checks { margin-top: 20px; }
  .hero-checks li { font-size: 14.5px; }
  .sec-head h2, .sec-head h1 { font-size: clamp(1.45rem, 4.8vw, 2.1rem); }
  .sec-sub { font-size: 15.5px; }
  .ydelse-grid h2, .why2-left h2, .hist-text h2 { font-size: clamp(1.45rem, 4.8vw, 2.1rem); }
  .cta-banner h2, .endcta-tx h2 { font-size: 1.4rem; }
  .price-left .pl-big, .pt-num { font-size: clamp(1.9rem, 7vw, 2.3rem); }
}
@media (max-width: 430px) {
  .hero h1 { font-size: clamp(1.45rem, 6.6vw, 1.95rem); }
  .hero.short h1, .hero.mid h1 { font-size: clamp(1.3rem, 6vw, 1.7rem); }
}

/* ---------- Legal / prose ---------- */
.legal { background: var(--off-white); }
.legal .container { max-width: 880px; }
.legal-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: clamp(28px, 4vw, 56px); box-shadow: var(--shadow-card); }
.legal-updated { display: inline-flex; align-items: center; gap: 8px; font-family: 'Inter', sans-serif; font-size: 13.5px; font-weight: 500; color: var(--blue); background: var(--sky-light); padding: 8px 16px; border-radius: 999px; margin-bottom: 28px; }
.legal-updated svg { width: 16px; height: 16px; }
.legal-lead { font-size: 18.5px; color: var(--text-dark); line-height: 1.7; margin: 0 0 8px; font-weight: 500; }
.legal h2 { font-family: 'Comfortaa', cursive; font-weight: 700; color: var(--navy); font-size: clamp(1.2rem, 2.4vw, 1.55rem); margin: 46px 0 14px; letter-spacing: -0.01em; }
.legal h3 { font-family: 'Comfortaa', cursive; font-weight: 600; color: var(--navy); font-size: 1.08rem; margin: 26px 0 10px; }
.legal p { color: var(--text-body); font-size: 16.5px; line-height: 1.78; margin: 0 0 16px; }
.legal ul { margin: 0 0 18px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.legal ul li { position: relative; padding-left: 26px; color: var(--text-body); font-size: 16.5px; line-height: 1.7; }
.legal ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--sky); flex-shrink: 0; }
.legal a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--sky); }
.legal-contact { margin-top: 12px; background: var(--off-white); border: 1px solid var(--line); border-radius: 14px; padding: 22px 24px; }
.legal-contact p { margin: 0; }
.legal-contact strong { font-family: 'Comfortaa', cursive; color: var(--navy); }
.cookie-table { width: 100%; border-collapse: collapse; margin: 10px 0 24px; }
.cookie-table th, .cookie-table td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.cookie-table th { font-family: 'Comfortaa', cursive; font-weight: 700; color: var(--navy); background: var(--off-white); }
.cookie-table td { color: var(--text-body); line-height: 1.6; }
.cookie-table tr:last-child td { border-bottom: none; }
.cookie-type { font-family: 'Comfortaa', cursive; font-weight: 600; color: var(--navy); white-space: nowrap; }
@media (max-width: 640px) {
  .cookie-table, .cookie-table tbody, .cookie-table tr, .cookie-table td { display: block; width: 100%; }
  .cookie-table thead { display: none; }
  .cookie-table td { border: none; padding: 3px 0; }
  .cookie-table tr { border-bottom: 1px solid var(--line); padding: 16px 0; }
  .cookie-table tr:last-child { border-bottom: none; }
  .cookie-table td::before { content: attr(data-label); display: block; font-family: 'Comfortaa', cursive; font-weight: 700; color: var(--navy); font-size: 12px; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 3px; }
  .cookie-table td.cookie-type { font-size: 16px; margin-bottom: 4px; }
  .cookie-table td.cookie-type::before { display: none; }
}

/* ---------- Hero XL (forside) ---------- */
.hero::after { content: none; }
.hero-xl h1 { font-size: clamp(2.7rem, 5.2vw, 4rem); line-height: 1.05; }
.hero-xl .hero-inner { padding-top: 200px; }
.hero-kicker { display: inline-flex; align-items: center; gap: 10px; background: rgba(var(--dark-rgb),0.38); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.24); color: #fff; font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; padding: 9px 18px; border-radius: var(--pill); margin-bottom: 24px; }
.hero-kicker .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); animation: kickPulse 2.2s infinite; }
@keyframes kickPulse { 0% { box-shadow: 0 0 0 0 rgba(var(--sky-rgb),0.55); } 70% { box-shadow: 0 0 0 9px rgba(var(--sky-rgb),0); } 100% { box-shadow: 0 0 0 0 rgba(var(--sky-rgb),0); } }
.uword { white-space: nowrap; -webkit-text-fill-color: var(--sky); }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-xl .hero-sub { opacity: 0; animation: heroIn 0.8s var(--ease) 0.3s forwards; font-family: 'Comfortaa', cursive; font-weight: 500; font-size: clamp(1.25rem, 2.1vw, 1.6rem); color: rgba(255,255,255,0.9); margin-top: 16px; }
.hero-xl .hero-kicker, .hero-xl h1 .line, .hero-xl .hero-checks li, .hero-xl .hm-row { opacity: 0; animation: heroIn 0.8s var(--ease) forwards; }
.hero-xl .hero-kicker { animation-delay: 0.05s; }
.hero-xl h1 .line:nth-child(1) { animation-delay: 0.18s; }
.hero-xl h1 .line:nth-child(2) { animation-delay: 0.32s; }
.hero-xl .hero-checks li:nth-child(1) { animation-delay: 0.52s; }
.hero-xl .hero-checks li:nth-child(2) { animation-delay: 0.64s; }
.hero-xl .hero-checks li:nth-child(3) { animation-delay: 0.76s; }
.hero-xl .hm-row:first-child { animation-delay: 0.94s; }
.hero-xl .hm-row:last-child { animation-delay: 1.06s; }
.hero-xl .hero-menu { transition: transform 0.3s ease-out; will-change: transform; }
.hm-row { position: relative; overflow: hidden; }
.scroll-cue { position: absolute; left: 50%; transform: translateX(-50%); bottom: 26px; z-index: 4; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.3); background: rgba(var(--dark-rgb),0.3); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; color: #fff; opacity: 0; animation: heroIn 0.8s var(--ease) 1.5s forwards; transition: opacity 0.4s var(--ease); }
.scroll-cue svg { width: 19px; height: 19px; animation: cueBob 1.8s ease-in-out infinite; }
@keyframes cueBob { 0%, 100% { transform: translateY(-2px); } 50% { transform: translateY(4px); } }
.hero.cue-hidden .scroll-cue { opacity: 0 !important; pointer-events: none; }
@media (max-width: 600px) { .scroll-cue { display: none; } .hero-kicker { font-size: 11.5px; padding: 8px 14px; } }
@media (prefers-reduced-motion: reduce) { .hero-xl .hero-kicker, .hero-xl h1 .line, .hero-xl .hero-sub, .hero-xl .hero-checks li, .hero-xl .hm-row, .scroll-cue { opacity: 1; animation: none; } .hero-kicker .dot, .scroll-cue svg { animation: none; } }

/* ---------- Før/efter-slider ---------- */
.ba { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-elev); aspect-ratio: 16 / 8.2; max-width: 1060px; margin: 0 auto; touch-action: none; cursor: ew-resize; user-select: none; --pos: 50%; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
/* FØR-billedet skal stå ÆGTE — den gamle grayscale/sepia-effekt fik ethvert
   før-billede til at ligne en gråtonet ruin. Kun en anelse dæmpning tilbage. */
.ba-before { filter: brightness(0.96) saturate(0.95); }
.ba-clip { position: absolute; inset: 0; overflow: hidden; clip-path: inset(0 0 0 var(--pos)); }
.ba-line { position: absolute; top: 0; bottom: 0; left: var(--pos); width: 3px; background: #fff; box-shadow: 0 0 16px rgba(0,0,0,0.4); transform: translateX(-50%); }
.ba-grip { position: absolute; top: 50%; left: var(--pos); transform: translate(-50%,-50%); width: 54px; height: 54px; border-radius: 50%; background: #fff; color: var(--navy); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-elev); }
.ba-grip svg { width: 24px; height: 24px; }
.ba-tag { position: absolute; top: 16px; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 13px; padding: 7px 16px; border-radius: var(--pill); color: #fff; background: rgba(var(--dark-rgb),0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.ba-tag.before { left: 16px; }
.ba-tag.after { right: 16px; background: var(--sky); }
.ba:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; }
@media (max-width: 640px) { .ba { aspect-ratio: 4 / 3; } .ba-grip { width: 46px; height: 46px; } }

/* ---------- Område-bånd ---------- */
.omraade { background: var(--navy); padding: 88px 0; }
.om-head { text-align: center; max-width: 580px; margin: 0 auto 38px; }
.om-head h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 14px; }
.om-head p { color: rgba(255,255,255,0.65); margin-top: 12px; font-size: 15.5px; line-height: 1.6; }
.om-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 840px; margin: 0 auto; }
.om-chip { display: inline-flex; align-items: center; gap: 8px; font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 14px; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); padding: 11px 20px; border-radius: var(--pill); transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease); }
.om-chip:hover { background: rgba(var(--sky-rgb),0.28); border-color: rgba(var(--sky-rgb),0.55); transform: translateY(-2px); }
.om-chip svg { width: 15px; height: 15px; color: var(--sky); }
.om-chip.mere { background: transparent; border-style: dashed; color: rgba(255,255,255,0.7); }

/* ---------- Svartid ved formular ---------- */
.svartid { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 13.5px; color: var(--text-muted); }
.svartid svg { width: 15px; height: 15px; color: var(--sky); }

/* ---------- Akut hjælp (v2 24/9: CENTRERET kort, roligt glow, stor ring-knap) ---------- */
/* Baandet bor INDE i hvorfor-sektionen - afstanden op til why2-gridden */
.why2 + .akut { margin-top: 56px; }
.akut { display: flex; flex-direction: column; align-items: center; text-align: center; background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2, var(--navy)) 100%); border-radius: 28px; padding: 46px 40px 42px; position: relative; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(var(--dark-rgb, 10 25 47), 0.55); border: 1px solid rgba(var(--sky-rgb),0.2); }
.akut::before { content: ""; position: absolute; inset: 0; background: radial-gradient(70% 90% at 50% 0%, rgba(var(--sky-rgb),0.28), transparent 62%); pointer-events: none; }
.akut::after { content: ""; position: absolute; left: 50%; bottom: -160px; transform: translateX(-50%); width: 460px; height: 460px; border-radius: 50%; border: 1.5px solid rgba(var(--sky-rgb),0.16); pointer-events: none; }
.akut-tx { position: relative; max-width: 60ch; display: flex; flex-direction: column; align-items: center; }
.akut-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(var(--sky-rgb),0.16); border: 1px solid rgba(var(--sky-rgb),0.45); color: #fff; font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 16px; border-radius: var(--pill); }
.akut-badge svg { width: 14px; height: 14px; color: var(--sky); }
.akut-puls { width: 8px; height: 8px; border-radius: 50%; background: var(--sky); box-shadow: 0 0 0 0 rgba(var(--sky-rgb),0.6); animation: akutPuls 1.8s ease-out infinite; }
@keyframes akutPuls { 0% { box-shadow: 0 0 0 0 rgba(var(--sky-rgb),0.55); } 70% { box-shadow: 0 0 0 9px rgba(var(--sky-rgb),0); } 100% { box-shadow: 0 0 0 0 rgba(var(--sky-rgb),0); } }
@media (prefers-reduced-motion: reduce) { .akut-puls { animation: none; } }
.akut h2 { color: #fff; font-size: clamp(1.45rem, 2.4vw, 1.9rem); margin: 14px 0 8px; text-wrap: balance; }
.akut p { color: rgba(255,255,255,0.74); line-height: 1.6; max-width: 52ch; }
.akut-ring { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 20px; }
.akut-btn { font-size: clamp(1.02rem, 1.5vw, 1.15rem); padding: 16px 34px; border-radius: 999px; box-shadow: 0 16px 34px -12px rgba(var(--sky-rgb),0.6); transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease); }
.akut-btn svg { width: 1.1em; height: 1.1em; }
.akut-btn:hover { transform: translateY(-2px); box-shadow: 0 20px 42px -12px rgba(var(--sky-rgb),0.7); }
.akut-svar { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.6); font-size: 13px; }
.akut-svar svg { width: 13px; height: 13px; }
@media (max-width: 640px) { .akut { padding: 44px 24px 40px; } .akut-ring { width: 100%; } .akut-btn { width: 100%; justify-content: center; } }

/* ---------- Footer v2 (høj, 4 kolonner) ---------- */
.footer { padding: 108px 0 26px; background: radial-gradient(85% 60% at 50% 0%, var(--navy-2) 0%, var(--navy-deep) 55%); }
.f2-grid { display: grid; grid-template-columns: 1.05fr 1.05fr 1.35fr 1.05fr; gap: 48px; align-items: start; }
.f2-col h4 { color: #fff; font-size: 15.5px; margin: 0 0 24px; }
.f2-col h4::after { content: ""; display: block; width: 26px; height: 2.5px; border-radius: 2px; background: var(--sky); margin-top: 11px; }
.f2-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.f2-col ul a { color: rgba(255,255,255,0.7); font-size: 15px; transition: color 0.18s var(--ease), padding-left 0.18s var(--ease); }
.f2-col ul a:hover { color: #fff; padding-left: 4px; }
.f2-kontakt { border-left: 1px solid rgba(255,255,255,0.12); padding-left: clamp(28px, 4vw, 60px); }
/* Footer: kolonnerne bliver for smalle på tablet/mobil → telefon/mail/åbningstider knækker grimt. */
@media (max-width: 1100px) { .f2-grid { grid-template-columns: 1fr 1fr; gap: 40px; } .f2-kontakt { border-left: none; padding-left: 0; } }
@media (max-width: 700px) { .f2-grid { grid-template-columns: 1fr; gap: 36px; } }
.f2-kontakt p a { white-space: nowrap; }
/* Én hel linje pr. kontakt-oplysning; skaler skriften ned frem for at knække linjen. */
.f2-kontakt .f2-row { display: block; white-space: nowrap; font-size: clamp(12.5px, 3.6vw, 15px); }
@media (max-width: 1100px) { .f2-kontakt { grid-column: 1 / -1; } }
.f2-kontakt p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.95; margin: 0 0 14px; }
.f2-kontakt p a { color: rgba(255,255,255,0.88); }
.f2-kontakt p a:hover { color: #fff; }
.f2-social { display: flex; gap: 13px; margin-top: 10px; }
.f2-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.75); transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease); }
.f2-social a:hover { background: var(--sky); color: var(--sky-ink, #fff); transform: translateY(-2px); }
/* "Følg os på Facebook" i Facebooks egne farver */
.some-fb, .footer .some-fb { background: #1877F2; color: #fff; }
.some-fb:hover { background: #0f5fce; color: #fff; }
.f2-social svg { width: 17px; height: 17px; }
.f2-brand { justify-self: stretch; text-align: center; }
.f2-brand img { height: 62px; width: auto; display: block; margin: 0 auto; }
.f2-map { margin-top: 24px; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,0.14); }
.f2-map iframe { width: 100%; height: 190px; border: 0; display: block; }
.f2-trades { color: rgba(255,255,255,0.55); font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; margin: 16px 0 0; }
.f2-line { height: 1px; background: rgba(255,255,255,0.12); margin-top: 88px; }
.f2-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px 26px; flex-wrap: wrap; padding: 26px 0 6px; color: rgba(255,255,255,0.5); font-size: 13.5px; }
.f2-bottom a { color: rgba(255,255,255,0.72); }
.f2-bottom a:hover { color: #fff; }
.f2-mw a { font-weight: 600; }
/* Kompakt, pænere footer på mindre skærme (laptops < ~14") — mindre tekst,
   tættere links, mindre luft, så den ikke virker stor og løs. */
@media (max-width: 1500px) {
  .footer { padding: 64px 0 20px; }
  .f2-grid { gap: 30px 34px; padding-bottom: 42px; }
  .f2-col h4 { font-size: 13.5px; margin: 0 0 14px; }
  .f2-col h4::after { width: 22px; height: 2px; margin-top: 9px; }
  .f2-col ul { gap: 10px; }
  .f2-col ul a { font-size: 13.5px; }
  .f2-kontakt p { font-size: 13.5px; line-height: 1.7; margin: 0 0 11px; }
  .f2-kontakt .f2-row { font-size: clamp(12px, 3.4vw, 13.5px); }
  .f2-brand img { height: 46px; }
  .f2-address { font-size: 12.5px; }
  .f2-trades { font-size: 11px; margin-top: 12px; }
  .f2-map { margin-top: 16px; }
  .f2-map iframe { height: 148px; }
  .f2-social { margin-top: 8px; }
  .f2-social a { width: 36px; height: 36px; }
  .f2-line { margin-top: 44px; }
  .f2-bottom { font-size: 12.5px; padding: 20px 0 6px; }
}
@media (max-width: 1024px) { .f2-grid { grid-template-columns: 1fr 1fr; gap: 28px 34px; } .f2-kontakt { border-left: none; padding-left: 0; } .f2-line { margin-top: 40px; } }
@media (max-width: 560px) { .f2-grid { grid-template-columns: 1fr; gap: 30px; } .footer { padding-top: 56px; } .f2-bottom { flex-direction: column; align-items: flex-start; } }

/* ---------- Dock: slide-ud kontaktformular ---------- */
.dock-form { position: relative; }
.dock-form .dock-mail { cursor: pointer; }
.dock-panel { position: absolute; right: 66px; top: 50%; width: 324px; background: var(--navy); border-radius: 18px; padding: 24px 22px 20px; box-shadow: var(--shadow-elev); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-50%) translateX(16px); transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0s linear 0.28s; }
.dock-panel::before { content: ""; position: absolute; left: 100%; top: 0; bottom: 0; width: 22px; }
.dock-panel::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 12px; height: 12px; background: var(--navy); border-radius: 2px; }
.dock-form:hover .dock-panel, .dock-form.open .dock-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(-50%) translateX(0); transition: opacity 0.28s var(--ease), transform 0.28s var(--ease); }
.dock-panel h3 { color: #fff; font-size: 17px; margin: 0 0 8px; }
.dock-panel > p { color: rgba(255,255,255,0.7); font-size: 13px; line-height: 1.55; margin: 0 0 14px; }
.dock-f { display: flex; flex-direction: column; gap: 10px; }
.dock-f input, .dock-f textarea { width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.24); border-radius: 10px; padding: 11px 13px; color: #fff; font-size: 13.5px; font-family: inherit; resize: none; transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease); }
.dock-f input::placeholder, .dock-f textarea::placeholder { color: rgba(255,255,255,0.55); }
.dock-f input:focus, .dock-f textarea:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(var(--sky-rgb),0.2); }
.dock-f input.err2, .dock-f textarea.err2 { border-color: #E5484D; }
.dock-f .btn { justify-content: center; }
.dock-note { color: rgba(255,255,255,0.55); font-size: 11.5px; text-align: center; line-height: 1.5; }
.dock-sent { display: none; align-items: flex-start; gap: 9px; color: #fff; font-size: 14px; line-height: 1.5; padding: 6px 2px 2px; }
.dock-sent svg { width: 19px; height: 19px; color: var(--sky); flex-shrink: 0; }
.dock-panel.sent .dock-f { display: none; }
.dock-panel.sent .dock-sent { display: flex; }
@media (max-width: 768px) {
  .dock-panel { position: fixed; left: 14px; right: 14px; top: auto; bottom: 132px; width: auto; transform: translateY(12px); }
  .dock-form:hover .dock-panel { opacity: 0; visibility: hidden; pointer-events: none; }
  .dock-form.open .dock-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .dock-panel::after, .dock-panel::before { display: none; }
}

/* ---------- Kort (kontakt) ---------- */
.kort-sec { line-height: 0; }
.kort-full { width: 100%; height: 430px; border: 0; display: block; }

/* ---------- Mega-menu (Ydelser) ---------- */
.nav-mega { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(calc(-42% + var(--shift, 0px))) translateY(8px); display: flex; gap: 10px; width: 700px; max-width: calc(100vw - 40px); background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 14px; box-shadow: var(--shadow-elev); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0s linear 0.22s; }
.nav-item:hover .nav-mega, .nav-item:focus-within .nav-mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(calc(-42% + var(--shift, 0px))) translateY(0); transition: opacity 0.22s var(--ease), transform 0.22s var(--ease); }
.mega-grid { flex: 1; min-width: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; align-content: start; }
.nav-links .mega-link { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 13px; min-width: 0; font-family: 'Inter', sans-serif; font-weight: 500; font-size: 14px; transition: background 0.16s var(--ease); }
.nav-links .mega-link:hover { background: var(--sky-light); }
.mg-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--sky-light); color: var(--sky-text, var(--blue)); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.16s var(--ease), color 0.16s var(--ease); }
.mega-link:hover .mg-ic { background: var(--sky); color: var(--sky-ink, #fff); transform: scale(1.06); }
.mega-link:hover .mg-tx b { color: var(--blue); }
.mg-tx b { transition: color 0.16s var(--ease); }
.mg-ic svg { width: 19px; height: 19px; }
.mg-tx { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mg-tx b { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 13.5px; color: var(--navy); line-height: 1.25; }
.mg-tx span { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.mega-side { width: 200px; flex-shrink: 0; background: var(--navy); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; overflow: hidden; }
.mega-side img { width: calc(100% + 28px); max-width: none; margin: -14px -14px 12px; height: 88px; object-fit: cover; }
.mega-side b { font-family: 'Comfortaa', cursive; color: #fff; font-size: 13.5px; }
.mega-side p { color: rgba(255,255,255,0.65); font-size: 11.5px; line-height: 1.5; margin: 5px 0 12px; flex: 1; }
.nav-links .mega-cta { display: inline-flex; align-items: center; justify-content: center; gap: 6px; white-space: nowrap; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 11.5px; color: var(--sky-ink, #fff); background: var(--sky); padding: 9px 10px; border-radius: 9px; transition: background 0.16s var(--ease); }
.nav-links .mega-cta:hover { background: var(--blue); }
.mega-cta svg { width: 13px; height: 13px; }

/* ---------- Kontakt-side: split-layout ---------- */
.kk-split { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 34px; align-items: start; max-width: 1180px; margin: 0 auto; }
.kk-aside { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 130px; }
.kk-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px; box-shadow: var(--shadow-card); }
.kk-card h3 { font-size: 17px; margin-bottom: 14px; }
.kk-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.kk-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--text-body); line-height: 1.5; }
.kk-list .hc-mark { margin-top: 1px; }
.kk-ring { display: flex; align-items: center; gap: 14px; }
.kk-ph { width: 46px; height: 46px; border-radius: 50%; background: var(--sky-light); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kk-ph svg { width: 20px; height: 20px; }
.kk-ring b { display: block; font-family: 'Comfortaa', cursive; color: var(--navy); font-size: 16px; }
.kk-ring a:hover b { color: var(--blue); }
.kk-ring span { font-size: 12.5px; color: var(--text-muted); }
.kk-p { font-size: 14px; color: var(--text-body); line-height: 1.6; margin: 0 0 12px; }
.kk-link { display: inline-flex; align-items: center; gap: 7px; color: var(--blue); font-weight: 600; font-size: 14px; }
.kk-link:hover { color: var(--sky); }
.kk-link svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .kk-split { grid-template-columns: 1fr; } .kk-aside { position: static; } }

/* ---------- Kontakt: hvad sker der nu ---------- */
.kk-steps { max-width: 1180px; margin: 34px auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 26px 30px; display: flex; align-items: center; gap: 22px; }
.ks { display: flex; align-items: center; gap: 14px; flex: 1; }
.ks-n { width: 40px; height: 40px; border-radius: 50%; background: var(--sky-light); color: var(--blue); font-family: 'Comfortaa', cursive; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ks b { display: block; font-family: 'Comfortaa', cursive; font-size: 14.5px; color: var(--navy); }
.ks span { font-size: 12.5px; color: var(--text-muted); }
.ks-sep { width: 34px; height: 2px; border-radius: 2px; background: var(--sky-tint); flex-shrink: 0; }
@media (max-width: 760px) { .kk-steps { flex-direction: column; align-items: flex-start; } .ks-sep { display: none; } }

/* ---------- Sociale medier (telefon-mockup) ---------- */
.some-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 76px); align-items: center; max-width: 1060px; margin: 0 auto; }
.some-phone { width: min(310px, 100%); justify-self: center; background: #15171c; border-radius: 44px; padding: 11px; box-shadow: var(--shadow-elev); }
.sp-screen { position: relative; background: #f0f2f5; border-radius: 34px; overflow: hidden; }
.sp-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: #15171c; border-radius: 0 0 14px 14px; z-index: 2; }
.sp-bar { display: flex; justify-content: space-between; align-items: center; padding: 32px 20px 8px; font-size: 11px; font-weight: 600; color: #333; background: #fff; }
.sp-url { display: inline-flex; gap: 5px; align-items: center; color: #555; font-weight: 500; }
.sp-url svg { width: 10px; height: 10px; }
.sp-feed { padding: 10px 10px 14px; display: flex; flex-direction: column; gap: 10px; }
.sp-head { display: flex; align-items: center; gap: 10px; background: #fff; border-radius: 12px; padding: 12px; }
.sp-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--sky), var(--blue)); color: var(--sky-ink, #fff); font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.sp-av.sm { width: 30px; height: 30px; font-size: 11px; }
.sp-head-tx { flex: 1; min-width: 0; }
.sp-head b, .sp-post-head b { display: block; font-family: 'Comfortaa', cursive; font-size: 12.5px; color: var(--text-dark); line-height: 1.25; }
.sp-head span, .sp-post-head span { font-size: 10.5px; color: #7a828e; }
.sp-follow { background: #1877F2; color: #fff; font-size: 11px; font-weight: 700; padding: 6px 13px; border-radius: 7px; }
.sp-post { background: #fff; border-radius: 12px; padding: 11px 12px 10px; }
.sp-post-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.sp-post p { font-size: 12px; color: var(--text-dark); line-height: 1.45; margin: 0 0 9px; }
.sp-post img { width: 100%; height: 116px; object-fit: cover; border-radius: 9px; display: block; }
.sp-meta { display: flex; align-items: center; gap: 6px; font-size: 10.5px; color: #7a828e; margin-top: 8px; }
.sp-meta svg { width: 12px; height: 12px; color: #1877F2; }
.some-tx h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 14px 0 16px; }
.some-tx p { font-size: 16px; line-height: 1.7; color: var(--text-body); max-width: 52ch; margin: 0 0 26px; }
.some-fb svg { width: 18px; height: 18px; }
@media (max-width: 800px) { .some-grid { grid-template-columns: 1fr; } .some-phone { order: 2; } }

/* ---------- Kontakt: quote + chips ---------- */
.chip { cursor: pointer; }
.kk-quote .stars { margin-bottom: 12px; }
.kkq-t { font-size: 14.5px; color: var(--text-dark); line-height: 1.65; margin: 0 0 16px; }
.kkq-who { display: flex; align-items: center; gap: 12px; }
.kkq-av { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--sky), var(--blue)); color: var(--sky-ink, #fff); font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.kkq-who b { display: block; font-family: 'Comfortaa', cursive; font-size: 14px; color: var(--navy); }
.kkq-who span { font-size: 12px; color: var(--text-muted); }

/* ---------- Folkene bag (forside-teaser) ---------- */
.tt-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.tt-tx h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 14px 0 16px; }
.tt-tx p { font-size: 16px; line-height: 1.7; color: var(--text-body); max-width: 48ch; margin: 0 0 26px; }
.tt-people { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tt-p { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 26px 20px; text-align: center; transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); }
.tt-p:hover { transform: translateY(-4px); box-shadow: var(--shadow-elev); }
.tt-av { width: 62px; height: 62px; border-radius: 50%; background: linear-gradient(135deg, var(--sky), var(--blue)); color: var(--sky-ink, #fff); font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 19px; display: inline-flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.tt-p b { display: block; font-family: 'Comfortaa', cursive; font-size: 15px; color: var(--navy); }
.tt-p > span:last-child { font-size: 12.5px; color: var(--text-muted); }
@media (max-width: 860px) { .tt-grid { grid-template-columns: 1fr; } }

/* ---------- Områdekort (Danmark) ---------- */
.om-wrap { display: grid; grid-template-columns: 1fr 0.95fr; gap: clamp(32px, 4vw, 64px); align-items: center; }
.omraade .om-wrap .om-head { text-align: left; margin: 0 0 26px; max-width: none; }
.om-wrap .om-chips { justify-content: flex-start; margin: 0; max-width: none; }
.om-chip { cursor: pointer; font-size: 14px; }
.om-chip.on { background: var(--sky); border-color: var(--sky); color: var(--sky-ink, #fff); }
.om-chip.on svg { color: var(--sky-ink, #fff); }
/* Kortet er 1:1 samme udtryk som kontrolpanelets mini-kort: lyst kort-kort,
   lys landmasse, dækkede regioner tonet mørkere, mørke pins med hvid kant og
   ALTID synlige bynavne — blot i sitets egen palette. */
.om-map { position: relative; background: #f5f6f2; border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; height: 480px; overflow: hidden; padding: 12px; }
.om-map svg { display: block; width: 100%; height: 100%; }
.dk-dot { fill: var(--navy); stroke: #fff; stroke-width: 1.6; transition: fill 0.2s var(--ease); }
.om-map g.act .dk-dot { fill: var(--sky); stroke: #fff; }
.dk-pulse { fill: rgba(var(--navy-rgb),0.15); r: 8; }
.om-map g.act .dk-pulse { animation: dkPulse 1.8s ease-out infinite; }
@keyframes dkPulse { 0% { r: 8; fill: rgba(74,144,217,0.5); } 100% { r: 24; fill: rgba(74,144,217,0); } }
.dk-lblg { opacity: 1; }
.dk-region { fill: rgba(var(--navy-rgb),0.08); stroke: none; cursor: pointer; transition: fill 0.25s var(--ease); }
.dk-region.act { fill: rgba(var(--navy-rgb),0.22); }
.dk-lbl { fill: var(--navy); font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 12.5px; paint-order: stroke; stroke: #fff; stroke-width: 3px; }
/* Dæknings-radius om en by (stiplet cirkel, samme udtryk som panelet).
   Når byen er aktiv, fremhæves cirklen — regionen tones ALDRIG for radius-byer. */
.dk-radius { fill: rgba(var(--sky-rgb),0.10); stroke: rgba(var(--sky-rgb),0.55); stroke-width: 1.2; stroke-dasharray: 5 4; pointer-events: none; transition: fill 0.2s var(--ease), stroke 0.2s var(--ease); }
.dk-radius.act { fill: rgba(var(--sky-rgb),0.16); stroke: var(--sky); stroke-width: 1.6; }
/* "Hele regionen"-chip skiller sig let ud fra by-chips. */
.om-chip--region { border-style: dashed; }
.dk-lblg text { transform: translateY(-2px); }
.dk-hint { position: absolute; left: 16px; bottom: 14px; font-size: 13px; color: rgba(255,255,255,0.72); }
.dk-hint b { color: #fff; font-family: 'Comfortaa', cursive; }
.om-map g.base .dk-dot { fill: var(--sky); stroke: #fff; stroke-width: 2; }
.om-text .om-head { margin-bottom: 22px; }
.om-list { list-style: none; padding: 0; margin: 0 0 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.om-list li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.88); font-size: 14.5px; font-weight: 500; }
.om-list svg { width: 17px; height: 17px; color: var(--sky); flex-shrink: 0; }
.om-note { font-size: 13.5px; color: rgba(255,255,255,0.58); margin: 0 0 24px; }
@media (max-width: 900px) { .om-wrap { grid-template-columns: 1fr; } .om-map { height: 380px; } .omraade .om-wrap .om-head { text-align: center; } .om-text { text-align: center; } .om-list { max-width: 420px; margin-left: auto; margin-right: auto; text-align: left; } .om-text .btn { margin: 0 auto; } }
@media (max-width: 480px) { .om-list { grid-template-columns: 1fr; } }

/* ---------- Prisberegner (teaser-kort + popup-motor) ---------- */
.calc { max-width: 660px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); overflow: hidden; }
.pcalc-teaser { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 34px 30px; }
.pcalc-teaser__list { list-style: none; margin: 0; padding: 0; width: 100%; display: flex; flex-direction: column; gap: 9px; }
.pcalc-teaser__list li { display: flex; justify-content: space-between; gap: 14px; font-size: 14.5px; color: var(--text-body); border-bottom: 1px dashed var(--line); padding-bottom: 9px; }
.pcalc-teaser__list li b { color: var(--navy); font-family: 'Inter', sans-serif; font-weight: 600; white-space: nowrap; }
.pcalc-teaser__note { margin: 0; font-size: 12.5px; color: var(--text-muted); }
/* Popup */
body.pcalc-lock { overflow: hidden; }
.pcalc-ov { position: fixed; inset: 0; z-index: 4000; display: none; align-items: flex-start; justify-content: center; background: rgba(10,28,58,0.55); backdrop-filter: blur(3px); padding: 4vh 16px; overflow-y: auto; }
.pcalc-ov.open { display: flex; }
.pcalc-modal { width: 100%; max-width: 640px; background: #fff; border-radius: var(--r-card); box-shadow: var(--shadow-elev); overflow: hidden; margin-bottom: 4vh; }
.pcalc-hd { display: flex; align-items: center; justify-content: space-between; padding: 18px 26px; background: var(--navy); }
.pcalc-hd b { font-family: 'Comfortaa', cursive; font-size: 17px; color: #fff; }
.pcalc-x { background: none; border: 0; color: rgba(255,255,255,0.75); font-size: 26px; line-height: 1; cursor: pointer; padding: 2px 6px; }
.pcalc-x:hover { color: #fff; }
.pcalc-steps { padding: 26px; }
.pcalc-steps .calc-form { padding: 0; }
.pcalc-krav { margin-top: 22px; background: var(--off-white); border: 1px solid var(--line); border-radius: 12px; padding: 14px 18px; }
.pcalc-krav > b { display: block; font-family: 'Comfortaa', cursive; font-size: 13px; color: var(--navy); margin-bottom: 8px; }
.pcalc-krav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.pcalc-krav li { display: flex; justify-content: space-between; gap: 14px; font-size: 13.5px; color: var(--text-body); }
.pcalc-krav li b { color: var(--navy); font-family: 'Inter', sans-serif; font-weight: 600; white-space: nowrap; }
.pcalc-gate { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 11px; }
/* Tilbuds-boksen i resultatet: TYDELIGT eget kort, så den aldrig flyder
   sammen med prisoverslaget ovenover. */
.pcalc-tilbud { margin-top: 8px; padding: 20px 18px; background: var(--sky-light); border: 1px solid rgba(var(--sky-rgb),0.35); border-radius: 14px; border-top: 1px solid rgba(var(--sky-rgb),0.35); }
.pcalc-tilbud > b { font-size: 17px; }
.pcalc-tilbud input { background: #fff; }
.pcalc-gate > b { font-family: 'Comfortaa', cursive; font-size: 15px; color: var(--navy); }
.pcalc-gate > p { margin: -4px 0 2px; font-size: 13.5px; color: var(--text-muted); }
.pcalc-gate input { border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; font-size: 14.5px; font-family: inherit; }
.pcalc-gate input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(var(--sky-rgb),0.14); }
.pcalc-gate input.err2 { border-color: #E5484D; }
.pcalc-gate .btn { align-self: flex-start; margin-top: 4px; }
.pcalc-gate__small { font-size: 12px; color: var(--text-muted); }
.pcalc-result { padding: 26px; }
.pcalc-result__eyebrow { display: block; font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.pcalc-result .calc-lines { border-top: none; padding-top: 0; }
.pcalc-result .calc-lines li { color: var(--text-body); font-size: 14px; }
.pcalc-result .calc-lines li b { color: var(--navy); }
.pcalc-total { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin: 14px 0 6px; padding: 15px 18px; background: var(--navy); border-radius: 13px; }
.pcalc-total span { font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 13px; color: rgba(255,255,255,0.72); }
.pcalc-total b { font-family: 'Comfortaa', cursive; font-size: clamp(1.4rem, 2.4vw, 1.8rem); color: #fff; white-space: nowrap; }
.pcalc-note { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; margin: 0 0 16px; }
.pcalc-back { display: block; margin-top: 14px; background: none; border: 0; padding: 0; font-family: inherit; font-size: 13px; font-weight: 600; color: var(--blue); cursor: pointer; }
.pcalc-back:hover { text-decoration: underline; }
@media (max-width: 640px) { .pcalc-steps, .pcalc-result { padding: 20px 16px; } }
.calc-form { padding: 36px; display: flex; flex-direction: column; gap: 26px; }
.cfld > label { display: block; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 13.5px; color: var(--navy); margin-bottom: 12px; }
.cfld > label b { color: var(--blue); }
.calc-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cchip { padding: 10px 17px; border: 1px solid var(--line); border-radius: var(--pill); font-size: 14px; font-weight: 600; color: var(--text-body); cursor: pointer; transition: 0.16s var(--ease); }
.cchip:hover { border-color: var(--sky); color: var(--blue); }
.cchip.on { background: var(--sky); border-color: var(--sky); color: var(--sky-ink, #fff); }
.calc input[type="range"] { width: 100%; accent-color: var(--sky); }
.calc-out { background: var(--navy); padding: 36px; display: flex; flex-direction: column; justify-content: center; gap: 10px; }
.calc-out > span { font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.calc-out b { font-family: 'Comfortaa', cursive; font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: #fff; }
.calc-out p { color: rgba(255,255,255,0.68); font-size: 13.5px; line-height: 1.6; margin: 0 0 10px; }
.calc-out .btn { align-self: flex-start; }
@media (max-width: 800px) { .calc { grid-template-columns: 1fr; } }

/* ---------- Upload-formular ---------- */
.upload-zone { display: flex; flex-direction: column; align-items: center; gap: 5px; border: 1.5px dashed var(--line); border-radius: 12px; background: var(--off-white); padding: 26px 18px; text-align: center; cursor: pointer; transition: 0.16s var(--ease); }
.upload-zone:hover, .upload-zone.drag { border-color: var(--sky); background: var(--sky-light); }
.upload-zone svg { width: 26px; height: 26px; color: var(--sky); }
.upload-zone span { font-size: 14px; color: var(--text-body); }
.upload-zone .up-note { font-size: 12px; color: var(--text-muted); }
.up-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.up-item { display: inline-flex; align-items: center; gap: 8px; background: var(--sky-light); color: var(--navy); font-size: 12.5px; font-weight: 600; padding: 7px 12px; border-radius: var(--pill); }
.up-item button { color: var(--blue); display: grid; place-items: center; cursor: pointer; }
.up-item svg { width: 14px; height: 14px; }

/* ---------- Booking ---------- */
.book { max-width: 900px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 34px; }
.book-lbl { display: block; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 13.5px; color: var(--navy); margin: 0 0 12px; }
.book-days { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 6px; }
.bday { flex: 0 0 auto; min-width: 88px; text-align: center; border: 1px solid var(--line); border-radius: 13px; padding: 11px 10px; cursor: pointer; transition: 0.16s var(--ease); }
.bday span { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted); }
.bday b { font-family: 'Comfortaa', cursive; font-size: 14.5px; color: var(--navy); }
.bday:hover { border-color: var(--sky); }
.bday.on { border-color: var(--sky); background: var(--sky-light); }
.book-slots { display: flex; flex-wrap: wrap; gap: 10px; }
/* Booking-widget'en (core) følger sitets farveskema — aldrig standard-blå */
:root { --mw-brand: var(--sky); }
.mwbk.mwbk { --mwbk-accent-fg: var(--sky-ink, #fff); }
.bslot { padding: 10px 20px; border: 1px solid var(--line); border-radius: var(--pill); font-size: 14px; font-weight: 600; cursor: pointer; transition: 0.16s var(--ease); }
.bslot:hover { border-color: var(--sky); color: var(--blue); }
.bslot.on { background: var(--sky); border-color: var(--sky); color: var(--sky-ink, #fff); }
.book-form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.book-sel { grid-column: 1 / -1; display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--text-muted); }
.book-sel svg { width: 16px; height: 16px; color: var(--sky); flex-shrink: 0; }
.book-sel b { color: var(--navy); font-family: 'Comfortaa', cursive; }
.book-form input { border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; font-size: 14.5px; font-family: inherit; }
.book-form input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(var(--sky-rgb),0.14); }
.book-form input.err2 { border-color: #E5484D; }
.book-done { display: none; text-align: center; padding: 26px 10px 10px; }
.book-done svg { width: 34px; height: 34px; color: var(--sky); margin-bottom: 10px; }
.book-done h3 { font-size: 19px; }
.book-done p { color: var(--text-muted); margin-top: 6px; }
.book.done .book-inner { display: none; }
.book.done .book-done { display: block; }
@media (max-width: 640px) { .book-form { grid-template-columns: 1fr; } .book { padding: 24px 18px; } }

/* ---------- Prisberegner: antal + tilkøb ---------- */
.antal-row { display: flex; align-items: center; gap: 14px; }
.antal-row input[type="number"] { width: 104px; border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; font-size: 15px; font-family: inherit; font-weight: 600; color: var(--navy); }
.antal-row input[type="number"]:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(var(--sky-rgb),0.14); }
.antal-unit { font-size: 14px; font-weight: 600; color: var(--text-muted); }
.antal-row input[type="range"] { flex: 1; }
.tk-list { display: flex; flex-direction: column; gap: 9px; }
.tk-row { display: flex; align-items: center; gap: 11px; border: 1px solid var(--line); border-radius: 11px; padding: 11px 14px; cursor: pointer; transition: 0.16s var(--ease); }
.tk-row:hover { border-color: var(--sky); }
.tk-row.on { border-color: var(--sky); background: var(--sky-light); }
.tk-row input { accent-color: var(--sky); width: 17px; height: 17px; flex-shrink: 0; }
.tk-name { flex: 1; font-size: 14.5px; font-weight: 500; color: var(--text-dark); }
.tk-pris { font-size: 13px; font-weight: 700; color: var(--blue); white-space: nowrap; }
.calc-sum { color: rgba(255,255,255,0.92) !important; font-weight: 600; font-size: 14px !important; }

/* ---------- Funktioner-demo ---------- */
.cta-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 30px; margin-top: 26px; }
.cta-trust span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 14px; }
.cta-trust svg { width: 16px; height: 16px; color: var(--sky); }
.calc-lines { list-style: none; margin: 2px 0 4px; padding: 12px 0 2px; border-top: 1px solid rgba(255,255,255,0.16); display: flex; flex-direction: column; gap: 7px; }
.calc-lines li { display: flex; justify-content: space-between; gap: 14px; font-size: 12.5px; color: rgba(255,255,255,0.8); }
.calc-lines li b { color: #fff; font-family: 'Inter', sans-serif; font-weight: 600; white-space: nowrap; }
.pl-list { max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); overflow: hidden; }
.pl-cat { padding: 16px 28px 10px; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--blue); background: var(--off-white); border-bottom: 1px solid var(--line); }
.pl-cat:not(:first-child) { border-top: 1px solid var(--line); }
.pl-row { display: flex; align-items: center; gap: 16px; padding: 19px 28px; border-bottom: 1px solid var(--off-white); }
.pl-row:last-child { border-bottom: none; }
.pl-ic { width: 40px; height: 40px; border-radius: 11px; background: var(--sky-light); color: var(--blue); display: grid; place-items: center; flex-shrink: 0; }
.pl-ic svg { width: 19px; height: 19px; }
.pl-tx { flex: 1; min-width: 0; }
.pl-tx b { display: block; font-family: 'Comfortaa', cursive; font-size: 15px; color: var(--navy); }
.pl-tx span { font-size: 13px; color: var(--text-muted); }
.pl-pris { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 15.5px; color: var(--navy); white-space: nowrap; text-align: right; }
.pl-vej { display: block; font-size: 10.5px; color: var(--text-muted); font-weight: 500; font-family: 'Inter', sans-serif; }
.kal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 1020px; margin: 0 auto; }
.kal { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 24px; display: flex; flex-direction: column; gap: 14px; transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); }
.kal-top { display: flex; gap: 16px; align-items: flex-start; }
.kal:hover { transform: translateY(-4px); box-shadow: var(--shadow-elev); }
.kal-date { width: 62px; flex-shrink: 0; text-align: center; background: var(--navy); color: #fff; border-radius: 13px; padding: 10px 6px 8px; }
.kal-date b { display: block; font-family: 'Comfortaa', cursive; font-size: 22px; line-height: 1.1; }
.kal-date span { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.kal-tx h3 { font-size: 16.5px; }
.kal-meta { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--text-muted); margin-top: 7px; }
.kal-meta svg { width: 13px; height: 13px; color: var(--sky); flex-shrink: 0; }
.kal { cursor: pointer; text-align: left; font-family: inherit; border: 1px solid var(--line); }
.kal:hover .kal-tilmeld { color: var(--sky); }
.kal:hover .kal-tilmeld svg { transform: translateX(3px); }
.kal-tilmeld { display: inline-flex; align-items: center; gap: 7px; align-self: flex-start; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 13.5px; color: var(--blue); padding: 4px 0; transition: color 0.16s var(--ease); }
.kal-tilmeld:hover { color: var(--sky); }
.kal-tilmeld svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease); }
.kal-tilmeld:hover svg { transform: translateX(3px); }
.calc-teaser { max-width: 860px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 34px; display: flex; align-items: center; gap: 24px; }
.calc-teaser .ct-ic { width: 64px; height: 64px; border-radius: 18px; background: var(--sky-light); color: var(--sky); display: grid; place-items: center; flex: 0 0 auto; }
.calc-teaser .ct-ic svg { width: 30px; height: 30px; }
.calc-teaser .ct-tx { flex: 1; }
.calc-teaser h3 { font-size: 19px; margin-bottom: 6px; }
.calc-teaser p { font-size: 14.5px; color: var(--text-body); line-height: 1.6; max-width: 52ch; }
.calc-teaser .btn { flex: 0 0 auto; }
@media (max-width: 760px) { .calc-teaser { flex-direction: column; align-items: flex-start; } }
.calc-trust { max-width: 1020px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ct-item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 22px; display: flex; gap: 14px; align-items: flex-start; }
.ct-item > svg { width: 22px; height: 22px; color: var(--sky); flex: 0 0 auto; margin-top: 2px; }
.ct-item b { display: block; font-family: 'Comfortaa', cursive; font-size: 14.5px; color: var(--navy); margin-bottom: 4px; }
.ct-item span { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 760px) { .calc-trust { grid-template-columns: 1fr; } }

/* ---------- Arrangement-side ---------- */
.ev-back { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--text-muted); margin-bottom: 22px; transition: color 0.15s var(--ease); }
.ev-back:hover { color: var(--blue); }
.ev-back svg { width: 16px; height: 16px; }
.ev-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 40px; align-items: start; }
.ev-media { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); margin-bottom: 26px; }
.ev-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(var(--navy-rgb),0) 55%, rgba(var(--navy-rgb),0.45)); }
.ev-media img { width: 100%; height: 340px; object-fit: cover; display: block; }
.ev-date { position: absolute; top: 18px; left: 18px; z-index: 2; background: #fff; border-radius: 14px; box-shadow: var(--shadow-card); padding: 10px 16px; text-align: center; }
.ev-date b { display: block; font-family: 'Comfortaa', cursive; font-size: 22px; color: var(--blue); line-height: 1; }
.ev-date span { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); }
.ev-main h1 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 14px; }
.ev-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 22px; }
.ev-meta span { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.ev-meta svg { width: 16px; height: 16px; color: var(--sky); }
.ev-meta b { color: var(--text-dark); font-weight: 600; }
.ev-body p { font-size: 15.5px; line-height: 1.75; color: var(--text-body); margin-bottom: 14px; }
.ev-card { position: sticky; top: 110px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 28px; }
.ev-card h3 { font-size: 19px; margin: 8px 0 4px; }
.ev-card-sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 16px; }
.ev-card form { display: flex; flex-direction: column; gap: 10px; }
.ev-card input { border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; font-size: 14.5px; font-family: inherit; }
.ev-card input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(var(--sky-rgb),0.14); }
.ev-card input.err2 { border-color: #E5484D; }
.ev-sent { display: none; text-align: center; padding: 10px 0 4px; }
.ev-sent .ring { width: 52px; height: 52px; border-radius: 50%; background: var(--sky-light); color: var(--sky); display: grid; place-items: center; margin: 0 auto 12px; }
.ev-sent .ring svg { width: 24px; height: 24px; }
.ev-sent p { color: var(--text-muted); font-size: 14px; margin-top: 6px; }
.ev-card.sent form { display: none; }
.ev-card.sent .ev-sent { display: block; }
.ev-note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--off-white); }
.ev-note svg { width: 15px; height: 15px; color: var(--sky); flex-shrink: 0; }
@media (max-width: 900px) { .ev-grid { grid-template-columns: 1fr; } .ev-card { position: static; } .ev-media img { height: 240px; } }

/* ---------- Booking: måneds-kalender ---------- */
.bcal { max-width: 420px; }
.bcal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.bcal-head b { font-family: 'Comfortaa', cursive; font-size: 15px; color: var(--navy); text-transform: capitalize; }
.bcal-nav { display: flex; gap: 6px; }
.bcal-nav button { width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--text-body); cursor: pointer; transition: 0.15s var(--ease); background: #fff; }
.bcal-nav button:hover:not(:disabled) { border-color: var(--sky); color: var(--blue); }
.bcal-nav button:disabled { opacity: 0.35; cursor: default; }
.bcal-nav svg { width: 16px; height: 16px; }
.bcal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.bcal-wd { text-align: center; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); padding: 6px 0; }
.bcal-d { aspect-ratio: 1; border-radius: 10px; display: grid; place-items: center; font-size: 13.5px; font-weight: 600; color: var(--text-dark); cursor: pointer; border: 1px solid transparent; transition: 0.13s var(--ease); background: none; font-family: inherit; }
.bcal-d:hover:not(:disabled) { border-color: var(--sky); color: var(--blue); }
.bcal-d.on { background: var(--sky); color: var(--sky-ink, #fff); }
.bcal-d:disabled { color: #C6CDD6; cursor: default; }
.bcal-d.tom { visibility: hidden; }

.demo-lbl { display: block; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-muted); margin-top: 36px; }
.demo-empty { max-width: 560px; margin: 12px auto 0; text-align: center; border: 1.5px dashed var(--line); border-radius: 16px; padding: 28px; color: var(--text-muted); font-size: 14px; line-height: 1.6; background: rgba(255,255,255,0.5); }
.demo-empty b { display: block; font-family: 'Comfortaa', cursive; color: var(--text-dark); margin-bottom: 4px; }
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); }
.case:hover { transform: translateY(-4px); box-shadow: var(--shadow-elev); }
.case img { width: 100%; height: 190px; object-fit: cover; display: block; }
.case-b { padding: 20px 22px 22px; }
.case-tag { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sky); }
.case-b h3 { font-size: 17px; margin: 8px 0 6px; }
.case-meta { font-size: 13px; color: var(--text-muted); }
.nyt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.nyt { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 26px; transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease); }
.nyt:hover { transform: translateY(-4px); box-shadow: var(--shadow-elev); }
.nyt-date { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.nyt h3 { font-size: 16.5px; margin: 9px 0 8px; }
.nyt p { font-size: 14px; color: var(--text-body); line-height: 1.6; margin: 0 0 14px; }
.tider-card { max-width: 460px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 30px 30px 22px; }
.open-badge { display: inline-flex; align-items: center; gap: 8px; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 13px; padding: 8px 16px; border-radius: var(--pill); margin-bottom: 16px; }
.open-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.open-badge.aaben { background: #E8F6ED; color: #26773f; }
.open-badge.lukket { background: #FBECEC; color: #b3423c; }
.tid-r { display: flex; justify-content: space-between; align-items: center; padding: 11px 4px; border-bottom: 1px solid var(--off-white); font-size: 14.5px; }
.tid-r:last-child { border-bottom: none; }
.tid-r .d { font-weight: 600; color: var(--text-dark); }
.tid-r .t { color: var(--text-body); }
.tid-r .t.luk { color: var(--text-muted); font-style: italic; }
.tid-r.idag { background: var(--sky-light); border-radius: 9px; padding-left: 12px; padding-right: 12px; border-bottom-color: transparent; }
.nb { max-width: 860px; margin: 0 auto; background: linear-gradient(135deg, var(--navy), var(--navy-2)); border-radius: var(--r-card); padding: 52px clamp(24px, 5vw, 60px); text-align: center; }
.nb p { color: rgba(255,255,255,0.7); margin-top: 10px; }
.nb-form { display: flex; gap: 10px; max-width: 440px; margin: 24px auto 0; }
.nb-form input { flex: 1; min-width: 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25); border-radius: var(--pill); padding: 13px 18px; color: #fff; font-size: 14.5px; }
.nb-form input::placeholder { color: rgba(255,255,255,0.55); }
.nb-form input:focus { outline: none; border-color: var(--sky); box-shadow: 0 0 0 3px rgba(var(--sky-rgb),0.2); }
.nb-ok { display: none; color: #fff; font-weight: 600; margin-top: 20px; }
.nb.sent .nb-form { display: none; }
.nb.sent .nb-ok { display: block; }
.fv-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; max-width: 1020px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); }
.fv-info { padding: 36px; }
.fv-row { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 20px; font-size: 14.5px; color: var(--text-body); line-height: 1.55; }
.fv-row b { font-family: 'Comfortaa', cursive; color: var(--navy); }
.fv-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.cert-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(28px, 5vw, 64px); }
.cert-strip img { height: 92px; width: auto; }
.cert-note { text-align: center; font-size: 14.5px; color: var(--text-body); max-width: 52ch; margin: 28px auto 0; line-height: 1.7; }
.partner-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: clamp(24px, 4vw, 56px); }
.partner { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: clamp(17px, 2.2vw, 22px); color: rgba(var(--navy-rgb),0.32); }
.beh-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; max-width: 860px; margin: 0 auto; }
.beh { background: #fff; border: 2px solid var(--line); border-radius: var(--r-card); padding: 28px 20px; text-align: center; cursor: pointer; box-shadow: var(--shadow-card); transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease); }
.beh:hover { transform: translateY(-3px); }
.beh.on { border-color: var(--sky); background: var(--sky-light); }
.beh b { display: block; font-family: 'Comfortaa', cursive; font-size: 15.5px; color: var(--navy); margin-top: 2px; }
.beh > span:last-child { font-size: 12.5px; color: var(--text-muted); }
.beh-valgt { display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 28px; font-size: 14.5px; color: var(--text-body); flex-wrap: wrap; }
.beh-valgt svg { width: 17px; height: 17px; color: var(--sky); }
.beh-valgt b { font-family: 'Comfortaa', cursive; color: var(--navy); }
@media (max-width: 760px) { .fv-grid { grid-template-columns: 1fr; } .nb-form { flex-direction: column; } .pl-row { flex-wrap: wrap; } }

/* ---------- Sektions-varme (foto-tint + gradient) ---------- */
.sec-tint { background: linear-gradient(180deg, var(--off-white) 0%, var(--sky-light) 100%); }
.sec-tint2 { background: linear-gradient(180deg, var(--sky-light) 0%, #fff 100%); }
.sec-grad { background: linear-gradient(180deg, var(--off-white) 0%, var(--sky-light) 100%); }
.sec-grad2 { background: linear-gradient(180deg, var(--sky-light) 0%, var(--off-white) 100%); }

/* ---------- Nyheds-kort m. billede + artikelside ---------- */
a.nyt { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.nyt-img { display: block; position: relative; overflow: hidden; }
.nyt-img img { width: 100%; height: 170px; object-fit: cover; display: block; transition: transform 0.35s var(--ease); }
a.nyt:hover .nyt-img img { transform: scale(1.05); }
.nyt-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(var(--navy-rgb),0) 55%, rgba(var(--navy-rgb),0.35)); }
.nyt-b { display: flex; flex-direction: column; gap: 8px; padding: 20px 22px 22px; }
.nyt-mere { display: inline-flex; align-items: center; gap: 7px; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 13.5px; color: var(--blue); margin-top: 6px; }
.nyt-mere svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease); }
a.nyt:hover .nyt-mere svg { transform: translateX(3px); }
.ny-art { max-width: 760px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); padding: 40px; }
.ny-art .ev-media { margin: -40px -40px 26px; border-radius: var(--r-card) var(--r-card) 0 0; box-shadow: none; }
.ny-art .ev-media img { height: 300px; }
.ny-art h1 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 10px 0 18px; }
.ny-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; background: var(--sky-light); border-radius: 16px; padding: 22px 24px; margin-top: 28px; }
.ny-cta b { display: block; font-family: 'Comfortaa', cursive; font-size: 15.5px; color: var(--navy); margin-bottom: 4px; }
.ny-cta span { font-size: 13.5px; color: var(--text-body); }
@media (max-width: 640px) { .ny-art { padding: 26px 20px; } .ny-art .ev-media { margin: -26px -20px 20px; } .ny-art .ev-media img { height: 200px; } }

/* ---------- Footer: nyhedsbrev + åbningstider ---------- */
.f2-tider { display: flex; align-items: center; gap: 9px; font-size: 13.5px; }
.f2-dot { width: 9px; height: 9px; border-radius: 50%; background: #E5484D; box-shadow: 0 0 0 3px rgba(229,72,77,0.16); flex-shrink: 0; }
.f2-dot.open { background: #3FB950; box-shadow: 0 0 0 3px rgba(63,185,80,0.18); }
.f2-nbrow { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 38px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 22px 26px; }
.f2-nbrow b { display: block; font-family: 'Comfortaa', cursive; color: #fff; font-size: 15.5px; margin-bottom: 3px; }
.f2-nbrow .sub { font-size: 13px; color: rgba(255,255,255,0.6); }
.f2-nb-form { display: flex; gap: 9px; flex-wrap: wrap; }
.f2-nb-form input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: var(--pill); padding: 11px 18px; color: #fff; font-size: 14px; min-width: 230px; font-family: inherit; }
.f2-nb-form input::placeholder { color: rgba(255,255,255,0.4); }
.f2-nb-form input:focus { outline: none; border-color: var(--sky); }
.f2-nb-form input.err2 { border-color: #E5484D; }
.f2-nb-ok { display: none; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: 14px; }
.f2-nb-ok svg { width: 16px; height: 16px; color: var(--sky); }
.f2-nbrow.sent .f2-nb-form { display: none; }
.f2-nbrow.sent .f2-nb-ok { display: inline-flex; }

/* ---------- Aktiv menupunkt ---------- */
.nav-links > a.aktiv, .nav-item > a.aktiv { color: var(--blue); position: relative; }
.nav-links > a.aktiv::after, .nav-item > a.aktiv::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); bottom: 1px; width: 4px; height: 4px; border-radius: 50%; background: var(--sky); }
.nav-mobile a.aktiv { color: var(--blue); }

/* ---------- Print ---------- */
@media print {
  .nav, .footer, .hero-bg, .hero-overlay, .slide-nav, .dots, .contact-dock, .sm-progress, .sm-totop { display: none !important; }
  [data-aos] { opacity: 1 !important; transform: none !important; }
  body { color: #000; }
}


/* ===== Farveskemaer + midlertidig farvevælger ===== */
:root[data-theme="green"] { --sky:#2E9E6A; --blue:#1B7A50; --sky-light:#E8F5EE; --sky-light2:#BDE3CE; --sky-tint:#C7EAD6; --navy:#123528; --navy-deep:#0C2119; --navy-2:#1C4A38; --sky-rgb:46,158,106; --blue-rgb:27,122,80; --navy-rgb:18,53,40; --navy-deep-rgb:12,33,25; --dark-rgb:12,40,30; --off-white:#F6FAF7; --off-white-rgb:246,250,247; }
:root[data-theme="warm"] { --sky:#C96A2E; --blue:#A8551F; --sky-light:#FBEEE1; --sky-light2:#EFC9A9; --sky-tint:#F3D6BE; --navy:#33200F; --navy-deep:#241609; --navy-2:#4A331C; --sky-rgb:201,106,46; --blue-rgb:168,85,31; --navy-rgb:51,32,15; --navy-deep-rgb:36,22,9; --dark-rgb:44,27,15; --off-white:#FCF7F7; --off-white-rgb:252,247,247; }
:root[data-theme="red"] { --sky:#C8102E; --blue:#A60D26; --sky-light:#FBE7EA; --sky-light2:#EFA9B4; --sky-tint:#F3C0C8; --navy:#1E1E20; --navy-deep:#141416; --navy-2:#2E2E30; --sky-rgb:200,16,46; --blue-rgb:166,13,38; --navy-rgb:30,30,32; --navy-deep-rgb:20,20,22; --dark-rgb:24,24,26; --off-white:#FBF7F7; --off-white-rgb:251,247,247; }
:root[data-theme="gold"] { --sky:#B0842F; --blue:#8E6A26; --sky-light:#F5EAD2; --sky-light2:#DFC489; --sky-tint:#E7D4A6; --navy:#16233D; --navy-deep:#0E1B31; --navy-2:#223357; --sky-rgb:176,132,47; --blue-rgb:142,106,38; --navy-rgb:22,35,61; --navy-deep-rgb:14,27,49; --dark-rgb:16,27,49; --off-white:#FBF8F2; --off-white-rgb:251,248,242; }
.theme-switch { position: fixed; left: 22px; bottom: 22px; z-index: 950; display: flex; flex-direction: column-reverse; align-items: flex-start; gap: 12px; }
.ts-btn { width: 52px; height: 52px; border-radius: 50%; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-elev); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--navy); transition: transform 0.2s var(--ease); }
.ts-btn:hover { transform: scale(1.06); }
.ts-btn svg { width: 23px; height: 23px; }
.ts-panel { display: none; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; box-shadow: var(--shadow-elev); }
.theme-switch.open .ts-panel { display: block; }
.ts-title { font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
.ts-row { display: flex; gap: 10px; }
.ts-sw { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; box-shadow: 0 0 0 1.5px var(--line); cursor: pointer; padding: 0; transition: transform 0.15s var(--ease); }
.ts-sw:hover { transform: scale(1.14); }
.ts-sw.active { box-shadow: 0 0 0 2.5px var(--navy); }
@media (max-width: 700px) { .theme-switch { left: 14px; bottom: 14px; } }

/* ---------- Service-detalje: kontaktform + priser ---------- */
.svc-form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 34px; box-shadow: var(--shadow-elev); position: sticky; top: 108px; }
.svc-form-card h3 { font-size: 21px; }
.svc-form-card > p { color: var(--text-muted); font-size: 14.5px; line-height: 1.55; margin: 8px 0 22px; }
.price-card { max-width: 520px; margin: 0 auto; text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 46px 40px; box-shadow: var(--shadow-card); }
.price-card .price-big { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: clamp(2rem,4vw,2.8rem); color: var(--blue); line-height: 1; }
.price-card .price-small { color: var(--text-muted); font-size: 15px; margin: 12px 0 26px; }

/* ---------- Pris-kort (service, gentagelige) ---------- */
.price-tiers { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.price-tier { flex: 1 1 300px; max-width: 380px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 40px 34px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.price-tier:hover { transform: translateY(-5px); box-shadow: var(--shadow-elev); }
.pt-name { font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 17px; color: var(--text-dark); }
.pt-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; margin: 14px 0 6px; }
.pt-pre { font-size: 15px; color: var(--text-muted); font-weight: 500; }
.pt-num { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: clamp(2rem, 3vw, 2.5rem); color: var(--blue); line-height: 1; }
.pt-unit { font-size: 15px; color: var(--text-muted); }
.pt-desc { color: var(--text-muted); font-size: 13.5px; margin-bottom: 24px; }
.price-incl { display: flex; flex-direction: column; gap: 13px; margin-bottom: 28px; flex: 1; }
.price-incl li { display: flex; align-items: center; gap: 12px; color: var(--text-body); font-size: 14.5px; }
.price-incl .pi-ic { width: 24px; height: 24px; border-radius: 50%; background: var(--sky-light); color: var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.price-incl .pi-ic svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .svc-form-card { position: static; } }

/* ---------- Service split-hero (tekst + formular) ---------- */
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; align-items: center; width: 100%; }
.hero-form .hero-inner { padding-top: 128px; padding-bottom: 84px; }
.hero-form-card { position: static; top: auto; }
.hero-form .hero-checks { margin-top: 24px; }
@media (max-width: 900px) { .hero-split { grid-template-columns: 1fr; gap: 30px; } .hero-form .hero-inner { padding-top: 122px; padding-bottom: 60px; } }
.hero-form-card { padding: 30px; }
.hero-form-card > p { margin: 8px 0 18px; }
.hero-form-card .field { margin-bottom: 13px; }
.hero-form-card textarea { min-height: 84px; }

/* Service "om ydelsen": foto matcher tekst-højden + gradient som resten af sitet */
.ydelse#tilbud .ydelse-grid { align-items: stretch; }
.ydelse#tilbud .ydelse-grid > div:first-child { display: flex; flex-direction: column; justify-content: center; }
.ydelse#tilbud .ydelse-grid > div:first-child > .badge-pill { align-self: flex-start; }
.ydelse#tilbud .ydelse-photo { min-height: 440px; height: 100%; }
.ydelse#tilbud .ydelse-photo::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(var(--dark-rgb),0.42) 0%, rgba(var(--dark-rgb),0.1) 40%, transparent 70%); }

/* ---------- Service highlights (4 bokse under hero) ---------- */
.hl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.hl-box { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 30px 26px; box-shadow: var(--shadow-card); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.hl-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-elev); }
.hl-ico { width: 54px; height: 54px; border-radius: 15px; background: var(--sky-light); color: var(--sky-text, var(--blue)); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.hl-ico svg { width: 26px; height: 26px; }
.hl-box h3 { font-size: 17px; margin-bottom: 7px; }
.hl-box p { color: var(--text-body); font-size: 14px; line-height: 1.55; }
@media (max-width: 900px) { .hl-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .hl-grid { grid-template-columns: 1fr; } }

/* ---------- Kunder-side ---------- */
.kunde-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; max-width: 1100px; margin: 0 auto; }
.kunde-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease); }
.kunde-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-elev); }
.kunde-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.kunde-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.kunde-card:hover .kunde-media img { transform: scale(1.05); }
.kunde-media .k-tag { position: absolute; top: 14px; left: 14px; background: rgba(255,255,255,0.95); color: var(--blue); font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 12px; padding: 6px 13px; border-radius: 999px; box-shadow: var(--shadow-card); }
.kunde-body { padding: 28px 30px; display: flex; flex-direction: column; flex: 1; }
.kunde-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.kunde-stars svg { width: 18px; height: 18px; color: #FBBF24; fill: #FBBF24; }
.kunde-quote { color: var(--text-dark); font-size: 16px; line-height: 1.7; flex: 1; }
.kunde-foot { display: flex; align-items: center; gap: 14px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.kunde-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--sky)); color: var(--sky-ink, #fff); font-family: 'Comfortaa', cursive; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.kunde-nm { font-family: 'Comfortaa', cursive; font-weight: 600; color: var(--text-dark); font-size: 15px; }
.kunde-rl { color: var(--text-muted); font-size: 13px; margin-top: 2px; }
.kunde-rating { display: flex; justify-content: center; margin-top: 48px; }
.kunde-rating .rev-pill { display: inline-flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 12px 22px; box-shadow: var(--shadow-card); font-family: 'Comfortaa', cursive; font-weight: 600; color: var(--text-dark); font-size: 15px; }
.kunde-rating .stars { display: inline-flex; gap: 3px; }
.kunde-rating .stars svg { width: 17px; height: 17px; color: #FBBF24; fill: #FBBF24; }
@media (max-width: 820px) { .kunde-grid { grid-template-columns: 1fr; } }

.kunde-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.kunde-top .kunde-stars { margin-bottom: 0; }
.k-inline { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 12px; color: var(--blue); background: var(--sky-light); padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.kunde-body { padding: 32px 32px; }

/* ---------- Kunder: anmeldelses-grid (2 pr. række) ---------- */
.rev-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 1040px; margin: 0 auto; }
.rev-grid .rev-card { flex: none; }
@media (max-width: 780px) { .rev-grid { grid-template-columns: 1fr; } }

/* === Genskabte komponent-styles (droppet i design-sync, gendannet fra backup) === */
.hero h1 .hl-top { display: block; font-size: 1em; line-height: 1.04; }
.hero h1 .hl-sub { display: block; font-size: 0.6em; line-height: 1.15; margin-top: 0.1em; color: rgba(255,255,255,0.88); }
/* <br>'et mellem linjerne er KUN til panelets editor (læses som \n) — visuelt
   ville det give en tom linje i fuld højde mellem hl-top og hl-sub. */
.hero h1 br { display: none; }
.hero h1 .hl-top, .hero h1 .hl-sub { text-shadow: 0 2px 22px rgba(8,18,33,0.45); }
.gal-tile.gal-video { cursor: pointer; }
.gal-tile.gal-video video, .gal-tile.gal-video .gv-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }
.gv-fallback { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy), rgb(var(--dark-rgb))); }
.gv-play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; pointer-events: none; }
.gv-play > span { width: 62px; height: 62px; border-radius: 50%; background: rgba(var(--dark-rgb), 0.55); display: flex; align-items: center; justify-content: center; color: #fff; transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.gv-play svg { width: 26px; height: 26px; margin-left: 3px; }
.gal-tile.gal-video:hover .gv-play > span { transform: scale(1.1); background: var(--sky); }
.mwh-vlb { position: fixed; inset: 0; z-index: 9999; background: rgba(8, 12, 18, 0.88); display: flex; align-items: center; justify-content: center; padding: 4vmin; }
.mwh-vlb-inner { position: relative; width: min(1100px, 100%); aspect-ratio: 16 / 9; background: #000; border-radius: 14px; overflow: hidden; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5); }
.mwh-vlb-inner video, .mwh-vlb-inner iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.mwh-vlb-inner.is-img { aspect-ratio: auto; width: auto; max-width: min(1100px, 100%); background: transparent; box-shadow: none; overflow: visible; }
.mwh-vlb-inner.is-img img { display: block; max-width: 100%; max-height: 92vh; width: auto; height: auto; border-radius: 14px; box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5); }
.mwh-vlb-close { position: absolute; top: 18px; right: 22px; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.14); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; z-index: 2; }
.mwh-vlb-close:hover { background: rgba(255, 255, 255, 0.28); }
.team-photo--img { background: #eef0f3; overflow: hidden; }
.team-photo--img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.stars svg.star-empty { color: #E2E8F0; fill: #E2E8F0; }
.review-form-sec { background: var(--off-white); }
.review-form-wrap { position: relative; max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 36px; box-shadow: var(--shadow-card); }
.review-form-wrap .btn { margin-top: 8px; }
.mwh-star-rating { display: inline-flex; gap: 6px; margin-top: 4px; }
.mwh-star { background: none; border: none; padding: 2px; cursor: pointer; line-height: 0; }
.mwh-star svg { width: 30px; height: 30px; color: #E2E8F0; fill: #E2E8F0; transition: color .12s, fill .12s, transform .12s; }
.mwh-star.is-on svg { color: #FBBF24; fill: #FBBF24; }
.mwh-star:hover svg { transform: scale(1.12); }
.svc-select { position: relative; margin-top: 8px; }
.svc-select__btn { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-input); background: #fff; font: 500 15px 'Inter', sans-serif; color: var(--text-dark); cursor: pointer; text-align: left; transition: border-color 0.2s, box-shadow 0.2s; }
.svc-select__btn:hover, .svc-select.is-open .svc-select__btn { border-color: var(--sky); }
.svc-select.is-open .svc-select__btn { box-shadow: 0 0 0 3px var(--sky-light); }
.svc-select__cur { display: flex; align-items: center; gap: 10px; min-width: 0; overflow: hidden; }
.svc-select__cur svg, .svc-select__cur > i { width: 18px; height: 18px; color: var(--sky); flex-shrink: 0; }
.svc-select__lbl { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.svc-select__chev { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; transition: transform 0.2s; }
.svc-select.is-open .svc-select__chev { transform: rotate(180deg); }
.svc-select__list { position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 30; margin: 0; padding: 6px; list-style: none; background: #fff; border: 1px solid var(--line); border-radius: var(--r-input); box-shadow: var(--shadow-elev); max-height: 320px; overflow-y: auto; }
.svc-select__opt { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 10px; font: 500 14.5px 'Inter', sans-serif; color: var(--text-dark); cursor: pointer; }
.svc-select__opt svg, .svc-select__opt > i { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }
.svc-select__opt:hover { background: var(--sky-light); color: var(--blue); }
.svc-select__opt:hover svg { color: var(--sky); }
.price-tiers--one .price-tier { max-width: 460px; }
.price-tier--featured { border-color: var(--blue); box-shadow: 0 18px 44px rgba(21, 79, 145, 0.16); }
.price-tier--featured .pt-num { color: var(--blue); }
.pt-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: var(--sky-ink, #fff); font-family: 'Comfortaa', cursive; font-weight: 600; font-size: 12px; letter-spacing: 0.3px; padding: 6px 15px; border-radius: 999px; white-space: nowrap; box-shadow: 0 6px 16px rgba(21, 79, 145, 0.28); }
.price-list { max-width: 780px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-card); padding: 18px 28px 28px; box-shadow: var(--shadow-card); }
.price-row { position: relative; display: flex; align-items: baseline; gap: 14px; padding: 14px 4px; border-bottom: 1px solid var(--line); }
.price-row:last-of-type { border-bottom: none; }
.price-row--featured .pr-name { font-weight: 700; }
.price-row--featured .pr-name::after { content: "Mest populær"; margin-left: 10px; font-size: 11px; font-weight: 700; color: var(--sky-ink, #fff); background: var(--sky); border-radius: 999px; padding: 3px 9px; vertical-align: 2px; }
.pr-name { color: var(--text-dark); font-size: 15.5px; font-weight: 500; }
.pr-lead { flex: 1; border-bottom: 2px dotted var(--line); transform: translateY(-4px); min-width: 24px; }
.pr-price { color: var(--text-dark); font-weight: 700; font-size: 16px; white-space: nowrap; }
.pr-unit { color: var(--text-muted); font-weight: 500; font-size: 13px; }
.price-list__cta { text-align: center; margin-top: 26px; }
.mwh-price-del--row { position: static !important; flex-shrink: 0; width: 24px !important; height: 24px !important; font-size: 14px !important; }
.mwh-price-add--row { min-height: 0 !important; min-width: 0 !important; width: 100%; flex-direction: row !important; padding: 12px; margin-top: 12px; }
.mwh-price-add--row .mwh-price-add__plus { width: 26px !important; height: 26px !important; font-size: 17px !important; line-height: 26px !important; }
@media (max-width: 560px) {
  .price-list { padding: 10px 16px 20px; }
  .pr-name { font-size: 14.5px; }
}
.pr-price > .mwh-ed:empty, .pt-num > .mwh-ed:empty { display: inline-block; min-width: 74px; }
.pr-price > .mwh-ed:empty::before, .pt-num > .mwh-ed:empty::before { content: 'Indsæt pris'; color: #94a3b8; font-weight: 500; font-size: 0.6em; letter-spacing: 0.02em; white-space: nowrap; }
.mw-logo-dark .footer-brand > img { background: #fff; padding: 10px 14px; border-radius: 12px; height: 66px; }
.svc-form-card.hero-form-card { position: relative; }
.svc-form-avatar { position: absolute; top: -30px; right: 24px; width: 84px; height: 84px; border-radius: 50%; object-fit: cover; border: 4px solid #fff; box-shadow: 0 10px 24px rgba(0,0,0,0.2); }
.team-photo--img img, .svc-form-avatar { object-position: 50% 25%; }
.om-chip.is-active { background: var(--sky); border-color: var(--sky); color: var(--sky-ink, #fff); }
.om-chip.is-active svg { color: #fff; }
.dk-svg { width: 100%; height: auto; max-height: 460px; display: block; filter: drop-shadow(0 12px 28px rgba(var(--navy-rgb),0.12)); }
.dk-reg { fill: var(--sky-light2); stroke: #fff; stroke-width: 1.4; transition: fill .2s; cursor: pointer; }
.dk-reg:hover { fill: var(--sky-light); }
.dk-reg.is-active { fill: var(--sky); }
@media (max-width: 820px) {
  .dk-svg { max-height: 340px; margin: 0 auto; }
}
.mw-logo-light .f2-brand img { mix-blend-mode: lighten; }
.mw-logo-dark .f2-brand img { background: #fff; padding: 9px 13px; border-radius: 12px; }
.f2-address { color: rgba(255,255,255,0.62); font-size: 14px; line-height: 1.6; margin: 14px 0 0; white-space: pre-line; }
.om-map.dk-live { min-height: 460px; }
.om-map .dk-d3 { display: block; width: 100%; height: 100%; filter: drop-shadow(0 12px 28px rgba(var(--navy-rgb),0.12)); }
.om-map .dk-land { fill: rgba(var(--navy-rgb),0.05); stroke: rgba(var(--navy-rgb),0.30); stroke-width: 0.8; transition: fill .25s; }
.om-map .dk-land.lit { fill: rgba(var(--sky-rgb),0.16); }
/* Landmassen på det LYSE kort-kort (som panelet): lys tone, hvid kant.
   Alle markerings-farver kommer fra SITETS farveskema (--sky/--navy sættes
   af brandingen) — aldrig hårdkodede farver.
   'has' = region med by (tonet). 'sel' = valgt HEL region — markeres præcis
   som en dæknings-radius: stiplet kant + tonet flade i accentfarven. */
.om-map .dk-land, .omraade .om-map .dk-land { fill: rgba(var(--navy-rgb),0.08); stroke: #fff; stroke-width: 1.1; }
.om-map .dk-land.has, .omraade .om-map .dk-land.has { fill: rgba(var(--navy-rgb),0.20); }
.om-map .dk-land.sel, .omraade .om-map .dk-land.sel { fill: rgba(var(--sky-rgb),0.14); stroke: rgba(var(--sky-rgb),0.75); stroke-width: 1.5; stroke-dasharray: 5 4; }
.om-map .dk-land.lit, .omraade .om-map .dk-land.lit { fill: rgba(var(--navy-rgb),0.34); }
.om-map .dk-land.sel.lit, .omraade .om-map .dk-land.sel.lit { fill: rgba(var(--sky-rgb),0.32); stroke: var(--sky); }
/* By-labels: ALLE byer vises med navn og tydelig pin (som i kontrolpanelets
   mini-kort) — den aktive by fremhæves blot ekstra. */
.om-map .dk-lbl { opacity: 1; transition: opacity .2s; }
.dk-pin { cursor: pointer; }
.dk-pin:focus { outline: none; }
.om-map .dk-dot { r: 5; }
.dk-pin.dk-base .dk-dot { fill: var(--navy); }
.dk-pin.act .dk-dot { transform: scale(1.4); }
.dk-pin:focus .dk-dot { stroke: var(--sky); stroke-width: 2.6; }
.dk-pin.act .dk-pulse { animation: dkPulse 1.9s ease-out infinite; }
.om-hint { margin: 16px 0 0; text-align: center; font-weight: 600; color: var(--navy); font-size: 14px; min-height: 1.3em; }
.om-hint strong { color: var(--sky); }
@media (max-width: 820px) {
  .om-map.dk-live { min-height: 340px; }
}
@media (prefers-reduced-motion: reduce) {
  .dk-pin.act .dk-pulse { animation: none; }
  .om-map .dk-land { transition: none; }
}
.some-phone .sp-fb { display: block; width: 100%; height: 540px; border: 0; background: #fff; }
/* SDK-embeddet (fb-page) i telefonen: fast højde, hvid baggrund, klip pænt. */
.some-phone .sp-fbwrap { height: 540px; overflow: hidden; background: #fff; }
.some-phone .sp-fbwrap .fb-page, .some-phone .sp-fbwrap .fb-page span, .some-phone .sp-fbwrap .fb-page iframe { width: 100% !important; }

/* INK-FEJNING (autogenereret): ALT med accent-baggrund faar tekstfarve efter
   accentens lysstyrke — sort paa gul, hvid paa moerk. Gaelder ogsaa arvet tekst. */
.ba-tag.after, .ba-tag.after svg { color: var(--sky-ink, #fff); }
.btn-sky:hover, .btn-sky:hover svg { color: var(--sky-ink, #fff); }
.check-ico, .check-ico svg { color: var(--sky-ink, #fff); }
.dock-phone:hover, .dock-phone:hover svg { color: var(--sky-ink, #fff); }
.dot.active, .dot.active svg { color: var(--sky-ink, #fff); }
.f2-col h4::after, .f2-col h4::after svg { color: var(--sky-ink, #fff); }
.f2-hours .hrow.is-today .d::after, .f2-hours .hrow.is-today .d::after svg { color: var(--sky-ink, #fff); }
.footer .btn-sky:hover, .footer .btn-sky:hover svg { color: var(--sky-ink, #fff); }
.form-success .ring, .form-success .ring svg { color: var(--sky-ink, #fff); }
.gal-tile.gal-video:hover .gv-play > span, .gal-tile.gal-video:hover .gv-play > span svg { color: var(--sky-ink, #fff); }
.glass-card .circ-arrow:hover, .glass-card .circ-arrow:hover svg { color: var(--sky-ink, #fff); }
.glass-card.gc-primary, .glass-card.gc-primary svg { color: var(--sky-ink, #fff); }
.glass-card::after, .glass-card::after svg { color: var(--sky-ink, #fff); }
.hero-eyebrow .tick, .hero-eyebrow .tick svg { color: var(--sky-ink, #fff); }
.hero-kicker .dot, .hero-kicker .dot svg { color: var(--sky-ink, #fff); }
.hero-scroll .dot, .hero-scroll .dot svg { color: var(--sky-ink, #fff); }
.legal ul li::before, .legal ul li::before svg { color: var(--sky-ink, #fff); }
.nav-links .mega-cta:hover, .nav-links .mega-cta:hover svg { color: var(--sky-ink, #fff); }
.nm-sub a::before, .nm-sub a::before svg { color: var(--sky-ink, #fff); }
.rev-next:hover, .rev-next:hover svg { color: var(--sky-ink, #fff); }
.sm-progress, .sm-progress svg { color: var(--sky-ink, #fff); }
.why2-ico, .why2-ico svg { color: var(--sky-ink, #fff); }
.ydelse .check-ico, .ydelse .check-ico svg { color: var(--sky-ink, #fff); }


/* =====================================================================
   FOOTER v3 (porteret fra VT-designet): mørk flade + foto-lag i højre
   side + head-row ("Kvalitet du kan stole på" + Skriv til os-pille) +
   4 kolonner. Uden foto-data vises footeren blot uden foto-lag.
   ===================================================================== */
.footer { position: relative; overflow: hidden; background: var(--navy-deep); padding: 88px 0 32px; }
.f3-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 46%; pointer-events: none; display: none; }
@media (min-width: 1101px) { .f3-photo { display: block; } }
.f3-photo img { width: 100%; height: 100%; object-fit: cover; -webkit-mask-image: linear-gradient(to left, #000 55%, transparent); mask-image: linear-gradient(to left, #000 55%, transparent); opacity: 0.55; }
/* Kraftigere sloer: teksten i kontakt-kolonnen ligger OVEN paa fotoet og skal kunne laeses. */
.f3-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(var(--navy-deep-rgb),0.96) 0%, rgba(var(--navy-deep-rgb),0.78) 50%, rgba(var(--navy-deep-rgb),0.55) 100%); }
.footer > .container { position: relative; z-index: 2; }
.f3-head { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
/* Fuld bredde: grid og head-row spaender hele containeren, og kontakt-kolonnen skubbes helt ud til hoejre kant. */
@media (min-width: 1101px) { .footer .f2-grid { grid-template-columns: 1.4fr 1fr 0.8fr auto; } .footer .f2-kontakt { justify-self: end; text-align: left; } }
.f3-head h2 { color: #fff; font-size: clamp(1.35rem, 2.4vw, 2.2rem); line-height: 1.15; letter-spacing: -0.01em; white-space: nowrap; }
@media (max-width: 700px) { .f3-head h2 { white-space: normal; font-size: clamp(1.25rem, 5vw, 1.6rem); } }
.f3-cta { display: inline-flex; align-items: center; gap: 14px; background: var(--sky); color: var(--sky-ink, #fff); font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 16px; padding: 12px 12px 12px 30px; border-radius: 999px; transition: all 0.2s var(--ease); flex-shrink: 0; }
.f3-cta:hover { background: var(--blue); transform: translateY(-2px); }
.f3-cta .circ { width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--navy); display: flex; align-items: center; justify-content: center; }
.f3-cta .circ svg { width: 17px; height: 17px; }
.f3-line { height: 1px; background: rgba(255,255,255,0.12); margin: 44px 0 56px; }
.footer .f2-brand { text-align: left; }
.footer .f2-brand img { margin: 0; height: 52px; }
.f3-about { color: rgba(255,255,255,0.62); font-size: 14.5px; line-height: 1.75; margin: 18px 0 0; max-width: 38ch; }
.footer .f2-kontakt { border-left: none; padding-left: 0; }
.f3-row { display: flex; align-items: flex-start; gap: 10px; }
.f3-arrow { display: inline-flex; flex-shrink: 0; margin-top: 5px; }
.f3-row svg { width: 15px; height: 15px; color: var(--sky); }


/* Kontakt: person-boks over formularen + trust-linje under send-knappen
   (teksterne er n8n-genererede skema-felter). */
.kf-person { display: flex; align-items: center; gap: 13px; background: var(--sky-light); border: 1px solid rgba(var(--sky-rgb),0.25); border-radius: 14px; padding: 14px 16px; margin-bottom: 20px; }
.kf-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.kf-person__tx b { display: block; font-family: 'Comfortaa', cursive; font-size: 15.5px; color: var(--text-dark); }
.kf-person__tx p { margin: 3px 0 0; font-size: 13.5px; color: var(--text-body); line-height: 1.45; }
.kf-trust { margin: 12px 0 0; text-align: center; font-size: 13.5px; color: var(--text-muted); font-weight: 500; }


/* Footer: kompakte aabningstider (badge + foldede interval-linjer). */
.f2-hours--compact { background: none; border: none; padding: 10px 0 0; }
.f2-hours__lines { display: flex; flex-direction: column; gap: 4px; margin-top: 2px; }
.f2-hours__line { font-size: 13.5px; color: rgba(255,255,255,0.6); }
.f2-hours__line b { font-family: 'Comfortaa', cursive; font-weight: 600; color: rgba(255,255,255,0.85); margin-right: 6px; }

/* (reveal koerer nu via AOS-biblioteket - data-aos saettes i theme.js) */
