/* =========================================================
   Stenbæk Montage — stylesheet
   Designretning: Brandtro grøn/hvid, inspireret af JLK Montage
   ========================================================= */

/* ---------- Selvhostet skrifttype: Archivo (variabel skrifttype, dækker vægt 400-800) ---------- */
@font-face { font-family:"Archivo"; font-style:normal; font-weight:400 800; font-display:swap; src:url("/fonts/archivo-latin-variable.woff2") format("woff2-variations"), url("/fonts/archivo-latin-variable.woff2") format("woff2"); }

:root {
  --navy:      #131d15;   /* overskrifter / mørk tekst   */
  --navy-deep: #152018;   /* footer / mørke flader       */
  --blue:      #2e8d1d;   /* accent / knapper / links (brand-grøn fra logoet) */
  --blue-dark: #235f16;   /* hover                       */
  --steel:     #4b5a4e;   /* brødtekst                   */
  --line:      #e4ebe3;   /* kanter                      */
  --bg:        #ffffff;
  --bg-soft:   #e9f1e4;   /* lyse sektioner              */
  --bg-softer: #dcebd7;
  --white:     #ffffff;
  --radius:    10px;
  --radius-lg: 16px;
  --shadow:    0 1px 3px rgba(19,29,21,.06), 0 8px 24px rgba(19,29,21,.06);
  --shadow-lg: 0 12px 40px rgba(19,29,21,.12);
  --wrap:      1140px;
  --font: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--navy);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;            /* forhindrer vandret scroll uden at bryde sticky */
}
html { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
h1, h2, h3 { color: var(--navy); line-height: 1.15; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { margin: 0 0 1rem; color: var(--steel); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 14px;
}
.lead { font-size: 1.15rem; color: var(--steel); max-width: 60ch; }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius); cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: #fff; box-shadow: 0 6px 18px rgba(46,141,29,.28); }
.btn--primary:hover { background: var(--blue-dark); color: #fff; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--light { background: #fff; color: var(--navy); }
.btn--light:hover { color: var(--blue); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }
.brand__name { font-weight: 800; color: var(--navy); font-size: 1.15rem; letter-spacing: -.01em; line-height: 1.1; }
.brand__name span { display: block; font-size: .72rem; font-weight: 600; color: var(--steel); letter-spacing: .12em; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  position: relative; color: var(--navy); font-weight: 600; font-size: .95rem;
  padding: 9px 2px; transition: color .15s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 2px; right: 2px; bottom: 4px; height: 2px;
  background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform .15s ease;
}
.nav a:hover { color: var(--blue); }
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-active { color: var(--blue); }
.nav a.is-active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 18px; }
.header-cta .btn { padding: 11px 20px; font-size: .92rem; }
.header-phone { display: inline-flex; align-items: center; gap: 10px; }
.header-phone svg { flex: none; color: var(--blue); }
.header-phone__text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.header-phone__text small { color: var(--steel); font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.header-phone__text strong { color: var(--navy); font-size: 1.1rem; }
.header-phone:hover .header-phone__text strong { color: var(--blue); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(11,17,12,.92) 0%, rgba(11,17,12,.78) 42%, rgba(11,17,12,.35) 100%);
}
.hero__inner { position: relative; padding: 96px 0; max-width: 640px; }
.hero h1 { color: #fff; }
.hero p { color: #dbe6dc; font-size: 1.2rem; }
.hero .eyebrow { color: #8fdc78; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero--page .hero__inner { padding: 78px 0; }

/* trust badges under hero */
.hero__badges { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 34px; }
.hero__badges div { display: flex; align-items: center; gap: 9px; font-size: .95rem; color: #e7eef6; font-weight: 600; }
.hero__badges svg { flex: none; }

/* ---------- Forside-hero (lys variant) ---------- */
.hero-home { padding: 88px 0 0; }
.hero-home__intro { max-width: 740px; }
.hero-home h1 { font-size: clamp(2.3rem, 4.6vw, 3.5rem); }
.hero-home h1 .hl { color: var(--blue); }
.hero-home__lead { font-size: 1.16rem; color: var(--steel); max-width: 62ch; margin-bottom: 0; }
.hero-home__media { max-width: var(--wrap); margin: 56px auto 0; padding: 0 24px; }
.hero-home__media img {
  width: 100%; height: clamp(340px, 50vw, 620px); object-fit: cover; display: block;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}

/* Desktop: billedet bliver en baggrundsflade der bløder ud til kanten, teksten ligger ovenpå til venstre */
@media (min-width: 980px) {
  .hero-home { position: relative; overflow: hidden; padding: 132px 0; }
  .hero-home__media { position: absolute; top: 0; right: 0; bottom: 0; width: 52%; max-width: none; margin: 0; padding: 0; z-index: 0; }
  .hero-home__media img {
    height: 100%; border-radius: 0; box-shadow: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 30%);
  }
  .hero-home > .wrap { position: relative; z-index: 1; }
  .hero-home__intro { max-width: 500px; }
}

/* ---------- Tillids-bar (kompakt strimmel med nøgletal) ---------- */
.trust-band { background: var(--navy-deep); }
.trust-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 40px; padding: 32px 0; }
.trust-bar__item { display: flex; align-items: center; gap: 14px; }
.trust-bar__icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.1); color: #8fdc78;
  display: flex; align-items: center; justify-content: center;
}
.trust-bar__item strong { display: block; font-size: .98rem; color: #fff; font-weight: 700; }
@media (max-width: 700px) { .trust-bar { justify-content: flex-start; } }

/* ---------- Service cards ---------- */
.grid { display: grid; gap: 24px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card-link {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card-link:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: #bfd6b8; }
.card-link__img { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--bg-softer); }
.card-link__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card-link:hover .card-link__img img { transform: scale(1.06); }
.card-link__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-link__body h3 { margin-bottom: 8px; }
.card-link__body p { font-size: .96rem; margin-bottom: 16px; }
.card-link__more { margin-top: auto; font-weight: 700; color: var(--blue); font-size: .95rem; }

/* ---------- Proces (nummererede trin) ---------- */
.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; counter-reset: step; }
.process-step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; }
.process-step__num { font-size: 2.6rem; font-weight: 800; color: #dcebd8; line-height: 1; margin-bottom: 14px; }
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: .96rem; margin-bottom: 0; }
@media (max-width: 760px) { .process-grid { grid-template-columns: 1fr; } }

/* ---------- Feature / split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--media-right .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.split__media { position: relative; }

/* ---------- Check list ---------- */
.checks { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 14px; }
.checks li { display: flex; align-items: flex-start; gap: 12px; color: var(--navy); font-weight: 600; }
.checks li::before {
  content: ""; flex: none; width: 24px; height: 24px; margin-top: 1px; border-radius: 50%;
  background: #e6f2e2 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%232e8d1d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat;
}

/* ---------- Hvorfor vælge os (4 kort) ---------- */
.why-cards { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 20px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 24px; text-align: center; }
.why-card__icon {
  width: 48px; height: 48px; margin: 0 auto 16px; border-radius: 12px;
  background: #e6f2e2; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.why-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: .92rem; margin-bottom: 0; }
@media (max-width: 900px) { .why-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-cards { grid-template-columns: 1fr; } }

/* ---------- Stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 2.4rem; color: var(--blue); font-weight: 800; line-height: 1; }
.stat span { color: var(--steel); font-weight: 600; font-size: .95rem; }

/* ---------- Contact boxes ---------- */
.contact-boxes { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.contact-box {
  display: flex; align-items: center; gap: 18px; padding: 28px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease, border-color .18s;
}
.contact-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: #bfd6b8; }
.contact-box__icon {
  flex: none; width: 58px; height: 58px; border-radius: 14px;
  background: linear-gradient(135deg, var(--blue), #4bbf37);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.contact-box small { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 700; color: var(--steel); }
.contact-box strong { display: block; font-size: 1.45rem; color: var(--navy); line-height: 1.2; }
.contact-box:hover strong { color: var(--blue); }
.contact-box span.note { color: var(--steel); font-size: .9rem; }
.contact-box > span { min-width: 0; }
.contact-box strong { overflow-wrap: anywhere; }
.footer-contact strong a { overflow-wrap: anywhere; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy), #1c3220); color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #cdd8e3; max-width: 52ch; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; }

/* ---------- Kontaktformular ---------- */
.contact-form-wrap { max-width: 720px; margin: 36px auto 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 32px; }
.contact-form-wrap h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-form-wrap > p { margin-bottom: 22px; }
.contact-form label { display: block; font-weight: 600; color: var(--navy); font-size: .92rem; margin-bottom: 16px; }
.contact-form input, .contact-form textarea {
  display: block; width: 100%; margin-top: 7px; padding: 13px 15px; font: inherit; color: var(--navy);
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(30,111,196,.12); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.form-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.form-note { color: var(--steel); font-size: .88rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } .contact-form-wrap { padding: 24px; } }

/* Valg af ydelse (radioknapper som piller) */
.form-choices { border: 0; padding: 0; margin: 0 0 18px; }
.form-choices legend { font-weight: 600; color: var(--navy); font-size: .92rem; padding: 0; margin-bottom: 10px; }
.choices-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.form-choices .choice { position: relative; display: inline-flex; margin: 0; }
.choice input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; }
.choice span {
  display: inline-block; padding: 10px 18px; border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg-soft); color: var(--navy); font-weight: 600; font-size: .92rem;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.choice:hover span { border-color: var(--blue); color: var(--blue); }
.choice input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; }
.choice input:focus-visible + span { box-shadow: 0 0 0 3px rgba(30,111,196,.25); }

/* ---------- Serviceaftale-beregner ---------- */
.calc { display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px; align-items: start; max-width: 980px; margin: 0 auto; }
.calc__form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 30px; }
.calc__result {
  position: sticky; top: 24px; color: #fff; border-radius: var(--radius-lg); padding: 30px;
  background: linear-gradient(120deg, var(--navy), #1c3220); box-shadow: var(--shadow-lg);
}
.calc__result-label { text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; font-weight: 700; color: #a8bfa5; margin: 0 0 6px; }
.calc__price { font-size: clamp(2.2rem, 6vw, 2.9rem); font-weight: 800; line-height: 1.05; color: #fff; margin: 0; }
.calc__price span { font-size: 1rem; font-weight: 600; color: #d3ddd1; }
.calc__breakdown { list-style: none; padding: 0; margin: 20px 0 0; font-size: .9rem; }
.calc__breakdown li { display: flex; justify-content: space-between; gap: 14px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.12); color: #d3ddd1; }
.calc__breakdown strong { color: #fff; font-weight: 700; text-align: right; }
.calc__actions { display: grid; gap: 10px; margin-top: 22px; }
.calc__actions .btn { width: 100%; justify-content: center; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--outline-light:hover { background: rgba(255,255,255,.1); color: #fff; }
.calc__zip {
  display: block; width: 160px; max-width: 100%; margin-top: 4px; padding: 13px 15px;
  font: inherit; color: var(--navy); background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 10px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.calc__zip:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(30,111,196,.12); }
.calc__zip-hint { display: block; margin-top: 8px; font-size: .85rem; color: var(--steel); min-height: 1.2em; }
.calc__zip-hint.is-error { color: #b4232a; }
.calc__note { font-size: .8rem; color: #a8bfa5; margin: 16px 0 0; }
@media (max-width: 820px) { .calc { grid-template-columns: 1fr; } .calc__result { position: static; } }

/* ---------- FAQ (accordion) ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 2px 22px; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); padding: 18px 0; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-weight: 800; font-size: 1.4rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details > p { margin: 0 0 18px; color: var(--steel); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: #b6c4b8; padding: 64px 0 0; margin-top: 0; }
.site-footer h4 { color: #fff; font-size: 1rem; margin: 0 0 16px; letter-spacing: .02em; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 40px; }
.site-footer a { color: #b6c4b8; }
.site-footer a:hover { color: #fff; }
.footer-about p { color: #b6c4b8; }
.footer-brand {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px;
  background: #fff; padding: 12px 16px; border-radius: 12px;
}
.footer-brand img { height: 42px; width: auto; }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-contact div { margin-bottom: 14px; }
.footer-contact small { display: block; text-transform: uppercase; letter-spacing: .1em; font-size: .7rem; color: #7d8f7a; }
.footer-contact strong a { color: #fff; font-size: 1.15rem; }
.footer-contact__row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact__row svg { flex: none; margin-top: 3px; color: #7fbf6d; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding: 22px 0; font-size: .85rem; color: #85977f; }
.footer-bottom .wrap { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; bottom: 18px; left: 18px; right: 18px; max-width: 520px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 18px 20px; z-index: 80;
  display: flex; gap: 16px; align-items: center; font-size: .9rem; color: var(--steel);
}
.cookie.is-hidden { display: none; }
.cookie button { white-space: nowrap; }

/* ---------- Sticky kontakt (ring + mail, altid synlig) ---------- */
.sticky-contact {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 75;
  display: flex; gap: 1px; background: var(--line);
  box-shadow: 0 -4px 18px rgba(15,42,67,.16);
}
.sticky-contact__btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 10px; font-weight: 700; font-size: 1rem; color: #fff;
  transition: background .15s ease, transform .15s ease;
}
.sticky-contact__btn svg { flex: none; }
.sticky-contact__btn--call { background: var(--blue); }
.sticky-contact__btn--call:hover { background: var(--blue-dark); color: #fff; }
.sticky-contact__btn--mail { background: var(--navy); }
.sticky-contact__btn--mail:hover { background: var(--navy-deep); color: #fff; }

/* På desktop: flydende knapper nederst til højre */
@media (min-width: 1025px) {
  .sticky-contact {
    left: auto; right: 26px; bottom: 26px;
    flex-direction: column; gap: 12px; background: transparent; box-shadow: none;
  }
  .sticky-contact__btn {
    flex: none; justify-content: flex-start; border-radius: 999px;
    padding: 14px 24px; box-shadow: var(--shadow-lg);
  }
  .sticky-contact__btn:hover { transform: translateY(-3px); }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split--media-right .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2,1fr); }
}
/* Kollaps menu til hamburger allerede på tablet */
@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .header-phone { display: none; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: stretch;
    gap: 8px; padding: 14px 16px 18px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 15px 18px; border-radius: 12px; border: 1px solid var(--line);
    background: #fff; font-size: 1.02rem; font-weight: 600;
  }
  .nav a::after { content: "→"; color: var(--blue); font-weight: 700; font-size: 1.1rem; }
  .nav a:hover { background: var(--bg-soft); color: var(--blue); border-color: var(--line); }
  .nav a.is-active { background: var(--blue); color: #fff; border-color: var(--blue); }
  .nav a.is-active::after { color: #fff; }
  /* plads til sticky kontaktbar i bunden (mobil/tablet) */
  body { padding-bottom: 66px; }
  .cookie { bottom: 80px; }
}
@media (max-width: 760px) {
  .section { padding: 60px 0; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .contact-boxes { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
  .hero__inner { padding: 70px 0; }
  .contact-box { padding: 20px; gap: 14px; }
  .contact-box__icon { width: 50px; height: 50px; }
  .contact-box strong { font-size: 1.12rem; }
}
