/* ============ Lange Sikkerhedsudstyr – design system ============ */
:root {
  --orange: #F59E1D;
  --red: #E03A22;
  --ink: #131210;
  --ink-2: #23211d;
  --paper: #F7F4EE;
  --paper-2: #EFEAE0;
  --white: #fff;
  --muted: #6d675e;
  --muted-light: #b8b2a6;
  --display: "Anton", sans-serif;
  --body: "Archivo", sans-serif;
  --wrap: 1240px;
  --radius: 2px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.noscroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }
.accent { color: var(--orange); }

h1, h2, h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; line-height: .95; letter-spacing: .01em; }
h2 { font-size: clamp(34px, 4.5vw, 58px); }

.eyebrow {
  font-size: 13px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-bottom: 18px;
}

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-sub { color: var(--muted); margin-top: 16px; font-size: 18px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 15px; letter-spacing: .04em; text-transform: uppercase;
  padding: 14px 26px; border-radius: var(--radius);
  transition: all .25s cubic-bezier(.2,.7,.3,1); cursor: pointer; border: 2px solid transparent;
}
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(5px); }
.btn-lg { padding: 17px 32px; font-size: 16px; }
.btn-solid { background: var(--orange); color: var(--ink); }
.btn-solid:hover { background: var(--red); color: var(--white); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: var(--white); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }

/* ============ Utility bar ============ */
.utility { background: var(--ink); color: var(--muted-light); font-size: 13.5px; }
.utility-inner { display: flex; justify-content: space-between; align-items: center; height: 38px; }
.utility-promise { display: flex; align-items: center; gap: 8px; color: var(--paper); font-weight: 600; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .35 } }
.utility-contact a:hover { color: var(--orange); }
.sep { margin: 0 10px; }

/* Sprogskifte – ren tekst, ingen flag: flag betegner lande, ikke sprog */
.langswitch { display: inline-flex; align-items: center; margin-left: 16px; padding-left: 16px; border-left: 1px solid rgba(255,255,255,.18); }
.langswitch a { display: inline-block; padding: 3px 7px; font-size: 12px; font-weight: 700; letter-spacing: .08em; color: rgba(255,255,255,.55); transition: color .18s; }
.langswitch a:hover { color: var(--paper); }
.langswitch a.is-active { color: var(--orange); }
.langswitch a.is-active:hover { color: var(--orange); }

/* Sprogskifte i mobilmenuen */
/* ============ Nav ============ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--paper); border-bottom: 1px solid var(--paper-2);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 6px 30px rgba(19,18,16,.1); }
.nav-inner { display: flex; align-items: center; gap: 40px; height: 132px; }
.nav-logo img { height: 92px; width: auto; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-weight: 600; font-size: 15.5px; position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--red); transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-burger { display: none; background: none; border: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; cursor: pointer; }
.nav-burger span { width: 26px; height: 3px; background: var(--ink); transition: all .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobilemenu {
  position: fixed; inset: 0; top: 170px; z-index: 99; background: var(--paper); padding: 32px;
}
.mobilemenu nav { display: flex; flex-direction: column; gap: 8px; }
.mobilemenu a { font-family: var(--display); text-transform: uppercase; font-size: 34px; padding: 10px 0; border-bottom: 1px solid var(--paper-2); }
.mobilemenu .btn { font-family: var(--body); font-size: 16px; margin-top: 24px; justify-content: center; }
.mobilemenu .mobilemenu-lang { display: flex; gap: 8px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--paper-2); }
.mobilemenu .mobilemenu-lang a { font-family: var(--body); text-transform: none; font-size: 13px; font-weight: 700; letter-spacing: .1em; padding: 8px 16px; border: 1px solid rgba(19,18,16,.2); color: var(--ink); }
.mobilemenu .mobilemenu-lang a.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

/* ============ Hero ============ */
.hero { position: relative; min-height: 92vh; display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); }
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 12s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.08) } to { transform: scale(1) } }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(78deg, rgba(19,18,16,.92) 0%, rgba(19,18,16,.55) 45%, rgba(19,18,16,.18) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; padding-top: 120px; padding-bottom: 72px; }
.hero .eyebrow { color: var(--orange); }
.hero h1 { font-size: clamp(64px, 11vw, 168px); letter-spacing: .005em; }
.hero-sub { max-width: 520px; margin-top: 26px; font-size: 19px; color: rgba(255,255,255,.88); }
.hero-ctas { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats { position: relative; z-index: 2; background: rgba(19,18,16,.72); backdrop-filter: blur(12px); border-top: 1px solid rgba(255,255,255,.14); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 22px 28px 24px; border-left: 1px solid rgba(255,255,255,.14); }
.stat:first-child { border-left: none; padding-left: 0; }
.stat strong { font-family: var(--display); font-size: 34px; font-weight: 400; color: var(--orange); display: block; line-height: 1; }
.stat span { font-size: 13.5px; color: rgba(255,255,255,.75); display: block; margin-top: 6px; line-height: 1.35; }

/* ============ Editorial ============ */
.editorial { padding: 110px 0; }
.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.editorial-media { position: relative; }
.editorial-media img { width: 100%; aspect-ratio: 4/4.6; object-fit: cover; }
.editorial-badge {
  position: absolute; right: -26px; bottom: -26px; background: var(--orange); color: var(--ink);
  width: 148px; height: 148px; display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--display); font-size: 30px; line-height: 1; text-transform: uppercase;
  box-shadow: 0 20px 50px rgba(19,18,16,.25);
}
.editorial-copy h2 { margin-bottom: 24px; }
.editorial-copy p { color: var(--muted); margin-bottom: 18px; }
.checklist { list-style: none; margin: 26px 0 34px; }
.checklist li { padding-left: 34px; position: relative; margin-bottom: 12px; font-weight: 600; }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px;
  background: var(--orange); color: var(--ink); font-size: 13px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
}

/* ============ Categories ============ */
.cats { padding: 40px 0 110px; }
.cats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cat { position: relative; aspect-ratio: 4/4.8; overflow: hidden; background: var(--ink); }
.cat img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .7s cubic-bezier(.2,.7,.3,1), opacity .4s; }
.cat:hover img { transform: scale(1.06); opacity: .6; }
.cat::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(8deg, rgba(19,18,16,.88) 0%, rgba(19,18,16,.25) 45%, transparent 75%);
}
.cat-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: baseline; gap: 14px; padding: 24px;
  color: var(--white); border-top: 3px solid transparent; transition: border-color .3s;
}
.cat:hover .cat-label { border-color: var(--orange); }
.cat-label h3 { font-size: clamp(22px, 2vw, 30px); }
.cat-arrow { margin-left: auto; font-size: 22px; color: var(--orange); transform: translateX(-6px); opacity: 0; transition: all .3s; }
.cat:hover .cat-arrow { transform: translateX(0); opacity: 1; }

/* ============ Bestsellers ============ */
.picks { padding: 0 0 110px; }
.picks-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.picks-head .section-head { margin-bottom: 48px; }
.picks-all { margin-bottom: 48px; flex-shrink: 0; }
.picks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pick {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--paper-2); border-radius: var(--radius);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .35s;
}
.pick:hover {
  transform: translateY(-6px); border-color: var(--orange);
  box-shadow: 0 22px 48px rgba(19,18,16,.14);
}
.pick-media { position: relative; aspect-ratio: 4/3.1; overflow: hidden; background: var(--ink); }
.pick-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.3,1); }
.pick:hover .pick-media img { transform: scale(1.06); }
.pick-norm {
  position: absolute; left: 0; bottom: 0; background: var(--orange); color: var(--ink);
  font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 12px;
}
.pick-body { display: flex; flex-direction: column; flex: 1; padding: 20px 22px 22px; }
.pick-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.pick-brand { font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--red); }
.pick-sku { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.pick-name { font-family: var(--body); text-transform: none; font-size: 18px; font-weight: 700; letter-spacing: 0; line-height: 1.25; margin-bottom: 6px; }
.pick-spec { font-size: 14px; color: var(--muted); line-height: 1.45; margin-bottom: 18px; }
.pick-price {
  display: flex; align-items: baseline; gap: 8px; margin-top: auto;
  padding-top: 14px; border-top: 1px solid var(--paper-2);
}
.pick-price strong { font-family: var(--display); font-weight: 400; font-size: 24px; text-transform: uppercase; line-height: 1; }
.pick-price span { font-size: 12.5px; color: var(--muted); }
.pick-go { margin-left: auto; font-size: 20px; color: var(--orange); opacity: 0; transform: translateX(-6px); transition: all .3s; }
.pick:hover .pick-go { opacity: 1; transform: translateX(0); }

/* ============ Statement band ============ */
.band { position: relative; padding: 130px 0; color: var(--white); overflow: hidden; }
.band-media { position: absolute; inset: 0; }
.band-media img { width: 100%; height: 100%; object-fit: cover; }
.band::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(224,58,34,.94) 0%, rgba(224,58,34,.82) 50%, rgba(19,18,16,.6) 100%);
}
.band-inner { position: relative; z-index: 2; max-width: 860px; }
.band h2 { font-size: clamp(42px, 6vw, 84px); }
.band p { margin: 26px 0 44px; font-size: 19px; max-width: 560px; color: rgba(255,255,255,.92); }
.band-usps { display: flex; gap: 0; flex-wrap: wrap; }
.usp { padding: 18px 36px 20px; border-left: 2px solid rgba(255,255,255,.35); }
.usp:first-child { border-left: none; padding-left: 0; }
.usp strong { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: 26px; display: block; line-height: 1.05; }
.usp span { font-size: 14px; color: rgba(255,255,255,.85); }

/* ============ Brands ============ */
.brands { padding: 110px 0 90px; background: var(--paper); }
.marquee { overflow: hidden; margin-top: 20px; border-top: 1px solid var(--paper-2); border-bottom: 1px solid var(--paper-2); }
.marquee-track {
  display: flex; gap: 72px; align-items: center; width: max-content;
  padding: 34px 0; animation: scroll 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 42px; width: auto; max-width: 170px; object-fit: contain;
  filter: opacity(.8); mix-blend-mode: multiply; transition: filter .3s;
}
.marquee-track img:hover { filter: none; }
@keyframes scroll { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* ============ Import ============ */
.import { padding: 30px 0 110px; }
.import-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: center; }
.import-copy h2 { margin-bottom: 24px; }
.import-copy p { color: var(--muted); margin-bottom: 18px; }
.import-copy .btn { margin-top: 16px; }
.import-media { position: relative; }
.import-media::before {
  content: ""; position: absolute; top: -22px; left: -22px; right: 22px; bottom: 22px;
  border: 3px solid var(--orange); z-index: 0;
}
.import-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }

/* ============ Quality ============ */
.quality { background: var(--ink); color: var(--paper); padding: 110px 0; }
.quality .eyebrow { color: var(--orange); }
.quality-head { max-width: 760px; margin-bottom: 56px; }
.quality-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.qcard { background: var(--ink-2); border: 1px solid rgba(255,255,255,.08); padding: 40px 34px; transition: transform .3s, border-color .3s; }
.qcard:hover { transform: translateY(-6px); border-color: var(--orange); }
.qmark {
  font-family: var(--display); font-size: 30px; color: var(--ink); background: var(--orange);
  display: inline-flex; align-items: center; justify-content: center; min-width: 74px; height: 54px; padding: 0 14px;
  margin-bottom: 26px;
}
.qcard h3 { font-size: 22px; margin-bottom: 12px; }
.qcard p { color: var(--muted-light); font-size: 15.5px; }

/* ============ Export ============ */
.export { padding: 110px 0; overflow: hidden; }
.export-grid { display: grid; grid-template-columns: .85fr 1.5fr; gap: 56px; align-items: center; }
.export-copy h2 { margin-bottom: 24px; }
.export-copy p { color: var(--muted); margin-bottom: 18px; }
.export-points { display: grid; gap: 18px; margin-top: 34px; }
.xp { border-left: 3px solid var(--orange); padding-left: 16px; }
.xp strong { display: block; font-size: 17px; }
.xp span { font-size: 14.5px; color: var(--muted); }
.export-map { margin-right: calc(-1 * max(32px, (100vw - var(--wrap)) / 2 + 32px)); }
.export-map svg, .europamap-img { width: 100%; height: auto; display: block; }
.export-map .map-caption { padding-right: 32px; }
.export-map .c { fill: #E7E1D3; stroke: var(--paper); stroke-width: .5; }
.export-map #dk { fill: var(--orange); stroke: var(--paper); }
.export-map .mdot {
  fill: var(--red); opacity: .8; transform-box: fill-box; transform-origin: center;
  animation: mdot 3.2s ease-in-out infinite;
}
@keyframes mdot { 0%, 100% { opacity: .35; transform: scale(.8) } 50% { opacity: .9; transform: scale(1.25) } }
.export-map .dk-dot { fill: var(--red); }
.export-map .dk-ring {
  fill: none; stroke: var(--red); stroke-width: 1;
  transform-box: fill-box; transform-origin: center; animation: dkring 2.6s ease-out infinite;
}
@keyframes dkring { 0% { transform: scale(.4); opacity: 1 } 100% { transform: scale(2.6); opacity: 0 } }
.map-caption {
  display: flex; align-items: center; gap: 8px; margin-top: 18px;
  font-size: 13.5px; color: var(--muted);
}
.map-key { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.map-key.dk { background: var(--orange); }
.map-key.eu { background: var(--red); margin-left: 18px; }
@media (prefers-reduced-motion: reduce) {
  .export-map .mdot, .export-map .dk-ring { animation: none; }
}

/* ============ Contact ============ */
.contact { padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 72px; align-items: center; }
.contact-copy h2 { margin-bottom: 20px; }
.contact-copy > p { color: var(--muted); max-width: 480px; }
.contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 40px; margin: 38px 0 40px; }
.cd { border-left: 3px solid var(--orange); padding-left: 16px; }
.cd-label { display: block; font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.cd strong { font-size: 17px; }
.cd a:hover { color: var(--red); }
.contact-media img { width: 100%; aspect-ratio: 4/4.4; object-fit: cover; }

/* ============ Footer ============ */
.footer { background: var(--ink); color: var(--muted-light); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr .9fr .9fr 1.25fr 1.15fr; gap: 40px;
  padding-top: 72px; padding-bottom: 56px;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 20px; }
.footer-brand p { font-size: 15px; max-width: 280px; }
.footer-dispatch {
  display: flex; align-items: center; gap: 9px; margin-top: 18px;
  font-size: 13.5px; font-weight: 700; letter-spacing: .02em; color: var(--paper);
}
.dispatch-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex: none;
  box-shadow: 0 0 0 4px rgba(245,158,29,.18);
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
  font-family: var(--body); font-size: 13px; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--paper); margin-bottom: 8px;
}
.footer-col a { font-size: 15px; }
.footer-col a:hover { color: var(--orange); }
.footer-cvr { font-size: 15px; }
.footer-compliance {
  padding-top: 22px; padding-bottom: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-compliance p { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.5); max-width: 760px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 24px; padding-bottom: 30px;
  border-top: 1px solid rgba(255,255,255,.1); font-size: 14px;
}
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 14px; }
.footer-legal a:hover { color: var(--orange); }
.footer-bottom > span:last-child { font-family: var(--display); text-transform: uppercase; font-size: 16px; color: var(--paper); }

/* ============ Reveals ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); transition-delay: var(--d, 0s); }
.reveal.in { opacity: 1; transform: none; }
.reveal-load { opacity: 0; transform: translateY(28px); animation: rise .8s cubic-bezier(.2,.7,.3,1) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: none } }

/* ============ Responsive ============ */
@media (max-width: 1000px) {
  .editorial-grid, .import-grid, .contact-grid, .export-grid { grid-template-columns: 1fr; gap: 48px; }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .picks-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 18px 22px; }
  .stat:nth-child(odd) { border-left: none; padding-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  /* På mobil er der ikke plads til leveringslinjen ved siden af kontaktinfo.
     Den står i forvejen i sidefoden – her prioriteres telefon og sprogskifte. */
  .utility-promise { display: none; }
  .utility-contact { display: flex; align-items: center; width: 100%; justify-content: space-between; }
  .utility-contact > .sep, .utility-contact a[href^="mailto"] { display: none; }
  .langswitch { margin-left: 0; padding-left: 0; border-left: none; }
  .nav-inner { height: 110px; gap: 16px; }
  .nav-logo img { height: 76px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .mobilemenu { top: 148px; }
  .hero { min-height: 88vh; }
  .hero-content { padding-bottom: 48px; }
  .hero h1 { font-size: clamp(58px, 17vw, 92px); }
  .hero-sub { font-size: 17px; }
  .cats-grid { grid-template-columns: 1fr; }
  .cat { aspect-ratio: 4/3.2; }
  .picks { padding-bottom: 72px; }
  .picks-head { flex-direction: column; align-items: flex-start; gap: 0; }
  .picks-head .section-head { margin-bottom: 28px; }
  .picks-all { margin-bottom: 36px; }
  .picks-grid { grid-template-columns: 1fr; }
  .editorial, .cats, .brands, .import, .quality, .contact, .export { padding-top: 72px; padding-bottom: 72px; }
  .band { padding: 84px 0; }
  .usp { padding: 14px 22px 16px; }
  .usp:nth-child(2) { border-left: none; padding-left: 0; }
  .editorial-badge { width: 110px; height: 110px; font-size: 22px; right: 12px; bottom: -18px; }
  .quality-cards { grid-template-columns: 1fr; }
  .contact-details { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-legal { justify-content: center; flex-wrap: wrap; gap: 14px 22px; }
  .marquee-track span { font-size: 30px; }
}
