/* ═══════════════════════════════════════════════════════════════
   BESSER lackiert — Premium Template CSS v1.0
   Lackierung Rothenschirmbach
   Design: Stefan Drews | eSho.de
═══════════════════════════════════════════════════════════════ */

/* ─── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-base:     #080808;
  --bg-surface:  #111111;
  --bg-surface2: #161616;
  --bg-card:     #141414;
  --bg-card-h:   #1c1c1c;
  --bg-glass:    rgba(255,255,255,0.03);

  /* Brand */
  --red:         #dc2626;
  --red-dark:    #b91c1c;
  --red-bright:  #ef4444;
  --red-glow:    rgba(220,38,38,0.25);
  --gold:        #ca9a20;
  --gold-light:  #e0b030;

  /* Text */
  --text-1:      #ffffff;
  --text-2:      #d1d5db;
  --text-3:      #9ca3af;
  --text-4:      #6b7280;

  /* Borders */
  --border:      rgba(255,255,255,0.07);
  --border-h:    rgba(220,38,38,0.5);

  /* Spacing */
  --sp-xs:  clamp(0.5rem,  1vw,  0.75rem);
  --sp-sm:  clamp(0.75rem, 1.5vw, 1rem);
  --sp-md:  clamp(1rem,    2vw,  1.5rem);
  --sp-lg:  clamp(1.5rem,  3vw,  2.5rem);
  --sp-xl:  clamp(2rem,    5vw,  4rem);
  --sp-2xl: clamp(3rem,    8vw,  7rem);

  /* Typography */
  --font-display:  'Bebas Neue', 'Impact', sans-serif;
  --font-heading:  'Rajdhani', 'Arial Narrow', sans-serif;
  --font-body:     'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  /* Shadows */
  --shadow-card: 0 4px 30px rgba(0,0,0,0.5);
  --shadow-red:  0 8px 40px rgba(220,38,38,0.25);
  --shadow-glow: 0 0 60px rgba(220,38,38,0.15);

  /* Transitions */
  --t-fast:   0.15s ease;
  --t-normal: 0.3s ease;
  --t-slow:   0.6s cubic-bezier(0.16,1,0.3,1);
}

/* ─── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  text-size-adjust: 100%;
}

body {
  background-color: var(--bg-base);
  color: var(--text-2);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

::selection { background: var(--red); color: white; }

/* ─── 3. LAYOUT UTILITIES ───────────────────────────────────── */
.bl-container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.bl-section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--sp-xl);
}

.bl-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.bl-section-label::before,
.bl-section-label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--red);
  opacity: 0.6;
}

.bl-section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-1);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.bl-section-sub {
  color: var(--text-3);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
}

.bl-accent { color: var(--red); }

/* ─── 4. BUTTONS ────────────────────────────────────────────── */
.bl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  padding: 0.7em 1.6em;
  border-radius: var(--radius-sm);
  transition: all var(--t-normal);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.bl-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.bl-btn:hover::after { opacity: 1; }

.bl-btn--primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 20px var(--red-glow);
}
.bl-btn--primary:hover {
  background: var(--red-bright);
  box-shadow: 0 6px 30px rgba(220,38,38,0.4);
  transform: translateY(-2px);
}

.bl-btn--ghost {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--text-1);
  background: rgba(255,255,255,0.04);
}
.bl-btn--ghost:hover {
  border-color: var(--red);
  color: white;
  background: rgba(220,38,38,0.1);
  transform: translateY(-2px);
}

.bl-btn--white {
  background: white;
  color: #111;
}
.bl-btn--white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.bl-btn--outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
}
.bl-btn--outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.bl-btn--sm { font-size: 0.85rem; padding: 0.5em 1.2em; }
.bl-btn--lg { font-size: 1.1rem; padding: 0.85em 2em; }

/* Shimmer animation */
.bl-btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.bl-btn--primary:hover::before { left: 150%; }

/* ─── 5. BADGES ─────────────────────────────────────────────── */
.bl-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3em 0.9em;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(220,38,38,0.15);
  color: var(--red-bright);
  border: 1px solid rgba(220,38,38,0.3);
}
.bl-badge--outline {
  background: transparent;
  color: var(--text-3);
  border-color: var(--border);
}

/* ─── 6. LOADING SCREEN ─────────────────────────────────────── */
.bl-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-base);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.bl-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.bl-loader__content { text-align: center; }

.bl-loader__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  margin-bottom: 2rem;
}

.bl-loader__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--text-1);
  letter-spacing: 0.1em;
  line-height: 1;
}

.bl-loader__verb {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--red);
  letter-spacing: 0.08em;
}

.bl-loader__bar {
  width: 200px;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  margin-inline: auto;
  overflow: hidden;
}

.bl-loader__progress {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  width: 0%;
  animation: loaderProgress 1.2s cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes loaderProgress {
  0%   { width: 0%; }
  60%  { width: 80%; }
  100% { width: 100%; }
}

/* ─── 7. HEADER ─────────────────────────────────────────────── */
.bl-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background var(--t-normal), box-shadow var(--t-normal), padding var(--t-normal);
  padding-block: 1.2rem;
}

.bl-header.is-scrolled {
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0,0,0,0.4);
  padding-block: 0.75rem;
}

.bl-header__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.bl-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}
.bl-logo:hover { opacity: 0.85; }

.bl-logo__mark { flex-shrink: 0; }

.bl-logo__text { display: flex; flex-direction: column; gap: 0.05em; }

.bl-logo__brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.03em;
  line-height: 1;
}
.bl-logo__brand em {
  font-style: normal;
  color: var(--red);
}

.bl-logo__sub {
  font-size: 0.6rem;
  color: var(--text-4);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Navigation */
.bl-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.bl-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.bl-nav__item { position: relative; }

.bl-nav__link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-3);
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.bl-nav__link:hover,
.bl-nav__item.is-active > .bl-nav__link {
  color: var(--text-1);
  background: rgba(255,255,255,0.06);
}

.bl-nav__item.is-active > .bl-nav__link { color: var(--red); }

.bl-nav__chevron {
  transition: transform var(--t-fast);
  opacity: 0.6;
}
.bl-nav__item.has-children:hover .bl-nav__chevron { transform: rotate(180deg); }

/* Dropdown */
.bl-nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: rgba(16,16,16,0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-normal), transform var(--t-normal), visibility var(--t-normal);
}

.bl-nav__item.has-children:hover .bl-nav__dropdown,
.bl-nav__item.has-children:focus-within .bl-nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.bl-nav__dropdown .bl-nav__link {
  display: flex;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

/* Header right */
.bl-header__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-2);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.bl-header__phone:hover { color: var(--red); }

/* Burger */
.bl-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color var(--t-fast);
  flex-shrink: 0;
}
.bl-burger:hover { border-color: var(--red); }
.bl-burger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all var(--t-normal);
  transform-origin: center;
}

/* Burger open state */
.bl-burger.is-open .bl-burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bl-burger.is-open .bl-burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.bl-burger.is-open .bl-burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay */
.bl-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 850;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-normal), visibility var(--t-normal);
}
.bl-nav-overlay.is-open { opacity: 1; visibility: visible; }

/* ─── 8. HERO ────────────────────────────────────────────────── */
.bl-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-base);
}

.bl-hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bl-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(220,38,38,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(202,154,32,0.05) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(8,8,8,0.3) 0%, rgba(8,8,8,0.6) 60%, rgba(8,8,8,0.95) 100%);
  pointer-events: none;
}

.bl-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px clamp(1rem, 4vw, 3rem) 100px;
  max-width: 1000px;
}

.bl-hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.bl-hero__headline {
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.bl-hero__pre {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--text-3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.1em;
}

.bl-hero__main {
  display: block;
  margin-bottom: 0.02em;
}

.bl-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  color: var(--text-1);
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-shadow:
    0 0 80px rgba(255,255,255,0.05),
    0 2px 0 rgba(0,0,0,0.5);
  position: relative;
  display: inline-block;
}

/* Metallic shimmer on hero brand */
.bl-hero__brand::after {
  content: 'BESSER';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.12) 50%,
    rgba(255,255,255,0.08) 60%,
    transparent 80%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroShimmer 4s ease-in-out infinite 2s;
}

@keyframes heroShimmer {
  0%, 100% { background-position: -100% 0; }
  50%       { background-position: 200% 0; }
}

.bl-hero__verb {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 9rem);
  color: var(--red);
  letter-spacing: 0.05em;
  line-height: 1;
  text-shadow: 0 0 60px rgba(220,38,38,0.4), 0 0 120px rgba(220,38,38,0.15);
}

.bl-hero__dot { color: var(--gold); }

.bl-hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-3);
  max-width: 580px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.bl-hero__sub strong { color: var(--text-2); }

.bl-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.bl-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.bl-hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.bl-hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--red);
  border-radius: 3px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%       { transform: translateY(10px); opacity: 0; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

/* ─── 9. STATS RIBBON ───────────────────────────────────────── */
.bl-stats {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.bl-stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.bl-stats__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

@media (max-width: 768px) {
  .bl-stats__inner { grid-template-columns: repeat(2, 1fr); }
  .bl-stats__divider { display: none !important; }
}

.bl-stats__item {
  text-align: center;
  padding: var(--sp-lg) var(--sp-md);
}

.bl-stats__number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
}

.bl-counter { color: var(--red); }
.bl-stats__suffix { font-size: 0.6em; color: var(--red); }

.bl-stats__icon {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.bl-stats__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-4);
  font-weight: 600;
}

.bl-stats__divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ─── 10. SERVICES ──────────────────────────────────────────── */
.bl-services {
  padding-block: var(--sp-2xl);
  background: var(--bg-base);
}

.bl-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1024px) { .bl-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .bl-services__grid { grid-template-columns: 1fr; } }

.bl-service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--t-normal), transform var(--t-normal), box-shadow var(--t-normal);
  overflow: hidden;
  cursor: default;
}

.bl-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity var(--t-normal);
}

.bl-service-card:hover {
  border-color: rgba(220,38,38,0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(220,38,38,0.1);
}
.bl-service-card:hover::before { opacity: 1; }

.bl-service-card__icon {
  width: 56px;
  height: 56px;
  color: var(--text-3);
  transition: color var(--t-normal);
}
.bl-service-card:hover .bl-service-card__icon { color: var(--text-1); }

.bl-service-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.25;
}

.bl-service-card__desc {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.65;
  flex: 1;
}

.bl-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--red);
  letter-spacing: 0.04em;
  transition: gap var(--t-fast), opacity var(--t-fast);
  margin-top: 0.5rem;
}
.bl-service-card__link:hover { gap: 0.7rem; opacity: 0.85; }

.bl-service-card__glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t-slow);
  pointer-events: none;
}
.bl-service-card:hover .bl-service-card__glow { opacity: 1; }

.bl-service-card__features {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.bl-service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.82rem;
  color: var(--text-3);
  line-height: 1.4;
}
.bl-service-card__features li::before {
  content: '';
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23dc2626' stroke-width='1.5'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23dc2626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ─── Service Detail Section ─────────────────────────────────── */
.bl-service-detail {
  padding-block: var(--sp-2xl);
  background: var(--bg-base);
}
.bl-service-detail__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}
.bl-service-detail__block:last-child { border-bottom: none; }
.bl-service-detail__block--reverse { direction: rtl; }
.bl-service-detail__block--reverse > * { direction: ltr; }

.bl-service-detail__img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.bl-service-detail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.bl-service-detail__block:hover .bl-service-detail__img img { transform: scale(1.04); }
.bl-service-detail__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: inherit;
  pointer-events: none;
}
.bl-service-detail__badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(220,38,38,0.4);
  border-radius: 2rem;
  padding: 0.35rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bl-service-detail__text { display: flex; flex-direction: column; gap: 1.25rem; }
.bl-service-detail__label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bl-service-detail__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.1;
  color: var(--text-1);
}
.bl-service-detail__body {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.75;
}
.bl-service-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
}
.bl-service-detail__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-2);
}
.bl-service-detail__list li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%23dc2626' stroke-width='1.5'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23dc2626' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.bl-service-detail__note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gold);
  background: rgba(202,154,32,0.08);
  border: 1px solid rgba(202,154,32,0.2);
  border-radius: 2rem;
  padding: 0.4rem 1rem;
  width: fit-content;
}

@media (max-width: 768px) {
  .bl-service-detail__block,
  .bl-service-detail__block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
}

/* ─── 11. ABOUT ──────────────────────────────────────────────── */
.bl-about {
  padding-block: var(--sp-2xl);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bl-about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

@media (max-width: 900px) { .bl-about__grid { grid-template-columns: 1fr; } }

.bl-about__image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  max-height: 600px;
}

.bl-about__image-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.bl-about__image-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #1a0a0a 0%, #1a1010 40%, #0d0505 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(220,38,38,0.03) 30px,
      rgba(220,38,38,0.03) 60px
    );
}

.bl-about__image-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
}

.bl-about__image-text span:nth-child(1) {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text-3);
  letter-spacing: 0.2em;
}
.bl-about__image-text span:nth-child(2) {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--red);
}

.bl-about__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--red);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-red);
}

.bl-about__badge-inner { text-align: center; }

.bl-about__badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: white;
  line-height: 1;
}

.bl-about__badge-text {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bl-about__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-2);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.bl-about__text {
  color: var(--text-3);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.bl-about__features { display: flex; flex-direction: column; gap: 1rem; }

.bl-about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.bl-about__feature-icon {
  color: var(--red);
  font-size: 0.7rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.bl-about__feature div { display: flex; flex-direction: column; gap: 0.1rem; }
.bl-about__feature strong { color: var(--text-1); font-size: 0.9rem; }
.bl-about__feature span { color: var(--text-3); font-size: 0.8rem; }

/* ─── 12. PROCESS ───────────────────────────────────────────── */
.bl-process {
  padding-block: var(--sp-2xl);
  background: var(--bg-base);
}

.bl-process__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: var(--sp-xl);
}

@media (max-width: 768px) {
  .bl-process__steps { flex-direction: column; align-items: stretch; }
  .bl-process__connector { display: none; }
}

.bl-process__step {
  flex: 1;
  text-align: center;
  padding: var(--sp-lg);
  position: relative;
}

.bl-process__num {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: rgba(220,38,38,0.1);
  line-height: 1;
  margin-bottom: -0.5rem;
  transition: color var(--t-normal);
}
.bl-process__step:hover .bl-process__num { color: rgba(220,38,38,0.2); }

.bl-process__icon {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: var(--red);
}

.bl-process__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 0.5rem;
}

.bl-process__desc {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.65;
  max-width: 200px;
  margin-inline: auto;
}

.bl-process__connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, rgba(220,38,38,0.2), rgba(220,38,38,0.5), rgba(220,38,38,0.2));
  margin-top: 3.5rem;
  position: relative;
}
.bl-process__connector::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: rgba(220,38,38,0.5);
}

/* ─── 13. GALLERY ───────────────────────────────────────────── */
.bl-gallery {
  padding-block: var(--sp-2xl);
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.bl-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 0.75rem;
}

@media (max-width: 768px) { .bl-gallery__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bl-gallery__grid { grid-template-columns: 1fr; } }

.bl-gallery__placeholder {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  background:
    linear-gradient(135deg, #151515 0%, #1a1a1a 50%, #111 100%);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--t-normal), box-shadow var(--t-normal);
}

.bl-gallery__placeholder--lg {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: 3/4;
}

@media (max-width: 768px) {
  .bl-gallery__placeholder--lg { grid-column: span 2; aspect-ratio: 16/9; grid-row: span 1; }
}

.bl-gallery__placeholder:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  z-index: 2;
}

.bl-gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--t-normal);
}
.bl-gallery__placeholder:hover .bl-gallery__overlay { opacity: 1; }

.bl-gallery__overlay span {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  letter-spacing: 0.05em;
}

/* ─── 14. TESTIMONIALS ──────────────────────────────────────── */
.bl-testimonials {
  padding-block: var(--sp-2xl);
  background: var(--bg-base);
}

.bl-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .bl-testimonials__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .bl-testimonials__grid { grid-template-columns: 1fr; } }

.bl-testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--t-normal), transform var(--t-normal);
  position: relative;
}

.bl-testimonial::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: rgba(220,38,38,0.1);
  line-height: 1;
}

.bl-testimonial:hover {
  border-color: rgba(220,38,38,0.2);
  transform: translateY(-4px);
}

.bl-testimonial__stars {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.bl-testimonial__text {
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.bl-testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.bl-testimonial__author strong { color: var(--text-1); font-size: 0.9rem; }
.bl-testimonial__author span { color: var(--text-4); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ─── 15. CTA SECTION ───────────────────────────────────────── */
.bl-cta {
  position: relative;
  padding-block: var(--sp-2xl);
  overflow: hidden;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.bl-cta__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(220,38,38,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.bl-cta__inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 3rem);
}

.bl-cta__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 1rem;
}

.bl-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-1);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.bl-cta__title span {
  font-family: var(--font-display);
  color: var(--red);
  font-size: 1.2em;
  text-shadow: 0 0 40px rgba(220,38,38,0.4);
}

.bl-cta__sub {
  color: var(--text-3);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.bl-cta__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.bl-cta__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: var(--text-4);
  font-size: 0.85rem;
}

.bl-contact-module {
  max-width: 600px;
  margin: 3rem auto 0;
  padding: var(--sp-lg);
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

/* ─── Map embed ─────────────────────────────────────────────── */
.bl-map {
  margin-top: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  line-height: 0;
}
.bl-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  filter: grayscale(0.3) invert(0.9) hue-rotate(180deg);
  opacity: 0.85;
  transition: opacity 0.3s;
}
.bl-map:hover iframe { opacity: 1; filter: none; }

/* ─── 16. FOOTER ────────────────────────────────────────────── */
.bl-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.bl-footer__top { padding-block: var(--sp-2xl) var(--sp-xl); }

.bl-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
}

@media (max-width: 900px) { .bl-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .bl-footer__grid { grid-template-columns: 1fr; } }

.bl-footer__brand { display: flex; flex-direction: column; gap: 1rem; }

.bl-logo--footer .bl-logo__brand { font-size: 1.4rem; }

.bl-footer__tagline {
  font-size: 0.85rem;
  color: var(--text-4);
  line-height: 1.6;
}

.bl-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-3);
  transition: color var(--t-fast);
}
.bl-footer__contact-item:hover { color: var(--red); }

.bl-footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-4);
  margin-bottom: 1.25rem;
}

.bl-footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.bl-footer__links a {
  font-size: 0.875rem;
  color: var(--text-3);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.bl-footer__links a:hover { color: var(--text-1); padding-left: 4px; }

.bl-footer__hours { display: flex; flex-direction: column; gap: 0.5rem; }
.bl-footer__hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-3);
}
.bl-footer__hours li span:first-child { color: var(--text-4); }

.bl-footer__bottom {
  border-top: 1px solid var(--border);
  padding-block: 1.5rem;
}

.bl-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.bl-footer__copy, .bl-footer__credit {
  font-size: 0.8rem;
  color: var(--text-4);
}
.bl-footer__credit a { color: var(--text-3); transition: color var(--t-fast); }
.bl-footer__credit a:hover { color: var(--red); }

/* ─── 17. INNER PAGES ───────────────────────────────────────── */
.bl-page-hero {
  padding-top: 110px;
  padding-bottom: var(--sp-lg);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.bl-page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.bl-page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-1);
  margin-top: 0.5rem;
  letter-spacing: -0.02em;
}

.bl-main {
  padding-block: var(--sp-xl) var(--sp-2xl);
}

.bl-content-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}
.bl-content-wrap--sidebar {
  grid-template-columns: 1fr 300px;
}

@media (max-width: 900px) { .bl-content-wrap--sidebar { grid-template-columns: 1fr; } }

/* Content typography */
.bl-content h1, .bl-content h2, .bl-content h3,
.bl-content h4, .bl-content h5, .bl-content h6 {
  font-family: var(--font-heading);
  color: var(--text-1);
  line-height: 1.2;
  margin-bottom: 0.75em;
  margin-top: 1.5em;
}
.bl-content h1 { font-size: 2.2rem; }
.bl-content h2 { font-size: 1.8rem; }
.bl-content h3 { font-size: 1.4rem; }

.bl-content p {
  color: var(--text-3);
  margin-bottom: 1em;
  line-height: 1.75;
}
.bl-content a { color: var(--red); text-decoration: underline; transition: opacity var(--t-fast); }
.bl-content a:hover { opacity: 0.8; }

.bl-content ul, .bl-content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
  color: var(--text-3);
}
.bl-content ul { list-style: disc; }
.bl-content ol { list-style: decimal; }
.bl-content li { margin-bottom: 0.4em; line-height: 1.65; }

.bl-content img {
  border-radius: var(--radius-md);
  max-width: 100%;
  height: auto;
  margin-block: 1.5em;
}

.bl-content table {
  width: 100%;
  border-collapse: collapse;
  margin-block: 1.5em;
  font-size: 0.9rem;
}
.bl-content th {
  background: var(--bg-surface);
  color: var(--text-1);
  font-family: var(--font-heading);
  padding: 0.75rem 1rem;
  text-align: left;
  border: 1px solid var(--border);
}
.bl-content td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
  color: var(--text-3);
}

/* Sidebar */
.bl-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* Breadcrumbs */
.bl-breadcrumbs ol { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.bl-breadcrumbs li { font-size: 0.8rem; color: var(--text-4); }
.bl-breadcrumbs li::after { content: '/'; margin-left: 0.5rem; }
.bl-breadcrumbs li:last-child::after { display: none; }
.bl-breadcrumbs a { color: var(--text-3); transition: color var(--t-fast); }
.bl-breadcrumbs a:hover { color: var(--red); }

/* ─── 18. ERROR / OFFLINE PAGES ─────────────────────────────── */
.bl-error-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.bl-error-page__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(220,38,38,0.08) 0%, transparent 60%);
}

.bl-error-page__content {
  position: relative;
  text-align: center;
  max-width: 500px;
}

.bl-error-page__code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 15vw, 12rem);
  color: rgba(220,38,38,0.15);
  line-height: 1;
  margin-bottom: -1rem;
}

.bl-error-page__icon { font-size: 4rem; margin-block: 1rem; }

.bl-error-page__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 1rem;
}

.bl-error-page__msg {
  color: var(--text-3);
  margin-bottom: 2rem;
}

/* ─── 19. MESSAGES ──────────────────────────────────────────── */
.bl-messages {
  position: fixed;
  top: 90px;
  right: 1rem;
  z-index: 800;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.alert {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  border-left: 3px solid;
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
  color: var(--text-2);
}
.alert-success { border-color: #22c55e; }
.alert-warning { border-color: var(--gold); }
.alert-danger, .alert-error { border-color: var(--red); }
.alert-info { border-color: #3b82f6; }

/* ─── 20. FORMS ─────────────────────────────────────────────── */
.bl-form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.bl-form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bl-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-size: 0.95rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.bl-input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

/* ─── 21. SCROLL ANIMATIONS ─────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1),
              transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="zoom-in"]    { transform: scale(0.85); }

[data-aos].is-visible {
  opacity: 1;
  transform: none;
}

/* ─── 22. MOBILE RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  /* Mobile Nav */
  .bl-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100svh;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(20px);
    z-index: 860;
    transform: translateX(100%);
    transition: transform var(--t-slow);
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5rem;
    padding-inline: 1.5rem;
    border-left: 1px solid var(--border);
    overflow-y: auto;
  }

  .bl-nav.is-open { transform: translateX(0); }

  .bl-nav__list { flex-direction: column; align-items: stretch; gap: 0.25rem; }

  .bl-nav__link {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .bl-nav__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    display: none;
  }
  .bl-nav__item.has-children.is-open .bl-nav__dropdown { display: block; }

  .bl-header__phone { display: none; }
  .bl-burger { display: flex; }
}

@media (max-width: 640px) {
  .bl-hero__actions { flex-direction: column; align-items: center; }
  .bl-btn--lg { width: 100%; max-width: 280px; justify-content: center; }
  .bl-cta__actions { flex-direction: column; align-items: center; }
}

/* ─── 23. JOOMLA OVERRIDES ──────────────────────────────────── */
.bl-content .com-content-article { max-width: 100%; }
.bl-content .article-info { display: none; } /* optional: Metainfos ausblenden */

/* Joomla Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.pagination li { list-style: none; }
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  border: 1px solid var(--border);
  color: var(--text-3);
  transition: all var(--t-fast);
  background: var(--bg-card);
}
.pagination a:hover { border-color: var(--red); color: var(--red); }
.pagination .active span { background: var(--red); border-color: var(--red); color: white; }

/* Print */
@media print {
  .bl-header, .bl-footer, .bl-hero, .bl-loader { display: none; }
  body { background: white; color: black; }
  .bl-main { padding-top: 1rem; }
}

/* ═══════════════════════════════════════════════════════════
   LIGHT THEME  —  .theme-light auf <body>
   Überschreibt alle CSS-Variablen für das helle Design.
   Im Joomla-Backend: Template-Stil → Farbschema → Hell
═══════════════════════════════════════════════════════════ */
.theme-light {
  --bg-base:     #f4f4f5;
  --bg-surface:  #ffffff;
  --bg-surface2: #f0f0f2;
  --bg-card:     #ffffff;
  --bg-card-h:   #f8f8fa;
  --bg-glass:    rgba(0,0,0,0.03);
  --text-1:      #0f0f10;
  --text-2:      #27272a;
  --text-3:      #52525b;
  --text-4:      #a1a1aa;
  --border:      rgba(0,0,0,0.09);
  --border-h:    rgba(220,38,38,0.4);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
  --shadow-red:  0 8px 40px rgba(220,38,38,0.18);
  --shadow-glow: 0 0 60px rgba(220,38,38,0.10);
}

/* ── Globales Body-Hintergrund ────────────────────────────── */
.theme-light.bl-body { background: var(--bg-base); color: var(--text-2); }

/* ── Loader ───────────────────────────────────────────────── */
.theme-light .bl-loader {
  background: #ffffff;
}
.theme-light .bl-loader__name { color: #111; }
.theme-light .bl-loader__bar  { background: rgba(0,0,0,0.1); }

/* ── Header — transparent über dunklem Hero, weiß nach Scroll ─ */
.theme-light .bl-header { background: transparent; }

/* Schrift weiß solange kein is-scrolled (Hero-Bereich) */
.theme-light .bl-logo__brand                        { color: #fff; }
.theme-light .bl-logo__brand em                     { color: var(--red); }
.theme-light .bl-logo__sub                          { color: rgba(255,255,255,0.6); }
.theme-light .bl-nav__link,
.theme-light .bl-nav__item.is-active > .bl-nav__link { color: rgba(255,255,255,0.85); }
.theme-light .bl-nav__link:hover                    { color: #fff; }
.theme-light .bl-header__phone                      { color: rgba(255,255,255,0.85); }
.theme-light .bl-header__phone:hover                { color: #fff; }
.theme-light .bl-burger__line                       { background: #fff; }

/* Nach Scroll: weißer Header mit dunkler Schrift */
.theme-light .bl-header.is-scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.theme-light .bl-header.is-scrolled .bl-logo__brand     { color: #111; }
.theme-light .bl-header.is-scrolled .bl-logo__sub       { color: var(--text-3); }
.theme-light .bl-header.is-scrolled .bl-nav__link,
.theme-light .bl-header.is-scrolled .bl-nav__item.is-active > .bl-nav__link { color: var(--text-2); }
.theme-light .bl-header.is-scrolled .bl-nav__link:hover,
.theme-light .bl-header.is-scrolled .bl-nav__item.is-active > .bl-nav__link:hover { color: var(--red); }
.theme-light .bl-header.is-scrolled .bl-header__phone   { color: var(--text-2); }
.theme-light .bl-header.is-scrolled .bl-burger__line    { background: var(--text-1); }

/* Desktop Dropdown */
.theme-light .bl-nav__dropdown {
  background: #fff;
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.theme-light .bl-nav__dropdown .bl-nav__link { color: var(--text-2); }

/* ── Hero (bleibt dunkel für maximalen Impact) ────────────── */
.theme-light .bl-hero { background: #0f0f10; }
.theme-light .bl-hero__overlay {
  background: linear-gradient(
    160deg,
    rgba(220,38,38,0.18) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(15,15,16,0.85) 100%
  );
}
.theme-light .bl-badge--outline {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.8);
}

/* ── Stats-Leiste ─────────────────────────────────────────── */
.theme-light .bl-stats {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.theme-light .bl-stats__number { color: var(--red); }
.theme-light .bl-stats__label  { color: var(--text-3); }
.theme-light .bl-stats__divider { background: var(--border); }

/* ── Services ─────────────────────────────────────────────── */
.theme-light .bl-services { background: var(--bg-base); }
.theme-light .bl-section-label { color: var(--red); }
.theme-light .bl-section-title { color: var(--text-1); }

.theme-light .bl-service-card {
  background: #fff;
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}
.theme-light .bl-service-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.theme-light .bl-service-card__icon { background: rgba(220,38,38,0.08); }
.theme-light .bl-service-card__icon svg { fill: var(--red); }
.theme-light .bl-service-card__title { color: var(--text-1); }
.theme-light .bl-service-card__desc  { color: var(--text-3); }
.theme-light .bl-service-card__features li { color: var(--text-2); }
.theme-light .bl-service-card__link  { color: var(--red); }

/* ── Gallery ──────────────────────────────────────────────── */
.theme-light .bl-gallery { background: var(--bg-surface2); }

/* ── About ────────────────────────────────────────────────── */
.theme-light .bl-about { background: #fff; }
.theme-light .bl-about__label  { color: var(--red); }
.theme-light .bl-about__title  { color: var(--text-1); }
.theme-light .bl-about__lead   { color: var(--text-2); }
.theme-light .bl-about__body   { color: var(--text-3); }
.theme-light .bl-about__fact-number { color: var(--red); }
.theme-light .bl-about__fact-label  { color: var(--text-3); }
.theme-light .bl-about__image-placeholder {
  background: linear-gradient(135deg, #e5e5e7 0%, #d4d4d8 100%);
}
.theme-light .bl-about__badge {
  background: rgba(220,38,38,0.08);
  border-color: rgba(220,38,38,0.2);
  color: var(--red);
}

/* ── CTA / Kontakt (bleibt Rot — kein Override nötig) ─────── */

/* ── Footer ───────────────────────────────────────────────── */
.theme-light .bl-footer {
  background: #18181b;
  border-top-color: rgba(255,255,255,0.06);
}

/* ── Buttons (Ghost im Light-Mode) ───────────────────────── */
.theme-light .bl-btn--ghost {
  color: var(--text-1);
  border-color: var(--border);
}
.theme-light .bl-btn--ghost:hover {
  background: var(--text-1);
  color: #fff;
  border-color: var(--text-1);
}

/* ── Inner Pages ──────────────────────────────────────────── */
.theme-light .bl-page-hero { background: #fff; border-bottom: 1px solid var(--border); }
.theme-light .bl-page-hero__title { color: var(--text-1); }
.theme-light .bl-main { background: var(--bg-base); }
.theme-light .bl-content { color: var(--text-2); }
.theme-light .bl-content h1,
.theme-light .bl-content h2,
.theme-light .bl-content h3 { color: var(--text-1); }
.theme-light .bl-content a  { color: var(--red); }

/* ── Nav-Overlay Mobile ───────────────────────────────────── */
.theme-light .bl-nav.is-open {
  background: rgba(255,255,255,0.98);
}
.theme-light .bl-nav.is-open .bl-nav__link { color: var(--text-1); }

/* ── Karte ────────────────────────────────────────────────── */
.theme-light .bl-map iframe {
  filter: grayscale(0.2) brightness(1.05);
  opacity: 0.9;
}
.theme-light .bl-map:hover iframe { filter: none; opacity: 1; }
