/* ============================================================
   WESTH INDUSTRIES — one-page udkast
   Farver: sort/grå/hvid + CTA orange #FF6600
   ============================================================ */

/* ============================================================
   Self-hostede fonte (ingen Google-forbindelse: hurtigere +
   privatlivsvenligt). Orbitron er variabel (én fil, vægt 600-800).
   Latin-subset dækker æ/ø/å.
   ============================================================ */
@font-face {
  font-family: "Orbitron";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/orbitron-var.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/poppins-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ============================================================
   Metric-justerede fallback-fonte (CLS-fix ved font-swap).
   size-adjust er målt empirisk mod de rigtige fonte (ombrydnings-
   paritet på 320/360/420/600/880 px) — teksten hopper ikke,
   når Orbitron/Poppins lander.
   ============================================================ */
@font-face {
  font-family: "Orbitron Fallback";
  src: local("Arial");
  size-adjust: 127%;
}
@font-face {
  font-family: "Poppins Fallback";
  src: local("Arial");
  size-adjust: 113%;
}

:root {
  --c-bg: #0c0d0f;
  --c-bg-2: #121417;
  --c-panel: #17191d;
  --c-line: rgba(255, 255, 255, 0.08);
  --c-white: #ffffff;
  --c-text-dark-bg: #d8dbdf;   /* brødtekst på mørk baggrund */
  --c-muted-dark-bg: #9aa0a6;
  --c-light: #f4f5f6;          /* lyse sektioner */
  --c-ink: #17191d;            /* tekst på lys baggrund */
  --c-muted-light-bg: #5a6067;
  --c-orange: #ff6600;
  --c-orange-hover: #ff7c26;
  --c-orange-deep: #d95700;
  --font-head: "Orbitron", "Orbitron Fallback", "Segoe UI", system-ui, sans-serif;
  --font-body: "Poppins", "Poppins Fallback", "Segoe UI", system-ui, sans-serif;
  --container: 1180px;
  --radius: 10px;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Offset så anchor-spring (menupunkter) lander under den faste header */
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text-dark-bg);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

/* height:auto er PÅKRÆVET sammen med width/height-attributterne (CLS):
   uden den anvendes attribut-højden bogstaveligt når CSS begrænser bredden
   → strakte billeder. Attributterne bruges stadig til pladsreservering. */
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--c-white);
}

h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.12rem; font-weight: 700; }

p { margin: 0 0 1em; }

a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 32px);
}

.section-kicker {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 0.9em;
}
.section-kicker--light { color: var(--c-orange); }
.section-kicker--dark { color: rgba(0, 0, 0, 0.75); }

/* ---------- Knapper ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 15px 34px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

/* Knapper: mørkere orange end brand-accenten — hvid tekst kræver 4,5:1 (a11y).
   #C85200 på hvid tekst ≈ 4,6:1. Brand-orangen #FF6600 bruges fortsat på
   ikoner/accenter, hvor kontrastkravet ikke gælder. */
.btn--orange {
  background: #c85200;
  color: #fff;
  border-color: #c85200;
}
.btn--orange:hover { background: #b04800; border-color: #b04800; }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.header--solid {
  background: rgba(12, 13, 15, 0.92);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  padding: 8px 0;
}

/* OBS: backdrop-filter KUN på desktop. På mobil ville den gøre headeren til
   containing block for den fixed-positionerede .nav (mobilmenuen), som så
   klemmes til headerens højde og mister sin baggrund. */
@media (min-width: 901px) {
  .header--solid {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
@media (max-width: 900px) {
  .header--solid { background: rgba(12, 13, 15, 0.98); }
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-right: auto;
}

.brand__mark { height: 40px; width: auto; }

.brand__name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: #fff;
  white-space: nowrap;
}
.brand__name span { color: var(--c-orange); }

.nav { display: flex; gap: 26px; }

.nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav a:hover { color: var(--c-orange); border-bottom-color: var(--c-orange); }

.header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}
.header__phone svg { width: 30px; height: 30px; color: var(--c-orange); flex-shrink: 0; }
.header__phone-label {
  font-size: 0.7rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-muted-dark-bg);
}
.header__phone-label strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  color: #fff;
}
.header__phone:hover strong { color: var(--c-orange); }

/* Burger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 170px;
  isolation: isolate;
  overflow: hidden;
}

.hero__bg, .hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(10, 11, 13, 0.92) 0%, rgba(10, 11, 13, 0.72) 45%, rgba(10, 11, 13, 0.35) 100%),
    linear-gradient(0deg, rgba(12, 13, 15, 1) 0%, transparent 28%);
}

/* Flugter venstre med containeren (som logoet) og udnytter mere bredde */
.hero__content { max-width: 880px; }

.hero__kicker {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 18px;
}

.hero__title {
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--c-orange);
}

.hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.13rem);
  color: var(--c-text-dark-bg);
  max-width: 64ch;
  margin-bottom: 34px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   YDELSES-KORT
   ============================================================ */
.services {
  position: relative;
  z-index: 2;
  margin-top: -120px;
  padding-bottom: 90px;
  background: linear-gradient(180deg, transparent 0 120px, var(--c-bg-2) 120px);
}

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

.service-card {
  background: #fff;
  color: var(--c-ink);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  border-top: 3px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-5px); border-top-color: var(--c-orange); }

.service-card h3 { color: var(--c-ink); margin-bottom: 8px; }
.service-card p { color: var(--c-muted-light-bg); font-size: 0.92rem; margin: 0; }

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255, 102, 0, 0.1);
  color: var(--c-orange);
  margin-bottom: 18px;
}
.service-card__icon svg { width: 28px; height: 28px; }

/* Fremhævet kort (mandskabsudlejning) */
.service-card--highlight {
  background: var(--c-orange);
  border-top-color: var(--c-orange);
}
.service-card--highlight h3 { color: #fff; }
.service-card--highlight p { color: rgba(255, 255, 255, 0.9); }
.service-card--highlight .service-card__icon { background: rgba(255, 255, 255, 0.16); color: #fff; }
.service-card--highlight:hover { border-top-color: #fff; }

/* Intro-kort */
.service-card--intro {
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-top: 3px solid var(--c-orange);
}
.service-card--intro h2 { font-size: 1.5rem; color: #fff; margin-bottom: 10px; }
.service-card--intro p { color: var(--c-muted-dark-bg); font-size: 0.95rem; margin-bottom: 18px; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--c-orange);
  text-decoration: none;
}
.service-card__link svg { width: 18px; height: 18px; transition: transform 0.15s ease; }
.service-card__link:hover svg { transform: translateX(4px); }

/* ---------- Fuld ydelsesliste ---------- */
.services__list {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 70px);
  margin-top: 80px;
  align-items: start;
}

.services__list-intro p:last-child { color: var(--c-muted-dark-bg); }

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  font-size: 0.95rem;
  color: var(--c-text-dark-bg);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 102, 0, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6600' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ============================================================
   OM / ERFARING
   ============================================================ */
.experience {
  background: var(--c-light);
  color: var(--c-ink);
  padding: 100px 0;
}

.experience__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.experience__media {
  position: relative;
  padding-bottom: 56px;
}

.experience__photo {
  border-radius: var(--radius);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  width: 82%;
  aspect-ratio: 3 / 3.6;
  object-fit: cover;
}

.experience__photo--small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--c-light);
}

.experience__text h2 { color: var(--c-ink); }
.experience__text p { color: #3c4147; }

/* Kicker på LYS baggrund: mørkere orange for 4,5:1-kontrast (a11y) */
.experience .section-kicker { color: #c85200; }

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 26px 0 0;
}

.chips li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid #e2e4e7;
  color: var(--c-ink);
}

/* ============================================================
   HVORFOR OS
   ============================================================ */
.why {
  background:
    radial-gradient(50% 80% at 85% 10%, rgba(255, 102, 0, 0.07), transparent 60%),
    var(--c-bg);
  padding: 100px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.why__head { max-width: 560px; margin-bottom: 54px; }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 40px;
}

.why__icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 102, 0, 0.12);
  color: var(--c-orange);
  margin-bottom: 16px;
}
.why__icon svg { width: 28px; height: 28px; }

.why__item h3 { margin-bottom: 6px; }
.why__item p { color: var(--c-muted-dark-bg); font-size: 0.93rem; margin: 0; }

/* ============================================================
   GALLERI
   ============================================================ */
.gallery {
  background: var(--c-bg-2);
  padding: 100px 0;
}

.gallery__head { margin-bottom: 44px; }

.gallery__grid {
  columns: 3 300px;
  column-gap: 14px;
}

.gallery__item {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 14px;
  border: 0;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  break-inside: avoid;
}

.gallery__item img {
  width: 100%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery__item:hover img { transform: scale(1.04); opacity: 0.92; }

/* ============================================================
   MISSION
   ============================================================ */
.mission {
  background: var(--c-orange);
  color: #1a0e04;
  padding: 90px 0;
}

.mission__inner { max-width: 900px; }

.mission__statement {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  line-height: 1.4;
  color: #fff;
  margin: 0;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact {
  background: var(--c-bg);
  padding: 110px 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.contact__text p { color: var(--c-muted-dark-bg); }
.contact__director { margin-top: 22px; color: var(--c-text-dark-bg) !important; }

.contact__cards { display: grid; gap: 14px; }

.contact-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  column-gap: 18px;
  align-items: center;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 22px 24px;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover { border-color: var(--c-orange); transform: translateY(-3px); }

.contact-card__icon {
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 102, 0, 0.12);
  color: var(--c-orange);
}
.contact-card__icon svg { width: 26px; height: 26px; }

.contact-card__label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted-dark-bg);
}

.contact-card__value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  color: #fff;
  overflow-wrap: anywhere;
}

/* ---------- Kontaktformular ---------- */
.contact__form-wrap { min-width: 0; }

.contact-form {
  display: grid;
  gap: 14px;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--c-muted-dark-bg);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: var(--c-bg-2);
  color: #fff;
  font-size: 1rem;
  font-family: var(--font-body);
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--c-orange); }

.contact-form .btn { justify-self: start; }

/* Honeypot: skjult for mennesker, synligt for bots */
.contact-form__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px;
  opacity: 0;
}

.form-alert {
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 14px;
  font-size: 0.92rem;
}
.form-alert--ok { background: rgba(46, 160, 67, 0.15); border: 1px solid rgba(46, 160, 67, 0.4); color: #7ee2a8; }
.form-alert--error { background: rgba(248, 81, 73, 0.12); border: 1px solid rgba(248, 81, 73, 0.4); color: #ff8b8b; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #08090b;
  border-top: 1px solid var(--c-line);
  padding-top: 64px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}

.footer__logo { width: 130px; margin-bottom: 14px; }

.footer__brand p {
  color: var(--c-muted-dark-bg);
  font-size: 0.9rem;
  max-width: 30ch;
}

.footer__nav, .footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a, .footer__contact a, .footer__contact span {
  color: var(--c-muted-dark-bg);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--c-orange); }

.footer__bottom {
  border-top: 1px solid var(--c-line);
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer__bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: #8b9096; /* lysnet fra #6a7076: 4,5:1+-kontrast på mørk footer */
}
.footer__legal { color: #8b9096; }
.footer__legal:hover { color: var(--c-orange); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(8, 9, 11, 0.94);
  display: grid;
  place-items: center;
}

/* VIGTIGT: author-CSS overtrumfer ellers [hidden]-attributten */
.lightbox[hidden] { display: none; }

.lightbox__img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.15s ease;
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--c-orange); }

.lightbox__close { top: 22px; right: 22px; }
.lightbox__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ============================================================
   REVEAL-ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   RESPONSIVT
   ============================================================ */
@media (max-width: 1020px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 82vw);
    background: var(--c-bg-2);
    border-left: 1px solid var(--c-line);
    flex-direction: column;
    gap: 6px;
    padding: 96px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    z-index: 90;
  }
  .nav.is-open { transform: none; box-shadow: -30px 0 60px rgba(0,0,0,.4); }
  .nav a { font-size: 1.1rem; padding: 12px 0; border-bottom: 1px solid var(--c-line); }

  .nav-toggle { display: flex; z-index: 95; }
  .header__phone-label { display: none; }

  .services__list { grid-template-columns: 1fr; margin-top: 60px; }
  .experience__inner, .contact__inner { grid-template-columns: 1fr; }
  .experience__media { max-width: 480px; }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
  .services { margin-top: -80px; }
  .hero { padding: 130px 0 140px; }
  .why__grid { grid-template-columns: 1fr; gap: 28px; }
  .checklist { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* Hold hele "WESTH INDUSTRIES" synligt på små skærme — skalér i stedet ned */
@media (max-width: 460px) {
  .header__inner { gap: 14px; }
  .brand { gap: 9px; }
  .brand__mark { height: 34px; }
  .brand__name { font-size: 0.82rem; letter-spacing: 0.06em; }
}
