/* ============================================================
   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;
}
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% - 48px)); 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: #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: #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: #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); }
.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; }

/* ---------- 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 { 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; }
.nav-brand img { height: 48px; width: auto; filter: brightness(0); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 15px; color: var(--navy); transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 0.65; }
.nav-links a.active { color: var(--sky); 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: 18px; }
.nav-phone { display: flex; align-items: center; gap: 10px; }
.nav-phone .np-ic { width: 40px; height: 40px; border-radius: 50%; background: var(--sky-light); color: 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: #fff; }
.np-tx { display: flex; flex-direction: column; line-height: 1.15; }
.np-l { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-muted); }
.np-n { font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 15px; color: var(--blue); }
.nav-kontakt { padding: 12px 24px; font-weight: 700; }
/* Keep desktop nav labels + phone number on a single line (no ugly wrap near the breakpoint). */
.nav-links a, .nav-item > a, .nav-phone .np-n { white-space: nowrap; }
.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: #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; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; 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: scale(1); } to { transform: scale(1.08); } }
@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: #fff; flex-shrink: 0; }
.hc-mark svg { width: 13px; height: 13px; }
.hero-menu { margin-top: 34px; max-width: 640px; display: grid; grid-template-columns: 1fr 1fr; }
.hm-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 26px 22px; text-decoration: none; transition: background 0.28s; }
.hm-row:first-child { background: linear-gradient(135deg, rgba(var(--blue-rgb),0.9), rgba(var(--navy-rgb),0.82)); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border-radius: 16px 0 0 16px; }
.hm-row:last-child { background: linear-gradient(to right, rgba(var(--dark-rgb),0.66), rgba(var(--dark-rgb),0.18) 68%, rgba(var(--dark-rgb),0)); -webkit-backdrop-filter: none; backdrop-filter: none; border-left: 1px solid rgba(255,255,255,0.18); border-radius: 0 16px 16px 0; }
.hm-row:first-child:hover { background: linear-gradient(135deg, rgba(var(--sky-rgb),0.98), rgba(var(--blue-rgb),0.9)); }
.hm-row:last-child:hover { background: linear-gradient(to right, rgba(var(--dark-rgb),0.78), rgba(var(--dark-rgb),0.22) 68%, rgba(var(--dark-rgb),0.04)); }
@media (max-width: 560px) { .hero-menu { grid-template-columns: 1fr; } .hm-row:first-child { border-radius: 16px 16px 0 0; } .hm-row:last-child { border-left: none; border-top: 1px solid rgba(255,255,255,0.2); } }
.hm-tx { display: flex; flex-direction: column; gap: 3px; }
.hm-label { color: rgba(255,255,255,0.82); font-size: 15px; text-shadow: 0 1px 6px rgba(var(--dark-rgb),0.45); }
.hm-title { color: #fff; font-family: 'Comfortaa', cursive; font-weight: 700; font-size: 20px; letter-spacing: -0.01em; transition: color 0.25s; text-shadow: 0 1px 8px rgba(var(--dark-rgb),0.5); }
.hm-sub { color: rgba(255,255,255,0.82); font-size: 13px; line-height: 1.4; margin-top: 3px; text-shadow: 0 1px 6px rgba(var(--dark-rgb),0.45); }
.hm-row:hover .hm-title { color: #fff; }
.hm-arrow { color: #fff; display: inline-flex; transition: transform 0.25s var(--ease); filter: drop-shadow(0 1px 6px rgba(var(--dark-rgb),0.5)); }
.hm-arrow svg { width: 24px; height: 24px; }
.hm-row:hover .hm-arrow { transform: translate(4px, -4px); }
.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: 104px max(24px, calc((100% - var(--maxw)) / 2)) 104px; }
.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: var(--sky); 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: #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: #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; }
.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: #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: #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; }
.cta-banner .btns { display: flex; gap: 16px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }

/* ---------- 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: #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: #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: #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: #fff; }
.rev-next { background: var(--sky); border-color: var(--sky); color: #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; 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: #fff; }
.endcta-tx { position: relative; z-index: 1; }
.endcta-tx h2 { color: #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: #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; }
.footer-hours .t { color: rgba(255,255,255,0.55); font-size: 13.5px; }
.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: #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-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: #fff; }
.footer .btn-sky:hover { background: var(--sky); box-shadow: none; transform: translateY(-2px); }

/* ---------- Scroll animations ---------- */
.animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.animate-on-scroll.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  /* Switch to the hamburger slide-in menu below ~1200px. The horizontal desktop
     nav (menu links + phone block + "Kontakt os") needs ~1200px to sit on one
     line, and the design's body { zoom: 1.15 } enlarges it further — below this
     the links, "Om os" and the phone number wrap/overflow. */
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; }
  .nav { top: 12px; left: 12px; right: 12px; }
  .nav-inner { padding: 12px 12px 12px 18px; }
}
@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; }
  .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%; }
  .hero-inner { padding-top: 130px; }
  .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 { 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 { width: 23px; height: 23px; }
.dock-phone { background: var(--sky); color: #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: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) {
  .contact-dock { top: auto; bottom: 16px; right: 14px; transform: none; gap: 12px; }
  .contact-dock a { width: 48px; height: 48px; box-shadow: 0 8px 24px rgba(10,28,58,0.28); }
  .contact-dock a svg { width: 20px; height: 20px; }
  .contact-dock .lbl { 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 { 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; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .footer, .hero-bg, .hero-overlay, .slide-nav, .dots, .contact-dock { display: 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(--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: #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; } }
