/* ============================================================
   Brunner Zimmerei — Theme
   Farbe: #00660a  |  Bebas Neue + Source Sans 3
   Klassen basieren auf dem tatsächlichen Contao-HTML-Output
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Source+Sans+3:wght@300;400;600;700&display=swap');

/* ── Variablen ─────────────────────────────────────────────── */
:root {
  --bg:        #FAF8F4;
  --bg-alt:    #F0EBE3;
  --text:      #2A1F14;
  --gray:      #7A6E65;
  --border:    rgba(42,31,20,0.12);
  --green:     #00660a;
  --green-d:   #004d07;
  --green-dark:#0d2b10;
  --green-mid: #007d0c;
  --gold:      #D4A96A;
  --t:         0.25s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; transition: color var(--t); }
ul { list-style: none; }
#wrapper, #container, #main, #main > .inside { width: 100%; max-width: 100%; }
.mod_article { padding: 0; max-width: none; }
.invisible { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 140px;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: height var(--t), background var(--t), border-color var(--t), box-shadow var(--t);
}
#header.scrolled {
  height: 80px;
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 32px rgba(42,31,20,0.08);
}
#header > .inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 64px;
  gap: 16px;
}

/* Logo */
.header-logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.site-logo {
  height: 120px;
  width: auto;
  display: block;
  transition: height var(--t);
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
}
#header.scrolled .site-logo { height: 60px; filter: none; }

/* Contao mod_navigation */
#header .mod_navigation { display: flex; align-items: center; flex: 1; justify-content: flex-end; }
#header .mod_navigation > ul.level_1 { display: flex; align-items: center; gap: 4px; }
#header .mod_navigation > ul.level_1 > li { position: relative; }

#header:not(.scrolled) .mod_navigation > ul.level_1 > li > a,
#header:not(.scrolled) .mod_navigation > ul.level_1 > li > strong { color: rgba(255,255,255,0.88); }
#header:not(.scrolled) .mod_navigation > ul.level_1 > li > a::after,
#header:not(.scrolled) .mod_navigation > ul.level_1 > li > strong::after { background: #fff; }
#header:not(.scrolled) .mod_navigation > ul.level_1 > li > a:hover { background: rgba(255,255,255,0.12); color: #fff; }
#header:not(.scrolled) .mod_navigation > ul.level_1 > li.trail > a,
#header:not(.scrolled) .mod_navigation > ul.level_1 > li.active > strong {
  color: #fff;
  background: var(--green);
}
#header:not(.scrolled) .mod_navigation > ul.level_1 > li.trail > a:hover { background: var(--green-mid); }

#header .mod_navigation > ul.level_1 > li > a,
#header .mod_navigation > ul.level_1 > li > strong {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: rgba(42,31,20,0.65);
  padding: 10px 16px;
  border-radius: 8px;
  position: relative;
  transition: color var(--t), background var(--t);
  text-decoration: none;
  text-shadow: none;
}
#header .mod_navigation > ul.level_1 > li > a::after,
#header .mod_navigation > ul.level_1 > li > strong::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 16px; right: 16px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
  border-radius: 2px;
}
#header .mod_navigation > ul.level_1 > li > a:hover { color: var(--text); background: rgba(0,102,10,0.06); }
#header .mod_navigation > ul.level_1 > li > a:hover::after { transform: scaleX(1); }
#header .mod_navigation > ul.level_1 > li.trail > a,
#header .mod_navigation > ul.level_1 > li.active > strong {
  color: #fff;
  background: var(--green);
}
#header .mod_navigation > ul.level_1 > li.trail > a::after,
#header .mod_navigation > ul.level_1 > li.active > strong::after { display: none; }
#header .mod_navigation > ul.level_1 > li.trail > a:hover { background: var(--green-mid); }

/* Dropdown */
#header .mod_navigation ul.level_2 {
  position: absolute;
  top: calc(100% + 4px); left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(42,31,20,0.12);
  min-width: 200px;
  padding: 6px;
  opacity: 0; visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--t);
  z-index: 200;
}
#header .mod_navigation li:hover > ul.level_2,
#header .mod_navigation li:focus-within > ul.level_2 { opacity: 1; visibility: visible; transform: translateY(0); }
#header .mod_navigation ul.level_2 li > a,
#header .mod_navigation ul.level_2 li > strong {
  display: block;
  padding: 8px 14px;
  font-size: 15px;
  color: var(--text);
  border-radius: 6px;
  transition: all var(--t);
  text-shadow: none;
}
#header .mod_navigation ul.level_2 li > a:hover { color: var(--green); background: rgba(0,102,10,0.06); }
#header .mod_navigation ul.level_2 li > a::after { display: none; }
#header .mod_navigation ul.level_2 li.active > strong { color: var(--green); font-weight: 700; }

/* CTA-Button (letztes Level-1-Item via Klasse im Contao-Backend) */
.header-cta { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.header-contact-btn {
  background: var(--gold);
  color: var(--text);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 2px 16px rgba(212,169,106,0.4);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.header-contact-btn:hover { background: #c79a54; color: var(--text); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(212,169,106,0.5); }
.header-phone { display: none; }
.nav-toggle-contact { display: none; }

/* Hamburger (nav-toggle = bestehende Contao-Klasse) */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 300;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px; height: 48px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  border-radius: 10px;
  transition: background var(--t);
  flex-shrink: 0;
}
.nav-toggle:hover { background: rgba(0,102,10,0.08); }
#header:not(.scrolled) .nav-toggle:hover { background: rgba(255,255,255,0.12); }
.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.38s cubic-bezier(.4,0,.2,1), opacity 0.25s, width 0.38s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.nav-toggle span:nth-child(1) { width: 26px; }
.nav-toggle span:nth-child(2) { width: 20px; }
.nav-toggle span:nth-child(3) { width: 26px; }
#header:not(.scrolled) .nav-toggle span { background: #fff; }
#header:not(.scrolled) .nav-toggle.active span { background: var(--text); }
.nav-toggle.active span:nth-child(1) { width: 26px; transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { width: 26px; transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav-Panel (Contao mod_navigation als Slide-Panel) */
@media (max-width: 1080px) {
  #header > .inside { padding: 0 24px; }
  .header-contact-btn { display: none; }
  .nav-toggle { display: flex; }

  #header .mod_navigation {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    height: 100vh;
    height: 100dvh;
    width: min(340px, 100vw);
    background: var(--bg);
    z-index: 290;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(.4,0,.2,1),
                box-shadow 0.42s ease;
    overflow-y: auto;
    box-shadow: none;
  }
  #header .mod_navigation.open {
    transform: translateX(0);
    box-shadow: -8px 0 48px rgba(42,31,20,0.15);
  }
  #header .mod_navigation::before {
    content: 'Menü';
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
  }
  #header .mod_navigation > ul.level_1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  #header .mod_navigation > ul.level_1 > li {
    width: 100%;
    border-bottom: 1px solid var(--border);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  #header .mod_navigation.open > ul.level_1 > li { opacity: 1; transform: translateY(0); }
  #header .mod_navigation.open > ul.level_1 > li:nth-child(1) { transition-delay: 0.14s; }
  #header .mod_navigation.open > ul.level_1 > li:nth-child(2) { transition-delay: 0.19s; }
  #header .mod_navigation.open > ul.level_1 > li:nth-child(3) { transition-delay: 0.24s; }
  #header .mod_navigation.open > ul.level_1 > li:nth-child(4) { transition-delay: 0.29s; }
  #header .mod_navigation.open > ul.level_1 > li:nth-child(5) { transition-delay: 0.34s; }
  #header .mod_navigation > ul.level_1 > li:last-child { border-bottom: none; }
  #header .mod_navigation > ul.level_1 > li > a,
  #header .mod_navigation > ul.level_1 > li > strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 8vw, 52px);
    letter-spacing: 0.05em;
    color: var(--text) !important;
    padding: 10px 0;
    border-radius: 0;
    width: 100%;
    text-shadow: none;
    transition: color var(--t), padding-left var(--t);
  }
  #header .mod_navigation > ul.level_1 > li > a::after { display: none; }
  #header .mod_navigation > ul.level_1 > li > a:hover { color: var(--green) !important; background: none; padding-left: 10px; }
  #header .mod_navigation ul.level_2 {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    background: transparent;
    padding: 0 0 8px 16px;
  }
  #header .mod_navigation ul.level_2 li > a,
  #header .mod_navigation ul.level_2 li > strong { font-size: 15px; color: var(--gray); padding: 4px 0; border-radius: 0; }
  #header .mod_navigation ul.level_2 li > a:hover { color: var(--green); background: none; }
  #header .mod_navigation ul.level_2 li.active > strong { color: var(--green); font-weight: 700; }

  /* Backdrop hinter dem Nav-Panel (::after, da ::before für den "Menü"-Kicker reserviert ist) */
  #header .mod_navigation.open::after {
    content: '';
    position: fixed;
    top: 0; left: 0; right: min(340px, 100vw);
    height: 100vh;
    height: 100dvh;
    background: rgba(42,31,20,0.4);
    backdrop-filter: blur(2px);
  }

  /* Mobile: echte Kontakt-Links, angedockt unten am Nav-Panel (Modul "Header CTA") */
  .nav-toggle-contact {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 4px;
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    height: 100dvh;
    width: min(340px, 100vw);
    padding: 20px 40px 40px;
    border-top: 1px solid var(--border);
    z-index: 291;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  #header .mod_navigation.open ~ .header-cta .nav-toggle-contact {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.2s;
  }
  .nav-toggle-contact a { font-size: 15px; color: var(--gray); pointer-events: auto; }
  .nav-toggle-contact a:hover { color: var(--green); }
}

/* ── Floating Quicknav ─────────────────────────────────────── */
.floating-quicknav {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%) translateX(56px);
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.floating-quicknav.visible { opacity: 1; pointer-events: auto; transform: translateY(-50%) translateX(0); }
.floating-quicknav ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.floating-quicknav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
}
.fnav-label {
  background: rgba(250,248,244,0.97);
  backdrop-filter: blur(8px);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  height: 40px;
  display: flex;
  align-items: center;
  border-radius: 8px 0 0 8px;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  opacity: 0;
  box-shadow: -3px 0 12px rgba(42,31,20,0.07);
  transition: max-width 0.38s cubic-bezier(.4,0,.2,1), opacity 0.28s ease, padding 0.38s cubic-bezier(.4,0,.2,1);
}
.floating-quicknav a:hover .fnav-label { max-width: 180px; opacity: 1; padding: 0 14px; }
.fnav-icon {
  width: 40px; height: 40px;
  background: var(--green);
  border-radius: 8px 0 0 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: -3px 3px 14px rgba(0,102,10,0.3);
  transition: background var(--t), box-shadow var(--t);
}
.fnav-icon svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.floating-quicknav a:hover .fnav-icon { background: var(--green-mid); box-shadow: -4px 4px 20px rgba(0,102,10,0.42); }

/* ============================================================
   HOMEPAGE — CTA vor Aktuelles
   ============================================================ */
.is-home #aktuelles { display: flex; flex-direction: column; }
.is-home #cta                    { order: 1; }
.is-home #aktuelles .aktuelles-inner { order: 2; }
.is-home #kontakt                { order: 3; }

/* ============================================================
   HERO  (#hero)
   ============================================================ */
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.1); } }
@keyframes pulse    { 0%,100%{opacity:.3;} 50%{opacity:1;} }
@keyframes fadeUp   { from{opacity:0;transform:translateY(22px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeIn   { from{opacity:0;} to{opacity:1;} }

#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #111;
}
.hero-foto {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  animation: heroZoom 12s ease-out forwards;
  transform-origin: center;
  opacity: 1;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.5) 40%, #007d0c 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 64px 96px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 80px;
  animation: fadeUp 0.9s cubic-bezier(.22,.68,0,1.05) both 0.3s;
}
.hero-tag {
  display: none; /* Eyebrow entfernt */
}
#hero .hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #F0EDE8;
  font-weight: 400;
  margin-bottom: 0;
}
#hero .hero-content h1 em { font-style: normal; color: var(--gold); }
#hero .hero-content h1 .line-accent { color: var(--gold); display: block; }

/* Hero-Side (rechte Spalte) */
.hero-side { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; padding-bottom: 8px; animation: fadeUp 0.7s cubic-bezier(.22,.68,0,1.1) both 0.7s; }
.hero-desc {
  font-size: 18px;
  color: rgba(240,237,232,1);
  font-weight: 300;
  line-height: 1.7;
  max-width: 280px;
  text-align: right;
}
/* Scroll-Hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(240,237,232,0.3); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; z-index: 3;
  animation: fadeIn 0.8s ease both 1.1s;
}
.scroll-line-anim {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(240,237,232,0.4));
  animation: pulse 2s ease-in-out infinite;
}

/* Fallback: alte Klassen weiterhin unterstützen */
.hero-lead {
  font-size: 18px; color: rgba(240,237,232,0.65); font-weight: 300;
  line-height: 1.7; max-width: 300px; text-align: right; margin-bottom: 24px;
}
.hero-btns { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.btn { display: inline-flex; align-items: center; padding: 14px 28px; border-radius: 6px; font-size: 15px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; transition: all var(--t); text-decoration: none; cursor: pointer; border: 2px solid transparent; white-space: nowrap; }
.btn-weiss { background: #fff; color: var(--green); box-shadow: 0 4px 20px rgba(0,0,0,0.2); }
.btn-weiss:hover { background: var(--bg-alt); color: var(--green); box-shadow: 0 6px 28px rgba(0,0,0,0.25); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.45); }
.btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.08); }
.btn-gruen { background: var(--green); color: #fff; }
.btn-gruen:hover { background: var(--green-mid); color: #fff; }

.hero-zahlen {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  grid-column: 1 / -1;
}
.hero-zahl strong { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: #fff; line-height: 1; letter-spacing: 0.04em; }
.hero-zahl span { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; display: block; }

/* ============================================================
   UNTERSEITEN HEADER
   ============================================================ */
.subpage-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-dark);
  color: #fff;
}
.subpage-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13,43,16,0.9), rgba(13,43,16,0.48) 58%, rgba(13,43,16,0.14)),
    linear-gradient(0deg, rgba(13,43,16,0.38), rgba(13,43,16,0.04) 52%);
}
.subpage-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  padding: 206px 64px 64px;
}
.subpage-hero-content h1 {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.9;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: #fff;
}
.subpage-hero-content p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.86);
  font-size: 21px;
  line-height: 1.55;
}
.subpage-hero + #container #main > .inside > .mod_article:first-child > .content-text:first-child > h1:first-child,
.subpage-hero + #container #main > .inside > .mod_article:first-child > .ce_text:first-child > h1:first-child {
  display: none;
}
.is-subpage .mod_article:not(:has(.ref-detail)):not(.mod_article--full):not(:has(.refs-grid)) {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 64px;
}
.is-subpage .mod_article:not(:has(.ref-detail)):not(.mod_article--full):not(:has(.refs-grid)) > * + * {
  margin-top: 64px;
}
.mod_article--full {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.mod_article--full > * + * {
  margin-top: 0;
}

/* Google-Maps (JS API, eigener Kartenstil): randlos volle Breite */
.gmap-container {
  width: 100%;
  height: 480px;
}
@media (max-width: 640px) {
  .gmap-container { height: 320px; }
}
/* ============================================================
   INTRO-TEXT (optionales Textelement, CSS-Klasse "intro")
   ============================================================ */
.intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.intro p {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
}
.intro p:not(:last-child) {
  margin-bottom: 16px;
}
@media (max-width: 640px) {
  .intro p { font-size: 19px; }
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

/* ============================================================
   LEISTUNGEN  (#leistungen)
   ============================================================ */
#leistungen { background: var(--bg-alt); }
.leistungen-inner { padding: 128px 64px; }
.leistungen-kopf {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 64px;
}
.leistungen-kopf > div { flex: 0 1 auto; }
.leistungen-kopf h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0;
}
.leistungen-kopf > p {
  font-size: 18px;
  color: var(--gray);
  font-weight: 300;
  max-width: 380px;
  flex-shrink: 0;
  text-align: right;
  margin: 0;
}
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}

/* Karten-Nummer (absolut oben rechts) */
.srv-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.07);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1; z-index: 2; pointer-events: none;
}
/* Karten-Kategorie */
.srv-cat {
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}

/* Karten mit Hover-Effekt */
.leistung-card {
  position: relative;
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: transform 0.9s cubic-bezier(.2,0,.1,1), box-shadow 0.9s ease;
  background: var(--bg-alt);
}
.leistung-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(42,31,20,0.22);
}
.leistung-foto {
  position: absolute;
  inset: 0;
}
.leistung-foto picture,
.leistung-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.88);
  transform: scale(1);
  transition: filter 0.9s ease, transform 0.9s ease;
}
.leistung-card:hover .leistung-foto img {
  filter: brightness(0.78);
  transform: scale(1.06);
}
.leistung-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px 28px 0;
  background: linear-gradient(to top, rgba(0,77,7,0.88) 0%, rgba(0,102,10,0.45) 50%, transparent 100%);
  transition: background 0.9s ease, padding-bottom 0.9s ease;
}
.leistung-card:hover .leistung-body {
  padding-bottom: 20px;
  background: linear-gradient(to top, rgba(0,45,5,0.98) 0%, rgba(0,77,7,0.78) 55%, transparent 100%);
}
.leistung-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.06em;
  color: #F0EDE8;
  margin: 0;
  font-weight: 400;
}

/* Kategorie: immer sichtbar */
.leistung-card .srv-cat {
  display: block;
  margin-bottom: 5px;
}

/* Text und Link: unter dem Titel, kein Platz im Ruhezustand */
.leistung-card .leistung-body > p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  transition: max-height 0.9s ease, opacity 0.8s ease, margin 0.8s ease;
}
.leistung-card:hover .leistung-body > p {
  max-height: 90px;
  opacity: 1;
  margin: 10px 0 12px;
}
.leistung-card .leistung-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8f0b0;
  text-decoration: none;
  transition: max-height 0.9s ease 0.15s, opacity 0.8s ease 0.15s;
}
.leistung-card:hover .leistung-link {
  max-height: 30px;
  opacity: 1;
}
.leistung-body ul { display: none; }
.leistung-body > p { font-size: 15px; color: #fff; font-weight: 300; line-height: 1.5; }

/* ============================================================
   REFERENZEN VORSCHAU  (#referenzen-vorschau)
   ============================================================ */
#referenzen-vorschau { background: var(--bg); }
.refs-kopf {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 128px 64px 48px;
}
.refs-kopf h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
  font-weight: 400;
  margin: 0;
}
.refs-kopf a { font-size: 15px; font-weight: 600; color: var(--green); letter-spacing: 0.04em; }
.refs-kopf a:hover { color: var(--green-mid); }
.refs-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
  padding: 0 64px 80px;
}
.refs-scroll .ref-karte {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.refs-scroll .ref-karte:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.refs-scroll .ref-karte img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: filter 0.4s, transform 0.5s;
}
.refs-scroll .ref-karte:hover img { filter: brightness(0.96); transform: scale(1.05); }
.ref-karte-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,102,10,0.88) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.refs-scroll .ref-karte:hover .ref-karte-overlay { transform: translateY(0); }
.ref-kat { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ref-karte-overlay h4 { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 0.05em; color: #F0EDE8; font-weight: 400; }

/* ============================================================
   VELUX PARTNERSCHAFT  (rsce_velux)
   ============================================================ */
.velux-partner-wrap {
  background: var(--bg-alt);
  padding: 100px 64px;
}
.velux-partner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo-Box */
.vp-media { position: relative; }
.vp-logo-box {
  background: var(--bg);
  border-radius: 4px;
  padding: 72px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(42,31,20,0.06);
}
.vp-logo-box img {
  max-width: 200px;
  width: 100%;
  height: auto;
  display: block;
}

/* Badge */
.vp-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  width: 108px;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px;
  box-shadow: 0 8px 32px rgba(0,102,10,0.32);
}
.vp-badge-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.vp-badge-lbl {
  display: block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  opacity: 0.85;
  margin-top: 2px;
}

/* Text-Seite */
.vp-text { }
.vp-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--text);
  margin: 10px 0 20px;
  font-weight: 400;
}
.vp-desc { font-size: 17px; color: var(--gray); line-height: 1.7; margin-bottom: 24px; }
.vp-desc p { margin-bottom: 12px; }
.vp-desc p:last-child { margin-bottom: 0; }

.vp-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.vp-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text);
}
.vp-benefits li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================================
   ZAHLEN  (#zahlen)
   ============================================================ */
#zahlen { background: var(--green); }
.zahlen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 64px;
  text-align: center;
  gap: 0;
}
.zahl-item { color: #fff; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.15); }
.zahl-item:last-child { border-right: none; }
.zahl-nr { font-family: 'Bebas Neue', sans-serif; font-size: 56px; line-height: 1; margin-bottom: 8px; letter-spacing: 0.04em; font-weight: 400; }
.zahl-label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.7; }

/* ============================================================
   ÜBER UNS / WER WIR SIND  (rsce_ueber_uns)
   ============================================================ */
.ueber-uns-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 64px;
  background: var(--bg);
}
/* Bild rechts: Spaltenreihenfolge tauschen */
.ueber-uns-inner.img-right .ueber-uns-media { order: 2; }
.ueber-uns-inner.img-right .ueber-uns-text  { order: 1; }

/* Bild-Collage */
.ueber-uns-media {
  position: relative;
}
.uu-img-main {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(42,31,20,0.14);
}
.uu-img-main picture,
.uu-img-main img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.uu-img-small {
  position: absolute;
  bottom: -66px;
  right: -32px;
  width: 42%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(42,31,20,0.18);
  border: 4px solid var(--bg);
}
.ueber-uns-inner.img-right .uu-img-small {
  right: auto;
  left: -32px;
}
.uu-img-small picture,
.uu-img-small img { width: 100%; display: block; object-fit: cover; }

/* Badge */
.uu-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  background: var(--green);
  color: #fff;
  padding: 14px 18px;
  border-radius: 6px;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 4px 20px rgba(0,102,10,0.35);
}
.ueber-uns-inner.img-right .uu-badge {
  left: auto;
  right: -20px;
}
.uu-badge-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.uu-badge-lbl {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}

/* Text-Seite */
.ueber-uns-text { padding-bottom: 40px; } /* Platz für kleines Bild */
.ueber-uns-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text);
  margin: 10px 0 24px;
  font-weight: 400;
}
.uu-text { font-size: 17px; color: var(--gray); line-height: 1.7; }
.uu-text p { margin-bottom: 14px; }
.uu-text p:last-child { margin-bottom: 0; }

/* Kennzahlen-Grid */
.uu-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin: 32px 0;
}
.uu-stat {
  background: var(--bg-alt);
  padding: 20px 24px;
}
.uu-stat-num {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 0.04em;
  color: var(--green);
  line-height: 1;
}
.uu-stat-lbl {
  display: block;
  font-size: 13px;
  color: var(--gray);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* Buttons */
.uu-btns { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 1rem; }
.btn-gruen {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  box-shadow: 0 2px 14px rgba(0,102,10,0.3);
}
.btn-gruen:hover { background: var(--green-mid); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,102,10,0.4); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: 13px 4px;
  border-bottom: 2px solid var(--border);
  transition: color var(--t), border-color var(--t);
  letter-spacing: 0.02em;
}
.btn-ghost::before { content: '•'; color: var(--green); font-size: 18px; }
.btn-ghost:hover { color: var(--green); border-color: var(--green); }
.btn-velux-logo {
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(42,31,20,0.08);
}
.btn-velux-logo::before { display: none; }
.btn-velux-logo img {
  width: auto;
  height: 34px;
  display: block;
}
.btn-velux-logo:hover {
  background: #fff;
  border-color: var(--green);
}

/* Responsive */
@media (max-width: 1080px) {
  .ueber-uns-inner { padding: 72px 40px; gap: 56px; }
}
@media (max-width: 768px) {
  .ueber-uns-inner { grid-template-columns: 1fr; padding: 64px 20px 80px; gap: 48px; }
  .ueber-uns-inner.img-right .ueber-uns-media { order: 1; }
  .ueber-uns-inner.img-right .ueber-uns-text  { order: 2; }
  .uu-img-small { bottom: -32px; right: -16px; width: 45%; }
  .ueber-uns-inner.img-right .uu-img-small { left: -16px; right: auto; }
  .uu-badge { left: -10px; }
  .ueber-uns-inner.img-right .uu-badge { right: -10px; left: auto; }
  .ueber-uns-text { padding-bottom: 48px; }
}

/* ============================================================
   TEAM  (rsce_team)
   ============================================================ */
.team-kopf {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.team-kopf .section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.team-kopf .section-label::before,
.team-kopf .section-label::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.team-kopf h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--text);
  font-weight: 400;
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.team-card--new-row { grid-column-start: 1; }

.team-card {
  position: relative;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(42,31,20,0.06);
  transition: transform 0.5s cubic-bezier(.2,0,.1,1), box-shadow 0.5s ease, border-color 0.5s ease;
}
.team-foto {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
a.team-foto { cursor: zoom-in; }
.team-foto picture,
.team-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(.2,0,.1,1);
}

.team-foto--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 16px),
    linear-gradient(160deg, var(--green-mid) 0%, var(--green-d) 100%);
  background-size: 220% 220%, 100% 100%;
  background-position: 0% 0%, center;
  transition: background-position 0.9s ease;
}

/* Hover-Effekte nur für Geräte mit echtem Zeigegerät (keine sticky Hover-Zustände auf Touch) */
@media (hover: hover) and (pointer: fine) {
  .team-card:hover {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 26px 48px rgba(42,31,20,0.2);
  }
  .team-card:hover .team-foto img { transform: scale(1.07); }
  .team-card:hover .team-foto--placeholder { background-position: 100% 100%, center; }
  .team-card:hover .team-funktion::after { transform: scaleX(1); }
}
.team-initials {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 4px 24px rgba(0,45,5,0.35);
}

.team-body { padding: 22px 24px 26px; }
.team-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.03em;
  line-height: 1.15;
  color: var(--text);
  font-weight: 400;
  margin: 0 0 4px;
}
.team-funktion {
  position: relative;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.team-funktion::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 120px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.team-beschr {
  font-size: 16px;
  font-style: italic;
  color: var(--gray);
  line-height: 1.5;
  margin: 0 0 10px;
}
.team-kontakt {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
}
.team-kontakt a {
  font-size: 13.5px;
  color: var(--text);
  opacity: 0.72;
  transition: color var(--t), opacity var(--t);
}
.team-kontakt a:hover { color: var(--green); opacity: 1; }

/* Responsive */
@media (max-width: 1080px) {
  .team-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: 1fr; gap: 28px; }
  .team-foto { aspect-ratio: 16 / 11; }
  .team-foto img { object-position: top center; }
  .team-initials { font-size: 48px; }
}

/* ============================================================
   AKTUELLES  (#aktuelles)
   ============================================================ */
#aktuelles { background: var(--bg-alt); }
.aktuelles-inner { padding: 128px 64px; }
.aktuelles-kopf { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 56px; }
.aktuelles-kopf h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(36px,4vw,52px); letter-spacing: 0.06em; color: var(--text); line-height: 1; font-weight: 400; margin: 0; }
.aktuelles-kopf a { font-size: 15px; font-weight: 600; color: var(--green); }
.mod_newslist { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.mod_newslist > h2 { display: none; }

/* News-Karte */
.layout_latest {
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.9s cubic-bezier(.2,0,.1,1), box-shadow 0.9s ease;
}
.layout_latest:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(42,31,20,0.14);
}

/* Bild oben — float_above überschreiben, via order ans Ende der flex-column */
.layout_latest .image_container {
  margin: 0;
  height: 260px;
  overflow: hidden;
  flex-shrink: 0;
  float: none !important;
  width: 100% !important;
  order: -1;
}
.layout_latest .image_container a {
  display: block;
  height: 100%;
}
.layout_latest .image_container img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.9s ease;
}
.layout_latest:hover .image_container img { transform: scale(1.06); }

/* Datum — Autor ausblenden via font-size:0 trick */
.layout_latest .info {
  font-size: 0;
  padding: 14px 20px 4px;
}
.layout_latest .info time {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.02em;
}

/* Titel */
.layout_latest > h2,
.layout_latest h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  padding: 6px 20px 8px;
  margin: 0;
  font-weight: 400;
}
.layout_latest h2 a { color: var(--text); text-decoration: none; transition: color var(--t); }
.layout_latest h2 a:hover { color: var(--green); }

/* Teasertext */
.layout_latest .ce_text {
  padding: 0 20px;
  flex: 1;
}
.layout_latest .ce_text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Weiterlesen */
.layout_latest .more {
  padding: 12px 20px 20px;
  margin-top: auto;
}
.layout_latest .more a {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--t);
}
.layout_latest .more a:hover { color: var(--green-mid); }

/* Platzhalter wenn kein Bild vorhanden — grüner Verlauf */
.layout_latest:not(:has(.image_container))::before {
  content: '';
  display: block;
  height: 260px;
  flex-shrink: 0;
  order: -1;
  background: linear-gradient(155deg, var(--green-mid) 0%, var(--green) 45%, var(--green-dark) 100%);
}

/* ============================================================
   CTA  (#cta)
   ============================================================ */
#cta { background: var(--green); }
.cta-inner { padding: 88px 64px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-inner > h2 { display: none; } /* Contao-Artikel-Headline ausblenden */
.cta-inner h2:not(:first-child),
.cta-inner .content-headline { display: none; }
.cta-inner p,
.cta-inner .ce_text p:last-of-type { display: none; }

/* Manuell: Wenn h2 und p nicht via Contao kommen, eigene Klassen */
.cta-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px,4vw,52px); letter-spacing: 0.06em; color: #fff; line-height: 1; font-weight: 400; }
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.75); font-weight: 300; max-width: 360px; margin-top: 8px; }
.cta-inner h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px,4vw,52px); letter-spacing: 0.06em; color: #fff; line-height: 1; font-weight: 400; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,0.75); font-weight: 300; margin: 8px 0 0; max-width: 400px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   RSCE CTA-BANNER  (rsce_cta)
   ============================================================ */
.rsce_cta { background: var(--green); }
.rsce-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 64px;
}
.rsce-cta-left { flex: 1; min-width: 0; }
.rsce-cta-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 16px;
}
.rsce-cta-h2-normal { color: #fff; }
.rsce-cta-h2-accent { color: var(--gold); }
.rsce-cta-desc { font-size: 17px; color: rgba(255,255,255,0.75); font-weight: 300; line-height: 1.65; max-width: 420px; }
.rsce-cta-desc p { margin-bottom: 6px; }
.rsce-cta-desc p:last-child { margin-bottom: 0; }
.rsce-cta-btns { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
.rsce-cta-btn {
  display: inline-block;
  padding: 16px 32px;
  background: #fff;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fff;
  white-space: nowrap;
  transition: background var(--t), color var(--t);
}
.rsce-cta-btn:hover { background: transparent; color: #fff; }
.rsce-cta-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.3);
}
.rsce-cta-btn--ghost:hover { background: rgba(255,255,255,0.1); color: #fff; border-color: #fff; }

@media (max-width: 1080px) { .rsce-cta-inner { padding: 56px 40px; gap: 32px; } }
@media (max-width: 768px) {
  .rsce-cta-inner { flex-direction: column; align-items: flex-start; padding: 48px 20px; }
  .rsce-cta-btns { flex-direction: row; flex-wrap: wrap; }
}

/* ============================================================
   FOOTER  (#footer)
   ============================================================ */
#footer { background: #0D2B10; border-top: 3px solid var(--green); }
#footer .inside { padding: 0; }
.footer-inner { padding: 64px 64px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo-bild { height: 68px; width: auto; display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 16px; color: rgba(255,255,255,0.45); line-height: 1.65; font-weight: 300; max-width: 260px; }
.footer-slogan { margin-top: 12px; font-style: italic; color: #6ee87a; font-size: 16px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 16px; color: rgba(255,255,255,0.55); font-weight: 300; transition: color var(--t); }
.footer-col ul li a:hover { color: #fff; }
.footer-kontakt { display: flex; flex-direction: column; gap: 0; }
.footer-kontakt-row { display: block; font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.5); font-weight: 300; }
.footer-kontakt-row .ico { display: none; }
.footer-kontakt-row:first-child { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 15px; color: rgba(255,255,255,0.38); }
.footer-kontakt-row a { color: rgba(255,255,255,0.55); font-weight: 300; }
.footer-kontakt-row a:hover { color: #fff; }
.footer-unten { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: 14px; color: rgba(255,255,255,0.2); flex-wrap: wrap; gap: 8px; }
.footer-unten a { color: rgba(255,255,255,0.2); transition: color var(--t); }
.footer-unten a:hover { color: rgba(255,255,255,0.6); }
.footer-links { display: flex; gap: 20px; }

/* ============================================================
   CATALOG MANAGER — REFERENZEN  (alnv/catalog-manager-bundle)
   Klassen: .refs-grid, .ref-card, .ref-card-img, .ref-overlay
   ============================================================ */

/* Listing-Modul Wrapper */
.mod_listing-table { }

/* Sektionskopf (homepage-Vorschau + volle Seite) */
.refs-kopf {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 128px 64px 48px;
  gap: 24px;
}
.refs-kopf h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
  font-weight: 400;
  margin: 0;
}
.refs-kopf-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--t);
}
.refs-kopf-link:hover { color: var(--green-mid); }

/* Alte .mod_listing-table > h2 ausblenden (wird durch .refs-kopf ersetzt) */
.mod_listing-table > h2 { display: none; }

.is-subpage .mod_listing-table:has(.refs-grid) {
  max-width: 1280px;
  margin: 0 auto;
}

/* Grid-Raster */
.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 380px;
  gap: 12px;
  padding: 0 64px 128px;
}

/* Einzelne Karte */
.ref-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
  transition: transform 0.9s cubic-bezier(.2,0,.1,1), box-shadow 0.9s ease;
}
.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(42,31,20,0.22);
}
.ref-card-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.ref-card-img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ref-card-img picture,
.ref-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transform: scale(1);
  transition: filter 0.9s ease, transform 0.9s ease;
}
.ref-card:hover .ref-card-img picture,
.ref-card:hover .ref-card-img img {
  filter: brightness(0.78);
  transform: scale(1.06);
}
.ref-card-img--placeholder { background: var(--bg-alt); }

/* Overlay — immer sichtbar, Titel unten */
.ref-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 20px 20px;
  background: linear-gradient(to top, rgba(0,77,7,0.88) 0%, rgba(0,102,10,0.45) 50%, transparent 100%);
  transition: background 0.9s ease;
}
.ref-card:hover .ref-overlay {
  background: linear-gradient(to top, rgba(0,45,5,0.98) 0%, rgba(0,77,7,0.78) 55%, transparent 100%);
}

/* Kategorie: immer sichtbar */
.ref-cat {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}

/* Titel: immer sichtbar */
.ref-overlay h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: 0.05em;
  color: #F0EDE8;
  font-weight: 400;
  margin: 0;
}

/* Untertitel: versteckt im Ruhezustand */
.ref-card .ref-subtitle {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  font-size: 15px;
  color: rgba(240,237,232,0.8);
  font-weight: 300;
  line-height: 1.4;
  transition: max-height 0.9s ease, opacity 0.8s ease, margin 0.8s ease;
}
.ref-card:hover .ref-subtitle {
  max-height: 60px;
  opacity: 1;
  margin-top: 6px;
}

/* Paginierung */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 0 64px 64px;
}
.pagination a,
.pagination span,
.pagination strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all var(--t);
}
.pagination a:hover { border-color: var(--green); background: rgba(0,102,10,0.06); color: var(--green); }
.pagination strong { background: var(--green); color: #fff; border-color: var(--green); }

/* Referenzen Detail-Seite */
.ref-detail {
  width: 100%;
  margin: 0;
  padding: 0;
}
.ref-detail-hero {
  position: relative;
  min-height: 440px;
  height: 64vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--green-dark);
  color: #fff;
}
.ref-detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.ref-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,43,16,0.92) 0%, rgba(13,43,16,0.3) 45%, rgba(13,43,16,0.58) 100%);
}
.ref-detail-year-mark {
  position: absolute;
  z-index: 1;
  top: 152px;
  right: 48px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 104px;
  line-height: 0.85;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.1);
  pointer-events: none;
}
.ref-detail-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 0 64px 48px;
}
.ref-detail-hero-content .ref-detail-meta { margin-bottom: 16px; }
.ref-detail-hero-content .ref-detail-meta .tag {
  background: transparent;
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.35);
}
.ref-detail-hero-content .ref-detail-meta .tag-muted {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.25);
}
.ref-detail-hero-content h1 {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6.5vw, 84px);
  line-height: 0.92;
  letter-spacing: 0.03em;
  font-weight: 400;
  color: #fff;
}
.ref-detail-hero-content p {
  max-width: 620px;
  margin: 16px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.5;
}
.ref-detail-img {
  margin-bottom: 40px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-alt);
}
.ref-detail-img img {
  display: block;
  width: 100%;
  height: clamp(460px, 52vw, 720px);
  object-fit: cover;
}
.ref-detail-body {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px;
}
.ref-detail-meta { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.ref-detail-meta .tag {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  background: rgba(0,102,10,0.08);
  color: var(--green);
  border: 1px solid rgba(0,102,10,0.2);
}
.ref-detail-meta .tag-muted {
  color: var(--gray);
  background: rgba(42,31,20,0.04);
  border-color: var(--border);
}
.ref-detail-body h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
  font-weight: 400;
  margin-bottom: 24px;
}
.ref-detail-subtitle {
  font-size: 20px;
  color: var(--gray);
  line-height: 1.55;
  margin: -12px 0 28px;
}
.ref-detail-facts {
  display: flex;
  flex-wrap: wrap;
  margin: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.ref-detail-fact {
  flex: 1 1 160px;
  padding: 22px 24px;
  min-width: 0;
  border-left: 1px solid var(--border);
}
.ref-detail-fact:first-child { border-left: none; }
.ref-detail-fact dt {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}
.ref-detail-fact dd {
  font-size: 15px;
  color: var(--text);
  line-height: 1.4;
}
.ref-detail-cols {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  margin: 8px 0 0;
}
.ref-detail-cols--single { grid-template-columns: 1fr; }
.ref-detail-special {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}
.ref-detail-special span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a7a38;
  margin-bottom: 8px;
}
.ref-detail-special p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--gray);
}
.ref-detail-desc { font-size: 18px; color: var(--text); line-height: 1.7; }
.ref-detail-desc p { margin-bottom: 1rem; }
.ref-detail-gallery {
  column-count: 3;
  column-gap: 12px;
  margin: 56px 0 8px;
}
.ref-detail-gallery-item {
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-alt);
  position: relative;
  cursor: zoom-in;
  break-inside: avoid;
  margin-bottom: 12px;
}
.ref-detail-gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13,43,16,0.08), rgba(13,43,16,0.72));
  opacity: 0;
  transition: opacity var(--t);
}
.ref-detail-gallery-item::after {
  content: 'Ansehen';
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -40%);
  min-width: 92px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.62);
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity var(--t), transform var(--t);
}
.ref-detail-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform var(--t), filter var(--t);
}
.ref-detail-gallery-item:hover::before,
.ref-detail-gallery-item:focus-visible::before,
.ref-detail-gallery-item:hover::after,
.ref-detail-gallery-item:focus-visible::after {
  opacity: 1;
}
.ref-detail-gallery-item:hover::after,
.ref-detail-gallery-item:focus-visible::after {
  transform: translate(-50%, -50%);
}
.ref-detail-gallery-item:hover img,
.ref-detail-gallery-item:focus-visible img {
  filter: brightness(0.82);
  transform: scale(1.06);
}

.brunner-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(13, 43, 16, 0.92);
}
.brunner-lightbox[hidden] { display: none; }
.brunner-lightbox img {
  display: block;
  max-width: min(1120px, 92vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 24px 72px rgba(0,0,0,0.45);
}
.brunner-lightbox button {
  position: fixed;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.36);
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
}
.brunner-lightbox button:hover,
.brunner-lightbox button:focus-visible {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.74);
}
.brunner-lightbox-close { top: 24px; right: 24px; }
.brunner-lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.brunner-lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.ref-detail-back { margin-top: 2rem; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  transition: border-color var(--t), background var(--t);
}
.btn-outline:hover { border-color: var(--green); background: rgba(0,102,10,0.06); color: var(--text); }

/* Referenzen-Seite: Seitenheader */
#referenzen-page { background: var(--bg); }
.page-kopf {
  padding: 120px 64px 48px;
  background: var(--bg-alt);
  border-bottom: 3px solid var(--green);
}
.page-kopf h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
  font-weight: 400;
}
.page-kopf p { font-size: 18px; color: var(--gray); margin-top: 12px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE  — Tablet
   ============================================================ */
@media (max-width: 1080px) {
  .leistungen-inner,
  .refs-kopf,
  .refs-scroll { padding-left: 40px; padding-right: 40px; }
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
  .leistung-card:nth-child(3) { grid-column: span 2; }
  .refs-scroll { grid-template-columns: 1fr 1fr; grid-template-rows: 240px 240px 240px; }
  .refs-scroll .ref-karte:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .velux-partner-wrap { padding: 72px 40px; }
  .velux-partner-inner { gap: 56px; }
  .zahlen-grid { padding: 48px 40px; }
  .aktuelles-inner { padding: 80px 40px; }
  .mod_newslist { grid-template-columns: 1fr 1fr; }
  .refs-kopf { padding: 72px 40px 32px; }
  .refs-grid { grid-template-columns: 1fr 1fr; padding: 0 40px 88px; }
  .pagination { padding: 0 40px 48px; }
  .ref-detail-body { padding: 48px 40px; }
  .ref-detail-hero { min-height: 400px; }
  .ref-detail-hero-content { padding: 0 40px 40px; }
  .ref-detail-cols { grid-template-columns: 1fr; }
  .cta-inner { padding: 64px 40px; }
  .footer-inner { padding: 48px 40px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-content { grid-template-columns: 1fr; padding: 0 40px 64px; gap: 24px; }
  .hero-lead { text-align: left; max-width: none; }
  .hero-btns { align-items: flex-start; }
  .hero-zahlen { flex-wrap: wrap; gap: 1.5rem; }
  .subpage-hero { min-height: 340px; }
  .subpage-hero-content { padding: 130px 40px 52px; }
  .is-subpage .mod_article:not(:has(.ref-detail)):not(.mod_article--full):not(:has(.refs-grid)) { padding: 40px 40px; }
  .is-subpage .mod_article:not(:has(.ref-detail)):not(.mod_article--full):not(:has(.refs-grid)) > * + * { margin-top: 48px; }
}

/* ============================================================
   RESPONSIVE  — Mobile
   ============================================================ */
@media (max-width: 640px) {
  #header { height: 72px; }
  #header.scrolled { height: 64px; }
  #header > .inside { padding: 0 20px; }
  .site-logo { height: 52px; }
  #header.scrolled .site-logo { height: 46px; }

  .hero-content { padding: 0 20px 48px; }
  #hero .hero-content h1 { font-size: clamp(56px, 16vw, 100px); }
  .hero-zahlen { gap: 1rem; }
  .subpage-hero { min-height: 320px; }
  .subpage-hero-content { padding: 116px 20px 42px; }
  .subpage-hero-content h1 { font-size: clamp(52px, 15vw, 82px); }
  .subpage-hero-content p { font-size: 18px; line-height: 1.5; }
  .is-subpage .mod_article:not(:has(.ref-detail)):not(.mod_article--full):not(:has(.refs-grid)) { padding: 32px 20px; }
  .is-subpage .mod_article:not(:has(.ref-detail)):not(.mod_article--full):not(:has(.refs-grid)) > * + * { margin-top: 32px; }

  .leistungen-inner { padding: 80px 20px; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .leistung-card:nth-child(3) { grid-column: span 1; }

  .refs-kopf { padding: 64px 20px 28px; }
  .refs-scroll { grid-template-columns: 1fr 1fr; grid-template-rows: 160px 160px 160px; padding: 0 20px 56px; }
  .refs-scroll .ref-karte:nth-child(1) { grid-column: span 2; }

  .velux-partner-wrap { padding: 64px 20px 80px; }
  .velux-partner-inner { grid-template-columns: 1fr; gap: 48px; }
  .vp-badge { right: 16px; bottom: -20px; }
  .zahlen-grid { grid-template-columns: 1fr 1fr; padding: 40px 20px; }
  .zahl-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 16px 0; }
  .zahl-item:nth-child(even) { border-left: 1px solid rgba(255,255,255,0.15); padding-left: 20px; }

  .aktuelles-inner { padding: 72px 20px; }
  .mod_newslist { grid-template-columns: 1fr; }
  .refs-kopf { padding: 64px 20px 24px; flex-wrap: wrap; }
  .refs-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 260px; padding: 0 20px 64px; }
  .pagination { padding: 0 20px 40px; }
  .ref-detail-body { padding: 32px 20px; }
  .ref-detail-hero { min-height: 320px; }
  .ref-detail-hero-content { padding: 0 20px 28px; }
  .ref-detail-hero-content h1 { font-size: clamp(40px, 13vw, 64px); }
  .ref-detail-hero-content p { font-size: 16px; line-height: 1.5; }
  .ref-detail-year-mark { font-size: 56px; top: 88px; right: 20px; }
  .ref-detail-img { margin-bottom: 28px; }
  .ref-detail-img img { height: 300px; }
  .ref-detail-facts { flex-direction: column; }
  .ref-detail-fact { flex-basis: auto; border-left: none; border-top: 1px solid var(--border); padding: 16px 0; }
  .ref-detail-fact:first-child { border-top: none; }
  .ref-detail-special { padding-left: 16px; }
  .ref-detail-gallery { column-count: 2; column-gap: 10px; }
  .ref-detail-gallery-item { margin-bottom: 10px; }

  .cta-inner { flex-direction: column; align-items: flex-start; padding: 48px 20px; gap: 20px; }

  .footer-inner { padding: 48px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-unten { flex-direction: column; text-align: center; }

  /* Nav-Panel-Kontaktlinks: Platz für die Bottom-Bar der Floating Quicknav lassen */
  .nav-toggle-contact { padding-bottom: 96px; }

  /* Mobile: Floating Quicknav als Bottom-Bar */
  .floating-quicknav {
    top: auto; bottom: 0; left: 0; right: 0;
    transform: none;
    flex-direction: row;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .floating-quicknav.visible { transform: none; }
  .floating-quicknav ul { flex-direction: row; width: 100%; gap: 0; }
  .floating-quicknav li { flex: 1; }
  .floating-quicknav a { justify-content: center; width: 100%; }
  .fnav-label { display: none; }
  .fnav-icon { width: 100%; height: 56px; border-radius: 0; box-shadow: 0 -4px 16px rgba(0,0,0,0.15); }
}

/* ═══════════════════════════════════════════
   KONTAKT-SEKTION
═══════════════════════════════════════════ */

/* Scoped via :has(.contact-h2) statt #kontakt, damit die Sektion auch
   funktioniert, wenn der Artikel auf einer anderen Seite eingebunden wird
   und keine (oder eine andere) CSS-ID gesetzt ist. */
.mod_article:has(> .ce_bs_gridStart) {
  padding: 128px 64px;
  background: var(--bg);
}

.mod_article:has(> .ce_bs_gridStart) .ce_bs_gridStart {
  align-items: start;
}

.mod_article:has(> .ce_bs_gridStart) .ce_bs_gridStart > .col-sm-12:first-child {
  padding-right: 64px;
}

.mod_article:has(> .ce_bs_gridStart) .ce_bs_gridSeparator {
  padding-left: 32px;
}

.contact-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 24px;
}

.contact-sub-txt {
  font-size: 18px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 48px;
}

.contact-data {
  display: flex;
  flex-direction: column;
}

.cdata-row {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}

.cdata-row:last-child {
  border-bottom: 1px solid var(--border);
}

.cdata-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  min-width: 80px;
  padding-top: 2px;
  flex-shrink: 0;
}

.cdata-val {
  font-size: 17px;
  color: var(--text);
  font-weight: 400;
}

.cdata-val a {
  color: inherit;
  text-decoration: none;
}

.cdata-val a:hover {
  color: var(--green);
}

/* Formular-Titel */
.ce_form h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 28px;
  font-weight: 400;
}

/* Formular-Styling (auto, keine manuellen Klassen nötig) — gilt global für
   alle Contao-Formulare, nicht an #kontakt gebunden. */
.ce_form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.ce_form input[type="text"],
.ce_form input[type="email"],
.ce_form input[type="tel"],
.ce_form select,
.ce_form textarea {
  display: block;
  width: 100%;
  padding: 13px 16px;
  background: #E8E0D8;
  border: 1.5px solid transparent;
  border-radius: 6px;
  color: var(--text);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
  margin-bottom: 16px;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.ce_form input[type="text"]:hover,
.ce_form input[type="email"]:hover,
.ce_form input[type="tel"]:hover,
.ce_form select:hover,
.ce_form textarea:hover {
  background: #DDD4CA;
  border-color: rgba(0,102,10,0.2);
}

.ce_form input[type="text"]:focus,
.ce_form input[type="email"]:focus,
.ce_form input[type="tel"]:focus,
.ce_form select:focus,
.ce_form textarea:focus {
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,102,10,0.12);
}

.ce_form textarea {
  height: 120px;
  resize: vertical;
}

.ce_form select option {
  background: #E8E0D8;
}

.ce_form button[type="submit"],
.ce_form input[type="submit"] {
  width: 100%;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 15px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  margin-top: 4px;
}

.ce_form button[type="submit"]:hover,
.ce_form input[type="submit"]:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,102,10,0.32);
}

.ce_form button[type="submit"]:active,
.ce_form input[type="submit"]:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Vorname / Nachname nebeneinander via CSS-Klasse "half" im Formular-Backend */
.ce_form .formbody {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
}

.ce_form .widget {
  width: 100%;
}

.ce_form .widget.half {
  width: calc(50% - 6px);
}

/* Kontakt Responsive */
@media (max-width: 1080px) {
  .mod_article:has(> .ce_bs_gridStart) { padding: 96px 40px; }
  .mod_article:has(> .ce_bs_gridStart) .ce_bs_gridStart { gap: 56px; }
}

@media (max-width: 768px) {
  .mod_article:has(> .ce_bs_gridStart) { padding: 80px 20px; }
  .mod_article:has(> .ce_bs_gridStart) .ce_bs_gridStart { gap: 48px; }
  .contact-sub-txt { font-size: 16px; margin-bottom: 32px; }
  .form-2col { grid-template-columns: 1fr; gap: 0; }
}

/*!
 * Bootstrap Grid v5.3.3 (https://getbootstrap.com/)
 * Copyright 2011-2024 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{box-sizing:border-box;flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.66666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.66666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.66666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.66666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.66666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.33333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.66666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}@media (min-width:576px){.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}}@media (min-width:768px){.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}}@media (min-width:992px){.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}}@media (min-width:1200px){.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}}@media (min-width:1400px){.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
/*# sourceMappingURL=bootstrap-grid.min.css.map */
