﻿/* =============================================
   KENNETH JACOBSEN – VOGNMAND I KRUSÅ
   Stylesheet
   ============================================= */

/* --- CUSTOM PROPERTIES --- */
:root {
  --blue:       #00379a;
  --blue-hover: #002d80;
  --navy:       #00379a;
  --red:        #C62828;
  --red-hover:  #A81E1E;
  --white:      #FFFFFF;
  --gray-light: #F5F7FA;
  --text-dark:  #111827;
  --text-mid:   #4B5563;
  --border:     #E5E7EB;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.14);
  --radius:     8px;
  --radius-lg:  14px;
  --header-h:   72px;
  --transition: 180ms ease;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  touch-action: manipulation;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

img { max-width: 100%; display: block; }

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--red); }

ul { list-style: none; }
address { font-style: normal; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- SECTIONS --- */
.section { padding: 80px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header--light .section-label { color: #f8a9a9; }
.section-header--light h2 { color: var(--white); }
.section-header--light p  { color: rgba(255,255,255,.75); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 8px;
}

p {
  color: var(--text-mid);
  font-size: .97rem;
  line-height: 1.7;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); box-shadow: none; }

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

.btn-route {
  background: rgba(255,255,255,.92);
  color: var(--navy);
  border-color: rgba(255,255,255,.98);
  box-shadow: 0 10px 28px rgba(0,0,0,.24);
  animation: route-glow 3.4s ease-in-out infinite;
  will-change: transform, box-shadow;
}
.btn-route:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: 0 16px 36px rgba(0,0,0,.30), 0 0 26px rgba(255,255,255,.55);
  animation: none;
  transform: translateY(-2px);
}

/* Rolig, ren "ånde"-glød – hvid, så den matcher knappen på det mørke billede */
@keyframes route-glow {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 10px 28px rgba(0,0,0,.24), 0 0 0 rgba(255,255,255,0);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 14px 32px rgba(0,0,0,.28), 0 0 24px rgba(255,255,255,.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-route {
    animation: none;
    box-shadow: 0 10px 28px rgba(0,0,0,.24), 0 0 18px rgba(255,255,255,.4);
  }
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* --- BACKGROUND IMAGES (auto-billeder fra billeder/-mappen) --- */
.bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.img-frame .bg-image { border-radius: var(--radius-lg); }

/* --- IMAGE PLACEHOLDERS --- */
.image-placeholder {
  background: var(--gray-light);
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--text-mid);
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
}

.placeholder-inner svg    { opacity: .4; flex-shrink: 0; }
.placeholder-inner p,
.placeholder-inner span   { font-size: .85rem; color: var(--text-mid); line-height: 1.5; }
.placeholder-inner strong { color: var(--navy); }
.map-note                 { font-size: .78rem !important; max-width: 240px; margin-top: 4px; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  height: var(--header-h);
  touch-action: manipulation;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.site-header::before {
  content: '';
  position: absolute;
  pointer-events: none;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 2px;
  z-index: 3;
  background: var(--red);
  border-radius: 999px 999px 0 0;
  transform: translate3d(var(--nav-marker-x, 0px), 0, 0) scaleX(var(--nav-marker-scale, 0));
  transform-origin: left center;
  opacity: 0;
  will-change: transform;
  transition: transform 260ms cubic-bezier(.22, 1, .36, 1), opacity 160ms ease;
}

body.nav-marker-ready .site-header::before {
  opacity: 1;
}

body.nav-marker-priming .site-header::before {
  transition: none;
}

body.nav-marker-locked .site-header::before {
  transition: opacity 120ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .site-header::before {
    transition: none;
  }
}

.header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 20px;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-main {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}

.logo-sub {
  font-size: .68rem;
  font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .05em;
  text-transform: uppercase;
}

.main-nav ul {
  display: flex;
  gap: 2px;
}

.main-nav a {
  position: relative;
  display: block;
  padding: 8px 13px;
  color: rgba(255,255,255,.78);
  font-size: .88rem;
  font-weight: 600;
  border-radius: 6px;
  transform: translateZ(0);
  transition: background 160ms ease, color 160ms ease, transform 200ms cubic-bezier(.22, 1, .36, 1);
  text-decoration: none;
  will-change: transform;
}
.main-nav a:hover {
  background: rgba(255,255,255,.09);
  color: var(--white);
  transform: translate3d(0, -1px, 0);
}
.main-nav a[aria-current="page"] {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

.main-nav a::after {
  display: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.82);
  font-size: .86rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-phone:hover { background: rgba(255,255,255,.09); color: var(--white); }

.btn-cta {
  background: var(--red);
  color: var(--white);
  padding: 9px 18px;
  border-radius: 6px;
  font-size: .86rem;
  font-weight: 700;
  transition: background var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-cta:hover { background: var(--red-hover); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   PAGE HERO  (indre sider)
   ============================================= */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 4px solid var(--red);
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}

.page-hero > .container {
  padding-top: 56px;
  padding-bottom: 52px;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.55) 50%, rgba(0,0,0,.30));
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 16px;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color var(--transition);
}
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,.8); }

.page-hero h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,.72);
  font-size: 1.02rem;
  max-width: 600px;
  line-height: 1.65;
}

/* =============================================
   HERO  (forside)
   ============================================= */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  background: var(--navy);
}

.hero-placeholder .placeholder-inner { min-height: 600px; }
.hero-placeholder .placeholder-inner svg    { opacity: .18; color: var(--white); }
.hero-placeholder .placeholder-inner p      { color: rgba(255,255,255,.45); }
.hero-placeholder .placeholder-inner strong { color: rgba(255,255,255,.65); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.55) 55%,
    rgba(0,0,0,.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(1.85rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 20px;
}

.hero-lead {
  color: rgba(255,255,255,.83);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.trust-points li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.88);
  font-size: .87rem;
  font-weight: 600;
}
.trust-points li svg { color: var(--red); flex-shrink: 0; }

/* =============================================
   YDELSER GRID
   ============================================= */
.ydelser-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid #dde3ee;
  border-radius: 14px;
  overflow: hidden;
}

.service-card {
  padding: 32px 26px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  border-right: 1px solid #dde3ee;
  border-bottom: 1px solid #dde3ee;
  background: var(--white);
}

.service-card:nth-child(3n) {
  border-right: 0;
}

.service-card:nth-last-child(-n+3) {
  border-bottom: 0;
}

.service-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1;
}

.service-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
  padding-top: 12px;
  line-height: 1.4;
}

/* =============================================
   OM OS
   ============================================= */
.om-os-section { background: var(--white); }

.om-os-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.om-placeholder { min-height: 420px; }

.om-os-text .section-label { margin-bottom: 8px; }
.om-os-text h2 { margin-bottom: 18px; }
.om-os-text p  { margin-bottom: 16px; }

.om-os-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0 32px;
  padding: 24px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
}

.fact-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.fact-item strong {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-mid);
}
.fact-item span, .fact-item a {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
}
.fact-item a:hover { color: var(--red); }

/* =============================================
   HVORFOR LOKAL VOGNMAND
   ============================================= */
.why-section { background: var(--navy); padding: 80px 0; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 20px;
}

.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(0,55,154,.25);
  color: #7ca4f4;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-card h3 { color: var(--white); margin-bottom: 8px; }
.why-card p  { color: rgba(255,255,255,.62); font-size: .9rem; }

/* =============================================
   FORSIDE – TEASER SEKTIONER
   ============================================= */
.om-teaser-section { background: var(--white); }
.om-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.om-teaser-placeholder { min-height: 360px; }
.om-teaser-text p { margin-bottom: 14px; }

/* CTA Banner */
.cta-banner {
  background: var(--blue);
  padding: 64px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.78); margin-bottom: 32px; font-size: 1.02rem; }
.cta-banner-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   GALLERI
   ============================================= */
.gallery-section { background: var(--gray-light); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item { position: relative; }

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-placeholder {
  height: 100%;
  min-height: 200px;
  border-radius: var(--radius);
  border-style: dashed;
}
.gallery-item--large .gallery-placeholder { min-height: 420px; }

.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 22px 14px 10px;
  border-radius: 0 0 var(--radius) var(--radius);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover figcaption { opacity: 1; }

/* =============================================
   KØREOMRÅDE
   ============================================= */
.area-section { background: var(--white); }

.area-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.area-text .section-label { margin-bottom: 8px; }
.area-text h2 { margin-bottom: 18px; }
.area-text p  { margin-bottom: 16px; }

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: .87rem;
  font-weight: 600;
  color: var(--navy);
}
.city-tag svg { color: var(--red); flex-shrink: 0; }

.map-placeholder { min-height: 380px; }

/* =============================================
   KONTAKT
   ============================================= */
.contact-section { background: var(--gray-light); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.15rem;
  margin-bottom: 28px;
  color: var(--navy);
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-item strong {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-mid);
}
.contact-item span,
.contact-item a {
  font-size: .97rem;
  font-weight: 600;
  color: var(--navy);
}
.contact-item a:hover { color: var(--red); }

.contact-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrapper h3 {
  font-size: 1.15rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.form-group { margin-bottom: 18px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
label span { color: var(--red); }

input, textarea, select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,55,154,.12);
}
input::placeholder, textarea::placeholder { color: #9CA3AF; }
textarea { resize: vertical; min-height: 110px; }

.form-note {
  margin-top: 12px;
  font-size: .8rem;
  line-height: 1.5;
  color: var(--text-mid);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234B5563' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-note {
  font-size: .8rem;
  color: var(--text-mid);
  margin-top: 14px;
  text-align: center;
  line-height: 1.5;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition);
}
.faq-item:hover { border-color: #c0cde0; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: .97rem;
  font-weight: 700;
  color: var(--navy);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--gray-light); }
.faq-question[aria-expanded="true"] { background: var(--gray-light); }

.faq-arrow {
  flex-shrink: 0;
  color: var(--blue);
  transition: transform var(--transition);
}
.faq-question[aria-expanded="true"] .faq-arrow {
  transform: rotate(180deg);
  color: var(--red);
}

.faq-answer {
  padding: 0 24px 20px;
  background: var(--gray-light);
}
.faq-answer p {
  max-width: 720px;
  font-size: .94rem;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: .87rem;
  color: rgba(255,255,255,.52);
  line-height: 1.6;
  margin-bottom: 22px;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: .87rem;
  font-weight: 600;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-contact-link:hover { color: var(--white); }
.footer-contact-link svg  { color: var(--red); flex-shrink: 0; }

.footer-col h4 {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,.62);
  font-size: .87rem;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col ul a:hover { color: var(--white); }

.footer-col address p {
  color: rgba(255,255,255,.62);
  font-size: .87rem;
  margin-bottom: 5px;
}
.footer-col address strong { color: rgba(255,255,255,.88); }
.footer-col address a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
}
.footer-col address a:hover { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 24px;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.32); }
.footer-seo-text { font-size: .73rem !important; }

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: rgba(255,255,255,.62);
  font-size: .86rem;
  font-weight: 600;
}

.footer-legal-links a:hover { color: var(--white); }

/* =============================================
   INFO STRIP (forside kontakt-stribe)
   ============================================= */
.info-strip { background: var(--gray-light); padding: 56px 0; }

.info-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
}

.info-strip-icon {
  width: 44px;
  height: 44px;
  background: #eef2fb;
  color: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-strip-item > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-strip-item strong {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-mid);
}

.info-strip-item span,
.info-strip-item a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.info-strip-item a:hover { color: var(--red); }

/* =============================================
   YDELSER – INFO BOX
   ============================================= */
.info-box {
  margin-top: 48px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.info-box p {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
  margin: 0;
}

/* =============================================
   SELVHENTERPLADS
   ============================================= */
.selfpickup-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
  border-bottom: 4px solid var(--red);
}

.selfpickup-hero-media {
  position: absolute;
  inset: 0;
}

.selfpickup-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.55) 50%, rgba(0,0,0,.30));
}

.selfpickup-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.selfpickup-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 72px;
  padding-bottom: 68px;
}

.selfpickup-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.58);
  margin-bottom: 16px;
}

.selfpickup-hero .breadcrumb a {
  color: rgba(255,255,255,.58);
  text-decoration: none;
}

.selfpickup-hero .breadcrumb a:hover { color: var(--white); }

.selfpickup-hero h1 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.selfpickup-hero p {
  max-width: 620px;
  color: rgba(255,255,255,.82);
  font-size: 1.08rem;
  line-height: 1.65;
}

.selfpickup-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.selfpickup-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 56px;
  align-items: start;
}

.selfpickup-intro h3 {
  margin-top: 32px;
  margin-bottom: 14px;
}

.selfpickup-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-md);
}

.selfpickup-panel .section-label { color: #f8a9a9; }

.selfpickup-panel dl {
  display: grid;
  gap: 18px;
  margin: 12px 0 28px;
}

.selfpickup-panel div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.selfpickup-panel div:last-child { border-bottom: none; padding-bottom: 0; }

.selfpickup-panel dt {
  font-size: .78rem;
  font-weight: 800;
  color: rgba(255,255,255,.48);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.selfpickup-panel dd {
  color: rgba(255,255,255,.9);
  font-size: .96rem;
  line-height: 1.55;
}

.selfpickup-instruction-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-light);
  box-shadow: var(--shadow-md);
  min-height: 360px;
}

.selfpickup-instruction-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.two-col-text {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

.ydelser-check {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2px 44px;
}
.ydelser-check li {
  border-bottom: none;
  padding: 11px 0 11px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
.ydelser-check li::before { top: 17px; }

.selfpickup-payment-box {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #f5f8ff, #ffffff);
  box-shadow: var(--shadow-sm);
}

.selfpickup-payment-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.selfpickup-payment-logo {
  width: 170px;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
  display: block;
}

.selfpickup-payment-badge strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1rem;
}

.selfpickup-payment-badge p {
  margin: 0;
  font-size: .92rem;
}

.materials-section { background: var(--gray-light); }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.materials-grid--compact .material-card {
  min-height: 170px;
}

.material-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 24px;
  text-align: left;
  min-height: 190px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.material-card:hover {
  border-color: #c5d0e6;
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.material-icon {
  width: 52px;
  height: 52px;
  background: #eef2fb;
  color: var(--blue);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.material-card h3 { margin-bottom: 6px; }
.material-card p  { font-size: .88rem; }

.material-card--with-image {
  padding: 0;
  overflow: hidden;
}

.material-card--with-image > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
}

.material-card--with-image .material-icon,
.material-card--with-image h3,
.material-card--with-image p {
  margin-left: 22px;
  margin-right: 22px;
}

.material-card--with-image .material-icon {
  margin-top: 20px;
}

.material-card--with-image p {
  margin-bottom: 24px;
}

.selfpickup-gallery-block {
  margin-top: 58px;
}

.selfpickup-gallery-block--first {
  margin-top: 0;
}

.section-header--compact {
  margin-bottom: 26px;
}

.section-header--compact h2 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.material-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.material-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
  background: var(--navy);
}
.material-tile__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.material-tile:hover .material-tile__img { transform: scale(1.05); }

.material-tile__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.4) 55%, transparent);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  pointer-events: none;
}
.material-tile__title {
  margin: 0;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,.55);
}
.material-tile__more {
  pointer-events: auto;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.material-tile__more:hover { background: var(--red-hover); transform: translateY(-1px); }

.material-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: #667;
  padding: 24px;
}

.material-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.material-modal[hidden] { display: none; }
.material-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}
.material-modal__box {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
  padding: 20px;
}
.material-modal__media {
  width: min(100%, 280px);
  aspect-ratio: 1 / 1;
  margin: 4px auto 18px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--navy);
}
.material-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.material-modal__body { padding: 0 2px 2px; }
.material-modal__title {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
}
.material-modal__desc {
  margin: 0;
  color: #44506a;
  font-size: 1rem;
  line-height: 1.6;
  white-space: pre-wrap;
}
.material-tile__toptext {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 6px 12px;
  background: rgba(150, 40, 40, 0.78);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
}
.material-modal__close {
  position: absolute;
  top: 10px; right: 10px;
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.material-modal__close:hover { background: rgba(0,0,0,.82); }

.selfpickup-place-gallery figure {
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.selfpickup-place-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.selfpickup-place-gallery figure:hover img {
  transform: scale(1.04);
}

.selfpickup-place-gallery {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-auto-rows: 190px;
  gap: 14px;
}

.selfpickup-place-gallery figure {
  min-height: 0;
}

.selfpickup-place-gallery .place-gallery-main {
  grid-row: span 2;
}

.info-card-center {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.info-card-address {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: .92rem;
  color: var(--text-mid);
}
.info-card-address strong { color: var(--navy); margin-right: 4px; }

/* =============================================
   KONTAKT – ABOUT BLOCK
   ============================================= */
.about-block {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about-block h2 { margin-bottom: 16px; }
.about-block p  { font-size: .98rem; margin-bottom: 12px; }

/* =============================================
   BILLED-GALLERIER (random rundt på siden)
   ============================================= */
.image-grid-section { background: var(--white); padding: 64px 0; }
.image-grid-section.dark { background: var(--gray-light); }

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.image-grid-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-light);
  position: relative;
}
.image-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.image-grid-item:hover img { transform: scale(1.05); }

.image-grid-2 { grid-template-columns: repeat(2, 1fr); }
.image-grid-3 { grid-template-columns: repeat(3, 1fr); }

.image-grid-item--tall { aspect-ratio: 3 / 4; }
.image-grid-item--wide { aspect-ratio: 16 / 9; grid-column: span 2; }

/* Stort enkeltbillede */
.image-feature {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 32px 0;
  background: var(--gray-light);
}
.image-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Billede ved siden af tekst (om-os-style) */
.image-side {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-light);
}
.image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =============================================
   KLIKBARE BILLEDER
   ============================================= */
.image-click-target {
  cursor: zoom-in;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.image-click-target img {
  outline: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  --ambient-rgb: 32, 56, 78;
  --ambient-image: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 86px 42px 86px;
  background-color: rgb(7, 17, 28);
  overflow: hidden;
  background-image:
    radial-gradient(circle at 26% 18%, rgba(var(--ambient-rgb), .62), rgba(var(--ambient-rgb), 0) 42%),
    radial-gradient(circle at 74% 82%, rgba(var(--ambient-rgb), .46), rgba(var(--ambient-rgb), 0) 46%),
    linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.28));
  transition: background-color 900ms ease;
}

.image-lightbox[hidden] {
  display: none;
}

.image-lightbox::before {
  content: '';
  position: absolute;
  top: -18%;
  right: -18%;
  bottom: -18%;
  left: -18%;
  z-index: 0;
  background-image: var(--ambient-image);
  background-position: center;
  background-size: cover;
  opacity: .58;
  filter: blur(54px) saturate(1.65);
  transform: scale(1.08);
  transition: opacity 450ms ease, background-image 450ms ease;
}

.image-lightbox::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  background: rgba(0, 0, 0, .38);
}

.image-lightbox__figure {
  position: relative;
  z-index: 2;
  margin: 0;
  display: block;
  width: 100%;
  max-width: 82vw;
  max-height: 100%;
  text-align: center;
}

.image-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 190px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow:
    0 18px 64px rgba(0,0,0,.38),
    0 0 90px rgba(var(--ambient-rgb), .26);
  margin: 0 auto;
  opacity: 1;
  transition: opacity .15s ease, box-shadow 900ms ease;
}

.image-lightbox--loading .image-lightbox__img {
  opacity: .35;
}

.image-lightbox--loading::before {
  opacity: .28;
}

.image-lightbox__close,
.image-lightbox__nav {
  position: fixed;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  color: var(--white);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.image-lightbox__close:hover,
.image-lightbox__nav:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-1px);
}

.image-lightbox__close:focus,
.image-lightbox__nav:focus {
  outline: none;
}

.image-lightbox__close {
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.image-lightbox__nav {
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2.6rem;
  line-height: 1;
}

.image-lightbox__nav--prev {
  left: 20px;
}

.image-lightbox__nav--next {
  right: 20px;
}

/* =============================================
   LIVE CHAT WIDGET
   ============================================= */
.chat-toggle {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  z-index: 300;
  box-shadow: 0 6px 22px rgba(198,40,40,.4), 0 2px 8px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.chat-toggle:hover { transform: scale(1.08); background: var(--red-hover); }
.chat-toggle svg { width: 26px; height: 26px; }

.chat-toggle .pulse {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 14px;
  height: 14px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: chatPulse 2s ease-in-out infinite;
}

@keyframes chatPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.55); }
  50%      { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}

.chat-panel {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  height: 540px;
  max-height: calc(100vh - 130px);
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 14px 50px rgba(0,0,0,.22);
  z-index: 301;
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
}
.chat-panel.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}

.chat-header {
  background: var(--blue);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.chat-header-info strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.chat-header-info span {
  font-size: .76rem;
  color: rgba(255,255,255,.78);
  display: flex;
  align-items: center;
  gap: 6px;
}
.chat-header-info span::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
}
.chat-close {
  background: rgba(255,255,255,.15);
  border: none;
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.chat-close:hover { background: rgba(255,255,255,.28); }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px;
  background: var(--gray-light);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: .9rem;
  line-height: 1.5;
  word-wrap: break-word;
  animation: chatBubbleIn .25s ease both;
}

@keyframes chatBubbleIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chat-bubble.bot {
  background: var(--white);
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.chat-bubble.user {
  background: var(--blue);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 6px;
}

.chat-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: 22px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.chat-quick-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.chat-quick-btn svg { width: 14px; height: 14px; }

.chat-input-area {
  padding: 12px;
  background: var(--white);
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: center;
}

.chat-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 22px;
  font-size: .92rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition);
  background: var(--gray-light);
}
.chat-input:focus { border-color: var(--blue); background: var(--white); }

.chat-send {
  background: var(--red);
  color: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.chat-send:hover { background: var(--red-hover); }
.chat-send:disabled { opacity: .4; cursor: not-allowed; }

.chat-typing {
  display: inline-flex;
  gap: 3px;
  padding: 12px 14px;
  background: var(--white);
  border-radius: 14px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.chat-typing span {
  width: 6px;
  height: 6px;
  background: #94a3b8;
  border-radius: 50%;
  animation: chatTyping 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }

@keyframes chatTyping {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30%           { transform: translateY(-4px); opacity: 1; }
}

/* =============================================
   MOBILE STICKY CTA
   ============================================= */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--red);
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 200;
  gap: 10px;
  will-change: bottom;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .92rem;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  transition: background var(--transition);
}
.mobile-cta-btn:hover { background: var(--red-hover); color: var(--white); }

.mobile-cta-btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.38);
  color: var(--white);
}
.mobile-cta-btn--outline:hover { background: rgba(255,255,255,.08); color: var(--white); }

/* =============================================
   INFO / SPØRGSMÅL-SIDE
   ============================================= */
.site-disclaimer {
  padding: 12px 18px;
  text-align: center;
  font-weight: 700;
  font-size: .98rem;
  line-height: 1.45;
}
.site-disclaimer[hidden] { display: none; }
.site-disclaimer--amber { background: #ffcf33; color: #4a3500; }
.site-disclaimer--red   { background: #c62828; color: #fff; }
.site-disclaimer--green  { background: #1e8e3e; color: #fff; }
.site-disclaimer--blue  { background: #00379a; color: #fff; }

.info-search-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 22px;
}

.info-search {
  position: relative;
  max-width: 640px;
  margin: 0 auto 14px;
}

.info-search-icon {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--navy);
  opacity: .45;
  pointer-events: none;
}

.info-search-input {
  width: 100%;
  padding: 15px 18px 15px 46px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  border: 2px solid rgba(15, 34, 58, .16);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.info-search-input::placeholder { color: rgba(15, 34, 58, .5); }

.info-search-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 30, 40, .12);
}

.info-noresults {
  text-align: center;
  color: var(--navy);
  opacity: .8;
  margin: 8px auto 0;
  max-width: 560px;
}

.info-group {
  margin-top: 44px;
}

.info-group-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 2px solid rgba(15, 34, 58, .1);
}

.info-cta {
  text-align: center;
  margin-top: 56px;
}

.info-cta p {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.info-cta .contact-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--large { grid-column: span 2; }
}

@media (max-width: 900px) {
  .om-os-inner,
  .om-teaser-inner,
  .area-inner,
  .contact-inner,
  .two-col-text {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .selfpickup-intro,
  .materials-grid,
  .selfpickup-place-gallery {
    grid-template-columns: 1fr;
  }
  .material-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .selfpickup-payment-badge {
    flex-direction: column;
  }
  .selfpickup-payment-logo {
    width: 150px;
  }
  .selfpickup-place-gallery {
    grid-auto-rows: auto;
  }
  .selfpickup-place-gallery figure,
  .selfpickup-place-gallery .place-gallery-main {
    aspect-ratio: 4 / 3;
    grid-row: auto;
  }
  .page-hero,
  .selfpickup-hero {
    min-height: 300px;
  }
  .page-hero-media::after,
  .selfpickup-hero-media::after {
    background: linear-gradient(180deg, rgba(0,0,0,.40), rgba(0,0,0,.82));
  }
  .page-hero > .container,
  .selfpickup-hero-inner {
    padding-top: 54px;
    padding-bottom: 58px;
  }
  .om-placeholder, .om-teaser-placeholder { min-height: 280px; }
  .map-placeholder { min-height: 260px; }
  .info-strip-grid { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .image-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .image-grid-item--wide { grid-column: span 2; }
  .image-feature { height: 280px; }
  .image-lightbox {
    padding: 66px 14px 80px;
  }
  .image-lightbox__figure {
    max-width: 88vw;
  }
  .image-lightbox__img {
    max-height: calc(100vh - 220px);
  }
  .image-lightbox__nav {
    top: auto;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }
  .image-lightbox__nav--prev {
    left: calc(50% - 58px);
  }
  .image-lightbox__nav--next {
    right: calc(50% - 58px);
  }

  .chat-toggle { bottom: 90px; right: 16px; width: 54px; height: 54px; }
  .chat-toggle svg { width: 22px; height: 22px; }
  .chat-panel {
    bottom: 0; right: 0; left: 0;
    width: 100%;
    max-width: 100%;
    height: 78vh;
    max-height: 78vh;
    border-radius: 16px 16px 0 0;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    bottom: auto;
    max-height: 60vh;
    background: var(--navy);
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,.25);
    z-index: 201;
  }
  .main-nav.open { display: block; }
  .main-nav ul   { flex-direction: column; gap: 4px; }
  .main-nav a    { font-size: 1.1rem; padding: 13px 18px; }
  .main-nav a[aria-current="page"] { padding-bottom: 13px; border-bottom: none; }

  .hamburger  { display: flex; position: relative; z-index: 202; margin-right: 10px; }
  .btn-phone  { display: none; }
  .header-cta { display: none; }

  .hero { min-height: 540px; }
  .hero-placeholder .placeholder-inner { min-height: 540px; }
  .hero-content { padding-top: 56px; padding-bottom: 80px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.45) 100%);
  }

  .section { padding: 56px 0; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; }
  .gallery-item--large .gallery-placeholder { min-height: 220px; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 32px;
  }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .mobile-cta { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
}

@media (max-width: 480px) {
  h2 { font-size: 1.5rem; }
  .image-grid { grid-template-columns: 1fr; }
  .image-grid-item--wide { grid-column: span 1; }
  .image-feature { height: 220px; }
  .material-photo-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.65rem; }
  .hero-btns  { flex-direction: column; }
  .btn-lg     { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card  { padding: 22px 16px; gap: 14px; }
  .service-card:nth-child(3n)         { border-right: 1px solid #dde3ee; }
  .service-card:nth-last-child(-n+3)  { border-bottom: 1px solid #dde3ee; }
  .service-card:nth-child(2n)         { border-right: 0; }
  .service-card:nth-last-child(-n+2)  { border-bottom: 0; }
  .service-card:last-child            { border-bottom: 0; border-right: 0; }
  .why-grid      { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .gallery-item--large { grid-column: span 1; }
  .area-cities         { gap: 8px; }
  .contact-cta-btns    { flex-direction: column; }
  .cta-banner-btns     { flex-direction: column; align-items: center; }
}

@media print {
  .site-header, .mobile-cta, .hero-btns, .contact-form-wrapper { display: none; }
  .hero { min-height: auto; }
  body { padding-bottom: 0; }
}
