/* ===========================
   HEADER (sticky)
   =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--petrol-dark);
  height: 62px;
  display: flex;
  align-items: center;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.header__logo-text {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  color: var(--weiss);
  line-height: 1.2;
}

.header__logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: rgba(247, 245, 242, 0.7);
}

.header__logo-icon {
  width: 32px;
  height: 32px;
  color: var(--bronze);
  flex-shrink: 0;
}

.header__nav {
  display: flex;
  gap: 32px;
  list-style: none;
}

.header__nav a {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(247, 245, 242, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__nav a:hover {
  color: var(--weiss);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__tel {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--creme);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.header__tel:hover { color: var(--bronze); }

.header__tel svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Mobile Menu Button */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--weiss);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  top: 62px;
  background-color: var(--petrol-dark);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.is-open { display: flex; }

.mobile-nav a {
  font-family: var(--font-headline);
  font-size: 20px;
  color: var(--creme);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(247, 245, 242, 0.1);
}

.mobile-nav a:hover { color: var(--bronze); }

.mobile-nav .btn {
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__actions .btn { display: none; }
  .header__burger { display: flex; }
}

@media (max-width: 480px) {
  .header__tel span { display: none; }
}

/* ===========================
   SKIP-LINK (Barrierefreiheit)
   =========================== */

.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--bronze);
  color: var(--weiss);
  padding: 8px 16px;
  border-radius: var(--radius-base);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
}

.skip-link:focus { top: 8px; }

/* ===========================
   SEKTION 1: HERO
   =========================== */

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-color: var(--petrol-dark);
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(21, 47, 56, 0.65) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-block: 80px 0;
  padding-inline: 24px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 264px;
  gap: 120px;
  align-items: start;
}

.hero__left {
  padding-top: 150px;
  padding-bottom: 80px;
}

.hero__left h1 {
  color: var(--weiss);
  margin-bottom: 20px;
}

.hero__left .sub-headline {
  color: rgba(247, 245, 242, 0.9);
  margin-bottom: 16px;
}

.hero__left .hero__seit {
  font-size: 16px;
  color: rgba(247, 245, 242, 0.75);
}

/* Glaskasten */
.hero__box {
  background: rgba(247, 245, 242, 0.40);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-large);
  padding: 16px;
  box-shadow: var(--shadow-hero-box);
  position: relative;
}

.hero__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--bronze);
  border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.hero__box-headline {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 600;
  color: var(--petrol-dark);
  margin-bottom: 8px;
}

.hero__box-divider {
  border: none;
  border-top: 1px solid rgba(166, 124, 82, 0.5);
  margin-bottom: 10px;
}

/* Pfad-Reihen */
.hero__pfad {
  padding-block: 6px;
  border-bottom: 1px solid rgba(229, 224, 218, 0.5);
  position: relative;
}

.hero__pfad:last-of-type { border-bottom: none; }

.hero__pfad-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 6px;
}

.hero__pfad-icon {
  width: 32px;
  height: 32px;
  color: var(--bronze);
  flex-shrink: 0;
  margin-top: 2px;
}

.hero__pfad-title {
  font-family: var(--font-headline);
  font-size: 15px;
  font-weight: 600;
  color: var(--petrol-dark);
}

.hero__pfad-desc {
  font-size: 13px;
  color: var(--petrol);
  line-height: 1.5;
  margin-left: 0;
  margin-bottom: 10px;
}

.hero__pfad-actions {
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__pfad-mehr {
  font-size: 13px;
  color: var(--creme);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: var(--font-body);
}

/* Badge "Beliebteste Wahl" */
.hero__badge {
  position: absolute;
  top: 16px;
  right: 0;
  background-color: var(--bronze);
  color: var(--weiss);
  font-family: var(--font-headline);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Mini-Trust-Streifen */
.hero__trust {
  position: relative;
  z-index: 2;
  background: rgba(21, 47, 56, 0.6);
  padding-block: 12px;
}

.hero__trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--creme);
}

.hero__trust-sep {
  width: 4px;
  height: 4px;
  background-color: var(--bronze);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Bellevue-Siegel im Header-Bereich */
.hero__bellevue {
  position: absolute;
  top: 16px;
  right: 0;
  max-width: 120px;
  z-index: 3;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr 300px;
    gap: 32px;
  }
  .hero__left {
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 480px;
  }
  .hero__content {
    padding-block: 48px 0;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero__left {
    padding-top: 32px;
    padding-bottom: 0;
  }
  .hero__bellevue { max-width: 80px; }
  .hero__trust-inner {
    gap: 8px;
    font-size: 13px;
  }
  .hero__trust-sep { display: none; }
}

/* ===========================
   SEKTION 2: SERVICE-KARTEN
   =========================== */

#service-karten {
  background-color: var(--creme);
}

/* ===========================
   SEKTION 3: VIER UNTERSCHIEDE
   =========================== */

#vier-unterschiede {
  background-color: var(--weiss);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.icon-grid .icon-box {
  background-color: var(--creme);
  border-radius: var(--radius-base);
  padding: 0;
  overflow: hidden;
}

.vier-unterschiede-bild {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
  display: block;
}

.icon-box__content {
  padding: 20px;
}

.icon-box__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.icon-box__header h4 {
  margin-bottom: 0;
}

.icon-grid-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .icon-grid { grid-template-columns: 1fr; }
}

/* ===========================
   SEKTION 4: COUNTER-BLOCK
   =========================== */

#counter-block {
  background-color: var(--petrol-dark);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.counter-item {
  border-right: 1px solid rgba(247, 245, 242, 0.1);
}

.counter-item:last-child { border-right: none; }

@media (max-width: 768px) {
  .counter-grid { grid-template-columns: repeat(2, 1fr); }
  .counter-item { border-right: none; border-bottom: 1px solid rgba(247, 245, 242, 0.1); }
  .counter-item:nth-child(2n) { border-right: none; }
  .counter-item__zahl { font-size: 32px; }
}

/* ===========================
   SEKTION 5: STANDORTE
   =========================== */

#standorte {
  background-color: var(--creme);
  padding-block: 56px;
}

#standorte .section-header {
  margin-bottom: 28px;
}

.standorte__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 1120px;
  margin-inline: auto;
}

.standorte__karte {
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1448 / 1086;
  background: var(--weiss);
}

.standorte__karte svg,
.standorte__karte img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.standorte__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

#standorte .standort-card {
  padding: 22px;
  gap: 10px;
}

#standorte .standort-card__actions {
  gap: 8px;
}

@media (max-width: 768px) {
  .standorte__grid { grid-template-columns: 1fr; }
  .standorte__cards { grid-template-columns: 1fr; }
  #standorte { padding-block: 44px; }
}

/* ===========================
   SEKTION 6: RESSOURCEN
   =========================== */

#ressourcen {
  background-color: var(--weiss);
}

/* ===========================
   SEKTION 7: TESTIMONIALS
   =========================== */

#testimonials {
  background-color: var(--creme);
  overflow: hidden;
}

.carousel-wrapper {
  position: relative;
}

.carousel-fade-left,
.carousel-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 10;
  pointer-events: none;
}

.carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--creme), transparent);
}

.carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--creme), transparent);
}

.carousel-track-outer {
  overflow: hidden;
  padding-block: 8px;
}

.carousel-track {
  display: flex;
  gap: var(--card-gap);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bronze);
  background: transparent;
  color: var(--bronze);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background-color: var(--bronze);
  color: var(--weiss);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  padding: 0;
}

.carousel-dot.is-active {
  background-color: var(--petrol);
  transform: scale(1.3);
}

.testimonials__link {
  text-align: center;
  margin-top: 32px;
}

.testimonials__link a {
  color: var(--bronze);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .carousel-slide { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 640px) {
  .carousel-slide { flex: 0 0 100%; }
}

/* ===========================
   SEKTION 8: FAQ
   =========================== */

#faq {
  background-color: var(--weiss);
}

.faq-liste {
  max-width: 800px;
  margin-inline: auto;
}

/* ===========================
   SEKTION 9: CTA2
   =========================== */

#cta2 {
  background-color: var(--petrol-dark);
  text-align: center;
}

.cta2__inner {
  max-width: 560px;
  margin-inline: auto;
}

.cta2__inner h2 {
  color: var(--creme);
  margin-bottom: 12px;
}

.cta2__sub {
  color: rgba(247, 245, 242, 0.8);
  font-size: var(--body-desktop);
  margin-bottom: 32px;
}

.cta2__portraits {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.cta2__portrait-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cta2__portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bronze);
}

.cta2__portrait-name {
  font-size: 13px;
  color: rgba(247, 245, 242, 0.8);
}

.cta2__bildunterschrift {
  font-size: 14px;
  color: rgba(247, 245, 242, 0.7);
  margin-bottom: 24px;
}

.cta2__tel {
  display: block;
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 700;
  color: var(--bronze);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.cta2__tel:hover { color: var(--creme); }

.cta2__zeiten {
  font-size: 14px;
  color: rgba(247, 245, 242, 0.6);
  margin-top: 16px;
}

/* ===========================
   SEKTION 10: AUSZEICHNUNGEN
   =========================== */

#auszeichnungen {
  background-color: var(--creme);
  padding-block: 48px;
}

#auszeichnungen h3 {
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--petrol);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}

.auszeichnungen-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.auszeichnungen-logos img,
.auszeichnungen-logos svg {
  height: 96px;
  width: auto;
  filter: saturate(0.6);
  opacity: 0.8;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.auszeichnungen-logos img:hover,
.auszeichnungen-logos svg:hover {
  filter: saturate(1);
  opacity: 1;
}

@media (max-width: 640px) {
  .auszeichnungen-logos { gap: 28px; }
  .auszeichnungen-logos img,
  .auszeichnungen-logos svg { height: 78px; }
}

/* ===========================
   FOOTER
   =========================== */

.site-footer {
  background-color: var(--petrol-dark);
  padding-block: 64px 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer__col-title {
  font-family: var(--font-headline);
  font-size: 13px;
  font-weight: 600;
  color: var(--bronze);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer__nap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__nap-name {
  font-family: var(--font-headline);
  font-weight: 600;
  color: var(--creme);
  font-size: 15px;
  margin-bottom: 4px;
}

.footer__nap p {
  font-size: 14px;
  color: rgba(247, 245, 242, 0.7);
  line-height: 1.6;
}

.footer__nap a {
  color: rgba(247, 245, 242, 0.7);
  font-size: 14px;
  text-decoration: none;
}

.footer__nap a:hover { color: var(--bronze); }

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 14px;
  color: rgba(247, 245, 242, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__links a:hover { color: var(--bronze); }

.footer__bottom {
  border-top: 1px solid rgba(247, 245, 242, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__disclaimer {
  font-size: 12px;
  color: rgba(247, 245, 242, 0.45);
  line-height: 1.6;
  max-width: 700px;
}

.footer__legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__legal a {
  font-size: 13px;
  color: rgba(247, 245, 242, 0.5);
  text-decoration: none;
}

.footer__legal a:hover { color: var(--bronze); }

.footer__copy {
  font-size: 13px;
  color: rgba(247, 245, 242, 0.4);
}

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

@media (max-width: 640px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { align-items: flex-start; }
}

/* ===========================
   REGIONS-KARTE (Änderung 4)
   =========================== */

.region-karte {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-soft);
  display: block;
}

.region-karte-platzhalter {
  background: var(--creme);
  border: 2px dashed var(--border);
  border-radius: var(--radius-large);
  padding: 40px 24px;
  text-align: center;
  color: var(--text-mid);
  font-size: 15px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   CTA-KONTAKT (in Sektion 5 integriert)
   Creme-Hintergrund — Texte in Petrol Dark
   =========================== */

.standorte-cta-divider {
  border: none;
  border-top: 1px solid rgba(166, 124, 82, 0.3);
  margin: 56px 25% 48px;
}

.standorte-cta {
  text-align: center;
}

.standorte-cta h3 {
  font-size: var(--h2-desktop);
  color: var(--petrol-dark);
  margin-bottom: 12px;
}

.standorte-cta__sub {
  font-size: var(--body-desktop);
  color: var(--petrol);
  margin-bottom: 32px;
}

.standorte-cta__portraits {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.standorte-cta__portrait-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.standorte-cta__portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bronze);
}

.standorte-cta__portrait-name {
  font-size: 13px;
  color: var(--text-mid);
}

.standorte-cta__bildunterschrift {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.standorte-cta__tel {
  display: block;
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 700;
  color: var(--bronze);
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.standorte-cta__tel:hover { color: var(--petrol-dark); }

.standorte-cta__zeiten {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 16px;
}

@media (max-width: 768px) {
  .standorte-cta h3 { font-size: var(--h2-mobil); }
  .standorte-cta-divider { margin: 40px 5% 32px; }
  .standorte-cta__tel { font-size: 26px; }
}
