:root {
  --navy: #123145;
  --navy-dark: #0c2333;
  --orange: #e2622c;
  --orange-dark: #c74f1e;
  --bg: #f7f5f0;
  --bg-alt: #f0ece4;
  --text: #1b2a35;
  --text-body: #33424c;
  --text-muted: #5b6b76;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: var(--orange); text-decoration: none; }
a:hover { color: var(--orange-dark); }
input, textarea { font-family: inherit; }
input:focus, textarea:focus { outline: 2px solid var(--orange); outline-offset: 1px; }
img { max-width: 100%; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Topbar */
.topbar {
  background: var(--navy-dark);
  color: #cfd9e0;
  font-size: 13px;
  padding: 8px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.topbar-item { display: flex; align-items: center; gap: 5px; color: #cfd9e0; }
.topbar-item:hover { color: #fff; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid rgba(18,49,69,0.12); position: sticky; top: 0; z-index: 20; }
.header-inner { padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; gap: 6px; }
.logo-img { height: 44px; width: auto; display: block; }
.logo-main { font-size: 22px; font-weight: 800; letter-spacing: 0.5px; color: var(--navy); }
.logo-sub { font-size: 22px; font-weight: 600; color: var(--orange); }
.nav-desktop { display: flex; gap: 28px; font-size: 15px; font-weight: 600; }
.nav-desktop a { color: var(--navy); }
.nav-desktop a.active, .nav-desktop a:hover { color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.btn-cta-phone { display: inline-block; background: var(--orange); color: #fff; padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 14px; }
.btn-cta-phone:hover { color: #fff; background: var(--orange-dark); }
.hamburger { display: none; background: none; border: 1px solid rgba(18,49,69,0.2); border-radius: 50%; width: 38px; height: 38px; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; color: var(--navy); }
.nav-mobile { display: none; flex-direction: column; padding: 4px 24px 16px; border-top: 1px solid rgba(18,49,69,0.08); }
.nav-mobile a { font-size: 15px; font-weight: 600; color: var(--navy); padding: 10px 0; }

@media (max-width: 760px) {
  .nav-desktop { display: none; }
  .btn-cta-phone { display: none; }
  .hamburger { display: flex; }
  .nav-mobile.open { display: flex; }
}

/* Hero */
.hero { background: var(--navy); padding: 64px 24px 80px; }
.hero-inner { display: flex; flex-wrap: wrap; gap: 48px; align-items: center; }
.hero-text { flex: 1 1 420px; min-width: 300px; }
.hero-image { flex: 1 1 380px; min-width: 280px; height: 340px; border-radius: 6px; overflow: hidden; }
.hero-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(226,98,44,0.15); color: #f0a077; font-size: 13px; font-weight: 700; padding: 7px 16px; border-radius: 999px; margin-bottom: 20px; }
.hero-badge a { color: #f0a077; text-decoration: underline; }
.hero-eyebrow { color: #8fa4b4; font-size: 16px; font-weight: 600; margin: 0 0 8px; text-transform: uppercase; letter-spacing: 1px; }
.hero-title { color: #fff; font-size: 44px; line-height: 1.15; font-weight: 800; margin: 0 0 20px; }
.hero-sub { color: #c3d1db; font-size: 17px; line-height: 1.6; margin: 0 0 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-orange { background: var(--orange); color: #fff; border: none; padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 15px; cursor: pointer; display: inline-block; }
.btn-orange:hover { color: #fff; background: var(--orange-dark); }
.btn-outline { border: 1px solid #3d5567; color: #fff; padding: 15px 28px; border-radius: 999px; font-weight: 700; font-size: 15px; display: inline-block; }
.btn-outline:hover { color: #fff; border-color: #fff; }

@media (max-width: 600px) {
  .hero-title { font-size: 32px; }
}

/* Fordele (3 kolonner) */
.fordele { padding: 56px 24px 40px; display: flex; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.fordel { flex: 1 1 260px; min-width: 220px; }
.fordel-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(18,49,69,0.06); display: flex; align-items: center; justify-content: center; color: var(--navy); margin-bottom: 14px; }
.fordel h3 { font-size: 18px; font-weight: 700; margin: 0 0 8px; color: var(--navy); }
.fordel p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* Sektioner generelt */
.section { padding: 56px 24px; }
.section-white { background: #fff; border-top: 1px solid rgba(18,49,69,0.08); border-bottom: 1px solid rgba(18,49,69,0.08); }
.section-alt { background: var(--bg-alt); }
.section-navy { background: var(--navy); }
.section-head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 16px; margin-bottom: 32px; }
.section-title { font-size: 30px; font-weight: 800; color: var(--navy); margin: 0; }
.link-arrow { background: none; border: none; color: var(--orange); font-weight: 700; font-size: 15px; cursor: pointer; }

/* Services grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card { border: 1px solid rgba(18,49,69,0.1); border-radius: 4px; padding: 24px; }
.service-card h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.service-card p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

.services-grid-full { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card-full { border: 1px solid rgba(18,49,69,0.1); border-radius: 4px; overflow: hidden; background: #fff; }
.service-card-full .service-image { width: 100%; height: 170px; }
.service-card-full .service-body { padding: 22px; }
.service-card-full h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.service-card-full p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* Dækningsområde */
.daekning-inner { display: flex; flex-wrap: wrap; gap: 32px; }
.city-list { flex: 1 1 260px; min-width: 240px; display: flex; flex-direction: column; gap: 10px; }
.city-item { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; color: var(--navy); }
.city-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; display: inline-block; }
.daekning-map { flex: 2 1 420px; min-width: 280px; height: 280px; }
.daekning-map iframe { width: 100%; height: 280px; border: 0; border-radius: 4px; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card { background: #fff; border-radius: 4px; padding: 26px; border: 1px solid rgba(18,49,69,0.08); }
.testi-card p.quote { font-size: 15.5px; line-height: 1.7; color: var(--text-body); margin: 0 0 16px; }
.testi-card p.name { font-size: 14px; font-weight: 700; color: var(--navy); margin: 0; }

/* CTA sektion */
.cta-section { text-align: center; }
.cta-section h2 { color: #fff; font-size: 28px; font-weight: 800; margin: 0 0 14px; }
.cta-section p { color: #c3d1db; font-size: 16px; margin: 0 0 28px; }

/* Page hero (undersider) */
.page-hero { padding: 56px 24px; }
.page-hero h1 { color: #fff; font-size: 36px; font-weight: 800; margin: 0 0 14px; }
.page-hero p { color: #c3d1db; font-size: 16px; max-width: 600px; margin: 0; }

/* Om mig */
.om-mig-inner { padding: 64px 24px; display: flex; gap: 48px; flex-wrap: wrap; align-items: center; }
.om-mig-image { flex: 1 1 300px; min-width: 260px; height: 380px; border-radius: 6px; overflow: hidden; }
.om-mig-text { flex: 1 1 380px; min-width: 280px; }
.om-mig-text h1 { font-size: 34px; font-weight: 800; color: var(--navy); margin: 0 0 20px; }
.om-mig-text p { color: var(--text-body); font-size: 16px; line-height: 1.75; margin: 0 0 16px; }

.fakta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.fakta-item .fakta-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center; color: var(--navy); margin-bottom: 12px; }
.fakta-item h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 6px; }
.fakta-item p { color: var(--text-muted); font-size: 14.5px; line-height: 1.6; }

/* Arbejde galleri */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.work-image { height: 200px; border-radius: 4px; overflow: hidden; }

/* Kontakt */
.kontakt-grid { padding: 56px 24px; display: flex; gap: 48px; flex-wrap: wrap; }
.kontakt-form-col { flex: 1 1 420px; min-width: 300px; }
.kontakt-side-col { flex: 1 1 320px; min-width: 280px; display: flex; flex-direction: column; gap: 20px; }
.info-box { background: #fff; border: 1px solid rgba(18,49,69,0.1); border-radius: 4px; padding: 26px; }
.info-box h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 0 0 16px; }
.info-box p { font-size: 14.5px; color: var(--text-body); margin: 0 0 10px; display: flex; align-items: center; gap: 8px; }
.info-box p:last-child { margin-bottom: 0; }
.hours-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--text-body); margin-bottom: 8px; }
.hours-row:last-child { margin-bottom: 0; }
.map-embed iframe { width: 100%; height: 220px; border: 0; border-radius: 4px; }
.map-embed { height: 220px; }

.kontakt-form { background: #fff; border: 1px solid rgba(18,49,69,0.1); border-radius: 4px; padding: 32px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 700; color: var(--navy); }
.form-row .form-field { flex: 1 1 200px; }
.form-field input, .form-field textarea { padding: 11px 12px; border: 1px solid rgba(18,49,69,0.2); border-radius: 3px; font-size: 15px; }
.form-field textarea { resize: vertical; }
.file-row { display: flex; align-items: center; gap: 10px; }
.file-btn { border: 1px solid rgba(18,49,69,0.25); padding: 9px 16px; border-radius: 999px; font-size: 13px; font-weight: 600; color: var(--navy); cursor: pointer; }
.file-name { font-size: 13px; color: var(--text-muted); font-weight: 400; }

.kvittering { background: #fff; border: 1px solid rgba(18,49,69,0.1); border-radius: 8px; padding: 40px; text-align: center; }
.kvittering-icon { width: 56px; height: 56px; border-radius: 50%; background: rgba(226,98,44,0.12); display: flex; align-items: center; justify-content: center; color: var(--orange); margin: 0 auto 16px; }
.kvittering h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 0 0 10px; }
.kvittering p { color: var(--text-muted); font-size: 15px; margin: 0; }

.form-error { background: #fdecea; border: 1px solid #f3b7ae; color: #8a2c1f; padding: 14px 18px; border-radius: 6px; font-size: 14px; margin-bottom: 4px; }

/* Footer */
.site-footer { background: var(--navy-dark); color: #a9bac6; padding: 48px 24px 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 36px; margin-bottom: 32px; }
.footer-logo { color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 12px; }
.footer-logo span { color: var(--orange); font-weight: 600; }
.footer-logo-img-wrap { display: inline-block; background: #fff; padding: 8px 14px; border-radius: 6px; line-height: 0; }
.footer-logo-img-wrap.is-transparent { background: none; padding: 0; }
.footer-logo-img-wrap img { height: 32px; width: auto; display: block; }
.footer-grid p { font-size: 14px; line-height: 1.7; margin: 0 0 8px; }
.footer-heading { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-grid a { display: block; color: #a9bac6; font-size: 14px; margin-bottom: 8px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 13px; max-width: 1180px; margin: 0 auto; }

/* Cookie-banner */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; background: var(--navy-dark); border-top: 1px solid rgba(255,255,255,0.15); padding: 16px 24px; z-index: 100; display: none; }
.cookie-banner.visible { display: block; }
.cookie-banner-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-banner-inner p { color: #cfd9e0; font-size: 13.5px; line-height: 1.6; margin: 0; flex: 1 1 400px; }
.cookie-banner-buttons { flex: 0 0 auto; }
.cookie-banner .btn-orange { padding: 11px 22px; font-size: 14px; }

/* Kort med samtykke-gate */
.map-consent { width: 100%; height: 100%; min-height: 220px; background: var(--bg-alt); border-radius: 4px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; gap: 12px; }
.map-consent p { color: var(--text-muted); font-size: 13.5px; margin: 0; max-width: 320px; }
.map-consent-btn { background: var(--navy); color: #fff; border: none; padding: 10px 20px; border-radius: 999px; font-weight: 700; font-size: 13.5px; cursor: pointer; }
.map-consent-btn:hover { background: var(--navy-dark); }
.map-consent iframe { width: 100%; height: 100%; min-height: 220px; border: 0; border-radius: 4px; display: block; }
