/* =============================================================================
   LB Rester GmbH & Co. KG — Stylesheet
   Clean Corporate · Bootstrap 5.3 + Bootstrap Icons + Manrope
   -----------------------------------------------------------------------------
   Inhalt:
     01  Theme Tokens (CSS-Variablen)
     02  Base & Typografie
     03  Eyebrow (Signature-Element)
     04  Buttons
     05  Navbar (Phone-Display + Dropdown)
     06  Offcanvas (Nav + Sub-Items + Kontaktblock)
     07  Hero & Hero-Pillars (inkl. Background-Image-Variante)
     08  Info-Strip (4 Spalten mit Geschäftsführung)
     09  Sections (utility classes)
     10  About / Image-Text-Split (about-image-wrap, about-facts, tagline)
     11  Timeline (Meilensteine)
     12  Services (Banner + Editorial-Grid + h-services + CTA)
     13  Pillar Cards (Geschäftsbereiche)
     14  Team (homepage card + Lead-Cards mit Foto-Placeholder)
     15  Values Grid (Werte-Block)
     16  Feature List (Leistungspunkte mit Check)
     17  Gallery (filterable)
     18  Contact (Cards + Blocks + Map + Form)
     19  Job Cards (Collapse)
     20  Initiativbewerbung Card
     21  CTA Banner (dark)
     22  Footer
     23  Scroll Reveal
     24  Back-to-Top
     25  Helpers
   ============================================================================= */


/* =============================================================================
   01  THEME TOKENS
   ============================================================================= */
:root {
  --lb-green:        #2D5A2D;   /* primäres Dunkelgrün — Logo-nah */
  --lb-green-hover:  #244A24;   /* dunkler für Hover-States */
  --lb-green-accent: #7BA05B;   /* helleres Akzentgrün */
  --lb-green-soft:   #EEF3E8;   /* sehr helles Wash-Grün */

  --lb-dark:         #1F2937;   /* dunkelgrau für Headings/Footer */
  --lb-dark-2:       #2A2F3A;   /* eine Stufe heller */
  --lb-medium:       #6B7280;   /* sekundärer Text */
  --lb-light-text:   #9CA3AF;   /* tertiärer Text */

  --lb-bg:           #FFFFFF;
  --lb-bg-alt:       #F8F8F5;   /* warmes Off-White */
  --lb-border:       #E5E7EB;

  --lb-shadow-sm:    0 1px 2px rgba(31,41,55,.04), 0 1px 3px rgba(31,41,55,.06);
  --lb-shadow-md:    0 4px 12px rgba(31,41,55,.06), 0 2px 4px rgba(31,41,55,.04);
  --lb-shadow-lg:    0 20px 40px rgba(31,41,55,.08), 0 6px 16px rgba(31,41,55,.06);

  --lb-radius-sm: 4px;
  --lb-radius-md: 8px;
  --lb-radius-lg: 12px;

  --section-pad-y: 8.5rem;
}

@media (max-width: 768px) {
  :root { --section-pad-y: 4rem; }
}


/* =============================================================================
   02  BASE & TYPOGRAFIE
   ============================================================================= */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  color: var(--lb-dark);
  background: var(--lb-bg);
  line-height: 1.65;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', sans-serif;
  color: var(--lb-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.display-hero {
  font-size: clamp(2.5rem, 5.5vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.h-section {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.h-services {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p { color: var(--lb-medium); }

p.lead-paragraph {
  font-size: 1.25rem;
  color: var(--lb-dark);
  line-height: 1.7;
}

p.lead-home {
  font-size: 1.5rem;
  color: var(--lb-green);
  line-height: 1.7;
  font-weight:900;
}

.tagline {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--lb-green);
  letter-spacing: -0.005em;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lb-border);
  margin-bottom: 0;
}

a {
  color: var(--lb-green);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--lb-green-hover); }

::selection { background: var(--lb-green); color: #fff; }


/* =============================================================================
   03  EYEBROW (Signature-Element)
   ============================================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--lb-green);
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lb-green);
  flex: 0 0 8px;
}


/* =============================================================================
   04  BUTTONS
   ============================================================================= */
.btn {
  font-weight: 600;
  padding: .85rem 1.75rem;
  border-radius: var(--lb-radius-sm);
  letter-spacing: -0.005em;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  border: 1px solid transparent;
  font-size: .95rem;
}

.btn-lb-primary {
  background: var(--lb-green);
  color: #fff;
  border-color: var(--lb-green);
}
.btn-lb-primary:hover {
  background: var(--lb-green-hover);
  border-color: var(--lb-green-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--lb-shadow-md);
}

.btn-lb-outline {
  background: transparent;
  color: var(--lb-dark);
  border: 1px solid var(--lb-border);
}
.btn-lb-outline:hover {
  background: var(--lb-dark);
  color: #fff;
  border-color: var(--lb-dark);
}

.btn-lb-ghost {
  background: transparent;
  color: var(--lb-dark);
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.btn-lb-ghost:hover { color: var(--lb-green); }

.btn .bi {
  vertical-align: -0.125em;
  margin-left: .35rem;
  transition: transform .25s ease;
}
.btn:hover .bi-arrow-right { transform: translateX(4px); }


/* =============================================================================
   05  NAVBAR
   ============================================================================= */
.navbar-lb {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: padding .3s ease, border-color .3s ease, box-shadow .3s ease;
  padding: 1.4rem 0;
}
.navbar-lb.scrolled {
  padding: .85rem 0;
  border-bottom-color: var(--lb-border);
  box-shadow: var(--lb-shadow-sm);
}

.navbar-lb .navbar-brand img {
  height: 72px;
  width: auto;
  transition: height .3s ease;
}
.navbar-lb.scrolled .navbar-brand img { height: 52px; }

@media (max-width: 991.98px) {
  .navbar-lb { padding: .9rem 0; }
  .navbar-lb .navbar-brand img { height: 56px; }
  .navbar-lb.scrolled { padding: .65rem 0; }
  .navbar-lb.scrolled .navbar-brand img { height: 44px; }
}

.navbar-lb .nav-link {
  color: var(--lb-dark) !important;
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem 1rem !important;
  position: relative;
  transition: color .2s ease;
}
.navbar-lb .nav-link:hover { color: var(--lb-green) !important; }

/* Hover-Underline (für Bootstrap-Caret unterdrückt — siehe Dropdown) */
.navbar-lb .nav-link::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: .25rem;
  height: 2px;
  background: var(--lb-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.navbar-lb .nav-link:hover::after { transform: scaleX(1); }

.navbar-lb .nav-link.active { color: var(--lb-green) !important; }
.navbar-lb .nav-link.active::after { transform: scaleX(1); }

/* Phone-Display (statt CTA-Button rechts) */
.navbar-phone {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  padding: .5rem .9rem;
  border-radius: var(--lb-radius-sm);
  color: var(--lb-dark);
  transition: background .25s ease;
}
.navbar-phone:hover { background: var(--lb-green-soft); color: var(--lb-dark); }

.navbar-phone-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--lb-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .95rem;
  flex: 0 0 38px;
}
.navbar-phone-text { display: flex; flex-direction: column; line-height: 1.2; }
.navbar-phone-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--lb-medium);
  font-weight: 600;
}
.navbar-phone-number {
  font-size: .95rem;
  font-weight: 700;
  color: var(--lb-dark);
}

.navbar-toggler {
  border: 1px solid var(--lb-border);
  padding: .5rem .65rem;
}
.navbar-toggler:focus { box-shadow: none; }

/* ----- Dropdown (Leistungen → Sub-Items) ----- */
.navbar-lb .nav-link.dropdown-toggle::after { display: none; }

.dropdown-chevron {
  font-size: .7rem;
  margin-left: .35rem;
  display: inline-block;
  color: var(--lb-medium);
  transition: transform .25s ease, color .25s ease;
}
.nav-link[aria-expanded="true"] .dropdown-chevron {
  transform: rotate(180deg);
  color: var(--lb-green);
}

.dropdown-menu-lb {
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius-md);
  box-shadow: var(--lb-shadow-lg);
  padding: .5rem;
  min-width: 380px;
  margin-top: .5rem;
}

.dropdown-item-lb {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--lb-radius-sm);
  color: var(--lb-dark);
  text-decoration: none;
  transition: background .2s ease;
}
.dropdown-item-lb:hover {
  background: var(--lb-bg-alt);
  color: var(--lb-dark);
}
.dropdown-item-lb:hover .dropdown-title { color: var(--lb-green); }
.dropdown-item-lb:hover .dropdown-arrow {
  transform: translateX(3px);
  color: var(--lb-green);
}

.dropdown-num {
  flex: 0 0 28px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--lb-green);
  padding-top: 4px;
}
.dropdown-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.3;
}
.dropdown-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--lb-dark);
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.dropdown-desc {
  font-size: .8rem;
  color: var(--lb-medium);
  font-weight: 500;
}
.dropdown-arrow {
  font-size: .85rem;
  color: var(--lb-medium);
  margin-top: 6px;
  transition: transform .2s ease, color .2s ease;
  flex: 0 0 auto;
}


/* =============================================================================
   06  OFFCANVAS
   ============================================================================= */
.offcanvas-lb {
  width: 420px !important;
  max-width: 92vw;
  background: #fff;
}
.offcanvas-lb .offcanvas-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--lb-border);
}
.offcanvas-logo {
  height: 56px;
  width: auto;
}
.offcanvas-lb .offcanvas-body {
  padding: 1.5rem 1.75rem 2rem;
}

/* Offcanvas Nav */
.offcanvas-nav .nav-link {
  color: var(--lb-dark) !important;
  font-size: 1.3rem;
  font-weight: 600;
  padding: .85rem 0 !important;
  border-bottom: 1px solid var(--lb-border);
  letter-spacing: -0.01em;
  transition: color .2s ease, padding-left .2s ease;
}
.offcanvas-nav .nav-link:hover {
  color: var(--lb-green) !important;
  padding-left: .4rem !important;
}
.offcanvas-nav .nav-link.active { color: var(--lb-green) !important; }

/* Sub-Items (Leistungen aufklappbar — immer sichtbar) */
.offcanvas-nav .nav-item-parent > .nav-link {
  border-bottom: none;
  padding-bottom: .5rem !important;
}

.offcanvas-nav .nav-sub {
  list-style: none;
  padding: 0 0 .5rem 0;
  margin: 0;
  border-bottom: 1px solid var(--lb-border);
}

.offcanvas-nav .nav-sublink {
  display: block;
  color: var(--lb-medium);
  text-decoration: none;
  padding: .65rem 0 .65rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  transition: color .2s ease, padding-left .2s ease;
}
.offcanvas-nav .nav-sublink::before {
  content: "";
  position: absolute;
  left: .5rem;
  top: 50%;
  width: .65rem;
  height: 2px;
  background: var(--lb-green);
  opacity: .55;
  transform: translateY(-50%);
  transition: width .2s ease, opacity .2s ease;
}
.offcanvas-nav .nav-sublink:hover {
  color: var(--lb-green);
  padding-left: 2rem;
}
.offcanvas-nav .nav-sublink:hover::before {
  width: 1rem;
  opacity: 1;
}

/* Offcanvas Kontaktblock */
.offcanvas-contact { margin-top: 2.25rem; }

.contact-section-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--lb-medium);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-card {
  display: block;
  text-decoration: none;
  background: var(--lb-bg-alt);
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius-md);
  padding: 1.1rem 1.25rem;
  margin-bottom: .75rem;
  color: var(--lb-dark);
  transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.contact-card:hover {
  background: #fff;
  border-color: var(--lb-green);
  color: var(--lb-dark);
  transform: translateY(-1px);
}

.contact-card-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--lb-green);
  font-weight: 700;
  margin-bottom: .35rem;
}
.contact-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lb-dark);
  margin-bottom: .5rem;
  letter-spacing: -0.01em;
}
.contact-card-phone {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--lb-dark);
  display: flex;
  align-items: center;
  gap: .6rem;
}
.contact-card-phone .bi { color: var(--lb-green); font-size: .9rem; }

.contact-card-meta {
  font-size: .85rem;
  color: var(--lb-medium);
  margin-top: .6rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
}
.contact-card-meta .bi { color: var(--lb-medium); font-size: .8rem; }

.contact-card-secondary {
  margin-top: 1.25rem;
  background: transparent;
  border-style: dashed;
}
.contact-card-secondary .contact-card-phone { font-size: .95rem; }


/* =============================================================================
   07  HERO & HERO PILLARS
   ============================================================================= */
.hero {
  padding: 9rem 0 var(--section-pad-y);
  position: relative;
  overflow: hidden;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--lb-radius-lg);
  overflow: hidden;
  aspect-ratio: 9 / 5;
  box-shadow: var(--lb-shadow-lg);
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.4, 0, .2, 1);
}
.hero-image-wrap:hover img { transform: scale(1.03); }

.hero-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(6px);
  border-radius: var(--lb-radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--lb-shadow-md);
  max-width: 75%;
}
.hero-image-badge .badge-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--lb-green);
  font-weight: 700;
  margin-bottom: .25rem;
}
.hero-image-badge .badge-value {
  font-size: 1rem;
  color: var(--lb-dark);
  font-weight: 600;
}

/* ----- Hero Pillars (Alternative-Hero mit 2 Geschäftsbereich-Cards) ----- */
.hero-pillars {
  padding: 9rem 0 var(--section-pad-y);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-pillars .eyebrow { justify-content: center; }

/* Optionales Hintergrundbild (vollflächig, geblurt) */
.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px);
  transform: scale(1.12);
  z-index: -2;
  pointer-events: none;
  user-select: none;
}
.hero-pillars::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(255, 255, 255, 0.2) 0%,
              rgba(255, 255, 255, 0.90) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-pillars > .container {
  position: relative;
  z-index: 1;
}


/* =============================================================================
   08  INFO STRIP (4 Spalten — Öffnungszeiten · Standort · Büro · Geschäftsführung)
   ============================================================================= */
.info-strip {
  background: var(--lb-bg-alt);
  border-top: 1px solid var(--lb-border);
  border-bottom: 1px solid var(--lb-border);
  padding: 3rem 0;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-item .info-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--lb-border);
  display: grid;
  place-items: center;
  color: var(--lb-green);
  font-size: 1.1rem;
}
.info-item .info-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--lb-medium);
  font-weight: 600;
  margin-bottom: .25rem;
}
.info-item .info-value {
  color: var(--lb-dark);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}
.info-item .info-value a { color: var(--lb-dark); }
.info-item .info-value a:hover { color: var(--lb-green); }

/* Geschäftsführung — Sub-Items im Info-Strip */
.info-person {
  display: block;
  color: var(--lb-dark);
  text-decoration: none;
  line-height: 1.25;
  margin-bottom: .65rem;
  transition: color .2s ease;
}
.info-person:last-child { margin-bottom: 0; }
.info-person:hover { color: var(--lb-green); }

.info-person-name {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--lb-medium);
  margin-bottom: 2px;
}
.info-person-tel {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
}


/* =============================================================================
   09  SECTIONS
   ============================================================================= */
.section { padding: var(--section-pad-y) 0; }
.section-alt { background: var(--lb-bg-alt); }


/* =============================================================================
   10  ABOUT / IMAGE-TEXT-SPLIT
   ============================================================================= */
.about-image-wrap {
  position: relative;
  border-radius: var(--lb-radius-lg);
  overflow: hidden;
  aspect-ratio: 6 / 5;
  box-shadow: var(--lb-shadow-md);
}
.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mini-Fakten-Leiste */
.about-facts {
  list-style: none;
  padding: 1.25rem 0;
  margin: 0;
  display: flex;
  gap: 2.25rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--lb-border);
  border-bottom: 1px solid var(--lb-border);
}
.about-facts li {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.about-fact-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--lb-medium);
  font-weight: 700;
}
.about-fact-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--lb-dark);
  letter-spacing: -0.01em;
}
@media (max-width: 576px) {
  .about-facts { gap: 1.5rem; }
}


/* =============================================================================
   11  TIMELINE (Meilensteine)
   ============================================================================= */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
}

.timeline-item {
  display: flex;
  position: relative;
  padding-bottom: 3rem;
}
.timeline-item:last-child { padding-bottom: 0; }

.timeline-left {
  flex: 0 0 130px;
  padding-right: 2.5rem;
  position: relative;
  text-align: right;
}

/* Vertikale Linie durch die Marker-Spalte */
.timeline-left::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: -3rem;
  right: 0;
  width: 2px;
  background: var(--lb-border);
}
.timeline-item:first-child .timeline-left::before { top: 20px; }
.timeline-item:last-child .timeline-left::before {
  bottom: auto;
  height: 20px;
}

/* Dot */
.timeline-left::after {
  content: '';
  position: absolute;
  top: 13px;
  right: -7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--lb-green);
  z-index: 1;
}
.timeline-item:last-child .timeline-left::after {
  background: var(--lb-green);
}

.timeline-year {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--lb-dark);
  letter-spacing: -0.03em;
  line-height: 1;
}

.timeline-content {
  flex: 1;
  padding-left: 2rem;
}

.timeline-meta {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  color: var(--lb-green);
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: .85rem;
}

.timeline-title {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 700;
  margin-bottom: .75rem;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--lb-dark);
}

.timeline-content p {
  margin: 0;
  color: var(--lb-medium);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .timeline-left {
    flex: 0 0 90px;
    padding-right: 1.5rem;
  }
  .timeline-year { font-size: 1.65rem; }
  .timeline-content { padding-left: 1.5rem; }
  .timeline-item { padding-bottom: 2rem; }
  .timeline-left::before { bottom: -2rem; }
}


/* =============================================================================
   12  SERVICES (Banner + Editorial-Grid + CTA)
   ============================================================================= */
.services-banner {
  border-radius: var(--lb-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 7;
  box-shadow: var(--lb-shadow-md);
}
.services-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .services-banner { aspect-ratio: 4 / 3; }
}

/* Editorial 2-Spalten-Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--lb-border);
}
.service-item {
  padding: 2.5rem 2rem;
  border-bottom: 1px solid var(--lb-border);
  transition: background-color .25s ease;
}
.service-item:nth-child(odd) {
  border-right: 1px solid var(--lb-border);
}
.service-item:hover { background: var(--lb-bg-alt); }

.service-num {
  display: block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--lb-green);
  margin-bottom: 1rem;
}
.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--lb-dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
  transition: color .25s ease;
}
.service-item:hover .service-title { color: var(--lb-green); }
.service-desc {
  color: var(--lb-medium);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-item { padding: 2rem 1.25rem; }
  .service-item:nth-child(odd) { border-right: none; }
}

/* Closing CTA-Block (zentriert, mit Top-Border) */
.services-cta {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--lb-border);
}


/* =============================================================================
   13  PILLAR CARDS (Hero-Pillars · Geschäftsbereiche)
   ============================================================================= */
.pillar-card {
  display: block;
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--lb-dark);
  height: 100%;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1),
              box-shadow .35s cubic-bezier(.4, 0, .2, 1),
              border-color .35s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lb-shadow-lg);
  border-color: var(--lb-green);
  color: var(--lb-dark);
}

.pillar-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--lb-bg-alt);
}
.pillar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.4, 0, .2, 1);
}
.pillar-card:hover .pillar-image img { transform: scale(1.05); }

.pillar-num {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(6px);
  color: var(--lb-green);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .1em;
  padding: .4rem .75rem;
  border-radius: var(--lb-radius-sm);
  font-family: 'Manrope', sans-serif;
}

.pillar-body { padding: 2rem 2rem 2.25rem; }

.pillar-label {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--lb-medium);
  font-weight: 600;
  margin-bottom: .75rem;
}
.pillar-title {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color .25s ease;
}
.pillar-card:hover .pillar-title { color: var(--lb-green); }

.pillar-desc {
  color: var(--lb-medium);
  margin-bottom: 1.5rem;
}

.pillar-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--lb-green);
  font-size: .95rem;
}
.pillar-cta .bi { transition: transform .25s ease; }
.pillar-card:hover .pillar-cta .bi { transform: translateX(5px); }


/* =============================================================================
   14  TEAM
   ============================================================================= */

/* Homepage-Team-Card (eine prominente Person) */
.team-card {
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lb-shadow-lg);
}
.team-photo {
  width: 100%;
  aspect-ratio: 6 / 5;
  object-fit: cover;
}
.team-body { padding: 2rem; }
.team-quote {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lb-border);
  font-style: italic;
  color: var(--lb-dark-2);
  font-weight: 500;
}

/* Lead-Cards (Geschäftsführung — Subpage) */
.team-lead-card {
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.team-lead-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lb-shadow-lg);
  border-color: var(--lb-green);
}

/* Foto-Placeholder mit Initialen */
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--lb-bg-alt);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.team-initials {
  font-size: clamp(3.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--lb-green);
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: .45;
}
.team-photo-placeholder::after {
  content: "Foto folgt";
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--lb-light-text);
  font-weight: 700;
}

.team-lead-card .team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.team-lead-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-role {
  display: inline-block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--lb-green);
  font-weight: 700;
  margin-bottom: .65rem;
}
.team-name {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: .5rem;
  color: var(--lb-dark);
}
.team-focus {
  font-style: italic;
  color: var(--lb-medium);
  margin-bottom: 1.25rem;
  font-size: .95rem;
}
.team-bio {
  color: var(--lb-medium);
  margin-bottom: 1.5rem;
  line-height: 1.7;
  flex: 1;
}
.team-contact {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--lb-dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--lb-border);
  transition: color .2s ease;
}
.team-contact .bi {
  color: var(--lb-green);
  font-size: .9rem;
}
.team-contact:hover { color: var(--lb-green); }


/* =============================================================================
   15  VALUES GRID (Was uns ausmacht)
   ============================================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.value-item {
  padding-top: 2rem;
  border-top: 2px solid var(--lb-green);
}
.value-name {
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--lb-dark);
  line-height: 1.15;
}
.value-desc {
  color: var(--lb-medium);
  margin: 0;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}


/* =============================================================================
   16  FEATURE LIST (Leistungspunkte mit Check)
   ============================================================================= */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--lb-border);
  color: var(--lb-dark);
  font-weight: 500;
}
.feature-list li:last-child { border-bottom: none; }

.feature-check {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--lb-green-soft);
  color: var(--lb-green);
  display: grid;
  place-items: center;
  font-size: .9rem;
  margin-top: 2px;
}


/* =============================================================================
   17  GALLERY (filterable)
   ============================================================================= */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.gallery-filter {
  background: transparent;
  border: 1px solid var(--lb-border);
  color: var(--lb-medium);
  padding: .6rem 1.4rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s ease;
}
.gallery-filter:hover {
  color: var(--lb-dark);
  border-color: var(--lb-dark);
}
.gallery-filter.active {
  background: var(--lb-dark);
  color: #fff;
  border-color: var(--lb-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .gallery-grid { grid-template-columns: 1fr; } }

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--lb-radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--lb-bg-alt);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 41, 55, .65));
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-item-label {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery-item:hover .gallery-item-label {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item.is-hidden { display: none; }


/* =============================================================================
   18  CONTACT (Cards + Blocks + Map + Form)
   ============================================================================= */

/* Große Ansprechpartner-Karten (Kontakt-Subpage) */
.contact-large-card {
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-large-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lb-shadow-lg);
  border-color: var(--lb-green);
}

.contact-large-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--lb-green-soft);
  display: grid;
  place-items: center;
  color: var(--lb-green);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-large-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--lb-medium);
  font-weight: 700;
  margin-bottom: .65rem;
}

.contact-large-name {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lb-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.contact-large-phone {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--lb-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
  padding: .85rem 1.4rem;
  background: var(--lb-bg-alt);
  border-radius: var(--lb-radius-sm);
  transition: background .25s ease, color .25s ease;
  margin-bottom: 1.25rem;
}
.contact-large-phone:hover {
  background: var(--lb-green);
  color: #fff;
}
.contact-large-phone .bi { font-size: .9rem; }

.contact-large-meta {
  margin-top: auto;
  font-size: .85rem;
  color: var(--lb-medium);
  font-weight: 500;
}

/* E-Mail-Link unter den Cards */
.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lb-dark);
  text-decoration: none;
  padding: .5rem 1.25rem;
  border-bottom: 2px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.contact-email-link:hover {
  color: var(--lb-green);
  border-bottom-color: var(--lb-green);
}
.contact-email-link .bi { color: var(--lb-green); }

/* Adresse + Öffnungszeiten Blocks */
.contact-block {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--lb-border);
}
.contact-block:first-of-type { padding-top: 0; }
.contact-block:last-child { border-bottom: none; }

.contact-block-title {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--lb-dark);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.contact-block-title .bi {
  color: var(--lb-green);
  font-size: 1rem;
}

.contact-address {
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--lb-dark);
  line-height: 1.5;
  margin: 0;
}

.contact-hours {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px dashed var(--lb-border);
  font-size: .95rem;
  color: var(--lb-dark);
}
.contact-hours li:last-child { border-bottom: none; }
.contact-hours li span:first-child {
  color: var(--lb-medium);
  font-weight: 500;
}
.contact-hours li span:last-child {
  font-weight: 600;
  text-align: right;
}

.contact-hours-note {
  font-size: .85rem;
  color: var(--lb-medium);
  margin: 0;
  font-style: italic;
}

/* Map-Container (OpenStreetMap-iframe oder Platzhalter) */
.contact-map {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: var(--lb-radius-lg);
  overflow: hidden;
  border: 1px solid var(--lb-border);
  background: var(--lb-bg-alt);
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
@media (max-width: 991.98px) {
  .contact-map { min-height: 320px; }
}

/* Kontaktformular */
.contact-form {
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius-lg);
  padding: 2.5rem;
}

.form-label-lb {
  display: block;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--lb-medium);
  font-weight: 700;
  margin-bottom: .5rem;
}

.form-control-lb {
  display: block;
  width: 100%;
  padding: .85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--lb-dark);
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
  appearance: none;
}
.form-control-lb:focus {
  outline: none;
  border-color: var(--lb-green);
  box-shadow: 0 0 0 3px rgba(45, 90, 45, 0.12);
}

textarea.form-control-lb {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
  line-height: 1.6;
}

select.form-control-lb {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%236B7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.form-check-lb {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .9rem;
  color: var(--lb-medium);
  line-height: 1.5;
  margin-top: .75rem;
}
.form-check-lb .form-check-input {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: .15rem;
  accent-color: var(--lb-green);
}
.form-check-lb a {
  color: var(--lb-green);
  text-decoration: underline;
}

@media (max-width: 576px) {
  .contact-form { padding: 1.75rem; }
}


/* =============================================================================
   19  JOB CARDS (Collapse)
   ============================================================================= */
.jobs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-card {
  background: #fff;
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius-md);
  overflow: hidden;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.job-card.is-expanded {
  border-color: var(--lb-green);
  box-shadow: var(--lb-shadow-md);
}

.job-card-header { margin: 0; }

.job-card-toggle-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 1.5rem 1.75rem;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: background .25s ease;
}
.job-card-toggle-btn:hover { background: var(--lb-bg-alt); }
.job-card-toggle-btn:focus-visible {
  outline: 2px solid var(--lb-green);
  outline-offset: -2px;
}

.job-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  min-width: 0;
}

.job-card-title {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  color: var(--lb-dark);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.job-card-meta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  align-items: center;
}

.job-card-type {
  display: inline-block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--lb-green);
  font-weight: 700;
  background: var(--lb-green-soft);
  padding: .35rem .7rem;
  border-radius: var(--lb-radius-sm);
}

.job-card-location {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .85rem;
  color: var(--lb-medium);
  font-weight: 500;
}
.job-card-location .bi { font-size: .8rem; }

.job-card-toggle-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--lb-bg-alt);
  display: grid;
  place-items: center;
  color: var(--lb-dark);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1),
              background .25s ease,
              color .25s ease;
}
.job-card-toggle-btn[aria-expanded="true"] .job-card-toggle-icon {
  background: var(--lb-green);
  color: #fff;
  transform: rotate(180deg);
}

.job-card-body {
  padding: 1.75rem 1.75rem 2rem;
  border-top: 1px solid var(--lb-border);
}

.job-intro {
  font-size: 1.05rem;
  color: var(--lb-dark-2);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.job-section-title {
  display: block;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--lb-green);
  font-weight: 800;
  margin-bottom: 1rem;
  padding-top: .65rem;
  border-top: 2px solid var(--lb-green);
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.job-list li {
  position: relative;
  padding: .4rem 0 .4rem 1.5rem;
  color: var(--lb-medium);
  line-height: 1.55;
  font-size: .95rem;
}
.job-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .85rem;
  width: .65rem;
  height: 2px;
  background: var(--lb-green);
}

.job-outro {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--lb-border);
  color: var(--lb-medium);
  font-size: .95rem;
  line-height: 1.65;
}
.job-outro strong { color: var(--lb-dark); }

.job-actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

@media (max-width: 576px) {
  .job-card-toggle-btn { padding: 1.25rem; gap: 1rem; }
  .job-card-body { padding: 1.25rem 1.25rem 1.5rem; }
  .job-card-toggle-icon { width: 36px; height: 36px; }
}


/* =============================================================================
   20  INITIATIVBEWERBUNG CARD
   ============================================================================= */
.initiativ-card {
  background: var(--lb-bg-alt);
  border: 1px solid var(--lb-border);
  border-radius: var(--lb-radius-lg);
  padding: 2.5rem;
}
@media (max-width: 576px) {
  .initiativ-card { padding: 1.75rem; }
}


/* =============================================================================
   21  CTA BANNER (dunkel)
   ============================================================================= */
.cta-banner {
  background: var(--lb-dark);
  color: #fff;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--lb-green) 0%, transparent 70%);
  opacity: .25;
  pointer-events: none;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255, 255, 255, .7); }


/* =============================================================================
   22  FOOTER
   ============================================================================= */
.footer {
  background: var(--lb-dark);
  color: rgba(255, 255, 255, .7);
  padding: 5rem 0 2rem;
}
.footer .footer-logo {
  height: 56px;
  margin-bottom: 1.5rem;
}
.footer h6 {
  color: #fff;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.footer p, .footer a {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
}
.footer a:hover { color: var(--lb-green-accent); }
.footer ul { list-style: none; padding: 0; }
.footer ul li { padding: .35rem 0; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
}
.footer-contact-item .bi {
  color: var(--lb-green-accent);
  margin-top: 4px;
  flex: 0 0 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 4rem;
  padding-top: 2rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}
.footer-bottom a { color: rgba(255, 255, 255, .7); }


/* =============================================================================
   23  SCROLL REVEAL
   ============================================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1),
              transform .8s cubic-bezier(.4, 0, .2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
  .hero-image-wrap img,
  .gallery-item img,
  .pillar-image img { transition: none; }
}


/* =============================================================================
   24  BACK-TO-TOP
   ============================================================================= */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lb-dark);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--lb-shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
  z-index: 999;
  border: none;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--lb-green);
  color: #fff;
}


/* =============================================================================
   25  HELPERS
   ============================================================================= */
.text-lb-green { color: var(--lb-green); }
.bg-lb-light { background: var(--lb-bg-alt); }
.border-lb { border-color: var(--lb-border) !important; }




    

/* =============================================================================
   ENDE — lbrester.css
   ============================================================================= */