﻿/* =========================
   1) Vars
   ========================= */
:root {
  --gold: #e6b800;
  --gold-2: #cda434;
  --text: #e9ecef;
  --text-dim: #a9b0b7;
  --bg: #2c4432;
  --bg-2: #1b1e20;
  --stroke: rgba(255, 255, 255, 0.08);
  --radius: 14px;
}

/* =========================
   2) Base
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Saira, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, #1d2024 0%, transparent 60%),
    radial-gradient(1000px 500px at 100% 0%, #181b1e 0%, transparent 55%),
    var(--bg);
}

body:not(.home):not(.inner-page)::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("./backgeround/Bcg_Premium_Finish.webp");
  background-repeat: no-repeat;
  background-position: 58% 50%;
  background-size: cover;
  opacity: 0.1;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================
   3) Utilities
   ========================= */
.container {
  width: min(1100px, 92%);
  margin-inline: auto;
}

.hidden {
  display: none;
}

.muted {
  color: var(--text-dim);
}

.text-gold {
  color: var(--gold);
}

.section,
.hero {
  scroll-margin-top: 90px;
}

/* =========================
   4) Decorative lines
   ========================= */
.gold-line {
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--gold),
    color-mix(in srgb, var(--gold) 50%, #222),
    transparent
  );
}

.gold-line.top {
  height: 4px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: opacity 0.4s ease;
  opacity: 1;
}

.gold-line.bottom {
  height: 2px;
  opacity: 0.8;
}

/* =========================
   5) Header + Nav
   ========================= */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

header.site-header,
.site-header.container {
  background: transparent !important;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  position: relative;
  z-index: 60;
}

.brand img {
  border: 0;
  outline: none;
  box-shadow: none;
}

.hamburger {
  font-size: 1.1rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  position: relative;
  z-index: 60;
}

.nav {
  display: none;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  opacity: 0.92;
}
.nav__link--trigger {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text);
  cursor: pointer;
  opacity: .92;
}

.nav__link--trigger:hover {
  opacity: 1;
}

.nav a:hover {
  opacity: 1;
}

.nav__link {
  position: relative;
}

.nav__link.is-active {
  color: var(--gold);
}

.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
}

.nav__item {
  position: relative;
}

.nav__item--dropdown {
  display: flex;
  align-items: center;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 290px;
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(230, 184, 0, 0.16);
  border-radius: 16px;
  background: rgba(18, 22, 24, 0.96);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;
  z-index: 70;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__sublink {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.nav__sublink:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(230, 184, 0, 0.14);
}

/* =========================
   6) Buttons + Sticky CTA
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.1rem;
  border: 1px solid var(--stroke);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
}

.btn--gold {
  border-color: color-mix(in srgb, var(--gold) 55%, #000);
  background: linear-gradient(180deg, var(--gold) 0%, #d3a300 100%);
  color: #121212;
  box-shadow:
    0 10px 30px -12px rgba(0, 0, 0, 0.5),
    0 0 16px rgba(230, 184, 0, 0.12);
}

.btn--gold:hover {
  filter: brightness(1.05) contrast(1.02);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: color-mix(in srgb, var(--gold-2) 40%, #555);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.04);
}

.sticky-cta {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  padding: 0.8rem 1rem;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, #000);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold) 0%, #d3a300 100%);
  color: #121212;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px -12px rgba(0, 0, 0, 0.6),
    0 0 16px rgba(230, 184, 0, 0.12);
  transition: transform 0.15s ease, filter 0.15s ease;
}

.sticky-cta svg {
  width: 26px;
  height: 26px;
}

.sticky-cta:active {
  transform: scale(0.96);
}

/* =========================
   7) Typography
   ========================= */
h1 {
  font-size: 2rem;
  line-height: 1.15;
  margin: 0.3rem 0 0;
}

h2 {
  font-size: 1.6rem;
  margin: 0 0 14px;
  color: var(--text);
}

h3 {
  margin: 0.2rem 0 0.4rem;
  color: var(--text);
}

/* =========================
   8) Hero
   ========================= */
.hero {
  position: relative;
  min-height: clamp(520px, 85vh, 900px);
  display: flex;
  align-items: center;
  padding: clamp(44px, 6vw, 88px) 0;
  isolation: isolate;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #142018;
  background-image: url("./backgeround/Bcg_Premium_Finish.webp");
  animation: heroZoom 6s ease-out forwards;
}

.hero--small {
  min-height: 58vh;
}

.hero--moebel {
  background-image: url("./backgeround/mobel_hero.webp");
}

.hero--umzug {
  background-image: url("./backgeround/umzug_hero.webp");
}

.hero--kueche {
  background-image: url("./backgeround/kuche_hero.webp");
}

.hero--about {
  background-image: url("./backgeround/Hero_Uber_uns.webp");
}

.hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.45) 30%,
    rgba(0, 0, 0, 0.15) 55%,
    rgba(0, 0, 0, 0) 75%
  );
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__text {
  max-width: 620px;
}

.hero--home .hero__text {
  margin-top: 300px;
}

.hero__stack {
  display: grid;
  gap: 18px;
}

.hero--home .hero__stack {
  transform: translateY(-25px);
}

.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 0.3rem 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 999px;
  opacity: 0.85;
}

.kicker__line {
  width: 36px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.kicker--short {
  display: none;
}

.hero__title {
font-family: "Italianno", Saira, system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 7vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-shadow:
    0 3px 6px rgba(0, 0, 0, 0.85),
    0 10px 30px rgba(0, 0, 0, 0.65),
    0 0 10px rgba(0, 0, 0, 0.55);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
  position: relative;
}

.js .hero__title {
  opacity: 0;
  transform: translateY(10px);
}

.hero__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 12px;
}

.js .hero__title.is-visible {
  animation: titleReveal 0.7s ease-out forwards;
}

.js .hero__title.is-visible::after {
  animation: lineGrow 0.65s ease-out 0.25s forwards;
}

.hero__subtitle {
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(233, 236, 239, 0.96);
  font-weight: 500;
  margin-top: 4px;
  text-shadow:
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 8px 22px rgba(0, 0, 0, 0.35);
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.js .hero__ctas > a {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.55s ease-out forwards;
  animation-fill-mode: both;
}

.js .hero__ctas > a:nth-child(1) {
  animation-delay: 0.1s;
}

.js .hero__ctas > a:nth-child(2) {
  animation-delay: 0.22s;
}

.hero p {
  margin: 0.7rem 0 0;
}

@keyframes heroZoom {
  from {
    background-size: 106%;
  }
  to {
    background-size: 100%;
  }
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineGrow {
  to {
    width: 240px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   9) Sections + Head
   ========================= */
.section {
  padding: 44px 0;
}

.section--muted {
  background: var(--bg-2);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}

.section__head {
  text-align: center;
}

.section__head .rule {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 3px;
}

/* =========================
   10) Cards
   ========================= */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 18px;
}

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(27, 30, 32, 0.96) 0%, rgba(24, 27, 30, 0.96) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(600px 220px at 20% 0%, rgba(230, 184, 0, 0.14), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: rgba(230, 184, 0, 0.35);
  pointer-events: none;
}

.card h3 {
  margin: 0.2rem 0 0.6rem;
}

.card ul {
  margin: 0.2rem 0 0.8rem 18px;
  color: var(--text-dim);
}

.card li {
  margin: 0.25rem 0;
}

.card .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.card .link:hover {
  text-decoration: underline;
}

/* =========================
   11) Steps
   ========================= */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.step {
  background: #181b1e;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 12px;
  backdrop-filter: blur(8px);
}

/* =========================
   12) Contact
   ========================= */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 10px 0;
}

.contact__meta {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

#kontakt {
  padding-top: 48px;
  padding-bottom: 52px;
}

.map {
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid rgba(230, 184, 0, 0.22);
  box-shadow: 0 12px 28px -18px rgba(0, 0, 0, 0.6);
  background: #0f1113;
}

.map__frame {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
}

/* =========================
   13) Footer
   ========================= */
.site-footer {
  background: #16181a;
  border-top: 1px solid var(--stroke);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer__links a,
.footer__links .footer__btn {
  color: var(--text-dim);
  text-decoration: none;
  font: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.footer__links a:hover,
.footer__links .footer__btn:hover {
  color: var(--text);
}

.footer__meta {
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 20px;
  font-size: 1rem;
  align-items: center;
}

.footer-social a {
  color: #daa520;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

/* =========================
   14) Trust strip
   ========================= */
.trust-strip {
  background: linear-gradient(180deg, rgba(15, 25, 20, 0.85), rgba(15, 25, 20, 0.65));
  border-top: 1px solid rgba(230, 184, 0, 0.15);
  border-bottom: 1px solid rgba(230, 184, 0, 0.15);
  backdrop-filter: blur(8px);
}

.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 22px 0;
}

.trust-strip__inner span {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 184, 0, 0.25);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: opacity 0.8s cubic-bezier(.22,.61,.36,1), transform 0.75s cubic-bezier(.22,.61,.36,1);
}

.js .trust-strip:not(.is-visible) .trust-strip__inner span {
  opacity: 0;
  transform: translateY(10px);
}

.trust-strip.is-visible .trust-strip__inner span {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   15) Gallery
   ========================= */
#galerie {
  padding-top: 60px;
}

.gallery {
  position: relative;
}

.gallery__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(230, 184, 0, 0.35);
  box-shadow:
    0 12px 36px -18px rgba(0, 0, 0, 0.75),
    0 0 12px rgba(230, 184, 0, 0.22);
  background: #0f1113;
  aspect-ratio: 4 / 3;
}

.gallery__track {
  display: flex;
  gap: 0;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.gallery__slide {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  height: 100%;
}

.gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 22, 24, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.gallery__arrow--prev {
  left: 14px;
}

.gallery__arrow--next {
  right: 14px;
}

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.gallery__dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: #2a2d30;
  cursor: pointer;
}

.gallery__dots button.is-active {
  background: var(--gold);
  border-color: color-mix(in srgb, var(--gold) 60%, #000);
}

.gallery__count {
  text-align: center;
  margin-top: 8px;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* =========================
   16) Stats strip
   ========================= */
.stats-strip {
  margin-top: 10px;
  background: linear-gradient(180deg, rgba(15, 25, 20, 0.78), rgba(15, 25, 20, 0.55));
  border-top: 1px solid rgba(230, 184, 0, 0.15);
  border-bottom: 1px solid rgba(230, 184, 0, 0.15);
}

.stats-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 0;
  align-items: center;
  text-align: center;
}

.stat {
  border: 1px solid rgba(230, 184, 0, 0.18);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 999px;
  padding: 12px 18px;
}

.stat__num {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--gold);
  line-height: 1.1;
}

.stat__label {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-top: 2px;
}

.g-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(230, 184, 0, 0.22);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.g-badge__stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.g-badge__text strong {
  color: var(--gold);
}

/* =========================
   17) USP / CTA Panel
   ========================= */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 18px;
}

.usp-card {
  background: linear-gradient(180deg, rgba(27, 30, 32, 0.92) 0%, rgba(24, 27, 30, 0.92) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.usp-card h3 {
  margin: 0 0 8px;
}

.cta-panel {
  margin-top: 18px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(230, 184, 0, 0.18);
  background: linear-gradient(180deg, rgba(15, 25, 20, 0.7) 0%, rgba(15, 25, 20, 0.45) 100%);
  display: grid;
  gap: 12px;
  backdrop-filter: blur(8px);
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* =========================
   18) Partner pills
   ========================= */
.partner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(230, 184, 0, 0.22);
  background: rgba(255, 255, 255, 0.015);
  color: var(--text);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.partner-grid-center {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, max-content));
  justify-content: center;
  gap: 12px 14px;
  max-width: 720px;
  margin: 0 auto;
}

#partneri {
  position: relative;
  border: 1.8px solid rgba(230, 184, 0, 0.16);
  border-radius: 22px;
  padding-top: 40px;
  padding-bottom: 44px;
}

/* =========================
   19) Logo + reveal
   ========================= */
#logo {
  width: clamp(52px, 5vw, 64px);
  height: auto;
  transform-style: preserve-3d;
  border: 0;
  outline: none;
  box-shadow: none;
  transition: transform 0.3s ease;
  backface-visibility: hidden;
  will-change: transform;
}

#logo.animate {
  animation:
    rotateLogo 2.2s ease-out forwards,
    logoGlow 2.2s ease-in-out forwards;
}

.leonal-glow {
  font-family: "Cinzel", serif;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.15em;
  text-align: center;
  animation: none;
  font-size: 1.8rem;
}

.leonal-glow.animate {
  animation: glowIn 3.8s ease-out forwards;
}

@keyframes rotateLogo {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(360deg);
  }
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 16px rgba(230, 184, 0, 0));
  }
  50% {
    filter: drop-shadow(0 0 22px rgba(230, 184, 0, 0.9));
  }
  100% {
    filter: drop-shadow(0 0 6px rgba(230, 184, 0, 0.3));
  }
}

@keyframes glowIn {
  0% {
    opacity: 0;
    color: var(--text);
    text-shadow: none;
  }
  40% {
    opacity: 1;
    color: var(--gold);
    text-shadow: 0 0 12px var(--gold);
  }
  100% {
    color: var(--text);
    text-shadow: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.8s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   20) Focus
   ========================= */
input:focus,
button:focus,
:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--gold) 60%, #000);
  outline-offset: 2px;
}

/* =========================
   21) Lightbox
   ========================= */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  z-index: 9999;
}

.lightbox.is-open {
  display: grid;
}

.lightbox__img {
  max-width: min(1100px, 92vw);
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(230, 184, 0, 0.25);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.65);
}

.lightbox__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(20, 22, 24, 0.7);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  cursor: pointer;
  border-radius: 50%;
}

.lightbox__prev {
  left: 20px;
}

.lightbox__next {
  right: 20px;
}

body.lb-lock {
  overflow: hidden;
  touch-action: none;
}

/* =========================
   22) Reviews
   ========================= */
.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
  text-shadow: 0 0 6px rgba(218, 165, 32, 0.35);
}

.review-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-author {
  font-weight: 600;
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: 0.85;
  font-size: 0.9rem;
  text-decoration: none;
  color: inherit;
}

.review-source:hover {
  opacity: 1;
}

.reviews-more {
  text-align: center;
  margin-top: 18px;
}

.reviews-more a {
  color: #daa520;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.reviews-more a:hover {
  text-decoration: underline;
  opacity: 0.9;
  transform: translateX(4px);
}

.reviews-more a:visited {
  color: #daa520;
}

/* =========================
   23) About / Uber uns
   ========================= */
.about-text {
  max-width: 980px;
}

.about-content {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.about-block {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text);
  font-weight: 600;
  margin: 0;
}

.about-highlight {
  padding: 18px 22px;
  border: 1px solid rgba(230, 184, 0, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20,23,25,.82) 0%, rgba(16,19,20,.72) 100%);
  box-shadow: 0 14px 36px -20px rgba(0,0,0,.55);
}

.about-highlight p {
  margin: 0;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.about-divider {
  height: 1px;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(218,165,32,0) 0%,
    rgba(218,165,32,.9) 50%,
    rgba(218,165,32,0) 100%
  );
  box-shadow: 0 0 8px rgba(218,165,32,.18);
}

.about-divider.reveal {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .9s ease, transform .7s ease;
}

.about-divider.reveal.is-visible {
  opacity: .65;
  transform: translateY(0);
}

/* =========================
   24) Showroom
   ========================= */
.showroom {
  margin-top: 8px;
}

.showroom .section__head {
  margin-bottom: 22px;
}

.showroom-info {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.showroom-columns {
  display: grid;
  gap: 18px;
  margin: 8px 0;
}

.showroom-brands {
  margin: 0;
  padding-left: 18px;
  color: var(--text-dim);
  line-height: 1.8;
}

.showroom-brands li + li {
  margin-top: 8px;
}

.showroom-tagline {
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 0;
}

.showroom-address {
  margin-top: 8px;
  color: #f0c94a;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.showroom-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.showroom-grid img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  border: 1px solid rgba(230,184,0,.18);
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.7);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.showroom-grid img:nth-child(1),
.showroom-grid img:nth-child(4) {
  object-position: center top;
}

.showroom-gallery-mobile {
  display: none;
}

/* =========================
   25) Content pages
   ========================= */
.content-text {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.content-text h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.content-text p {
  margin: 0.8rem 0;
}

.content-text ul {
  margin: 0.8rem 0 1rem 1.2rem;
}

.content-text li {
  margin: 0.3rem 0;
}

/* =========================
   26) Hover
   ========================= */
@media (hover: hover) {
  .g-badge:hover {
    transform: translateY(-1px);
    background: rgba(230, 184, 0, 0.06);
    border-color: rgba(230, 184, 0, 0.35);
  }

  .gallery__slide:hover img {
    transform: scale(1.05);
  }

  .gallery__viewport:hover {
    box-shadow:
      0 16px 40px -18px rgba(0, 0, 0, 0.8),
      0 0 18px rgba(230, 184, 0, 0.28);
  }

  .gallery__arrow:hover,
  .lightbox__close:hover {
    background: rgba(230, 184, 0, 0.14);
    border-color: rgba(230, 184, 0, 0.28);
  }

  .partner-pill:hover {
    transform: translateY(-2px);
    background: rgba(230, 184, 0, 0.08);
    border-color: rgba(230, 184, 0, 0.35);
  }

  .card:hover,
  .review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 184, 0, 0.28);
    box-shadow:
      0 0 0 1px rgba(230, 184, 0, 0.1),
      0 18px 44px -18px rgba(0, 0, 0, 0.75);
  }

  .card:hover::after {
    background: rgba(230, 184, 0, 0.55);
  }

  .showroom-grid img:hover {
    transform: scale(1.03);
    border-color: rgba(230,184,0,.35);
    box-shadow:
      0 22px 55px -20px rgba(0,0,0,.9),
      0 0 12px rgba(230,184,0,.25);
  }

  .showroom-address:hover {
    color: #f0c94a;
    text-decoration: underline;
  }
}

/* =========================
   27) Mobile
   ========================= */
@media (max-width: 40em) {
  :root {
    --radius: 12px;
  }

  .section {
    padding: 28px 0;
  }

  .site-header {
    padding: 10px 0;
    gap: 10px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero {
    animation: none;
    min-height: 64vh;
    padding: 22px 0 16px;
    align-items: flex-end;
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
    z-index: 1;
  }

  .hero__inner {
    position: relative;
    z-index: 2;
  }

  .hero__stack {
    transform: none;
    gap: 12px;
  }

  .hero__title {
    font-size: clamp(1.5rem, 4.5vw, 1.9rem);
    margin-bottom: 8px;
  }

  .hero .kicker {
    display: none;
  }

  .hero__subtitle,
  .hero__text .muted {
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 14px;
    border-radius: 8px;
    display: inline-block;
  }

  .nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    margin: 0 auto;
    width: min(92%, 680px);
    background: #1b1e20;
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 55;
  }

  .nav.is-open {
    display: flex;
  }
.nav a,
.nav__link--trigger {
  display: block;
  padding: 0.78rem 0.9rem;
  border-radius: 10px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
}


 .nav a.btn {
  margin-top: 6px;
  border: 0;
}

.nav__link--trigger {
  width: 100%;
  text-align: left;
}

  .nav__item--dropdown {
    display: block;
  }

  .nav__dropdown {
    position: static;
    min-width: unset;
    margin-top: 10px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(255, 255, 255, 0.02);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.06);
  }

  .cards {
    gap: 12px;
    margin-top: 12px;
  }

  .card {
    padding: 14px;
  }

  .card ul {
    margin: 0.35rem 0 0.35rem 16px;
  }

  .showroom-grid {
    display: none;
  }

  .showroom-gallery-mobile {
    display: block;
    margin-top: 22px;
  }

  .showroom-gallery-mobile .gallery__viewport {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    border: 1px solid rgba(230,184,0,.28);
    box-shadow:
      0 12px 36px -18px rgba(0,0,0,.75),
      0 0 12px rgba(230,184,0,.16);
    overflow: hidden;
    background: #0f1113;
  }

  .showroom-gallery-mobile .gallery__track {
    display: flex;
    gap: 0;
  }

  .showroom-gallery-mobile .gallery__slide {
    flex: 0 0 100%;
    min-width: 100%;
    margin: 0;
    height: 100%;
  }

  .showroom-gallery-mobile .gallery__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .showroom-gallery-mobile .gallery__slide:nth-child(1) img,
  .showroom-gallery-mobile .gallery__slide:nth-child(4) img {
    object-position: center 20%;
  }

  .showroom-gallery-mobile .gallery__arrow {
    width: 40px;
    height: 40px;
  }

  .showroom-gallery-mobile .gallery__arrow--prev {
    left: 10px;
  }

  .showroom-gallery-mobile .gallery__arrow--next {
    right: 10px;
  }

  .showroom-gallery-mobile .gallery__dots {
    margin-top: 10px;
  }

  .showroom-gallery-mobile .gallery__count {
    margin-top: 6px;
    font-size: 0.9rem;
    color: var(--text-dim);
  }

  .showroom-columns {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .footer__links,
  .footer-social {
    justify-content: center;
  }

  .sticky-cta {
    padding: 0;
    border-radius: 50%;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* =========================
   28) Tablet/Desktop
   ========================= */
@media (min-width: 48rem) {
  h1 {
    font-size: 2.6rem;
  }

  .nav {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 16px;
  }

  .step {
    padding: 16px;
  }

  .contact {
    grid-template-columns: 1fr 1fr;
  }

  .usp-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .cta-panel {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    padding: 20px 22px;
  }

  .cta-panel__actions {
    justify-content: flex-end;
  }

  .stats-strip__inner {
    display: grid;
    grid-template-columns: max-content max-content 1fr;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .g-badge {
    justify-self: end;
  }

  .gallery__viewport {
    aspect-ratio: 16 / 9;
  }

  .map__frame {
    height: 280px;
  }

  .showroom-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 769px) {
  .showroom-grid {
    display: grid;
  }

  .showroom-gallery-mobile {
    display: none !important;
  }
}

@media (min-width: 64rem) {
  body:not(.home)::before {
    background-size: 85%;
    background-position: 58% 50%;
  }

  h1 {
    font-size: 3rem;
  }

  .hero--home {
    background-size: cover;
    background-position: 50% 5%;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: minmax(420px, 560px) 1fr;
    align-items: center;
    gap: 48px;
    padding-left: 80px;
  }

  .hero__text {
    max-width: none;
  }

  .map__frame {
    height: 330px;
  }
}

/* =========================
   29) Reduced motion
   ========================= */
@media (prefers-reduced-motion: reduce) {
  #logo.animate,
  .leonal-glow.animate {
    animation: none !important;
  }

  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .gallery__track,
  .trust-strip__inner span {
    transition: none !important;
  }
}
