/* ════════════════════════════════════════════════════════════════
   ALT GRUPPEN ApS – Stylesheet v2 (LIGHT)
   Industriel æstetik – knækket hvid baseline med sort som accent
   ════════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  --orange:        #E87240;
  --orange-dark:   #C45A28;
  --black:         #0F0F0F;
  --gray-dark:     #1A1A1A;
  --gray-mid:      #3A3A3A;
  --gray-text:     #888888;
  --gray-line:     #E0E0E0;
  --white:         #FFFFFF;
  --off-white:     #F4F4F4;
  --cream:         #EDEDEA;     /* lidt varmere alternativ */

  --nav-h:         80px;
  --font-head:     'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:     'Barlow', system-ui, -apple-system, sans-serif;
  --ease:          cubic-bezier(.16,1,.3,1);

  --shadow-sm:     0 1px 2px rgba(15,15,15,0.04);
  --shadow-md:     0 4px 16px rgba(15,15,15,0.06);
  --shadow-lg:     0 12px 40px rgba(15,15,15,0.10);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-dark);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--orange); color: var(--white); }

/* ── LAYOUT HELPERS ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

.section-label {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}

/* ── REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-line);
  z-index: 1000;
  transition: all .35s var(--ease);
}
#main-nav.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}
.nav-logo img {
  height: 44px;
  width: auto;
  /* Logo i original farve – ingen filter */
}
.nav-logo-text { line-height: 1; }
.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 10px 18px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  position: relative;
  transition: color .25s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--black); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 18px; right: 18px;
  height: 2px;
  background: var(--orange);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px,-2px);
  transition: transform .25s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
  transform: rotate(225deg) translate(-2px,-2px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-dark);
  border-left: 2px solid transparent;
  transition: all .2s var(--ease);
}
.nav-dropdown-menu a::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.nav-dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--black);
  border-left-color: var(--orange);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all .25s var(--ease);
}
.nav-cta:hover {
  background: var(--orange);
  color: var(--white);
}
.nav-cta svg { width: 16px; height: 16px; fill: currentColor; }

/* Hamburger */
#hamburger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
}
#hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  margin: 5px auto;
  transition: all .3s var(--ease);
}
#hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#hamburger.active span:nth-child(2) { opacity: 0; }
#hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88%;
  max-width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  padding: 100px 32px 40px;
  transition: right .4s var(--ease);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.08);
}
#mobile-menu.active { right: 0; }
#mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray-line);
  transition: color .25s var(--ease), padding .25s var(--ease);
}
#mobile-menu a:hover { color: var(--orange); padding-left: 8px; }
#mobile-menu .mobile-sub {
  padding: 12px 0 12px 16px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-line);
  color: var(--gray-mid);
}
#mobile-menu .mobile-cta {
  display: inline-flex;
  margin-top: 32px;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white) !important;
  border: none;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .nav-menu, .nav-cta { display: none; }
  #hamburger { display: block; }
}

/* ════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════ */
#hjem {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  background: var(--off-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Diagonalt orange accent-element */
.hero-diagonal {
  position: absolute;
  top: 0;
  right: -10%;
  width: 65%;
  height: 100%;
  background: var(--orange);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.95;
  z-index: 0;
}
.hero-diagonal::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.18), transparent 50%);
}

/* Subtilt grid-mønster i baggrunden */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--gray-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-line) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse at 25% 50%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 25% 50%, black 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--gray-line);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title span {
  display: inline-block;
  position: relative;
  color: var(--orange);
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--gray-mid);
  max-width: 540px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Sidekort i hero – på den orange flade */
.hero-card {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 48px 40px;
  max-width: 420px;
  margin-left: auto;
  border-left: 4px solid var(--orange);
}
.hero-card::before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  width: 50px; height: 50px;
  border-top: 3px solid var(--orange);
  border-right: 3px solid var(--orange);
}
.hero-card-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.hero-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}
.hero-card-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-card-list {
  display: grid;
  gap: 10px;
}
.hero-card-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
}
.hero-card-list li::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  background: var(--orange);
  flex-shrink: 0;
}

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-diagonal { display: none; }
  .hero-card { margin-left: 0; max-width: 100%; }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn svg {
  width: 18px; height: 18px;
  fill: currentColor;
  transition: transform .3s var(--ease);
}
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,114,64,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════
   YDELSER OVERBLIK – kort-grid
   ════════════════════════════════════════════════════════════════ */
#ydelser-overblik {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 80px;
  text-align: center;
}
.section-head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--black);
  margin: 12px 0 20px;
  letter-spacing: -0.01em;
}
.section-head h2 span { color: var(--orange); }
.section-head p {
  font-size: 1.1rem;
  color: var(--gray-mid);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--off-white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid transparent;
  transition: all .35s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.service-card:hover {
  background: var(--white);
  border-color: var(--gray-line);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--orange);
  margin-bottom: 16px;
}
.service-card-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 14px;
}
.service-card-text {
  font-size: 0.95rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  transition: gap .25s var(--ease);
}
.service-card-link svg {
  width: 14px; height: 14px;
  transition: transform .25s var(--ease);
}
.service-card:hover .service-card-link { color: var(--orange); gap: 12px; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ── DIVIDER ─────────────────────────────────────────────────── */
.divider-orange {
  height: 4px;
  background: var(--orange);
  position: relative;
}
.divider-orange::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -8px;
  transform: translateX(-50%) rotate(45deg);
  width: 16px; height: 16px;
  background: var(--orange);
}

/* ════════════════════════════════════════════════════════════════
   SERVICE-SEKTIONER (Fjernvarme, Ladestandere, etc.)
   ════════════════════════════════════════════════════════════════ */
.service-section {
  padding: 120px 0;
  position: relative;
}

/* Veksler hvid og knækket hvid */
.service-section:nth-of-type(odd)  { background: var(--off-white); }
.service-section:nth-of-type(even) { background: var(--white); }

/* Sort accent-sektion (kan tildeles hvor det giver mening) */
.service-section.is-dark {
  background: var(--black) !important;
  color: var(--white);
}

.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-section-inner.reverse { direction: rtl; }
.service-section-inner.reverse > * { direction: ltr; }

/* ── BILLED-BOKS (kvadratisk – 1:1) ──────────────────────────── */
.service-visual {
  position: relative;
}
.service-visual-box {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gray-dark);
  /* Fallback hvis billede mangler */
}
.service-visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.service-visual:hover .service-visual-box img {
  transform: scale(1.04);
}

/* Subtil gradient over billede – holder den industrielle stemning */
.service-visual-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(232,114,64,0.0) 0%, rgba(232,114,64,0.18) 100%),
    linear-gradient(180deg, transparent 60%, rgba(15,15,15,0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Sort hjørnedekoration (top-venstre på billedet) */
.service-visual-box::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  width: 40px; height: 40px;
  border-top: 3px solid var(--white);
  border-left: 3px solid var(--white);
  z-index: 2;
  opacity: 0.85;
}

/* Orange badge – nederste højre hjørne */
.service-visual-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(232,114,64,0.25);
}
.service-visual-badge strong {
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

/* ── INDHOLD (højre/venstre side) ────────────────────────────── */
.service-content {}
.service-big-num {
  font-family: var(--font-head);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(15,15,15,0.06);
  line-height: 0.8;
  margin-bottom: -20px;
  user-select: none;
}
.service-section.is-dark .service-big-num { color: rgba(255,255,255,0.05); }

.service-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--black);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.service-title span { color: var(--orange); }
.service-section.is-dark .service-title { color: var(--white); }

.service-text {
  font-size: 1rem;
  color: var(--gray-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 540px;
}
.service-section.is-dark .service-text { color: rgba(255,255,255,0.78); }

.service-bullets {
  margin-bottom: 36px;
}
.service-bullets li {
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-line);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--gray-dark);
  font-weight: 500;
}
.service-section.is-dark .service-bullets li {
  border-color: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}
.service-bullets li::before {
  content: '';
  display: block;
  width: 8px; height: 8px;
  min-width: 8px;
  background: var(--orange);
  transform: rotate(45deg);
}

@media (max-width: 980px) {
  .service-section { padding: 80px 0; }
  .service-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    direction: ltr !important;
  }
  .service-section-inner.reverse { direction: ltr; }
  .service-section-inner.reverse .service-visual { order: -1; }
  .service-big-num { font-size: 5rem; }
}

/* ════════════════════════════════════════════════════════════════
   OM OS – sort accent-sektion for kontrast
   ════════════════════════════════════════════════════════════════ */
#om-os {
  padding: 120px 0;
  background: var(--black);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
#om-os::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60%;
  height: 6px;
  background: var(--orange);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  background: var(--gray-dark);
  padding: 60px 48px;
  border-left: 4px solid var(--orange);
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  border-bottom: 4px solid var(--orange);
  border-right: 4px solid var(--orange);
}
.about-stat {
  margin-bottom: 32px;
}
.about-stat:last-child { margin-bottom: 0; }
.about-stat-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
  margin-bottom: 4px;
}
.about-stat-label {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
}
.about-content h2 span { color: var(--orange); }
.about-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 580px;
}

@media (max-width: 980px) {
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  #om-os { padding: 80px 0; }
}

/* ════════════════════════════════════════════════════════════════
   KONTAKT
   ════════════════════════════════════════════════════════════════ */
#kontakt {
  padding: 120px 0;
  background: var(--off-white);
}

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

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 24px;
}
.contact-info h2 span { color: var(--orange); }
.contact-info > p {
  font-size: 1.05rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.contact-list { margin-top: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--gray-line);
}
.contact-item:last-child { border-bottom: 1px solid var(--gray-line); }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px; height: 20px;
  fill: var(--white);
}
.contact-meta {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 4px;
}
.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}
.contact-value a { transition: color .25s var(--ease); }
.contact-value a:hover { color: var(--orange); }

/* ── FORMULAR ────────────────────────────────────────────────── */
.contact-form {
  background: var(--white);
  padding: 48px 44px;
  border: 1px solid var(--gray-line);
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 4px;
  background: var(--orange);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 8px;
}
.form-group label .req { color: var(--orange); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--off-white);
  border: 1px solid var(--gray-line);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--black);
  transition: all .25s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,114,64,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-submit {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
}

.form-flash {
  padding: 18px 22px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 500;
  border-left: 4px solid;
}
.form-flash-success {
  background: rgba(40,167,69,0.08);
  border-color: #28a745;
  color: #1d6e2c;
}
.form-flash-error {
  background: rgba(220,53,69,0.08);
  border-color: #dc3545;
  color: #a02834;
}

@media (max-width: 980px) {
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 32px 24px; }
  #kontakt { padding: 80px 0; }
}

/* ════════════════════════════════════════════════════════════════
   FOOTER (sort)
   ════════════════════════════════════════════════════════════════ */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
  border-top: 4px solid var(--orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-brand-logo span {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 0.95rem;
  transition: color .25s var(--ease), padding .25s var(--ease);
}
.footer-col a:hover { color: var(--orange); padding-left: 4px; }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}
