/* ============================================================
   EURO HOTEL SUPPLY – styles.css v3.0
   01. Custom Properties
   02. Reset & Base
   03. Typography
   04. Layout Utilities
   05. Buttons
   06. Header & Navigation
   07. Hero (mit echtem Bild)
   08. Section Foundations
   09. Services Grid (mit Bildern)
   10. Feature – Laufender Betrieb
   11. Branch Cards
   12. Referenzprojekte (mit Bildern)
   13. Unternehmensprofil (mit Bild)
   14. CTA-Block
   15. Footer
   16. Responsive – Tablet 1024px
   17. Responsive – Mobile 768px
   18. Responsive – Small 480px
   19. Reduced Motion
   ============================================================ */


/* ============================================================
   01. CUSTOM PROPERTIES
   ============================================================ */

:root {
  --c-navy:           #18293A;
  --c-navy-dark:      #0E1C28;
  --c-navy-mid:       #243447;
  --c-gold:           #C09040;
  --c-gold-light:     #D4A855;
  --c-gold-hover:     #A87830;
  --c-gold-subtle:    rgba(192, 144, 64, 0.12);
  --c-white:          #FFFFFF;
  --c-off-white:      #FAFAF8;
  --c-bg-alt:         #F4F3F0;
  --c-text:           #2A2A2A;
  --c-text-mid:       #4A4A4A;
  --c-text-light:     #707070;
  --c-border:         #E2E0DC;
  --c-border-light:   #EEECE8;

  --font:             'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --lh:               1.68;

  --sp-2:    4px;
  --sp-4:    8px;
  --sp-6:    12px;
  --sp-8:    16px;
  --sp-10:   20px;
  --sp-12:   24px;
  --sp-16:   32px;
  --sp-20:   40px;
  --sp-24:   48px;
  --sp-32:   64px;
  --sp-40:   80px;
  --sp-48:   96px;

  --container:        1200px;
  --section-v:        96px;
  --radius:           4px;
  --radius-lg:        8px;
  --radius-xl:        12px;
  --ease:             0.22s ease;
  --ease-slow:        0.36s ease;
}


/* ============================================================
   02. RESET & BASE
   ============================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: var(--lh);
  color: var(--c-text);
  background-color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

ul, ol { list-style: none; }

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}


/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.22;
  color: var(--c-navy);
}

h1 { font-size: clamp(1.8rem,  4.5vw, 3.0rem);  letter-spacing: -0.02em; }
h2 { font-size: clamp(1.45rem, 3.0vw, 2.1rem);  letter-spacing: -0.015em; }
h3 { font-size: clamp(1.0rem,  1.8vw, 1.15rem); font-weight: 600; }
h4 { font-size: 0.88rem; font-weight: 700; }

p {
  color: var(--c-text-mid);
  max-width: 66ch;
}

p + p { margin-top: var(--sp-8); }
strong { font-weight: 600; color: var(--c-text); }


/* ============================================================
   04. LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-12);
}

.section { padding-block: var(--section-v); }
.section-white { background-color: var(--c-white); }
.section-alt   { background-color: var(--c-bg-alt); }
.section-dark  { background-color: var(--c-navy); }

.section-header {
  max-width: 680px;
  margin-bottom: var(--sp-32);
}

.section-header h2 {
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.section-header-light h2 { color: var(--c-white); }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
}

.section-label-light { color: var(--c-gold-light); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--c-text-light);
  max-width: 60ch;
}

.section-subtitle-light { color: rgba(255, 255, 255, 0.6); }

.section-cta-link {
  margin-top: var(--sp-20);
}

.section-cta-link-center {
  text-align: center;
  margin-top: var(--sp-24);
}


/* ============================================================
   05. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  padding: 11px 26px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  border-radius: var(--radius);
  transition:
    background-color var(--ease),
    color var(--ease),
    border-color var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-large { padding: 14px 34px; font-size: 0.95rem; }

.btn-primary {
  background-color: var(--c-navy);
  color: var(--c-white);
  border-color: var(--c-navy);
}
.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--c-navy-dark);
  border-color: var(--c-navy-dark);
}

.btn-accent {
  background-color: var(--c-gold);
  color: var(--c-white);
  border-color: var(--c-gold);
}
.btn-accent:hover,
.btn-accent:focus-visible {
  background-color: var(--c-gold-hover);
  border-color: var(--c-gold-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: var(--c-navy);
  color: var(--c-white);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-outline-white:hover,
.btn-outline-white:focus-visible {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--c-white);
}

.btn-ghost {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-ghost:hover,
.btn-ghost:focus-visible {
  background-color: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.5);
}


/* ============================================================
   06. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--c-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow var(--ease-slow);
}

.site-header.is-scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.32);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 68px;
  gap: var(--sp-8);
}

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

/* Signet / Globus-Icon im Header */
.logo-signet {
  display: block;
  height: 36px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  display: block;
  padding: 7px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  transition: color var(--ease), background-color var(--ease);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--c-white);
  background-color: rgba(255, 255, 255, 0.09);
}

.nav-link[aria-current="page"] { color: var(--c-gold-light); }

.nav-link.has-arrow::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  vertical-align: middle;
  border-right: 1.4px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1.4px solid rgba(255, 255, 255, 0.55);
  transform: translateY(-2px) rotate(45deg);
}

.has-dropdown { position: relative; }

.has-dropdown > .dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 300px;
  background-color: var(--c-navy-dark);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: var(--sp-4) 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--ease),
    transform var(--ease),
    visibility var(--ease);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

@media (min-width: 1161px) {
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  /* Per Escape geschlossen: gewinnt gegen :hover/:focus-within,
     solange der Fokus noch auf dem Hauptmenüpunkt derselben Gruppe ruht. */
  .has-dropdown.dropdown-closed > .dropdown,
  .has-dropdown.dropdown-closed:hover > .dropdown,
  .has-dropdown.dropdown-closed:focus-within > .dropdown {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--ease), background-color var(--ease);
}

.dropdown li a:hover {
  color: var(--c-white);
  background-color: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  flex-shrink: 0;
  margin-left: var(--sp-8);
  padding: 8px 20px;
  font-size: 0.875rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-4);
  margin-left: auto;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ============================================================
   06b. RESPONSIVE – HEADER / NAVIGATION (max 1160px)
   Die Desktop-Navigation benötigt naturgemäß ca. 1147px Breite
   (nowrap-Menüpunkte + CTA). Unterhalb von 1160px wird deshalb
   bereits auf die mobile Navigation umgeschaltet, um horizontalen
   Overflow zu vermeiden (siehe F5-Analyse).
   ============================================================ */

@media (max-width: 1160px) {

  .header-inner {
    height: 60px;
    position: relative;
  }

  .logo-signet {
    height: 30px;
  }

  .logo-text {
    font-size: 0.76rem;
  }

  .nav-toggle {
    display: flex;
    order: 3;
    margin-left: auto;
  }

  .nav-cta { display: none; }

  .main-nav {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: var(--c-navy-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-bottom: var(--sp-8);
    z-index: 199;
    overflow-y: auto;
    max-height: calc(100vh - 60px);
  }

  .main-nav.is-open { display: block; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-4) 0;
  }

  .nav-link {
    padding: 13px var(--sp-12);
    font-size: 0.95rem;
    border-radius: 0;
  }

  .nav-link.has-arrow::after { float: right; margin-top: 3px; }

  .has-dropdown > .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0.25);
    padding: var(--sp-2) 0;
    display: none;
    min-width: unset;
  }

  .has-dropdown.is-open > .dropdown { display: block; }

  .dropdown li a {
    padding: 10px var(--sp-12) 10px var(--sp-20);
    font-size: 0.88rem;
    border-radius: 0;
  }
}


/* ============================================================
   07. HERO (mit echtem Bild)
   ============================================================ */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--c-navy-dark);
}

/* Bild-Wrapper */
.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay: Gradient über Bild */
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 20, 30, 0.88) 0%,
    rgba(14, 28, 40, 0.78) 45%,
    rgba(18, 30, 42, 0.50) 100%
  );
}

/* Fallback: wenn Bild fehlt */
.hero-img[src=""],
.hero-img:not([src]) {
  background: linear-gradient(
    130deg,
    #0A1520 0%,
    #14253A 40%,
    #1E3348 70%,
    #0E1C28 100%
  );
}

/* Content-Grid */
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--sp-48);
  display: grid;
  grid-template-columns: 1fr 420px;
  grid-template-rows: auto auto;
  grid-template-areas:
    "text  card"
    "stats card";
  column-gap: var(--sp-32);
  row-gap: 0;
  align-items: start;
  width: 100%;
  max-width: var(--container);
}

/* Linke Textspalte */
.hero-text-col {
  grid-area: text;
  min-width: 0;
}

/* Kennzahlen – unterhalb der Textspalte, links */
.hero-stats-row {
  grid-area: stats;
  padding-top: var(--sp-16);
}

/* Rechte Brand-Card – überspannt beide Zeilen */
.hero-logo-col {
  grid-area: card;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.hero-logo-card {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(
    150deg,
    #F8F5F0 0%,
    #F2EDE6 100%
  );
  border-radius: 14px;
  padding: var(--sp-32) var(--sp-24);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.22),
    0 3px 10px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(192, 144, 64, 0.18);
}

.hero-logo-card-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 340px;
  max-height: 230px;
  object-fit: contain;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  margin-bottom: var(--sp-10);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

.hero-eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background-color: var(--c-gold);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(1.9rem, 4.8vw, 3.2rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-10);
}

.hero-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.72;
  max-width: 600px;
  margin-bottom: var(--sp-16);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  margin-bottom: var(--sp-24);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
  padding-top: var(--sp-16);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stat-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--c-gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.35;
  max-width: 130px;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}


/* ============================================================
   08. SECTION FOUNDATIONS
   ============================================================ */

/* gemeinsame Basis – keine Dopplungen */


/* ============================================================
   09. SERVICES GRID (mit Bildern)
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

/* Karte mit Bild */
.service-card-img {
  background-color: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease-slow);
}

.service-card-img:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(192, 144, 64, 0.3);
  transform: translateY(-2px);
}

/* Bild-Block */
.service-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--c-bg-alt);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-slow);
}

.service-card-img:hover .service-card-image img {
  transform: scale(1.03);
}

.service-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(10, 20, 30, 0.35) 100%
  );
}

.service-number-badge {
  position: absolute;
  top: var(--sp-8);
  right: var(--sp-8);
  width: 32px;
  height: 32px;
  background-color: rgba(10, 20, 30, 0.6);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}

/* Text-Block */
.service-card-body {
  padding: var(--sp-12);
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Karte ohne Bild (Projektabwicklung) */
.service-card-plain {
  background: linear-gradient(
    135deg,
    var(--c-navy) 0%,
    var(--c-navy-mid) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--ease);
}

.service-card-plain:hover {
  border-color: rgba(192, 144, 64, 0.35);
}

.service-card-plain-inner {
  padding: var(--sp-16) var(--sp-12);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-plain-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-10);
}

.service-number-plain {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
}

.service-card-plain .service-icon { color: var(--c-gold); }
.service-card-plain .service-title { color: var(--c-white); margin-bottom: var(--sp-6); }
.service-card-plain .service-text { color: rgba(255, 255, 255, 0.65); margin-bottom: var(--sp-10); }
.service-card-plain .service-link { color: var(--c-gold-light); margin-top: auto; }

/* Service Steps */
.service-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-block: var(--sp-8);
  flex: 1;
}

.service-steps li {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.service-steps li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--c-gold);
  flex-shrink: 0;
}

/* Gemeinsame Service-Elemente */
.service-icon {
  color: var(--c-gold);
  margin-bottom: var(--sp-6);
}

.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: var(--sp-6);
  line-height: 1.3;
}

.service-text {
  font-size: 0.9rem;
  color: var(--c-text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-10);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-gold);
  margin-top: auto;
  transition: gap var(--ease), color var(--ease);
}

.service-link:hover { gap: 10px; color: var(--c-gold-hover); }

.service-link svg {
  flex-shrink: 0;
  transition: transform var(--ease);
}

.service-link:hover svg { transform: translateX(3px); }


/* ============================================================
   10. FEATURE – LAUFENDER BETRIEB (mit Bild)
   ============================================================ */

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-32);
  align-items: center;
}

/* Bild-Spalte */
.feature-image-col { position: relative; }

.feature-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.feature-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  background-color: var(--c-border);
}

.feature-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background-color: var(--c-navy);
  color: var(--c-white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.feature-img-badge svg {
  color: var(--c-gold);
  flex-shrink: 0;
}

/* Text-Spalte */
.feature-text h2 {
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.feature-text p { margin-bottom: var(--sp-6); }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-block: var(--sp-10);
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  font-size: 0.92rem;
  color: var(--c-text-mid);
  line-height: 1.5;
}

.feature-list-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--c-gold-subtle);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.feature-text .btn { margin-top: var(--sp-10); }


/* ============================================================
   11. BRANCH CARDS
   ============================================================ */

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.branch-card {
  background-color: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-12);
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--ease),
    box-shadow var(--ease),
    transform var(--ease-slow);
}

.branch-card:hover {
  border-color: rgba(192, 144, 64, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.branch-card-top {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.branch-icon {
  flex-shrink: 0;
  color: var(--c-gold);
  margin-top: 1px;
}

.branch-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-navy);
  line-height: 1.3;
}

.branch-text {
  font-size: 0.875rem;
  color: var(--c-text-light);
  line-height: 1.6;
  flex: 1;
  margin-bottom: var(--sp-8);
}

.branch-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-gold);
  margin-top: auto;
  transition: gap var(--ease), color var(--ease);
}

.branch-link:hover { gap: 9px; color: var(--c-gold-hover); }

.branch-link svg { transition: transform var(--ease); }
.branch-link:hover svg { transform: translateX(3px); }


/* ============================================================
   12. REFERENZPROJEKTE (mit Bildern)
   ============================================================ */

.ref-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-16);
  align-items: start;
}

/* Bild-Karten */
.ref-img-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

.ref-img-card {
  position: relative;
  display: block;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--ease), transform var(--ease-slow);
}

.ref-img-card:hover {
  border-color: rgba(192, 144, 64, 0.35);
  transform: translateY(-2px);
}

.ref-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
  background-color: var(--c-navy-mid);
  transition: transform var(--ease-slow);
}

.ref-img-card:hover .ref-img { transform: scale(1.04); }

.ref-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-8) var(--sp-8) var(--sp-6);
  background: linear-gradient(to top, rgba(10, 20, 30, 0.85) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ref-img-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold-light);
}

.ref-img-location {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Listen-Spalte */
.ref-list-col {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: var(--sp-12);
  min-width: 0;
}

.ref-list-intro {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: var(--sp-8);
  max-width: none;
}

.ref-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--sp-12);
}

.ref-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: var(--sp-4);
}

.ref-list-item:last-child { border-bottom: none; }

.ref-list-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.ref-list-location {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  white-space: nowrap;
}

.ref-list-cta {
  width: 100%;
  justify-content: center;
}


/* ============================================================
   13. UNTERNEHMENSPROFIL (mit Bild)
   ============================================================ */

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-32);
  align-items: center;
}

/* Bild-Spalte */
.profile-img-col { position: relative; }

.profile-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.profile-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  background-color: var(--c-border);
}

.profile-img-card {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background-color: var(--c-gold);
  color: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(192, 144, 64, 0.35);
}

.profile-img-card-value {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.profile-img-card-label {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.85;
}

/* Text-Spalte */
.profile-text h2 {
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.profile-text p { margin-bottom: var(--sp-6); }

.profile-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-block: var(--sp-12);
  padding-top: var(--sp-12);
  border-top: 1px solid var(--c-border);
}

.pillar { display: flex; flex-direction: column; gap: 3px; }
.pillar-title { font-size: 0.88rem; font-weight: 700; color: var(--c-navy); }
.pillar-text  { font-size: 0.78rem; color: var(--c-text-light); line-height: 1.45; }

/* CEO-Trust-Komponente (Änderungspaket 1B) */
.profile-ceo {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  margin-bottom: var(--sp-16);
}

.profile-ceo-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-ceo-avatar-initials {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.03em;
}

.profile-ceo-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.profile-ceo-text {
  font-size: 0.9rem;
  color: var(--c-text-mid);
  line-height: 1.5;
}

.profile-ceo-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 2px;
}

.profile-ceo-role {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 4px;
}

/* Firmenfahrzeuge-Hinweis (Änderungspaket 1C) – wiederverwendet auf Startseite und Projektabwicklung */
.vehicle-note {
  display: flex;
  align-items: center;
  gap: var(--sp-10);
  margin-top: var(--sp-12);
}

.vehicle-note-media {
  flex-shrink: 0;
  width: 120px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.55);
}

.vehicle-note-media-note {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.vehicle-note-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vehicle-note-text {
  font-size: 0.9rem;
  color: var(--c-text-mid);
  line-height: 1.5;
  min-width: 0;
}


/* ============================================================
   14. CTA-BLOCK
   ============================================================ */

.section-cta-full {
  padding-block: var(--sp-32);
  background: linear-gradient(
    135deg,
    var(--c-navy) 0%,
    var(--c-navy-mid) 50%,
    var(--c-navy) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-20);
}

.cta-block-text h2 {
  color: var(--c-white);
  margin-bottom: var(--sp-4);
}

.cta-block-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 55ch;
}

.cta-block-action {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  flex-shrink: 0;
}


/* ============================================================
   15. FOOTER
   ============================================================ */

.site-footer {
  background-color: var(--c-navy-dark);
  color: rgba(255, 255, 255, 0.65);
}

.footer-top {
  padding-block: var(--sp-32) var(--sp-24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--sp-32);
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-8);
  text-decoration: none;
}

/* Signet / Globus-Icon im Footer */
.footer-signet {
  display: block;
  height: 32px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  /* Globus-PNG auf dunklem Footer: Helligkeit anheben falls nötig */
  filter: brightness(1.15);
}

.footer-logo-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.03em;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.6;
  max-width: 22ch;
}

/* Websiteweiter Footer-Kontaktblock (Firma, Adresse, Telefon, E-Mail, Ansprechpartner) */
.footer-contact {
  margin-top: var(--sp-16);
  padding-top: var(--sp-16);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-contact-company {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--sp-4);
}

.footer-contact-address {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.5;
  margin-bottom: var(--sp-6);
}

.footer-contact-line {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.56);
  margin-bottom: var(--sp-2);
  line-height: 1.6;
}

.footer-contact-label {
  color: rgba(255, 255, 255, 0.38);
}

/* Telefonnummer bewusst deutlich sichtbarer als die uebrigen Footer-Angaben */
.footer-contact-phone {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--c-gold-light);
  transition: color var(--ease);
}

.footer-contact-phone:hover { color: var(--c-white); }

.footer-contact-link {
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--ease);
}

.footer-contact-link:hover { color: var(--c-white); }

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-10);
}

.footer-nav-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.32);
  margin-bottom: var(--sp-6);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-nav ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.56);
  transition: color var(--ease);
}

.footer-nav ul li a:hover { color: var(--c-white); }

.footer-bottom { padding-block: var(--sp-8); }

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.28);
  max-width: none;
}

.footer-legal-nav { display: flex; gap: var(--sp-10); }

.footer-legal-nav a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.32);
  transition: color var(--ease);
}

.footer-legal-nav a:hover { color: rgba(255, 255, 255, 0.7); }


/* ============================================================
   16. RESPONSIVE – TABLET (max 1024px)
   ============================================================ */

@media (max-width: 1024px) {

  :root { --section-v: 72px; }

  .hero-content {
    grid-template-columns: 1fr 290px;
    column-gap: var(--sp-20);
  }

  .hero-logo-card {
    padding: var(--sp-20) var(--sp-16);
  }

  .hero-logo-img {
    max-width: 240px;
    max-height: 160px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .ref-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-16);
  }

  .ref-img-cards {
    grid-template-columns: 1fr 1fr;
  }

  .feature-layout {
    gap: var(--sp-20);
  }

  .feature-img-badge {
    bottom: -12px;
    right: -12px;
  }

  .profile-layout {
    gap: var(--sp-20);
  }

  .profile-img-card {
    bottom: -12px;
    left: -12px;
  }

  .footer-top-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-20);
  }

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

  .cta-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-block-action {
    flex-direction: row;
  }

  .hero-stats { gap: var(--sp-10); }
}


/* ============================================================
   17. RESPONSIVE – MOBILE (max 768px)
   ============================================================ */

@media (max-width: 768px) {

  :root { --section-v: 56px; }

  /* Hero */

  /* Hintergrundbild auf Mobile: feste Höhe, kein overflow-Clip des Inhalts */
  .hero {
    min-height: auto;
    overflow: visible;
    display: block;          /* kein flex mehr – Inhalt fließt normal */
  }

  /* Bild nur im Bild-Wrapper, nicht mehr am .hero selbst */
  .hero-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 260px;           /* Bild auf Mobile auf obere Zone beschränken */
    overflow: hidden;
    z-index: 0;
  }

  /* Overlay nur im Bild-Bereich */
  .hero-img-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10, 20, 30, 0.72) 0%,
      rgba(10, 20, 30, 0.96) 100%
    );
  }

  /* Content-Container: normaler Blockfluss, kein Grid-Overlap */
  .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    grid-template-columns: unset;
    grid-template-rows: unset;
    grid-template-areas: unset;
    gap: 0;
    padding-top: var(--sp-24);
    padding-bottom: var(--sp-24);
  }

  /* Reihenfolge über flex order – alle grid-area-Assignments neutralisiert */
  .hero-text-col {
    order: 1;
    grid-area: auto;
    width: 100%;
  }

  .hero-logo-col {
    order: 2;
    grid-area: auto;
    align-self: auto;
    width: 100%;
    justify-content: flex-start;
    margin-top: var(--sp-12);
  }

  .hero-stats-row {
    order: 3;
    grid-area: auto;
    width: 100%;
    padding-top: var(--sp-16);
  }

  /* Logo-Card: normaler Dokumentenfluss */
  .hero-logo-card {
    width: 100%;
    max-width: 280px;
    padding: var(--sp-12) var(--sp-10);
    margin: 0;
    box-sizing: border-box;
  }

  .hero-logo-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
  }

  .hero-headline { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .hero-text { font-size: 0.95rem; }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: var(--sp-10);
  }

  .hero-stat-divider { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Feature */
  .feature-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-16);
  }

  .feature-image-col { order: -1; }

  .feature-img-badge {
    bottom: var(--sp-8);
    right: var(--sp-8);
  }

  /* Branch */
  .branch-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  /* Referenz */
  .ref-layout { grid-template-columns: 1fr; }

  .ref-img-cards { grid-template-columns: 1fr; }

  /* Profile */
  .profile-layout {
    grid-template-columns: 1fr;
    gap: var(--sp-20);
  }

  .profile-img-card {
    bottom: var(--sp-8);
    left: var(--sp-8);
  }

  .profile-pillars {
    grid-template-columns: 1fr;
    gap: var(--sp-6);
  }

  /* CTA */
  .cta-block {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-12);
  }

  .cta-block-action {
    flex-direction: column;
    width: 100%;
  }

  .cta-block-action .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .hero-actions .btn {
    white-space: normal;
  }

  /* Footer */
  .footer-nav { grid-template-columns: repeat(2, 1fr); }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }

  .section-header { margin-bottom: var(--sp-16); }
}


/* ============================================================
   18. RESPONSIVE – SMALL (max 480px)
   ============================================================ */

@media (max-width: 480px) {
  .footer-nav { grid-template-columns: 1fr; }

  .section-cta-link .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .ref-img-cards { grid-template-columns: 1fr; }

  .hero-eyebrow { font-size: 0.68rem; }

  .vehicle-note-media { width: 92px; }
}


/* ============================================================
   19. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}