/* ============================================================
   TOPLICA BAU SERVICE — Global Stylesheet
   Designed for: Premium construction brand
   Aesthetic: Classical serif elegance × industrial strength
   Colors: Black / Gold / White (extracted from logo)
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Brand palette — extracted from logo */
  --color-bg:           #0A0A0A;
  --color-bg-elevated:  #111111;
  --color-surface:      #161616;
  --color-card:         #1B1B1B;
  --color-line:         #262626;
  --color-line-strong:  #333333;

  --color-gold:         #C9A961;
  --color-gold-light:   #E5C580;
  --color-gold-dark:    #8A7138;
  --color-gold-deep:    #5C4A22;

  --color-silver:       #C4C4C4;
  --color-white:        #F5F1E8;
  --color-white-pure:   #FFFFFF;
  --color-muted:        #8A8682;
  --color-muted-dark:   #4A4845;

  /* Functional */
  --color-success:      #6FBF73;
  --color-error:        #D44A4A;

  /* Typography — modern, clean, no elegance */
  --font-display:  'Manrope', -apple-system, 'Segoe UI', sans-serif;
  --font-heading:  'Oswald', 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:     'Manrope', -apple-system, 'Segoe UI', sans-serif;
  --font-mono:     'JetBrains Mono', 'Courier New', monospace;

  /* Sizing */
  --container:     1320px;
  --container-wide:1480px;
  --container-narrow:980px;

  /* Edges — NO rounded corners. Max 2px. */
  --edge:          0;
  --edge-soft:     2px;

  /* Motion */
  --ease-out:      cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration:      400ms;
  --duration-slow: 700ms;

  /* Shadows */
  --shadow-gold:   0 0 0 1px rgba(201, 169, 97, 0.25);
  --shadow-deep:   0 30px 60px -20px rgba(0, 0, 0, 0.8);
  --shadow-card:   0 10px 40px -10px rgba(0, 0, 0, 0.6);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--color-bg);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern", "liga", "calt";
}
img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; background: transparent; border: 0; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; transition: color var(--duration-fast) var(--ease-out); }
ul, ol { list-style: none; }
::selection { background: var(--color-gold); color: var(--color-bg); }
:focus-visible { outline: 2px solid var(--color-gold); outline-offset: 4px; }

/* Page grain texture overlay — premium feel, no AI sheen */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* ---------- 3. TYPOGRAPHY ---------- */
.display-xl, .display, h1, h2 { font-family: var(--font-display); font-weight: 800; line-height: 1.05; letter-spacing: -0.025em; }

.display-xl { font-size: clamp(3rem, 7.5vw, 6.5rem); }
.display     { font-size: clamp(2.4rem, 5vw, 4.2rem); }

h1 { font-size: clamp(2.5rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 3rem); }
h3 { font-family: var(--font-heading); font-weight: 500; font-size: clamp(1.35rem, 2vw, 1.7rem); letter-spacing: 0.04em; text-transform: uppercase; line-height: 1.25; }
h4 { font-family: var(--font-heading); font-weight: 400; font-size: 1.15rem; letter-spacing: 0.06em; text-transform: uppercase; }

p { color: var(--color-white); opacity: 0.85; }
.lead { font-size: clamp(1.1rem, 1.4vw, 1.25rem); line-height: 1.7; opacity: 0.85; max-width: 64ch; }

/* Eyebrow — small label above headings (gold + caps + tracking) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--color-gold);
}

/* Section numbers (editorial accent) */
.section-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  opacity: 0.7;
}

/* Gold accent inside copy */
.gold { color: var(--color-gold); }
.serif { font-family: var(--font-display); }
/* `.italic` retained for HTML compatibility — no longer applies italic for modern look */
.italic { font-style: normal; }

/* Decorative ornament — diamond line (echoes logo) */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  margin: 18px 0;
}
.ornament::before, .ornament::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}
.ornament .dot {
  width: 6px;
  height: 6px;
  background: var(--color-gold);
  transform: rotate(45deg);
}
.ornament.center { margin-left: auto; margin-right: auto; }

/* ---------- 4. LAYOUT ---------- */
.container       { width: 100%; max-width: var(--container);       margin: 0 auto; padding: 0 24px; }
.container-wide  { width: 100%; max-width: var(--container-wide);  margin: 0 auto; padding: 0 24px; }
.container-narrow{ width: 100%; max-width: var(--container-narrow);margin: 0 auto; padding: 0 24px; }

section { position: relative; padding: clamp(56px, 7vw, 100px) 0; }
.section-tight { padding: clamp(40px, 5vw, 70px) 0; }

/* ---------- 5. BUTTONS (eckig, premium) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  height: 60px;
  padding: 0 32px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: var(--edge);
  transition: all var(--duration) var(--ease-out);
  position: relative;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.btn .arrow { transition: transform var(--duration) var(--ease-out); display: inline-block; }
.btn:hover .arrow { transform: translateX(6px); }

/* Primary — solid gold */
.btn-primary {
  background: var(--color-gold);
  color: var(--color-bg);
  box-shadow: 0 0 0 1px var(--color-gold);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary span { position: relative; z-index: 1; }

/* Outline — gold border */
.btn-outline {
  background: transparent;
  color: var(--color-white);
  box-shadow: 0 0 0 1px rgba(201, 169, 97, 0.6);
}
.btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-bg);
  box-shadow: 0 0 0 1px var(--color-gold);
}

/* Ghost — text only with arrow */
.btn-ghost {
  height: auto;
  padding: 6px 0;
  background: transparent;
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
}
.btn-ghost:hover { color: var(--color-gold-light); border-color: var(--color-gold-light); }

/* Big CTA — for hero / banner */
.btn-xl { height: 68px; padding: 0 40px; font-size: 0.95rem; }

/* ---------- 6. HEADER / NAV ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--duration) var(--ease-out), padding var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 10px 0;
  border-bottom-color: var(--color-line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 68px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: height var(--duration) var(--ease-out);
}
.site-header.is-scrolled .nav-logo img { height: 52px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu > li > a, .nav-menu > li > .has-dropdown > a {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 18px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.85;
  position: relative;
  transition: opacity var(--duration-fast), color var(--duration-fast);
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--color-gold); opacity: 1; }
.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 18px; right: 18px;
  height: 1px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-out);
}
.nav-menu > li > a:hover::after,
.nav-menu > li.active > a::after { transform: scaleX(1); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-line);
  border-top: 2px solid var(--color-gold);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--duration) var(--ease-out);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--color-white);
  opacity: 0.8;
  border-left: 2px solid transparent;
  transition: all var(--duration-fast);
}
.dropdown a:hover { opacity: 1; color: var(--color-gold); border-left-color: var(--color-gold); background: rgba(201, 169, 97, 0.05); }

/* Header CTA */
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}
.nav-phone svg { width: 16px; height: 16px; }
.nav-cta .btn { height: 48px; padding: 0 22px; font-size: 0.78rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--color-line-strong);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-gold);
  transition: transform var(--duration) var(--ease-out), opacity var(--duration-fast);
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; right: 0;
  height: 100vh;
  width: min(420px, 90vw);
  background: var(--color-bg);
  border-left: 1px solid var(--color-line);
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  z-index: 90;
  overflow-y: auto;
}
.nav-drawer.is-open { transform: translateX(0); }
.nav-drawer ul { display: flex; flex-direction: column; gap: 4px; }
.nav-drawer a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-line);
}
.nav-drawer .nav-sub { padding-left: 16px; margin-top: 0; }
.nav-drawer .nav-sub a { font-size: 0.85rem; letter-spacing: 0.1em; opacity: 0.7; border-bottom: 0; padding: 10px 0; text-transform: none; font-family: var(--font-body); }
.nav-drawer .drawer-footer {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration), visibility var(--duration);
  z-index: 80;
}
.nav-overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroScale 20s ease-out infinite alternate;
}
@keyframes heroScale {
  to { transform: scale(1.15); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.72) 45%, rgba(10,10,10,0.45) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.3) 40%, rgba(10,10,10,0.92) 100%);
}
.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow { margin-bottom: 24px; }
.hero h1 {
  margin-bottom: 28px;
  text-wrap: balance;
  max-width: 24ch;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.1;
}
.hero h1 .gold { display: inline-block; }
.hero-lead {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 48px;
  opacity: 0.85;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

/* Hero meta strip — bottom */
.hero-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  border-top: 1px solid var(--color-line);
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
}
.hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hero-meta-item {
  padding: 28px 30px;
  border-right: 1px solid var(--color-line);
}
.hero-meta-item:last-child { border-right: 0; }
.hero-meta-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}
.hero-meta-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.7;
}

/* Side decorations */
.hero-side {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--color-gold);
  opacity: 0.5;
  z-index: 3;
  white-space: nowrap;
}
.hero-side::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--color-gold);
  margin-right: 16px;
  vertical-align: middle;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: 0.5;
}
.scroll-indicator .line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  margin: 14px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50% { transform: scaleY(0.4); opacity: 1; }
}

/* ---------- 8. SECTION HEADERS ---------- */
.section-head {
  margin-bottom: 56px;
  max-width: 880px;
  position: relative;
}
.section-head-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.section-head-meta .eyebrow::before { display: none; }
.section-head h2 { text-wrap: balance; max-width: 22ch; }
.section-head h2.wide { max-width: 28ch; }
.section-head .lead { margin-top: 28px; max-width: 62ch; }

/* Optional big accent numeral on the right edge */
.section-accent-num {
  position: absolute;
  top: -32px;
  right: 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 11rem);
  color: var(--color-gold);
  opacity: 0.08;
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-weight: 600;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 900px) {
  .section-head { margin-bottom: 56px; }
  .section-accent-num { display: none; }
}

/* ---------- 9. SERVICE CARDS ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}
.service-card-cta .service-card-num,
.service-card-cta .service-card-icon { color: var(--color-gold); }
.service-card-cta h3 { color: var(--color-gold); }
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  position: relative;
  background: var(--color-bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background var(--duration) var(--ease-out);
  overflow: hidden;
  min-height: 480px;
}
.service-card-image {
  position: absolute;
  inset: 0;
  opacity: 1;
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(15%) contrast(1.05);
  transition: transform var(--duration-slow) var(--ease-out), filter var(--duration) var(--ease-out);
}
.service-card-image::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 65%, rgba(10,10,10,0.96) 100%);
  transition: background var(--duration) var(--ease-out);
}
.service-card:hover .service-card-image img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.1);
}
.service-card:hover .service-card-image::after {
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.8) 65%, rgba(10,10,10,0.95) 100%);
}

.service-card-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  position: relative;
  z-index: 2;
}
.service-card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  position: relative;
  z-index: 2;
  transition: all var(--duration) var(--ease-out);
}
.service-card-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-card-icon { background: var(--color-gold); color: var(--color-bg); }

.service-card h3 {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: -0.01em;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 700;
}
.service-card p {
  position: relative;
  z-index: 2;
  opacity: 0.75;
  margin-bottom: auto;
}
.service-card-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  padding-top: 16px;
  border-top: 1px solid var(--color-line-strong);
  transition: color var(--duration-fast);
}
.service-card-link .arrow { transition: transform var(--duration) var(--ease-out); }
.service-card:hover .service-card-link .arrow { transform: translateX(6px); }

/* ---------- 10. STATS BLOCK ---------- */
.stats {
  position: relative;
  background: var(--color-bg);
  overflow: hidden;
}
.stats-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stats-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.18; filter: grayscale(60%); }
.stats-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(10,10,10,0.7) 50%, var(--color-bg) 100%);
}

.stats-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--color-line-strong);
}
.stats-item {
  background: var(--color-bg);
  padding: 56px 32px;
  text-align: center;
}
.stats-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.stats-num .suffix { font-size: 0.55em; }
.stats-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- 11. BENEFITS / VORTEILE ---------- */
.benefits {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}
@media (max-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
}
.benefit-item {
  background: var(--color-bg-elevated);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--duration) var(--ease-out);
  position: relative;
}
.benefit-item:hover { background: var(--color-card); }
.benefit-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--color-gold);
}
.benefit-item h4 {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  color: var(--color-white);
}
.benefit-item p { font-size: 0.95rem; opacity: 0.75; }
.benefit-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-gold);
  border: 1px solid var(--color-line-strong);
  margin-bottom: 8px;
  transition: all var(--duration) var(--ease-out);
}
.benefit-item:hover .benefit-icon { border-color: var(--color-gold); }
.benefit-icon svg { width: 24px; height: 24px; }

/* ---------- 12. PROCESS / ARBEITSABLAUF ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  position: relative;
}
.process-step {
  position: relative;
  padding: 32px 28px 32px 0;
  border-top: 1px solid var(--color-line);
}
.process-step-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.85;
}
.process-step h4 {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--color-white);
}
.process-step p { font-size: 0.95rem; opacity: 0.75; }

/* ---------- 13. ABOUT / ÜBER UNS TEASER ---------- */
.about-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; gap: 48px; }
}
.about-image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
}
.about-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}
.about-image-frame {
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 1px solid var(--color-gold);
  pointer-events: none;
  z-index: -1;
}
.about-image-badge {
  position: absolute;
  bottom: -32px; left: -32px;
  background: var(--color-gold);
  color: var(--color-bg);
  padding: 28px 32px;
  font-family: var(--font-display);
  z-index: 2;
}
.about-image-badge .num { font-size: 2.8rem; line-height: 1; }
.about-image-badge .label { font-family: var(--font-heading); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 6px; opacity: 0.85; }

.about-content > .eyebrow { margin-bottom: 24px; }
.about-content h2 { margin-bottom: 32px; }
.about-signature {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--color-line);
}
.about-signature-text {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--color-gold);
  line-height: 1.4;
}

/* ---------- 14. TESTIMONIALS / BEWERTUNGEN ---------- */
.testimonials {
  background: var(--color-bg);
  border-top: 1px solid var(--color-line);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--color-card);
  padding: 40px 36px;
  border: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.testimonial::before {
  content: '“';
  position: absolute;
  top: 16px; right: 28px;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.15;
}
.testimonial-stars { display: flex; gap: 4px; color: var(--color-gold); }
.testimonial-stars svg { width: 16px; height: 16px; fill: currentColor; }
.testimonial-text {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-white);
  opacity: 0.92;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
}
.testimonial-avatar {
  width: 48px; height: 48px;
  background: var(--color-gold-deep);
  color: var(--color-gold-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.testimonial-author-name { font-family: var(--font-heading); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.testimonial-author-role { font-size: 0.82rem; opacity: 0.6; margin-top: 2px; }

/* ---------- 15. REFERENCES GALLERY ---------- */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.ref-item {
  position: relative;
  overflow: hidden;
  background: var(--color-card);
  cursor: pointer;
}
.ref-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out), filter var(--duration) var(--ease-out);
  filter: grayscale(20%) contrast(1.05);
}
.ref-item:hover img { transform: scale(1.08); filter: grayscale(0%) contrast(1.1); }
.ref-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,10,10,0.85) 100%);
  pointer-events: none;
}
.ref-item-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
}
.ref-item-cat {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 6px;
}
.ref-item-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-white);
  line-height: 1.2;
}

/* Bento layout pattern */
.ref-item.x4 { grid-column: span 4; grid-row: span 2; }
.ref-item.x3 { grid-column: span 3; grid-row: span 1; }
.ref-item.x5 { grid-column: span 5; grid-row: span 2; }
.ref-item.x6 { grid-column: span 6; grid-row: span 1; }
.ref-item.x8 { grid-column: span 8; grid-row: span 2; }

@media (max-width: 900px) {
  .refs-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .ref-item.x4, .ref-item.x3, .ref-item.x5, .ref-item.x6, .ref-item.x8 { grid-column: span 1; grid-row: span 1; }
  .ref-item:first-child { grid-column: span 2; }
}

/* ---------- 16. CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: clamp(60px, 8vw, 110px) 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.cta-bg img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.1); }
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.6) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(10,10,10,0.9) 100%);
}
.cta-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.cta-content h2 { margin: 24px 0 24px; text-wrap: balance; }
.cta-content .lead { margin: 0 auto 48px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- 17. FAQ ---------- */
.faq-list {
  border-top: 1px solid var(--color-line);
}
.faq-item {
  border-bottom: 1px solid var(--color-line);
  transition: background var(--duration) var(--ease-out);
}
.faq-item:hover { background: var(--color-bg-elevated); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--color-white);
  cursor: pointer;
  transition: color var(--duration-fast);
}
.faq-item:hover .faq-q,
.faq-item.is-open .faq-q { color: var(--color-gold); }

.faq-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-line-strong);
  position: relative;
  flex-shrink: 0;
  transition: all var(--duration) var(--ease-out);
}
.faq-item.is-open .faq-toggle { border-color: var(--color-gold); background: var(--color-gold); }
.faq-toggle::before, .faq-toggle::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--color-gold);
  transition: background var(--duration), transform var(--duration) var(--ease-out);
}
.faq-toggle::before { width: 14px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-toggle::after  { width: 1.5px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.is-open .faq-toggle::before,
.faq-item.is-open .faq-toggle::after { background: var(--color-bg); }
.faq-item.is-open .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}
.faq-a-inner {
  padding: 0 60px 36px 0;
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.75;
  max-width: 76ch;
}

/* ---------- 18. CONTACT FORM ---------- */
.contact {
  background: var(--color-bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}

.contact-info { display: flex; flex-direction: column; gap: 36px; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-line);
}
.contact-info-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-label { font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-gold); margin-bottom: 4px; }
.contact-info-value { font-family: var(--font-display); font-size: 1.25rem; color: var(--color-white); line-height: 1.3; }
.contact-info-value a:hover { color: var(--color-gold); }

.contact-form {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-line);
  padding: 48px;
}
.contact-form h3 { margin-bottom: 8px; font-family: var(--font-display); text-transform: none; letter-spacing: -0.01em; font-weight: 700; font-size: 1.6rem; }
.contact-form .subtitle { font-size: 0.95rem; opacity: 0.7; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.field label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.field .required { color: var(--color-error); }
.input, .textarea, .select {
  width: 100%;
  padding: 16px 18px;
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  color: var(--color-white);
  font-size: 0.98rem;
  font-family: var(--font-body);
  transition: border-color var(--duration-fast);
}
.input:focus, .textarea:focus, .select:focus { border-color: var(--color-gold); outline: none; }
.textarea { resize: vertical; min-height: 140px; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'><path fill='%23C9A961' d='M0 0h14L7 8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 24px;
  cursor: pointer;
  font-size: 0.88rem;
  opacity: 0.8;
  line-height: 1.5;
}
.checkbox input { display: none; }
.checkbox .box {
  width: 18px; height: 18px;
  border: 1px solid var(--color-line-strong);
  flex-shrink: 0;
  position: relative;
  margin-top: 2px;
  transition: all var(--duration-fast);
}
.checkbox input:checked + .box { background: var(--color-gold); border-color: var(--color-gold); }
.checkbox input:checked + .box::after {
  content: '';
  position: absolute;
  top: 2px; left: 5px;
  width: 5px; height: 9px;
  border: solid var(--color-bg);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox a { color: var(--color-gold); border-bottom: 1px solid currentColor; }

.form-msg {
  margin-top: 20px;
  padding: 16px;
  font-size: 0.92rem;
  display: none;
  border-left: 3px solid;
}
.form-msg.success { display: block; border-color: var(--color-success); color: var(--color-success); background: rgba(111, 191, 115, 0.08); }
.form-msg.error { display: block; border-color: var(--color-error); color: var(--color-error); background: rgba(212, 74, 74, 0.08); }

/* ---------- 19. FOOTER ---------- */
.site-footer {
  background: #151516;
  border-top: 1px solid var(--color-line);
  padding-top: 100px;
  position: relative;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--color-line);
}
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; margin-bottom: 12px; }
}
@media (max-width: 700px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}
.footer-brand img { height: 80px; width: auto; margin-bottom: 24px; }
.footer-brand p { font-size: 0.95rem; opacity: 0.7; max-width: 36ch; }
.footer-brand .footer-social { display: flex; gap: 8px; margin-top: 24px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--color-line-strong);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--duration-fast);
}
.footer-social a:hover { border-color: var(--color-gold); color: var(--color-gold); background: rgba(201,169,97,0.08); }
.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-line);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.95rem; opacity: 0.8; transition: all var(--duration-fast); }
.footer-col a:hover { color: var(--color-gold); padding-left: 4px; }
.footer-col p { font-size: 0.95rem; opacity: 0.8; margin-bottom: 8px; }
.footer-col .contact-line { display: flex; gap: 10px; align-items: center; }
.footer-col .contact-line svg { width: 14px; height: 14px; color: var(--color-gold); flex-shrink: 0; }

.footer-bottom {
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.85rem; opacity: 0.6; }
.footer-copy .gold { font-family: var(--font-display); }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 0.85rem; opacity: 0.6; }
.footer-bottom-links a:hover { opacity: 1; color: var(--color-gold); }

.footer-credit {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0 22px;
  display: flex;
  justify-content: center;
}
.footer-credit a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.footer-credit .credit-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.footer-credit a:hover .credit-row { opacity: 1; }
.footer-credit img {
  height: 30px;
  width: auto;
  display: block;
}
.footer-credit .credit-cta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 5px 12px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  color: var(--color-text-muted);
  opacity: 0.75;
  transition: all 0.2s ease;
}
.footer-credit a:hover .credit-cta {
  opacity: 1;
  border-color: var(--color-gold);
  color: var(--color-gold);
}

/* ---------- 20. BREADCRUMB ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.7;
}
.breadcrumb a { transition: color var(--duration-fast); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb .sep { color: var(--color-gold); }
.breadcrumb .current { color: var(--color-gold); }

/* ---------- 21. PAGE HERO (subpages) ---------- */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  padding: 180px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.65) 60%, rgba(10,10,10,0.4) 100%),
    linear-gradient(180deg, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%);
}
.page-hero-inner { position: relative; z-index: 2; max-width: 920px; }
.page-hero h1 {
  margin: 16px 0 24px;
  text-wrap: balance;
}
.page-hero .lead { font-size: 1.2rem; opacity: 0.85; }

/* ---------- 22. CONTENT BLOCKS (service subpages) ---------- */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.content-split.reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .content-split { grid-template-columns: 1fr; gap: 48px; }
  .content-split.reverse > :first-child { order: 0; }
}
.content-image-wrap { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.content-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.content-image-wrap::before {
  content: '';
  position: absolute; inset: -10px;
  border: 1px solid var(--color-gold);
  z-index: -1;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 32px 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 1rem;
  line-height: 1.5;
}
.feature-list li::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-top: 8px;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
  margin: 40px 0;
}
@media (max-width: 900px) {
  .applications-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .applications-grid { grid-template-columns: 1fr; }
}
.application {
  background: var(--color-bg-elevated);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.application-icon { color: var(--color-gold); margin-bottom: 8px; }
.application-icon svg { width: 32px; height: 32px; }
.application h5 { font-family: var(--font-display); font-size: 1.2rem; text-transform: none; letter-spacing: -0.01em; font-weight: 700; }
.application p { font-size: 0.92rem; opacity: 0.75; }

/* Related services strip */
.related-services {
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.related-card {
  background: var(--color-bg);
  border: 1px solid var(--color-line);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all var(--duration) var(--ease-out);
}
.related-card:hover { border-color: var(--color-gold); transform: translateY(-4px); }
.related-card h5 { font-family: var(--font-display); font-size: 1.2rem; text-transform: none; letter-spacing: -0.01em; font-weight: 700; color: var(--color-white); }
.related-card p { font-size: 0.88rem; opacity: 0.7; }
.related-card span { font-family: var(--font-heading); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--color-gold); margin-top: auto; }

/* ---------- 23. UTILITIES / ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

.fade-in {
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.fade-in.in-view { opacity: 1; }

/* Marquee strip (logo strip / certifications) */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: 28px 0;
  background: var(--color-bg-elevated);
}
.marquee-track {
  display: flex;
  gap: 64px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--color-white);
  opacity: 0.65;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 64px;
}
.marquee-item::after {
  content: '◆';
  color: var(--color-gold);
  opacity: 0.9;
  font-size: 0.6em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- 24. MAP / CONTACT EXTRA ---------- */
.map-wrap {
  border: 1px solid var(--color-line);
  aspect-ratio: 21 / 9;
  overflow: hidden;
  filter: grayscale(40%) invert(0.92) hue-rotate(180deg);
}
.map-wrap iframe { border: 0; width: 100%; height: 100%; }

/* Legal page (impressum/datenschutz) */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin: 56px 0 20px; font-size: clamp(1.7rem, 2.5vw, 2.2rem); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { margin: 36px 0 14px; font-family: var(--font-display); text-transform: none; letter-spacing: -0.01em; font-weight: 700; font-size: 1.4rem; color: var(--color-gold); }
.legal-content p { margin-bottom: 16px; opacity: 0.85; }
.legal-content ul { padding-left: 0; margin: 14px 0 24px; }
.legal-content ul li { padding: 6px 0 6px 24px; position: relative; opacity: 0.85; }
.legal-content ul li::before { content: '◆'; color: var(--color-gold); position: absolute; left: 0; font-size: 0.7em; top: 11px; }
.legal-placeholder {
  display: inline-block;
  background: rgba(201,169,97,0.12);
  border: 1px dashed var(--color-gold);
  padding: 2px 10px;
  color: var(--color-gold-light);
  font-family: var(--font-mono);
  font-size: 0.88em;
}

/* ---------- COOKIE BANNER (DSGVO) ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-bg-elevated);
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.5);
  transform: translateY(100%);
  transition: transform var(--duration-slow) var(--ease-out);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 0;
}
.cookie-text {
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.88;
  max-width: 800px;
}
.cookie-text a { color: var(--color-gold); border-bottom: 1px solid currentColor; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn { height: 46px; padding: 0 22px; font-size: 0.78rem; }
@media (max-width: 800px) {
  .cookie-inner { grid-template-columns: 1fr; gap: 16px; padding: 18px 0; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

/* ---------- 25. RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-drawer { display: block; }
  .nav-phone { display: none; }
  .nav-cta .btn { display: none; }
}
@media (max-width: 800px) {
  .hero-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-meta-item:nth-child(2) { border-right: 0; }
  .hero-meta-item:nth-child(1), .hero-meta-item:nth-child(2) { border-bottom: 1px solid var(--color-line); }
  .hero-side { display: none; }
  .scroll-indicator { display: none; }
}
@media (max-width: 600px) {
  section { padding: 80px 0; }
  .hero { padding: 120px 0 60px; }
  .btn { height: 52px; padding: 0 24px; font-size: 0.78rem; letter-spacing: 0.14em; }
  .contact-form { padding: 32px 24px; }
  .about-image-badge { padding: 20px 22px; left: -16px; bottom: -20px; }
  .about-image-badge .num { font-size: 2rem; }
  .testimonial { padding: 32px 28px; }
}

/* ════════════════════════════════════════════════════════════
   25b. LIGHT SECTION — Helle Sektionen für Lesbarkeit
   Verwendung: <section class="section-light">…</section>
   ════════════════════════════════════════════════════════════ */

.section-light {
  background: #F5F1E8;
  color: #1A1A1A;
  position: relative;
}
.section-light::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
}

/* Headings + Text in hellen Sektionen */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5,
.section-light h6 { color: #0F0F0F; }
.section-light p { color: #2A2A2A; opacity: 1; }
.section-light .lead { color: #333333; opacity: 1; }
.section-light strong { color: #0F0F0F; }
.section-light .gold { color: #8A7138; }
.section-light .gold.italic,
.section-light span.gold { color: #8A7138; }

/* Eyebrow + Section-Num */
.section-light .eyebrow { color: #8A7138; }
.section-light .eyebrow::before { background: #8A7138; }
.section-light .section-num { color: #8A7138; }
.section-light .section-accent-num { color: #8A7138; opacity: 0.10; }

/* Cards (Benefits, Applications, Related) */
.section-light .benefit-item,
.section-light .application,
.section-light .related-card {
  background: #FFFFFF;
  border: 1px solid #E5DFD0;
}
.section-light .benefit-item:hover,
.section-light .application:hover {
  background: #FBF8F0;
}
.section-light .benefit-item h4,
.section-light .application h5,
.section-light .related-card h5 { color: #0F0F0F; }
.section-light .benefit-item p,
.section-light .application p,
.section-light .related-card p { color: #4A4A4A; }
.section-light .benefit-num,
.section-light .related-card span { color: #8A7138; }
.section-light .benefit-icon {
  border-color: #C9A961;
  color: #8A7138;
}

/* Benefits- / Applications-Grid Hintergrund */
.section-light .benefits-grid,
.section-light .applications-grid {
  background: #E5DFD0;
  border-color: #E5DFD0;
}

/* Testimonials */
.section-light .testimonial {
  background: #FFFFFF;
  border: 1px solid #E5DFD0;
}
.section-light .testimonial::before { color: #C9A961; opacity: 0.2; }
.section-light .testimonial-text { color: #1F1F1F; opacity: 1; }
.section-light .testimonial-author-name { color: #0F0F0F; }
.section-light .testimonial-author-role { color: #6A6A6A; }
.section-light .testimonial-author {
  border-top: 1px solid #E5DFD0;
}
.section-light .testimonial-avatar {
  background: #F5EFE0;
  color: #8A7138;
}
.section-light .testimonial-stars { color: #C9A961; }

/* FAQ in heller Sektion */
.section-light .faq-list { border-top: 1px solid #D8D2C0; }
.section-light .faq-item { border-bottom: 1px solid #D8D2C0; }
.section-light .faq-item:hover { background: #EFEAD9; }
.section-light .faq-q { color: #0F0F0F; }
.section-light .faq-item:hover .faq-q,
.section-light .faq-item.is-open .faq-q { color: #8A7138; }
.section-light .faq-toggle {
  border-color: #C9A961;
}
.section-light .faq-toggle::before,
.section-light .faq-toggle::after { background: #8A7138; }
.section-light .faq-item.is-open .faq-toggle { background: #C9A961; }
.section-light .faq-item.is-open .faq-toggle::before,
.section-light .faq-item.is-open .faq-toggle::after { background: #FFFFFF; }
.section-light .faq-a-inner { color: #3A3A3A; }
.section-light .faq-a-inner strong { color: #0F0F0F; }

/* Process Steps */
.section-light .process-step { border-top: 1px solid #D8D2C0; }
.section-light .process-step-num { color: #8A7138; }
.section-light .process-step h4 { color: #0F0F0F; }
.section-light .process-step p { color: #4A4A4A; }

/* Feature-List (Bullet-Listen mit ◆) */
.section-light .feature-list li {
  border-bottom: 1px solid #D8D2C0;
  color: #2A2A2A;
}
.section-light .feature-list li::before { background: #8A7138; }

/* Stats in hellen Sektionen */
.section-light .stats-grid {
  background: #E5DFD0;
  border: 1px solid #E5DFD0;
}
.section-light .stats-item { background: #FFFFFF; }
.section-light .stats-num { color: #8A7138; }
.section-light .stats-label { color: #1F1F1F; opacity: 1; }

/* Ornament (◆) */
.section-light .ornament::before,
.section-light .ornament::after { background: #8A7138; }
.section-light .ornament .dot { background: #8A7138; }

/* Forms in hellen Sektionen */
.section-light .contact-form {
  background: #FFFFFF;
  border: 1px solid #E5DFD0;
}
.section-light .contact-form h3 { color: #0F0F0F; }
.section-light .contact-form .subtitle { color: #4A4A4A; }
.section-light .field label { color: #8A7138; }
.section-light .input,
.section-light .textarea,
.section-light .select {
  background: #FBF8F0;
  border: 1px solid #D8D2C0;
  color: #0F0F0F;
}
.section-light .input:focus,
.section-light .textarea:focus,
.section-light .select:focus { border-color: #C9A961; }
.section-light .input::placeholder,
.section-light .textarea::placeholder { color: #8A8A8A; }
.section-light .checkbox { color: #4A4A4A; }
.section-light .checkbox .box { border-color: #C9A961; }
.section-light .checkbox a { color: #8A7138; }

/* Contact-Info-Items */
.section-light .contact-info-item { border-bottom: 1px solid #D8D2C0; }
.section-light .contact-info-icon {
  border-color: #C9A961;
  color: #8A7138;
}
.section-light .contact-info-label { color: #8A7138; }
.section-light .contact-info-value { color: #0F0F0F; }
.section-light .contact-info-value a { color: #0F0F0F; }
.section-light .contact-info-value a:hover { color: #8A7138; }

/* Buttons in hellen Sektionen */
.section-light .btn-primary {
  background: #C9A961;
  color: #0F0F0F;
  box-shadow: 0 0 0 1px #C9A961;
}
.section-light .btn-primary:hover {
  background: #B89348;
  box-shadow: 0 0 0 1px #B89348;
}
.section-light .btn-outline {
  background: transparent;
  color: #0F0F0F;
  box-shadow: 0 0 0 1px rgba(138, 113, 56, 0.6);
}
.section-light .btn-outline:hover {
  background: #C9A961;
  color: #0F0F0F;
}
.section-light .btn-ghost {
  color: #8A7138;
  border-bottom-color: #8A7138;
}

/* Links allgemein in hellen Sektionen */
.section-light a { color: #8A7138; }
.section-light a:hover { color: #6E5A2C; }
.section-light .breadcrumb a { color: #5A5A5A; }
.section-light .breadcrumb a:hover { color: #8A7138; }
.section-light .breadcrumb .sep,
.section-light .breadcrumb .current { color: #8A7138; }

/* Section-Head Trennlinien */
.section-light .section-head h2 { color: #0F0F0F; }

/* Content-Image-Wrap Rahmen anpassen */
.section-light .content-image-wrap::before { border-color: #C9A961; }

/* About-Image-Frame */
.section-light .about-image-frame { border-color: #C9A961; }
.section-light .about-image-badge {
  background: #C9A961;
  color: #0F0F0F;
}

/* Map */
.section-light .map-wrap {
  filter: none;
  border: 1px solid #D8D2C0;
}

/* Ordered List (Ablauf-Steps) */
.section-light ol { color: #2A2A2A; }
.section-light ol li strong { color: #0F0F0F; }

/* Service-Card-Link in heller Sektion */
.section-light .service-card-link {
  color: #8A7138;
  border-top-color: #D8D2C0;
}
.section-light .service-card-link:hover { color: #6E5A2C; }

/* Trennlinien innerhalb der Sektion (z.B. between contact + info) */
.section-light .about-signature {
  border-top: 1px solid #D8D2C0;
}
.section-light .about-signature-text { color: #8A7138; }

/* Stats-Background-Image ausblenden in heller Sektion */
.section-light .stats-bg { display: none; }

/* Stats-Item Borders heller */
.section-light .stats-grid { background: #D8D2C0; }

/* Contact-Sektion Titel + Lead anpassen */
.section-light .contact-info h2 { color: #0F0F0F; }
.section-light .contact-info .lead { color: #333333; }

/* ════════════════════════════════════════════════════════════
   26. MOBILE POLISH — Komplette Mobile-Optimierung
   Konsolidiert alle Tablet/Phone-Anpassungen für 768/600/480/375
   ════════════════════════════════════════════════════════════ */

/* Globale Overflow-Sicherung: kein horizontales Scrollen */
html, body { max-width: 100%; overflow-x: hidden; }
img, video, iframe { max-width: 100%; height: auto; }
.container, .container-wide, .container-narrow { max-width: 100%; }

/* Tablet (≤ 768px) */
@media (max-width: 768px) {
  /* Container — etwas mehr Raum */
  .container, .container-wide, .container-narrow { padding: 0 20px; }

  /* Sektion-Padding kompakter */
  section { padding: 56px 0; }
  .section-tight { padding: 36px 0; }
  .section-head { margin-bottom: 40px; }
  .cta-banner { padding: 60px 0; }

  /* Typografie */
  h1 { font-size: clamp(1.85rem, 6vw, 2.4rem); line-height: 1.15; }
  h2 { font-size: clamp(1.55rem, 4.8vw, 2.1rem); line-height: 1.2; }
  h3 { font-size: clamp(1.1rem, 3.5vw, 1.4rem); }
  .lead { font-size: 1rem; line-height: 1.6; }
  p { font-size: 0.97rem; line-height: 1.65; }

  /* Hero auf Mobile */
  .hero { padding: 110px 0 70px; min-height: auto; }
  .hero h1 { font-size: clamp(1.75rem, 6vw, 2.4rem); max-width: 100%; }
  .hero-lead { font-size: 1rem; line-height: 1.55; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-eyebrow .eyebrow { font-size: 0.7rem; letter-spacing: 0.22em; gap: 10px; }
  .hero-eyebrow .eyebrow::before { width: 24px; }
  .hero-ctas { gap: 12px; margin-bottom: 40px; }
  .hero-meta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-meta-item { padding: 20px 18px; }
  .hero-meta-num { font-size: 1.6rem; }
  .hero-meta-label { font-size: 0.65rem; letter-spacing: 0.14em; }

  /* Buttons — größer, voll-breit-tauglich */
  .btn { height: 52px; padding: 0 22px; font-size: 0.76rem; letter-spacing: 0.14em; }
  .btn-xl { height: 56px; padding: 0 26px; font-size: 0.8rem; }
  .hero-ctas .btn { flex: 1 1 auto; min-width: 0; justify-content: center; }

  /* Eyebrow + Section-Number */
  .eyebrow { font-size: 0.7rem; letter-spacing: 0.22em; gap: 10px; }
  .eyebrow::before { width: 28px; }
  .section-num { font-size: 0.7rem; letter-spacing: 0.16em; }

  /* Big background numerals — auf Mobile dezent oben statt überstehend */
  .section-accent-num { font-size: 4.5rem; opacity: 0.06; top: -8px; right: -8px; }

  /* Grids generell zu 1-Spalte auf Tablet */
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .applications-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(1, 1fr); gap: 12px; }

  /* Service-Cards kompakter */
  .service-card { min-height: 360px; padding: 36px 28px; }

  /* About-Split: bei content-split stacking */
  .content-split { grid-template-columns: 1fr; gap: 32px; }
  .content-split.reverse > :first-child { order: 0; }
  .about-split { grid-template-columns: 1fr; gap: 36px; }
  .about-image-wrap { aspect-ratio: 4/3; max-width: 100%; }
  .about-image-frame { display: none; }

  /* Stats + Benefit-Items kompakter */
  .stats-item { padding: 36px 20px; }
  .stats-num { font-size: 2.4rem; }
  .stats-label { font-size: 0.75rem; letter-spacing: 0.12em; }
  .benefit-item { padding: 32px 24px; }
  .benefit-item h4 { font-size: 1.2rem; }
  .application { padding: 24px 20px; }

  /* Testimonials */
  .testimonial { padding: 28px 22px; }
  .testimonial-text { font-size: 0.98rem; }

  /* FAQ — Frage muss Platz für Toggle haben */
  .faq-q { font-size: 1.05rem; padding: 22px 0; gap: 16px; line-height: 1.3; }
  .faq-toggle { width: 36px; height: 36px; }
  .faq-a-inner { padding: 0 0 24px 0; font-size: 0.95rem; }

  /* Process Step */
  .process-step-num { font-size: 2.6rem; }
  .process-step { padding: 24px 0; }

  /* CTA */
  .cta-content h2 { font-size: 1.7rem; }
  .cta-actions { gap: 12px; flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }

  /* Refs Grid */
  .refs-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; gap: 12px; }
  .ref-item.x4, .ref-item.x3, .ref-item.x5, .ref-item.x6, .ref-item.x8 { grid-column: span 1; grid-row: span 1; }
  .ref-item:first-child { grid-column: span 2; grid-row: span 1; }
  .ref-item-title { font-size: 1rem; }

  /* Contact Form */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 22px; }
  .contact-info-item { padding: 20px 0; gap: 16px; }
  .contact-info-value { font-size: 1.05rem; }

  /* Breadcrumb — umbruch-tolerant */
  .breadcrumb { flex-wrap: wrap; gap: 8px; font-size: 0.7rem; letter-spacing: 0.12em; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 56px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { height: 64px; }
  .footer-col h5 { font-size: 0.72rem; letter-spacing: 0.18em; margin-bottom: 18px; padding-bottom: 12px; }
  .footer-col a { font-size: 0.88rem; }
  .footer-col p { font-size: 0.88rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding: 22px 0; }
  .footer-bottom-links { gap: 16px; }

  /* Map */
  .map-wrap { aspect-ratio: 4/3; }

  /* Marquee — schneller, weniger Platz */
  .marquee { padding: 18px 0; }
  .marquee-item { font-size: 1rem; gap: 32px; }
  .marquee-track { gap: 32px; }

  /* Page-Hero (Subpages) */
  .page-hero { min-height: 50vh; padding: 130px 0 50px; }
  .page-hero h1 { font-size: clamp(1.8rem, 6vw, 2.3rem); margin: 14px 0 18px; }
  .page-hero .lead { font-size: 0.98rem; }

  /* Nav-Drawer perfekt machen */
  .nav-drawer { padding: 90px 24px 32px; width: min(380px, 88vw); }
  .nav-drawer a { font-size: 0.95rem; letter-spacing: 0.14em; padding: 14px 0; }
  .nav-drawer .nav-sub a { font-size: 0.82rem; padding: 8px 0; }

  /* Cookie-Banner kompakter */
  .cookie-text { font-size: 0.85rem; line-height: 1.5; }
  .cookie-actions .btn { height: 44px; font-size: 0.74rem; padding: 0 16px; }
}

/* Phone (≤ 600px) */
@media (max-width: 600px) {
  .container, .container-wide, .container-narrow { padding: 0 16px; }
  section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }

  /* Service + Benefit + Application Grids: 1 Spalte */
  .services-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .applications-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 20px; }
  .stats-grid { grid-template-columns: 1fr; }

  /* Hero-Meta auf 1 Spalte */
  .hero-meta-grid { grid-template-columns: 1fr; }
  .hero-meta-item { padding: 18px 16px; border-right: 0 !important; border-bottom: 1px solid var(--color-line); }
  .hero-meta-item:last-child { border-bottom: 0; }

  /* Service-Cards weniger Min-Höhe */
  .service-card { min-height: 320px; padding: 30px 22px; }
  .service-card h3 { font-size: 1.3rem; }

  /* Refs Grid alle 1 Spalte */
  .refs-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .ref-item:first-child { grid-column: span 1; }

  /* Footer: Single Column */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  /* About-Image-Badge auf Mobile angepasst */
  .about-image-badge { padding: 16px 18px; left: -10px; bottom: -14px; }
  .about-image-badge .num { font-size: 1.8rem; }
  .about-image-badge .label { font-size: 0.62rem; letter-spacing: 0.16em; }

  /* Hero: feiner Tweak */
  .hero h1 { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .hero-lead { font-size: 0.96rem; }

  /* Page-Hero auch */
  .page-hero { min-height: 42vh; padding: 110px 0 40px; }
  .page-hero h1 { font-size: clamp(1.65rem, 6.5vw, 2.1rem); }
  .page-hero .lead { font-size: 0.94rem; }

  /* H2 nochmal kleiner */
  h2 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }

  /* Big numerals auf Mobile fast nichts */
  .section-accent-num { font-size: 3.5rem; opacity: 0.05; top: -4px; }

  /* CTA */
  .cta-content h2 { font-size: 1.5rem; line-height: 1.2; }
  .cta-banner .lead { font-size: 0.95rem; }

  /* Cookie-Banner: button-Text kürzer ggf */
  .cookie-inner { padding: 14px 0; }
}

/* Sehr klein (≤ 380px / iPhone SE 1. Gen) */
@media (max-width: 380px) {
  .container, .container-wide, .container-narrow { padding: 0 14px; }
  section { padding: 40px 0; }
  .hero { padding: 100px 0 50px; }
  .hero h1 { font-size: 1.55rem; line-height: 1.18; }
  .page-hero h1 { font-size: 1.55rem; }
  h2 { font-size: 1.35rem; }

  .btn { height: 48px; padding: 0 18px; font-size: 0.72rem; }
  .btn-xl { height: 50px; padding: 0 20px; font-size: 0.74rem; }

  .service-card { padding: 26px 18px; min-height: 290px; }
  .benefit-item { padding: 26px 20px; }
  .testimonial { padding: 24px 18px; }
  .stats-item { padding: 28px 14px; }
  .stats-num { font-size: 2rem; }

  .contact-form { padding: 24px 18px; }
  .input, .textarea, .select { padding: 14px 14px; font-size: 0.95rem; }

  .nav-logo { height: 56px; }
  .site-header.is-scrolled .nav-logo img { height: 44px; }
  .nav-toggle { width: 40px; height: 40px; }

  .footer-brand img { height: 56px; }
}

/* Touch-Targets garantieren: ≥ 44px überall */
@media (pointer: coarse) {
  .btn { min-height: 44px; }
  .nav-toggle { min-width: 44px; min-height: 44px; }
  .footer-col a, .footer-bottom-links a { display: inline-block; padding: 6px 0; }
  .nav-drawer a { min-height: 44px; display: flex; align-items: center; }
  .faq-q { min-height: 56px; }
  .input, .textarea, .select { min-height: 48px; }
  .checkbox .box { width: 22px; height: 22px; }
  .checkbox input:checked + .box::after { top: 3px; left: 7px; width: 6px; height: 11px; }
}

/* Lange Wörter umbrechen (Adressen, Telefon, URLs) */
@media (max-width: 768px) {
  .contact-info-value, .footer-col .contact-line a, .breadcrumb a, .breadcrumb .current {
    word-break: break-word;
    overflow-wrap: anywhere;
  }
}

/* ════════════════════════════════════════════════════════════
   27. HERO MOBILE FIX — Hero passt komplett auf den Screen
   ════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Header — kleineres Logo, weniger Padding */
  .site-header { padding: 10px 0; }
  .nav-logo { height: 54px; }
  .site-header.is-scrolled { padding: 6px 0; }
  .site-header.is-scrolled .nav-logo img { height: 44px; }

  /* Container etwas mehr Atemraum links/rechts */
  .hero .container-wide { padding-left: 24px; padding-right: 24px; }

  /* Hero — kein 100vh erzwingen, natürlicher Block-Flow */
  .hero {
    min-height: auto;
    padding: 92px 0 0;
    display: block;
  }
  .hero-inner { padding: 8px 0 28px; }
  .scroll-indicator { display: none !important; }

  /* Eyebrow kleiner */
  .hero-eyebrow { margin-bottom: 14px; }
  .hero-eyebrow .eyebrow { font-size: 0.6rem; letter-spacing: 0.16em; gap: 8px; }
  .hero-eyebrow .eyebrow::before { width: 20px; }

  /* H1 — größere Schrift mit 3-4 Zeilen Umbruch */
  .hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.4rem);
    line-height: 1.08;
    max-width: 14ch;
    margin-bottom: 20px;
    letter-spacing: -0.025em;
  }

  /* Lead-Text kompakter */
  .hero-lead {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }

  /* CTAs — kleinere Buttons auf Mobile */
  .hero-ctas { gap: 10px; margin-bottom: 28px; }
  .hero-ctas .btn,
  .hero-ctas .btn-xl {
    height: 46px;
    padding: 0 18px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  /* Hero-Meta: NICHT absolute, NICHT 1-Spalte — kompaktes 2x2 Grid */
  .hero-meta {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    background: rgba(10, 10, 10, 0.4);
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
  }
  .hero-meta-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-meta-item {
    padding: 14px 12px !important;
    border-right: 1px solid var(--color-line) !important;
    border-bottom: 1px solid var(--color-line) !important;
    text-align: center;
  }
  .hero-meta-item:nth-child(2n) { border-right: 0 !important; }
  .hero-meta-item:nth-child(3), .hero-meta-item:nth-child(4) { border-bottom: 0 !important; }
  .hero-meta-num { font-size: 1.3rem; margin-bottom: 3px; }
  .hero-meta-label { font-size: 0.58rem; letter-spacing: 0.12em; }
}

@media (max-width: 600px) {
  /* Noch kleinerer Header */
  .nav-logo { height: 48px; }
  .site-header.is-scrolled .nav-logo img { height: 40px; }

  /* Hero auf 600px nochmal kompakter */
  .hero { padding: 82px 0 0; }
  .hero-inner { padding: 4px 0 24px; }
  .hero .container-wide { padding-left: 20px; padding-right: 20px; }

  .hero-eyebrow { margin-bottom: 12px; }
  .hero-eyebrow .eyebrow { font-size: 0.56rem; letter-spacing: 0.14em; }

  /* H1 größer + mehr Zeilen */
  .hero h1 {
    font-size: clamp(1.7rem, 7.5vw, 2.1rem);
    line-height: 1.06;
    max-width: 12ch;
    margin-bottom: 18px;
  }
  .hero-lead { font-size: 0.9rem; line-height: 1.5; margin-bottom: 22px; }

  /* CTAs vertikal stapelnd, aber etwas kleiner */
  .hero-ctas { gap: 10px; margin-bottom: 22px; flex-direction: column; align-items: stretch; }
  .hero-ctas .btn,
  .hero-ctas .btn-xl {
    width: 100%;
    flex: none;
    height: 44px;
    padding: 0 16px;
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  /* Stats noch kleiner */
  .hero-meta-item { padding: 12px 10px !important; }
  .hero-meta-num { font-size: 1.15rem; }
  .hero-meta-label { font-size: 0.52rem; letter-spacing: 0.1em; }
}

@media (max-width: 380px) {
  /* iPhone SE — extra-kompakt */
  .nav-logo { height: 44px; }
  .site-header { padding: 8px 0; }
  .hero { padding: 76px 0 0; }
  .hero .container-wide { padding-left: 18px; padding-right: 18px; }
  .hero h1 {
    font-size: 1.55rem;
    line-height: 1.06;
    max-width: 11ch;
  }
  .hero-eyebrow .eyebrow { font-size: 0.54rem; }
  .hero-ctas .btn,
  .hero-ctas .btn-xl {
    height: 42px;
    font-size: 0.68rem;
    padding: 0 14px;
  }
  .hero-meta-num { font-size: 1.05rem; }
  .hero-meta-label { font-size: 0.5rem; }
  .hero-meta-item { padding: 10px 8px !important; }
}

/* Print */
@media print {
  body::before, .site-header, .nav-drawer, .nav-overlay, .scroll-indicator, .hero-side, .cookie-banner { display: none !important; }
}

/* 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; }
  .hero-bg img { animation: none; }
}
