/* ============================================================
   BERGMANN FACILITY MANAGEMENT — Custom CSS
   Kein Framework, kein Bootstrap. Alles handgemacht.
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #2C3540;
  background:
    linear-gradient(180deg, rgba(250,246,238,.92) 0%, rgba(242,237,228,.86) 100%),
    url("../img/paper-texture-imagegen.png") center / 760px auto repeat,
    radial-gradient(ellipse at center top, var(--paper-bright) 0%, var(--paper) 58%, var(--paper-warm) 100%);
  background-blend-mode: normal, multiply, normal;
  background-attachment: fixed, fixed, fixed;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #806650; text-decoration: none; transition: color .2s; }
a:hover { color: #2C3540; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Anthrazit-Töne (dunkle Bereiche, wie auf dem Flyer) */
  --navy: #2C3540;
  --navy-mid: #3A414C;
  --navy-deep: #232932;
  --navy-warm: #2E3540; /* leicht warm getöntes Anthrazit */

  /* Bronze metallic Spektrum (Hauptakzent — alle Glanzstufen) */
  --bronze-deep: #362920;       /* tiefster Bronzeton (Schattenseite) */
  --bronze-dark: #594739;       /* dunkles Bronze */
  --bronze: #806650;            /* Standard-Bronze (Mittelton) */
  --bronze-mid: #9E826A;        /* mittel-helles Bronze */
  --bronze-light: #B79B82;      /* heller Bronze-Glanz */
  --bronze-highlight: #C8A98B;  /* Glanzhighlight (Reflex) */
  --bronze-pale: #D8C6B2;       /* sehr helles, papier-nahes Bronze */

  /* Mattes Naturpapier */
  --paper: #F2EDE4;             /* Hauptpapier */
  --paper-warm: #EDE5D6;        /* leicht wärmer (für Vertiefungen) */
  --paper-bright: #FAF6EE;      /* heller (für Cards) */
  --paper-shadow: rgba(54,41,32,.1);
  --paper-shadow-strong: rgba(54,41,32,.18);

  /* Legacy-Aliasse (damit alter Code weiter funktioniert) */
  --blue: var(--bronze);
  --blue-light: var(--bronze-mid);
  --blue-pale: var(--paper);
  --blue-muted: var(--paper-warm);
  --copper: var(--bronze);
  --copper-light: var(--bronze-mid);
  --copper-deep: var(--bronze-dark);
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --green: #059669;
  --orange: #f59e0b;
  --radius: 6px;
  --radius-lg: 8px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,.06), 0 1px 2px rgba(15,23,42,.04);
  --shadow-md: 0 4px 12px rgba(15,23,42,.08), 0 2px 4px rgba(15,23,42,.04);
  --shadow-lg: 0 12px 40px rgba(15,23,42,.1), 0 4px 12px rgba(15,23,42,.05);
  --shadow-xl: 0 20px 60px rgba(15,23,42,.12);
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --container: 1180px;
  --gap: 2rem;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: 0; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: 0; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
.text-accent { color: var(--blue); }
.text-muted { color: var(--slate-500); }
.text-center { text-align: center; }

/* --- SKIP TO CONTENT (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  z-index: 10000;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- HEADER / NAV --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background:
    linear-gradient(180deg, rgba(13,16,19,.94) 0%, rgba(19,23,27,.92) 100%),
    url("../img/dark-paper-texture-imagegen.png") center / 640px auto repeat,
    var(--navy-deep);
  background-blend-mode: multiply, normal, normal;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200,169,139,.18);
  box-shadow: 0 6px 18px rgba(12,15,18,.14);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 6px 18px rgba(12,15,18,.18);
  background:
    linear-gradient(180deg, rgba(13,16,19,.96) 0%, rgba(17,20,24,.94) 100%),
    url("../img/dark-paper-texture-imagegen.png") center / 600px auto repeat,
    var(--navy-deep);
  border-bottom-color: rgba(200,169,139,.22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height var(--transition);
}
.site-header.scrolled .header-inner { height: 62px; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--bronze-highlight);
  transition: transform var(--transition);
}
.logo:hover { color: var(--bronze-highlight); transform: none; }
.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.34));
  transition: width var(--transition), height var(--transition), filter var(--transition);
}
.logo-mark img {
  width: 100%;
  height: 100% !important;
  object-fit: contain;
}
.site-header.scrolled .logo-mark { width: 38px; height: 38px; }
.logo-wordmark {
  display: grid;
  gap: .05rem;
  line-height: .96;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  text-transform: uppercase;
}
.logo-wordmark span,
.logo-wordmark strong {
  display: block;
  background:
    linear-gradient(100deg, var(--bronze-deep) 0%, var(--bronze-mid) 28%, var(--bronze-highlight) 52%, var(--bronze) 72%, var(--bronze-deep) 100%),
    url("../img/bronze-foil-texture-imagegen.png") center / 420px auto repeat;
  background-blend-mode: screen;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--bronze-highlight);
  text-shadow: 0 1px 0 rgba(0,0,0,.25);
}
.logo-wordmark span { font-size: .58rem; font-weight: 800; }
.logo-wordmark strong { font-size: .92rem; font-weight: 900; }
.logo-wordmark small {
  display: block;
  color: rgba(200,169,139,.74);
  font-size: .48rem;
  font-weight: 500;
  text-transform: none;
  line-height: 1.15;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  color: rgba(250,246,238,.82);
  font-size: .925rem;
  font-weight: 600;
  padding: .5rem .85rem;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--bronze-highlight);
  background: transparent;
  box-shadow: none;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .3rem;
  color: rgba(250,246,238,.82);
  font-size: .925rem;
  font-weight: 600;
  padding: .5rem .85rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.nav-dropdown-toggle:hover { color: var(--bronze-highlight); background: transparent; }
.nav-dropdown-toggle svg { width: 14px; height: 14px; transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background:
    linear-gradient(180deg, rgba(31,36,42,.94) 0%, rgba(23,27,32,.96) 100%),
    url("../img/dark-paper-texture-imagegen.png") center / 580px auto repeat;
  background-blend-mode: multiply, normal;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 50px rgba(0,0,0,.28), 0 4px 12px rgba(54,41,32,.16);
  border: 1px solid rgba(200,169,139,.28);
  padding: .5rem;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s, transform .2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: .6rem 1rem;
  color: rgba(250,246,238,.8);
  font-size: .9rem;
  border-radius: var(--radius);
}
.nav-dropdown-menu a:hover {
  background: rgba(200,169,139,.1);
  color: var(--bronze-highlight);
}

/* CTA in Nav — Metallic Bronze */
.nav-cta {
  background: linear-gradient(180deg, var(--bronze-light) 0%, var(--bronze) 48%, var(--bronze-dark) 100%) !important;
  color: #FFFCF4 !important;
  padding: .55rem 1.3rem !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: .875rem !important;
  transition: var(--transition);
  box-shadow:
    inset 0 1px 0 rgba(216,198,178,.45),
    inset 0 -1px 0 rgba(54,41,32,.35),
    0 2px 8px rgba(54,41,32,.28);
  text-shadow: 0 1px 0 rgba(54,41,32,.3);
  margin-left: 1.75rem;
}
.nav-cta:hover {
  background: linear-gradient(180deg, var(--bronze-highlight) 0%, var(--bronze-mid) 48%, var(--bronze) 100%) !important;
  color: #FFFCF4 !important;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(216,198,178,.6),
    inset 0 -1px 0 rgba(54,41,32,.4),
    0 4px 14px rgba(54,41,32,.35);
}
.main-nav .nav-cta { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--bronze-highlight), var(--bronze));
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,15,18,.62);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-nav-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background:
    linear-gradient(180deg, rgba(23,27,32,.96) 0%, rgba(35,41,48,.96) 100%),
    url("../img/dark-paper-texture-imagegen.png") center / 620px auto repeat;
  background-blend-mode: multiply, normal;
  z-index: 1050;
  padding: 5rem 1.5rem 2rem;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -22px 0 60px rgba(0,0,0,.32);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav a {
  display: block;
  padding: .75rem 0;
  color: rgba(250,246,238,.82);
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(200,169,139,.18);
}
.mobile-nav a:hover { color: var(--bronze-highlight); }
.mobile-nav .mobile-nav-cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: linear-gradient(180deg, var(--bronze-highlight), var(--bronze) 54%, var(--bronze-dark));
  color: #FFFCF4;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  width: 100%;
}

/* --- HERO --- */
.hero {
  position: relative;
  padding: 9.25rem 0 10.5rem;
  background:
    /* Geometrisches Bronze-Liniennetz mit Metallic-Gradient + Glanzpunkte (wie auf dem Flyer) */
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 700' preserveAspectRatio='none'><defs><linearGradient id='b' x1='0' x2='1' y1='0' y2='1'><stop offset='0' stop-color='%23362920'/><stop offset='0.35' stop-color='%239E826A'/><stop offset='0.55' stop-color='%23C8A98B'/><stop offset='0.75' stop-color='%239E826A'/><stop offset='1' stop-color='%23362920'/></linearGradient><radialGradient id='n'><stop offset='0' stop-color='%23C8A98B' stop-opacity='1'/><stop offset='0.5' stop-color='%23B79B82' stop-opacity='0.8'/><stop offset='1' stop-color='%23806650' stop-opacity='0'/></radialGradient></defs><g fill='none' stroke='url(%23b)' stroke-width='0.9' stroke-opacity='0.85'><path d='M-20 90 L210 30 L420 140 L640 60 L880 170 L1100 80 L1240 200'/><path d='M-20 220 L180 320 L380 240 L590 360 L820 280 L1040 380 L1240 300'/><path d='M60 -10 L180 320 L420 140 L210 30 Z'/><path d='M420 140 L640 60 L590 360 L380 240 Z'/><path d='M640 60 L880 170 L820 280 L590 360 Z'/><path d='M880 170 L1100 80 L1240 300 L1040 380 L820 280 Z'/><path d='M-20 90 L210 30 L60 -10 Z'/><path d='M210 30 L380 240 L180 320 L-20 220 L-20 90 Z'/><path d='M0 0 L210 30'/><path d='M340 -10 L420 140'/><path d='M540 -10 L640 60'/><path d='M780 -10 L880 170'/><path d='M1000 -10 L1100 80'/></g><g fill='url(%23n)'><circle cx='210' cy='30' r='4'/><circle cx='420' cy='140' r='4'/><circle cx='640' cy='60' r='4'/><circle cx='880' cy='170' r='4'/><circle cx='1100' cy='80' r='4'/><circle cx='180' cy='320' r='3.5'/><circle cx='380' cy='240' r='3.5'/><circle cx='590' cy='360' r='3.5'/><circle cx='820' cy='280' r='3.5'/><circle cx='1040' cy='380' r='3.5'/></g></svg>") top center / 100% auto no-repeat,
    linear-gradient(145deg, rgba(18,22,26,.5) 0%, rgba(36,43,49,.24) 45%, rgba(12,15,18,.54) 100%),
    url("../img/dark-paper-texture-imagegen.png") center / 920px auto repeat,
    /* Anthrazit mit subtle warmer Tönung */
    linear-gradient(140deg, var(--navy-deep) 0%, var(--navy-warm) 45%, var(--navy-mid) 100%);
  background-blend-mode: normal, multiply, normal, normal;
  color: #FAF6EE;
  overflow: hidden;
}
/* Warmer Bronze-Glow rechts oben (wie reflektiertes Licht auf Papier) */
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(200,169,139,.12) 0%, rgba(128,102,80,.06) 35%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Wellenübergang mit echten Metallic-Bronze-Linien (3 parallel, wie im Flyer) */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 160px;
  pointer-events: none;
  z-index: 2;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 160' preserveAspectRatio='none'><defs><linearGradient id='w' x1='0' y1='0' x2='1' y2='0'><stop offset='0' stop-color='%23362920'/><stop offset='0.25' stop-color='%239E826A'/><stop offset='0.5' stop-color='%23C8A98B'/><stop offset='0.75' stop-color='%239E826A'/><stop offset='1' stop-color='%23362920'/></linearGradient></defs><path d='M0 110 C 280 30, 560 30, 820 86 C 1000 124, 1100 124, 1200 96 L1200 160 L0 160 Z' fill='%23F2EDE4'/><g fill='none' stroke='url(%23w)' stroke-linecap='round'><path d='M0 78 C 280 -2, 560 -2, 820 56 C 1000 92, 1100 92, 1200 64' stroke-width='1.4' opacity='0.85'/><path d='M0 92 C 280 12, 560 12, 820 70 C 1000 104, 1100 104, 1200 78' stroke-width='1.6' opacity='0.95'/><path d='M0 106 C 280 26, 560 26, 820 82 C 1000 118, 1100 118, 1200 92' stroke-width='1.3' opacity='0.75'/></g></svg>") bottom center / 100% 160px no-repeat;
}
.hero .container { position: relative; z-index: 1; }
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  transform: translateY(-.75rem);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,169,139,.1);
  border: 1px solid rgba(200,169,139,.28);
  padding: .4rem 1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
  color: var(--bronze-highlight);
}
.hero h1 {
  color: var(--bronze-highlight);
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  margin-bottom: 1rem;
  line-height: 1.1;
  background:
    linear-gradient(105deg, #362920 0%, #806650 24%, #C8A98B 47%, #9E826A 62%, #5F4734 100%),
    url("../img/bronze-foil-texture-imagegen.png") center / 720px auto repeat;
  background-blend-mode: screen;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 1px rgba(0,0,0,.26)) drop-shadow(0 12px 20px rgba(0,0,0,.18));
  display: inline-block;
}
/* Bronze-Metallic-Slogan im Stil des Flyers */
.hero-slogan {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: .02em;
  margin-bottom: 1.5rem !important;
  background:
    linear-gradient(95deg, var(--bronze-deep) 0%, var(--bronze-mid) 30%, var(--bronze-highlight) 50%, var(--bronze-mid) 70%, var(--bronze-deep) 100%),
    url("../img/bronze-foil-texture-imagegen.png") center / 520px auto repeat;
  background-blend-mode: screen;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.3));
  display: inline-block;
}
.hero p {
  font-size: 1.15rem;
  opacity: .92;
  line-height: 1.7;
  margin-bottom: 1.6rem;
  max-width: 520px;
  color: rgba(250,246,238,.92);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Small hero for subpages */
.hero-small {
  padding: 7.5rem 0 7rem;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' preserveAspectRatio='none'><defs><linearGradient id='b2' x1='0' x2='1' y1='0' y2='1'><stop offset='0' stop-color='%23362920'/><stop offset='0.35' stop-color='%239E826A'/><stop offset='0.55' stop-color='%23C8A98B'/><stop offset='0.75' stop-color='%239E826A'/><stop offset='1' stop-color='%23362920'/></linearGradient><radialGradient id='n2'><stop offset='0' stop-color='%23C8A98B' stop-opacity='1'/><stop offset='0.5' stop-color='%23B79B82' stop-opacity='0.7'/><stop offset='1' stop-color='%23806650' stop-opacity='0'/></radialGradient></defs><g fill='none' stroke='url(%23b2)' stroke-width='0.9' stroke-opacity='0.8'><path d='M-20 60 L210 20 L420 110 L640 40 L880 130 L1100 60 L1240 150'/><path d='M-20 180 L180 250 L380 200 L590 280 L820 220 L1040 300 L1240 250'/><path d='M60 -10 L180 250 L420 110 L210 20 Z'/><path d='M420 110 L640 40 L590 280 L380 200 Z'/><path d='M640 40 L880 130 L820 220 L590 280 Z'/><path d='M880 130 L1100 60 L1240 250 L1040 300 L820 220 Z'/></g><g fill='url(%23n2)'><circle cx='210' cy='20' r='3.5'/><circle cx='420' cy='110' r='3.5'/><circle cx='640' cy='40' r='3.5'/><circle cx='880' cy='130' r='3.5'/><circle cx='1100' cy='60' r='3.5'/></g></svg>") top center / 100% auto no-repeat,
    linear-gradient(145deg, rgba(18,22,26,.5) 0%, rgba(36,43,49,.24) 45%, rgba(12,15,18,.54) 100%),
    url("../img/dark-paper-texture-imagegen.png") center / 920px auto repeat,
    linear-gradient(140deg, var(--navy-deep) 0%, var(--navy-warm) 45%, var(--navy-mid) 100%);
  background-blend-mode: normal, multiply, normal, normal;
  color: #FAF6EE;
  position: relative;
  overflow: hidden;
}
.hero-small::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% -20%, rgba(200,169,139,.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-small::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 110px;
  pointer-events: none;
  z-index: 2;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 110' preserveAspectRatio='none'><defs><linearGradient id='w2' x1='0' y1='0' x2='1' y2='0'><stop offset='0' stop-color='%23362920'/><stop offset='0.25' stop-color='%239E826A'/><stop offset='0.5' stop-color='%23C8A98B'/><stop offset='0.75' stop-color='%239E826A'/><stop offset='1' stop-color='%23362920'/></linearGradient></defs><path d='M0 76 C 280 16, 560 16, 820 56 C 1000 88, 1100 88, 1200 66 L1200 110 L0 110 Z' fill='%23F2EDE4'/><g fill='none' stroke='url(%23w2)' stroke-linecap='round'><path d='M0 56 C 280 -4, 560 -4, 820 38 C 1000 70, 1100 70, 1200 50' stroke-width='1.2' opacity='0.85'/><path d='M0 66 C 280 6, 560 6, 820 46 C 1000 78, 1100 78, 1200 58' stroke-width='1.4' opacity='0.95'/><path d='M0 76 C 280 16, 560 16, 820 56 C 1000 88, 1100 88, 1200 66' stroke-width='1.1' opacity='0.75'/></g></svg>") bottom center / 100% 110px no-repeat;
}
.hero-small h1 {
  color: var(--bronze-highlight);
  margin-bottom: .5rem;
  background:
    linear-gradient(105deg, #362920 0%, #806650 24%, #C8A98B 47%, #9E826A 62%, #5F4734 100%),
    url("../img/bronze-foil-texture-imagegen.png") center / 640px auto repeat;
  background-blend-mode: screen;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 1px rgba(0,0,0,.26));
}
.hero-small p { opacity: .95; max-width: 600px; }

/* --- HERO ANIMATIONS (service pages) --- */
.hero-anim {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 1;
  /* Clip stays above the new copper wave overlay */
  clip-path: inset(0 0 90px 0);
}
.hero-small .container { position: relative; z-index: 3; transform: translateY(-.55rem); }

/* Rise-up animation */
.hero-anim-rise {
  opacity: 0;
  transform: translateY(100%);
  animation: heroRise 1.2s cubic-bezier(.23,1,.32,1) .3s forwards;
}
@keyframes heroRise {
  to { opacity: .2; transform: translateY(0); }
}

/* Shared SVG sizing */
.hero-anim svg { width: 100%; height: auto; display: block; }

/* Glasreinigung — bleibt konsistent mit hero-small */
.hero-glass-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
}
.hero-glass-section::after {
  z-index: 2;
}

/* Glasreinigung — Glass overlay on entire hero */
.hero-glass-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(165deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,.04) 30%, rgba(255,255,255,.015) 50%, rgba(255,255,255,.035) 70%, rgba(255,255,255,.01) 100%);
  box-shadow: inset 0 0 60px rgba(255,255,255,.02), inset 0 1px 0 rgba(255,255,255,.05);
}
.hero-glass-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 35%, rgba(255,255,255,.03) 46%, rgba(255,255,255,.06) 50%, rgba(255,255,255,.03) 54%, transparent 65%);
  background-size: 250% 100%;
  animation: glassSheen 6s ease-in-out infinite;
}
@keyframes glassSheen {
  0%   { background-position: 120% 50%; }
  50%  { background-position: -20% 50%; }
  100% { background-position: 120% 50%; }
}

/* Glasreinigung — Sponge wipe animation */
.hero-anim-glass {
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-55%);
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 1;
}
.hero-anim-glass svg { width: 100%; height: 100%; overflow: visible; }

/* Baureinigung — Tools */
.hero-anim-tools svg { width: 100%; height: auto; display: block; }

/* Winterdienst — Snow */
.hero-anim-winter {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-anim-winter .snowflake {
  position: absolute;
  top: -10px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  animation: snowfall linear infinite;
  user-select: none;
}
.hero-anim-winter .snowflake:nth-child(1)  { left: 4%;  animation-duration: 6s;  animation-delay: 0s;   font-size: 8px;  }
.hero-anim-winter .snowflake:nth-child(2)  { left: 11%; animation-duration: 8s;  animation-delay: .8s;  font-size: 6px;  opacity:.3; }
.hero-anim-winter .snowflake:nth-child(3)  { left: 20%; animation-duration: 7s;  animation-delay: .3s;  font-size: 10px; }
.hero-anim-winter .snowflake:nth-child(4)  { left: 28%; animation-duration: 9s;  animation-delay: 1.5s; font-size: 7px;  opacity:.35; }
.hero-anim-winter .snowflake:nth-child(5)  { left: 38%; animation-duration: 6.5s;animation-delay: .1s;  font-size: 9px;  }
.hero-anim-winter .snowflake:nth-child(6)  { left: 47%; animation-duration: 8.5s;animation-delay: 1s;   font-size: 6px;  opacity:.3; }
.hero-anim-winter .snowflake:nth-child(7)  { left: 55%; animation-duration: 7.5s;animation-delay: .5s;  font-size: 11px; }
.hero-anim-winter .snowflake:nth-child(8)  { left: 65%; animation-duration: 6s;  animation-delay: 2s;   font-size: 7px;  opacity:.35; }
.hero-anim-winter .snowflake:nth-child(9)  { left: 73%; animation-duration: 9s;  animation-delay: .2s;  font-size: 8px;  }
.hero-anim-winter .snowflake:nth-child(10) { left: 82%; animation-duration: 7s;  animation-delay: 1.2s; font-size: 9px;  }
.hero-anim-winter .snowflake:nth-child(11) { left: 90%; animation-duration: 8s;  animation-delay: 2.5s; font-size: 6px;  opacity:.3; }
.hero-anim-winter .snowflake:nth-child(12) { left: 96%; animation-duration: 6.5s;animation-delay: .7s;  font-size: 8px;  }
/* Snow ground — follows the diagonal */
.hero-anim-snow-ground {
  position: absolute;
  bottom: 90px;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 2;
  pointer-events: none;
}
.hero-anim-snow-ground svg { width: 100%; height: 100%; display: block; }

/* --- BREADCRUMB --- */
.breadcrumb {
  padding: 1rem 0;
  font-size: .875rem;
  color: var(--slate-500);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 .4rem; color: var(--slate-300); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  letter-spacing: .01em;
}
/* Metallic bronze primary — vertikaler Glanzverlauf wie polierter Metall */
.btn-primary {
  background: linear-gradient(180deg, var(--bronze-light) 0%, var(--bronze) 48%, var(--bronze-dark) 100%);
  color: #FFFCF4;
  box-shadow:
    inset 0 1px 0 rgba(216,198,178,.55),
    inset 0 -1px 0 rgba(54,41,32,.4),
    0 4px 14px rgba(54,41,32,.3),
    0 2px 4px rgba(54,41,32,.18);
  text-shadow: 0 1px 0 rgba(54,41,32,.35);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--bronze-highlight) 0%, var(--bronze-mid) 48%, var(--bronze) 100%);
  color: #FFFCF4;
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(216,198,178,.7),
    inset 0 -1px 0 rgba(54,41,32,.45),
    0 8px 24px rgba(54,41,32,.4),
    0 2px 6px rgba(54,41,32,.22);
}
.btn-outline {
  background: transparent;
  color: var(--bronze-highlight);
  border: 1.5px solid rgba(200,169,139,.5);
  box-shadow: inset 0 0 0 1px rgba(200,169,139,.08);
}
.btn-outline:hover {
  background: rgba(200,169,139,.08);
  color: var(--bronze-highlight);
  border-color: rgba(200,169,139,.85);
  box-shadow: inset 0 0 0 1px rgba(200,169,139,.12), 0 0 18px rgba(200,169,139,.15);
}
.btn-secondary {
  background: var(--paper-bright);
  color: var(--bronze-dark);
  box-shadow: inset 0 0 0 1px rgba(54,41,32,.18);
}
.btn-secondary:hover {
  background: var(--paper-warm);
  color: var(--bronze-deep);
  box-shadow: inset 0 0 0 1px rgba(54,41,32,.3);
}
.btn-white {
  background: var(--paper-bright);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(54,41,32,.12), inset 0 0 0 1px rgba(54,41,32,.08);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(54,41,32,.18), inset 0 0 0 1px rgba(54,41,32,.14);
}
.btn svg { width: 18px; height: 18px; }

/* --- SECTIONS --- */
.section {
  padding: 5rem 0;
}
.hero + .section { padding-top: 2.75rem; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }
.section-gray { background: var(--paper-warm); }
.section-blue { background: var(--paper); }
.section-navy {
  background:
    linear-gradient(135deg, rgba(19,23,27,.9), rgba(43,50,58,.86)),
    url("../img/dark-paper-texture-imagegen.png") center / 920px auto repeat,
    linear-gradient(135deg, var(--navy-deep), var(--navy), var(--navy-mid));
  background-blend-mode: multiply, normal, normal;
  color: var(--white);
}
.section-navy h2,
.section-navy h3 { color: var(--white); }

/* Angled Divider (top of section) */
.section-angled {
  position: relative;
}
.section-angled::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header p {
  color: var(--slate-500);
  font-size: 1.1rem;
  margin-top: .75rem;
}
.section-label {
  display: inline-block;
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: .75rem;
  background: linear-gradient(95deg, var(--bronze-deep) 0%, var(--bronze-mid) 35%, var(--bronze-highlight) 50%, var(--bronze-mid) 65%, var(--bronze-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* --- GRID --- */
.grid {
  display: grid;
  gap: var(--gap);
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* --- SERVICE CARDS --- */
.service-card {
  background: var(--paper-bright);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(54,41,32,.08), 0 4px 12px rgba(54,41,32,.06);
  border: 1px solid rgba(54,41,32,.1);
  transition: transform .35s cubic-bezier(.4,0,.2,1), box-shadow .35s cubic-bezier(.4,0,.2,1), border-color .35s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
/* Animated gradient sweep on hover */
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(128,102,80,.06), transparent);
  transition: left .5s ease;
  pointer-events: none;
}
.service-card:hover::before { left: 100%; }
/* Subtle animated border glow */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color .3s, box-shadow .3s;
  pointer-events: none;
}
.service-card:hover::after {
  border-color: var(--bronze);
  box-shadow: inset 0 0 0 1px rgba(128,102,80,.18);
}
.service-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 18px 50px rgba(54,41,32,.18), 0 4px 12px rgba(54,41,32,.1);
  border-color: transparent;
}
/* Pulsing icon on idle to draw attention */
.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--paper-bright) 0%, var(--paper-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background .3s, transform .3s, box-shadow .3s;
  animation: icon-pulse 2.5s ease-in-out infinite;
  box-shadow: inset 0 0 0 1px rgba(54,41,32,.12);
}
@keyframes icon-pulse {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(54,41,32,.12), 0 0 0 0 rgba(128,102,80,.25); }
  50% { box-shadow: inset 0 0 0 1px rgba(54,41,32,.12), 0 0 0 8px rgba(128,102,80,0); }
}
.service-card:hover .service-card-icon {
  background: linear-gradient(180deg, var(--bronze-light) 0%, var(--bronze) 50%, var(--bronze-dark) 100%);
  transform: scale(1.1) rotate(-3deg);
  animation: none;
  box-shadow:
    inset 0 1px 0 rgba(216,198,178,.4),
    inset 0 -1px 0 rgba(54,41,32,.3),
    0 6px 20px rgba(54,41,32,.4);
}
.service-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
.service-card:hover .service-card-icon svg { stroke: var(--white); }
.service-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.service-card p { color: var(--slate-500); font-size: .95rem; margin-bottom: 1rem; }
.service-card-link {
  color: var(--blue);
  font-weight: 600;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap .3s;
}
.service-card:hover .service-card-link { gap: .6rem; }
.service-card-link svg { width: 16px; height: 16px; transition: transform .3s cubic-bezier(.4,0,.2,1); }
.service-card:hover .service-card-link svg { transform: translateX(6px); }

/* --- STATS / TRUST --- */
.stats-section {
  position: relative;
  overflow: hidden;
}

/* Pen writing animation — smooth left-to-right with natural wobble */
.pen-animation {
  position: absolute;
  top: 50%;
  left: -40px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  animation: pen-move 10s cubic-bezier(.25,.1,.25,1) infinite;
  animation-play-state: paused;
}
.stats-section.pen-active .pen-animation {
  animation-play-state: running;
}
@keyframes pen-move {
  0%   { left: -40px; opacity: 0; transform: translateY(-50%) rotate(0deg); }
  3%   { opacity: .5; transform: translateY(-50%) rotate(1deg); }
  8%   { left: 4%; transform: translateY(-52%) rotate(-1deg); }
  16%  { left: 12%; transform: translateY(-48%) rotate(1deg); }
  24%  { left: 20%; transform: translateY(-51%) rotate(-0.5deg); }
  32%  { left: 30%; transform: translateY(-49%) rotate(1deg); }
  40%  { left: 40%; transform: translateY(-52%) rotate(-1deg); }
  48%  { left: 50%; transform: translateY(-48%) rotate(0.5deg); }
  56%  { left: 60%; transform: translateY(-51%) rotate(-0.5deg); }
  64%  { left: 70%; transform: translateY(-49%) rotate(1deg); }
  72%  { left: 80%; transform: translateY(-50%) rotate(-1deg); }
  80%  { left: 88%; transform: translateY(-50%) rotate(0.5deg); }
  86%  { left: 96%; opacity: .5; transform: translateY(-50%) rotate(0deg); }
  90%  { left: calc(100% + 20px); opacity: 0; }
  100% { left: calc(100% + 20px); opacity: 0; transform: translateY(-50%); }
}
.pen-svg {
  filter: drop-shadow(1px 2px 6px rgba(0,0,0,.06));
}

/* SVG ink line — stroke-dashoffset reveal synced with pen */
.ink-line-svg {
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
  width: 100%;
  height: 20px;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}
.ink-path {
  stroke-dasharray: 1250;
  stroke-dashoffset: 1250;
  animation: ink-draw 10s cubic-bezier(.25,.1,.25,1) infinite;
  animation-play-state: paused;
}
.stats-section.pen-active .ink-path {
  animation-play-state: running;
}
@keyframes ink-draw {
  0%   { stroke-dashoffset: 1250; opacity: 0; }
  3%   { opacity: 1; }
  86%  { stroke-dashoffset: 0; opacity: 1; }
  92%  { stroke-dashoffset: 0; opacity: 0; }
  100% { stroke-dashoffset: 1250; opacity: 0; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  position: relative;
  z-index: 3;
}
.stat-item {}
.stat-number {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  color: var(--slate-500);
  font-size: .95rem;
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
}
.testimonial-stars {
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: .75rem;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--slate-700);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-author {
  font-weight: 600;
  color: var(--navy);
  font-size: .9rem;
}
.testimonial-source {
  font-size: .8rem;
  color: var(--slate-500);
  margin-top: .2rem;
}

/* --- FEATURES LIST --- */
.feature-list {
  display: grid;
  gap: 1rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--paper-bright) 0%, var(--paper-warm) 100%);
  box-shadow: inset 0 0 0 1px rgba(54,41,32,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--bronze-dark);
  fill: none;
  stroke-width: 2;
  transition: stroke .3s ease;
}
.feature-item:hover .feature-icon {
  background: linear-gradient(180deg, var(--bronze-light) 0%, var(--bronze) 50%, var(--bronze-dark) 100%);
  transform: scale(1.15);
  box-shadow:
    inset 0 1px 0 rgba(216,198,178,.4),
    inset 0 -1px 0 rgba(54,41,32,.3),
    0 4px 16px rgba(54,41,32,.4);
}
.feature-item:hover .feature-icon svg {
  stroke: #FFFCF4;
}
.feature-item h4 { margin-bottom: .2rem; }
.feature-item p { color: var(--slate-500); font-size: .95rem; margin-bottom: 0; }

/* --- FAQ ACCORDION --- */
.faq-item {
  border: 1px solid var(--slate-100);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--blue-muted); box-shadow: var(--shadow-sm); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
  cursor: pointer;
  gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--blue); }
.faq-question svg {
  width: 20px;
  height: 20px;
  stroke: var(--slate-500);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.active .faq-question svg { transform: rotate(180deg); stroke: var(--blue); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1), padding .35s;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--slate-500);
  line-height: 1.7;
}

/* --- CONTACT FORM --- */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-100);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { grid-column: 1 / -1; }
.form-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.form-input,
.form-select,
.form-textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--slate-700);
  background: var(--white);
  transition: var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(128,102,80,.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--slate-300); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .85rem;
  color: var(--slate-500);
  cursor: pointer;
}
.form-checkbox-label input[type="checkbox"] {
  margin-top: .2rem;
  accent-color: var(--blue);
}
.form-checkbox-label a { color: var(--blue); text-decoration: underline; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.active { display: block; }
.form-success svg { width: 64px; height: 64px; stroke: var(--green); margin: 0 auto 1rem; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* --- CTA SECTION --- */
.cta-section {
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' preserveAspectRatio='none'><defs><linearGradient id='bc' x1='0' x2='1' y1='0' y2='1'><stop offset='0' stop-color='%23362920'/><stop offset='0.35' stop-color='%239E826A'/><stop offset='0.55' stop-color='%23C8A98B'/><stop offset='0.75' stop-color='%239E826A'/><stop offset='1' stop-color='%23362920'/></linearGradient><radialGradient id='nc'><stop offset='0' stop-color='%23C8A98B' stop-opacity='1'/><stop offset='1' stop-color='%23806650' stop-opacity='0'/></radialGradient></defs><g fill='none' stroke='url(%23bc)' stroke-width='0.85' stroke-opacity='0.7'><path d='M-20 80 L210 30 L420 130 L640 50 L880 150 L1100 80 L1240 170'/><path d='M-20 220 L180 290 L380 220 L590 320 L820 250 L1040 330 L1240 280'/><path d='M210 30 L380 220 L420 130 Z'/><path d='M420 130 L640 50 L590 320 L380 220 Z'/><path d='M640 50 L880 150 L820 250 L590 320 Z'/></g><g fill='url(%23nc)'><circle cx='210' cy='30' r='3'/><circle cx='420' cy='130' r='3'/><circle cx='640' cy='50' r='3'/><circle cx='880' cy='150' r='3'/><circle cx='1100' cy='80' r='3'/></g></svg>") center / cover no-repeat,
    linear-gradient(145deg, rgba(18,22,26,.55), rgba(35,41,48,.28), rgba(12,15,18,.55)),
    url("../img/dark-paper-texture-imagegen.png") center / 920px auto repeat,
    linear-gradient(140deg, var(--navy-deep), var(--navy-warm), var(--navy-mid));
  background-blend-mode: normal, multiply, normal, normal;
  color: #FAF6EE;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Winter CTA — diagonal top edge + snowflakes */
.cta-winter {
  padding: 5.5rem 0 4rem;
  margin-top: 0;
}
.cta-winter::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 65px;
  background: var(--slate-100);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  z-index: 2;
}

/* Snowflakes */
.snowflakes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.snowflake {
  position: absolute;
  top: -8px;
  color: rgba(255,255,255,.5);
  font-size: 10px;
  animation: snowfall linear infinite;
  user-select: none;
}
.snowflake:nth-child(1)  { left: 5%;  animation-duration: 7s;  animation-delay: 0s;   font-size: 8px;  opacity: .4; }
.snowflake:nth-child(2)  { left: 12%; animation-duration: 9s;  animation-delay: 1s;   font-size: 6px;  opacity: .3; }
.snowflake:nth-child(3)  { left: 22%; animation-duration: 8s;  animation-delay: .5s;  font-size: 10px; opacity: .5; }
.snowflake:nth-child(4)  { left: 30%; animation-duration: 10s; animation-delay: 2s;   font-size: 7px;  opacity: .35; }
.snowflake:nth-child(5)  { left: 40%; animation-duration: 7.5s;animation-delay: 0s;   font-size: 9px;  opacity: .45; }
.snowflake:nth-child(6)  { left: 50%; animation-duration: 9.5s;animation-delay: 1.5s; font-size: 6px;  opacity: .3; }
.snowflake:nth-child(7)  { left: 60%; animation-duration: 8.5s;animation-delay: .8s;  font-size: 11px; opacity: .5; }
.snowflake:nth-child(8)  { left: 70%; animation-duration: 7s;  animation-delay: 2.5s; font-size: 7px;  opacity: .35; }
.snowflake:nth-child(9)  { left: 78%; animation-duration: 10s; animation-delay: .3s;  font-size: 8px;  opacity: .4; }
.snowflake:nth-child(10) { left: 88%; animation-duration: 8s;  animation-delay: 1.8s; font-size: 9px;  opacity: .45; }
.snowflake:nth-child(11) { left: 95%; animation-duration: 9s;  animation-delay: 3s;   font-size: 6px;  opacity: .3; }
.snowflake:nth-child(12) { left: 17%; animation-duration: 11s; animation-delay: 2.2s; font-size: 5px;  opacity: .25; }
.snowflake:nth-child(13) { left: 35%; animation-duration: 8.5s;animation-delay: 3.5s; font-size: 8px;  opacity: .4; }
.snowflake:nth-child(14) { left: 55%; animation-duration: 10s; animation-delay: .6s;  font-size: 7px;  opacity: .3; }
.snowflake:nth-child(15) { left: 82%; animation-duration: 7.5s;animation-delay: 1.2s; font-size: 10px; opacity: .45; }

@keyframes snowfall {
  0%   { transform: translateY(0) translateX(0) rotate(0deg); }
  25%  { transform: translateY(25vh) translateX(8px) rotate(90deg); }
  50%  { transform: translateY(50vh) translateX(-5px) rotate(180deg); }
  75%  { transform: translateY(75vh) translateX(10px) rotate(270deg); }
  100% { transform: translateY(110vh) translateX(-3px) rotate(360deg); }
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,.05), transparent 70%);
}
.cta-section h2 { color: var(--white); margin-bottom: .75rem; }
.cta-section p { opacity: .95; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* --- FOOTER --- */
.site-footer {
  position: relative;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400' preserveAspectRatio='none'><defs><linearGradient id='bf' x1='0' x2='1' y1='0' y2='1'><stop offset='0' stop-color='%23362920'/><stop offset='0.4' stop-color='%23806650'/><stop offset='0.55' stop-color='%23B79B82'/><stop offset='0.7' stop-color='%23806650'/><stop offset='1' stop-color='%23362920'/></linearGradient><radialGradient id='nf'><stop offset='0' stop-color='%23C8A98B' stop-opacity='0.9'/><stop offset='1' stop-color='%23806650' stop-opacity='0'/></radialGradient></defs><g fill='none' stroke='url(%23bf)' stroke-width='0.7' stroke-opacity='0.55'><path d='M-20 70 L210 30 L420 130 L640 50 L880 150 L1100 80 L1240 170'/><path d='M-20 220 L180 290 L380 220 L590 320 L820 250 L1040 330 L1240 280'/><path d='M210 30 L380 220 L420 130 Z'/><path d='M420 130 L640 50 L590 320 L380 220 Z'/><path d='M640 50 L880 150 L820 250 L590 320 Z'/></g><g fill='url(%23nf)'><circle cx='210' cy='30' r='2.5'/><circle cx='420' cy='130' r='2.5'/><circle cx='640' cy='50' r='2.5'/><circle cx='880' cy='150' r='2.5'/><circle cx='1100' cy='80' r='2.5'/></g></svg>") top center / 100% auto no-repeat,
    url("../img/dark-paper-texture-imagegen.png") center / 920px auto repeat,
    linear-gradient(180deg, var(--navy-deep) 0%, #1C2127 100%);
  background-blend-mode: normal, multiply, normal;
  color: rgba(250,246,238,.7);
  padding: 4rem 0 0;
  border-top: 1px solid rgba(128,102,80,.18);
}
/* Metallische Akzentlinie am Rand zur CTA */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(128,102,80,.4) 20%, rgba(200,169,139,.85) 50%, rgba(128,102,80,.4) 80%, transparent 100%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(128,102,80,.18);
  position: relative;
}
.footer-brand p { font-size: .95rem; line-height: 1.7; margin-top: 1rem; max-width: 300px; color: rgba(255,255,255,.7); }
.footer-heading {
  color: var(--copper-light);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  padding: .3rem 0;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--copper-light); padding-left: .35rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}
.site-footer .footer-contact-item a { color: rgba(255,255,255,.75); }
.site-footer .footer-contact-item a:hover { color: var(--copper-light); }
.section .footer-contact-item { color: var(--slate-700); }
.section .footer-contact-item a { color: var(--slate-700); }
.section .footer-contact-item a:hover { color: var(--blue); }
.section .footer-contact-item svg { stroke: var(--blue); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--copper-light); }
.footer-legal { display: flex; gap: 1.5rem; }

/* --- PAGE CONTENT (Impressum, Datenschutz) --- */
.page-content {
  padding: 3rem 0 5rem;
}
.page-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 .75rem;
  padding-top: 1rem;
}
.page-content h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 .5rem;
}
.page-content p,
.page-content li {
  color: var(--slate-700);
  line-height: 1.8;
}
.page-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-content li { margin-bottom: .35rem; }
.page-content a { text-decoration: underline; }
.legal-container { max-width: 800px; margin: 0 auto; }

/* --- SERVICE PAGE LAYOUT --- */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.service-intro-text h2 { margin-bottom: 1rem; }
.service-intro-text p { color: var(--slate-500); }
.service-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: box-shadow .4s ease, transform .4s ease;
}
.service-intro-image:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(128,102,80,.4), 0 0 60px rgba(128,102,80,.2);
}
.service-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-intro-image:hover img {
  transform: scale(1.04);
}

.service-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.benefit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-100);
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}
.benefit-card h4 { margin-bottom: .35rem; }
.benefit-card p { color: var(--slate-500); font-size: .9rem; margin-bottom: 0; }

/* --- ABOUT PAGE --- */
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
}
.value-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.value-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2;
}
.value-card h3 { margin-bottom: .5rem; }
.value-card p { color: var(--slate-500); font-size: .95rem; margin-bottom: 0; }

/* --- FLYER DESIGN SYSTEM --- */
.section {
  position: relative;
}
.section-gray,
.section-blue {
  background:
    linear-gradient(180deg, rgba(250,246,238,.9), rgba(237,229,214,.78)),
    url("../img/paper-texture-imagegen.png") center / 760px auto repeat,
    var(--paper);
  background-blend-mode: normal, multiply, normal;
  border-top: 1px solid rgba(54,41,32,.1);
  border-bottom: 1px solid rgba(54,41,32,.08);
}
.hero + .section {
  background:
    linear-gradient(180deg, rgba(242,237,228,.92), rgba(250,246,238,.92)),
    url("../img/paper-texture-imagegen.png") center / 760px auto repeat,
    var(--paper);
  background-blend-mode: normal, multiply, normal;
}
.section-header h2,
.service-intro-text h2 {
  color: var(--navy-deep);
}
.section-header p,
.service-intro-text p,
.service-card p,
.feature-item p,
.benefit-card p,
.value-card p,
.testimonial-text,
.page-content p,
.page-content li {
  color: #4E5864;
}
.section-label {
  letter-spacing: 0;
  background:
    linear-gradient(95deg, var(--bronze-deep) 0%, var(--bronze-mid) 34%, var(--bronze-highlight) 52%, var(--bronze-mid) 68%, var(--bronze-deep) 100%),
    url("../img/bronze-foil-texture-imagegen.png") center / 480px auto repeat;
  background-blend-mode: screen;
  -webkit-background-clip: text;
  background-clip: text;
}
.btn-primary,
.nav-cta,
.mobile-nav .mobile-nav-cta {
  background:
    linear-gradient(180deg, rgba(200,169,139,.68) 0%, rgba(128,102,80,.72) 50%, rgba(54,41,32,.9) 100%),
    url("../img/bronze-foil-texture-imagegen.png") center / 680px auto repeat !important;
  background-blend-mode: screen, normal !important;
  border: 1px solid rgba(200,169,139,.52);
}
.btn-secondary,
.btn-white {
  background:
    linear-gradient(180deg, rgba(250,246,238,.95), rgba(237,229,214,.9)),
    url("../img/paper-texture-imagegen.png") center / 760px auto repeat;
  background-blend-mode: normal, multiply;
  color: var(--navy-deep);
  border: 1px solid rgba(54,41,32,.16);
}
.service-card,
.testimonial-card,
.benefit-card,
.value-card,
.contact-form,
.faq-item,
.legal-container {
  background:
    linear-gradient(180deg, rgba(250,246,238,.96), rgba(242,237,228,.9)),
    url("../img/paper-texture-imagegen.png") center / 760px auto repeat,
    var(--paper-bright);
  background-blend-mode: normal, multiply, normal;
  border: 1px solid rgba(54,41,32,.18);
  border-radius: var(--radius-lg);
  box-shadow:
    0 1px 0 rgba(255,255,255,.5) inset,
    0 12px 34px rgba(54,41,32,.11),
    0 2px 8px rgba(35,41,48,.06);
}
.service-card {
  min-height: 100%;
}
.service-card::after {
  border-radius: var(--radius-lg);
}
.service-card:hover,
.benefit-card:hover,
.testimonial-card:hover {
  border-color: rgba(128,102,80,.46);
  box-shadow:
    0 1px 0 rgba(255,255,255,.55) inset,
    0 18px 45px rgba(54,41,32,.18),
    0 0 0 1px rgba(200,169,139,.18);
}
.service-card h3,
.benefit-card h4,
.value-card h3,
.testimonial-author,
.faq-question,
.form-label {
  color: var(--navy-deep);
}
.service-card-icon,
.feature-icon,
.benefit-icon,
.value-card-icon {
  background:
    linear-gradient(180deg, rgba(38,44,51,.96), rgba(25,30,35,.96)),
    url("../img/dark-paper-texture-imagegen.png") center / 420px auto repeat;
  background-blend-mode: multiply, normal;
  border: 1px solid rgba(200,169,139,.24);
  box-shadow:
    inset 0 1px 0 rgba(200,169,139,.14),
    0 6px 20px rgba(35,41,48,.12);
}
.service-card-icon svg,
.feature-icon svg,
.benefit-icon svg,
.value-card-icon svg {
  stroke: var(--bronze-highlight);
}
.stats-section {
  background:
    linear-gradient(145deg, rgba(17,20,24,.7), rgba(45,52,60,.38), rgba(15,18,22,.74)),
    url("../img/dark-paper-texture-imagegen.png") center / 920px auto repeat,
    var(--navy-deep);
  background-blend-mode: multiply, normal, normal;
  color: #FAF6EE;
  border-top: 1px solid rgba(200,169,139,.2);
  border-bottom: 1px solid rgba(200,169,139,.2);
}
.stats-section .stat-label,
.stats-section .section-header p {
  color: rgba(250,246,238,.74);
}
.stat-number,
.cta-section h2,
.section-navy h2,
.section-navy h3 {
  background:
    linear-gradient(95deg, var(--bronze-deep) 0%, var(--bronze-mid) 34%, var(--bronze-highlight) 52%, var(--bronze-mid) 68%, var(--bronze-deep) 100%),
    url("../img/bronze-foil-texture-imagegen.png") center / 620px auto repeat;
  background-blend-mode: screen;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--bronze-highlight);
}
.cta-section p,
.section-navy p {
  color: rgba(250,246,238,.82);
}
.service-intro-image {
  padding: .35rem;
  background:
    linear-gradient(135deg, rgba(200,169,139,.55), rgba(54,41,32,.55)),
    url("../img/bronze-foil-texture-imagegen.png") center / 760px auto repeat;
  background-blend-mode: screen;
  border: 1px solid rgba(54,41,32,.25);
}
.service-intro-image img {
  border-radius: calc(var(--radius-lg) - 2px);
}
.contact-form {
  position: relative;
  overflow: hidden;
}
.contact-form::before,
.service-card::marker {
  content: none;
}
.contact-form::after {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bronze-highlight), var(--bronze), transparent);
}
.form-input,
.form-select,
.form-textarea {
  background:
    linear-gradient(180deg, rgba(250,246,238,.96), rgba(242,237,228,.92)),
    url("../img/paper-texture-imagegen.png") center / 760px auto repeat;
  background-blend-mode: normal, multiply;
  border-color: rgba(54,41,32,.22);
  color: var(--navy-deep);
}
.testimonial-stars {
  color: var(--bronze);
  text-shadow: 0 1px 0 rgba(200,169,139,.35);
}
.page-content {
  background:
    linear-gradient(180deg, rgba(250,246,238,.84), rgba(242,237,228,.84)),
    url("../img/paper-texture-imagegen.png") center / 760px auto repeat;
  background-blend-mode: normal, multiply;
}
.legal-container {
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.footer-logo {
  align-items: center;
}
.site-footer .logo-wordmark small,
.site-header .logo-wordmark small {
  color: rgba(200,169,139,.72);
}

/* --- ANIMATIONS --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s, transform .6s;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s, transform .6s;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * .1s); }

/* --- RESPONSIVE --- */

/* === Tablet Landscape (1024px) === */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .service-intro { grid-template-columns: 1fr; }
  .service-benefits { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: repeat(2, 1fr); }

  /* Hero animations leicht reduziert auf Tablet */
  .hero-anim { opacity: .15 !important; }
  .hero-anim-glass { width: 160px; height: 160px; right: 5%; }

  /* Nav CTA smaller */
  .nav-cta { padding: .45rem 1rem !important; font-size: .8rem !important; }
}

/* === Tablet Portrait (768px) === */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 3.5rem 0; }
  .section-lg { padding: 4.5rem 0; }

  /* Navigation */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav, .mobile-nav-overlay { display: block; }

  /* Logo */
  .logo img { height: 36px !important; }
  .site-header.scrolled .logo img { height: 30px !important; }
  .logo-mark { width: 40px; height: 40px; }
  .site-header.scrolled .logo-mark { width: 36px; height: 36px; }
  .logo-wordmark strong { font-size: .78rem; }
  .logo-wordmark span { font-size: .5rem; }
  .logo-wordmark small { font-size: .42rem; }

  /* Hero — auf Mobile naeher an die Desktop-Komposition */
  .hero { padding: 8.4rem 0 8.8rem; }
  .hero-content { max-width: 640px; transform: translateY(-.65rem); }
  .hero-small { padding: 6.7rem 0 4.2rem; }
  .hero-small .container { transform: translateY(-.45rem); }
  .hero h1 { font-size: clamp(2.2rem, 9vw, 3.3rem); line-height: 1.1; }
  .hero p { font-size: 1.05rem; margin-bottom: 1.55rem; }
  .hero-badge { font-size: .78rem; padding: .35rem .8rem; }
  .hero::after { height: 130px; background-size: 100% 130px; }

  /* Grids */
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }

  /* Service cards */
  .service-card { padding: 1.5rem; }
  .service-card-icon { width: 48px; height: 48px; border-radius: 12px; }
  .service-card-icon svg { width: 24px; height: 24px; }

  /* Testimonials */
  .testimonial-card { padding: 1.5rem; }

  /* Contact form section */
  .contact-form { padding: 1.5rem; }

  /* Feature items */
  .feature-item { gap: .75rem; }
  .feature-icon { width: 36px; height: 36px; border-radius: 8px; }
  .feature-icon svg { width: 18px; height: 18px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  /* Service pages */
  .service-benefits { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }

  /* Hero-Animationen auf Mobile: sichtbar aber dezenter */
  .hero-anim { opacity: .1 !important; }
  .hero-anim-glass { width: 120px; height: 120px; right: 3%; }

  /* Schneeflocken beibehalten */
  .snowflakes .snowflake { font-size: 8px !important; }
  .hero-anim-winter .snowflake { font-size: 8px !important; }
  .hero-anim-snow-ground { height: 70px; }

  /* FAQ */
  .faq-question { padding: 1rem 1.25rem; font-size: .95rem; }
  .faq-answer-inner { padding: 0 1.25rem 1rem; }

  /* Breadcrumb */
  .breadcrumb { font-size: .8rem; }

  /* CTA sections — Diagonale beibehalten */
  .cta-section { padding: 3rem 0; }
  .cta-winter { padding: 4rem 0 3rem; }
  .cta-winter::after { height: 55px; }
}

/* === Large Phones (576px) === */
@media (max-width: 576px) {
  h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  h2 { font-size: clamp(1.3rem, 5vw, 1.8rem); }

  .hero { padding: 8rem 0 8.2rem; }
  .hero-small { padding: 6.2rem 0 3.9rem; }
  /* Diagonale beibehalten wie Desktop */
  .hero-small::after { height: 55px; }
  .hero::after { height: 120px; background-size: 100% 120px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: .85rem; }

  /* Benefit cards side by side on phone */
  .service-benefits { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .benefit-card { padding: 1.25rem 1rem; }
  .benefit-icon { width: 44px; height: 44px; }
  .benefit-icon svg { width: 20px; height: 20px; }

  /* About values */
  .about-values { grid-template-columns: 1fr; gap: 1.5rem; }
  .value-card { padding: 1.5rem; }

  /* Glas-Animation: sichtbar auf Mobile, nur kleiner + dezenter */
  .hero-anim-glass { width: 90px; height: 90px; right: 2%; opacity: .6; }
  /* Glas-Sheen beibehalten */

  /* Hero-Animationen dezent auf Mobile */
  .hero-anim { opacity: .08 !important; }

  /* Section header spacing */
  .section-header { margin-bottom: 2.5rem; }
  .section-header p { font-size: 1rem; }
  .section-label { font-size: .8rem; }
}

/* === Small Phones (480px) === */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .hero { padding: 7.75rem 0 7.9rem; }
  .hero-actions {
    flex-direction: row;
    gap: .55rem;
    align-items: center;
  }
  .hero-actions .btn {
    width: auto;
    min-width: 0;
    justify-content: center;
    padding: .66rem .7rem;
    font-size: .82rem;
    white-space: nowrap;
  }
  .hero-actions .btn:first-child { flex: 1.22 1 0; }
  .hero-actions .btn:nth-child(2) { flex: .95 1 0; }
  .hero-actions .btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  .hero-badge { font-size: .75rem; }

  /* Header */
  .header-inner { height: 64px; }
  .site-header.scrolled .header-inner { height: 56px; }
  .logo img { height: 32px !important; }
  .logo-mark { width: 36px; height: 36px; }
  .site-header.scrolled .logo-mark { width: 32px; height: 32px; }
  .logo-wordmark strong { font-size: .72rem; }
  .logo-wordmark span { font-size: .46rem; }
  .logo-wordmark small { font-size: .38rem; }

  /* Buttons — touch-friendly sizing */
  .btn { padding: .75rem 1.5rem; font-size: .9rem; }
  .btn-white { padding: .7rem 1.4rem; }
  .nav-cta { display: none; }

  /* Contact form */
  .contact-form { padding: 1.25rem; }
  .form-label { font-size: .8rem; }
  .form-input, .form-select, .form-textarea { padding: .65rem .85rem; font-size: .9rem; }

  /* Stats */
  .stat-number { font-size: 2rem; }

  /* Cards tighter */
  .service-card { padding: 1.25rem; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: .88rem; }

  /* Testimonials */
  .testimonial-card { padding: 1.25rem; }
  .testimonial-text { font-size: .9rem; }

  /* Footer */
  .footer-grid { gap: 1.5rem; }
  .footer-brand img { height: 28px !important; }
  .footer-logo .logo-mark { width: 40px; height: 40px; }
  .footer-logo .logo-mark img { height: 100% !important; }

  /* Mobile nav */
  .mobile-nav { width: 280px; padding: 4.5rem 1.25rem 2rem; }
  .mobile-nav a { font-size: 1rem; }

  /* CTA — Diagonale beibehalten */
  .cta-section { padding: 2.5rem 0; }
  .cta-section h2 { font-size: 1.3rem; }
  .cta-section p { font-size: .9rem; }
  .cta-winter { padding: 3.5rem 0 2.5rem; }
  .cta-winter::after { height: 50px; }

  /* Schneeflocken ALLE beibehalten wie Desktop */
  /* Keine nth-child Ausblendung mehr */

  /* Glas-Animation kleiner aber sichtbar */
  .hero-anim-glass { width: 70px; height: 70px; right: 2%; opacity: .5; }
}

/* === Very Small Phones (360px) === */
@media (max-width: 360px) {
  .container { padding: 0 .75rem; }
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.2rem; }

  .hero { padding: 7.35rem 0 7.2rem; }
  .hero-small { padding: 5.7rem 0 3.4rem; }
  /* Diagonale beibehalten */
  .hero::after { height: 105px; background-size: 100% 105px; }
  .hero-small::after { height: 45px; }
  .hero h1 { font-size: 1.95rem; }
  .hero-actions { gap: .45rem; }
  .hero-actions .btn {
    padding: .6rem .52rem;
    font-size: .72rem;
    gap: .25rem;
  }

  .header-inner { height: 58px; }
  .logo img { height: 28px !important; }
  .logo { gap: .45rem; }
  .logo-mark { width: 32px; height: 32px; }
  .logo-wordmark small { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .stat-number { font-size: 1.8rem; }

  .btn { padding: .65rem 1.2rem; font-size: .85rem; }

  .service-benefits { grid-template-columns: 1fr; }

  .mobile-nav { width: 260px; }

  /* Animationen auch auf kleinstem Screen */
  .hero-anim { opacity: .06 !important; }
  .hero-anim-glass { width: 60px; height: 60px; }
  .cta-winter::after { height: 40px; }
}

/* === iPad Pro / Tablet Landscape (1024-1200px) === */
@media (min-width: 769px) and (max-width: 1200px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hero-content { max-width: 540px; }
  .service-intro { gap: 2rem; }
}

/* === Touch device — no hover animations that look wrong on tap === */
@media (hover: none) {
  .service-card:hover { transform: none; }
  .service-card:hover::before { left: -100%; }
  .service-card:hover::after { border-color: transparent; box-shadow: none; }
  .service-card:hover .service-card-icon { background: var(--blue-pale); transform: none; animation: icon-pulse 2.5s ease-in-out infinite; box-shadow: none; }
  .service-card:hover .service-card-icon svg { stroke: var(--blue); }
  .service-card:hover .service-card-link { gap: .35rem; }
  .service-card:hover .service-card-link svg { transform: none; }

  .service-intro-image:hover { transform: none; box-shadow: var(--shadow-lg); }
  .service-intro-image:hover img { transform: none; }

  .benefit-card:hover { transform: none; box-shadow: var(--shadow-sm); }

  .feature-item:hover .feature-icon { background: var(--blue-pale); transform: none; box-shadow: none; }
  .feature-item:hover .feature-icon svg { stroke: var(--blue); }
}

/* === Landscape phones === */
@media (max-height: 500px) and (orientation: landscape) {
  .hero { padding: 5rem 0 10.5rem; }
  .hero-small { padding: 4.8rem 0 5.5rem; }
  .hero h1 { font-size: 1.6rem; }
  .hero p { font-size: .9rem; margin-bottom: 1rem; }
  .hero-small h1 { font-size: clamp(1.55rem, 4.7vw, 2.35rem); }
  .hero-small p { font-size: .95rem; line-height: 1.55; max-width: 680px; }
  .hero-actions { gap: .5rem; }
  .hero-badge { display: none; }
  .header-inner { height: 56px; }
}

/* === Print === */
@media print {
  .site-header, .hamburger, .mobile-nav, .mobile-nav-overlay,
  .hero-anim, .hero-anim-glass, .hero-glass-overlay,
  .snowflakes, .hero-anim-winter, .hero-anim-snow-ground,
  .pen-animation, .ink-line-svg, .skip-link { display: none !important; }
  .hero, .hero-small, .cta-section, .section-navy { background: #eee !important; color: #333 !important; }
  .hero h1, .hero-small h1, .cta-section h2 { color: #333 !important; }
  body { font-size: 12pt; }
  .section { padding: 1.5rem 0; }
}
