/* Outfit (Google Fonts) wird nach Einwilligung per JS (cookie-banner.js)
   nachgeladen. Poppins läuft über lokale @font-face. */
/* ============================================
   MOFATOUREN WETTERAU – Gemeinsames Stylesheet
   ============================================ */

/* ---------- Schriftarten ---------- */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins-v23-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/poppins-v23-latin-600.woff2') format('woff2');
}

/* Bebas Neue entfernt – Überschriften nutzen jetzt Outfit */

/* ---------- Farbvariablen ---------- */
:root {
  --clr-accent: #D05E35;
  --clr-accent-dark: #B04A26;
  --clr-accent2: #102012; /* Tiefer Waldton – Header & Akzente */
  --clr-bg: #FAF9F6;
  --clr-dark: #1C1814;
  --clr-text: #2A241E;           /* Fließtext – minimal gesoftet vs. pures Schwarz */
  --clr-text-muted: #6B5E54;     /* Sekundärtext, Captions, Meta-Infos */
  --clr-card: #FFFFFF;
  --clr-light: #F4F4F4;
  --clr-sand: #EFEBE2;
  --radius: 0.5rem;
  --shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, .12);

  --space-xs: 0.5rem;
  --space-s: 1rem;
  --space-m: 1.5rem;
  --space-l: 2rem;
  --space-xl: 3rem;
  --space-xxl: 4rem;
}

/* ---------- Reset & Grundlayout ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem; /* Anker-Links landen nicht unter dem fixen Header */
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01rem;
}

/* ---------- Typografie-System ---------- */
h1,
h2,
h3 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.2;
  color: var(--clr-dark);
}

h1 {
  font-weight: 800;
  letter-spacing: -0.03rem;
}

/* H2 = die „Ankündigungs-Überschriften" – warm, selbstbewusst, orange */
h2 {
  color: var(--clr-accent);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  letter-spacing: -0.02rem;
  margin-bottom: 1.25rem;
}

/* Subtile Deko-Linie unter der H2 – macht den Abschnitt sofort „designed" */
h2::after {
  content: '';
  display: block;
  width: 3rem;
  height: 0.1875rem;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-dark));
  border-radius: 2rem;
  margin-top: 0.75rem;
}

/* Wenn die H2 zentriert ist, soll auch die Linie zentriert sein */
.heading--center,
[style*="text-align:center"] > h2,
[style*="text-align: center"] > h2,
h2[style*="text-align:center"],
h2[style*="text-align: center"] {
  text-align: center;
}

.heading--center::after,
[style*="text-align:center"] > h2::after,
[style*="text-align: center"] > h2::after,
h2[style*="text-align:center"]::after,
h2[style*="text-align: center"]::after {
  margin-left: auto;
  margin-right: auto;
}

/* H3 = ruhige Unterhierarchie, klar aber nicht laut */
h3 {
  color: var(--clr-dark);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01rem;
  margin-bottom: 0.5rem;
}

a {
  color: inherit;
  text-decoration: none
}

img {
  display: block;
  max-width: 100%
}

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  z-index: 1200;
  box-shadow: none;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.main-header.scrolled {
  background: rgba(16, 32, 18, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0.25rem 1.25rem rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-container {
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}

.header-logo img {
  height: 5rem;
  transition: transform 0.3s;
}
.header-logo:hover img {
  transform: rotate(-3deg) scale(1.05);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  box-shadow: none;
}
.menu-toggle:hover {
  background: none;
  transform: none;
  box-shadow: none;
}

.header-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.header-nav a svg {
  width: 1.1rem;
  height: 1.1rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.3s;
}

.header-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.header-nav a.active {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(0deg, rgba(208, 94, 53, 0.15) 0%, transparent 100%);
  border-bottom: 0.125rem solid var(--clr-accent);
  border-radius: 0.25rem 0.25rem 0 0;
}

.header-nav a:hover svg,
.header-nav a.active svg {
  color: var(--clr-accent);
}

.header-nav a.nav-cta {
  background: var(--clr-accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  box-shadow: 0 0.25rem 0.5rem rgba(208, 94, 53, 0.2);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
}

.header-nav a.nav-cta svg,
.header-nav a.nav-cta:hover svg {
  color: #fff;
}

.header-nav a.nav-cta:hover {
  transform: translateY(-0.15rem);
  box-shadow: 0 0.5rem 1rem rgba(208, 94, 53, 0.4);
  background: #E36A3F;
}

.header-nav a.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 0.25rem 0.5rem rgba(208, 94, 53, 0.3);
}

/* We must add padding to the body because the header is fixed */


/* ============================================
   HERO ANIMATIONS
   ============================================ */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero h1,
  .page-hero h1,
  .gallery-intro h1 {
    animation: heroFadeUp 650ms cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  }
  .hero p,
  .page-hero p,
  .gallery-intro p {
    animation: heroFadeUp 650ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 150ms both;
  }
  .hero-ctas {
    animation: heroFadeUp 650ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 300ms both;
  }
}

/* ============================================
   HERO (Startseite)
   ============================================ */
.hero {
  min-height: 72vh;
  background: linear-gradient(
      to bottom,
      rgba(20, 16, 12, 0.78) 0%,
      rgba(20, 16, 12, 0.42) 60%,
      var(--clr-bg) 100%
    ),
    url('img/hero-placeholder.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(6rem + 3rem) 1.5rem 4rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.hero p {
  max-width: 60ch;
  color: var(--clr-light);
  font-size: 1.1rem;
}

/* ----- Hero CTA-Buttons ----- */
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01rem;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.25s ease;
}

.hero-btn--primary {
  background: var(--clr-accent);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0.25rem 1rem rgba(208, 94, 53, 0.45);
}

.hero-btn--primary:hover,
.hero-btn--primary:active,
.hero-btn--primary:visited {
  background: var(--clr-accent-dark);
  transform: translateY(-0.2rem);
  box-shadow: 0 0.5rem 1.5rem rgba(208, 94, 53, 0.55);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.hero-btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.hero-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-0.2rem);
  color: #fff;
}

/* Subtiler Text-Link als sekundäre Hero-Aktion */
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.45rem 0.6rem;
  border-radius: var(--radius);
  transition: color 0.25s ease;
  align-self: center;
}

.hero-text-link:hover {
  color: #fff;
}

.hero-text-link i {
  font-size: 0.8rem;
  opacity: 1;
}

/* ============================================
   FOTO-VORSCHAU (Startseite)
   ============================================ */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 1.75rem;
}

.preview-grid a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.preview-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.95);
}

.preview-grid a:hover img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

/* ============================================
   SCROLL-TO-TOP BUTTON
   ============================================ */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--clr-accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.75rem rgba(208, 94, 53, 0.4);
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}

.scroll-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top-btn:hover {
  background: var(--clr-accent-dark);
  box-shadow: 0 0.5rem 1.25rem rgba(208, 94, 53, 0.5);
}

.scroll-top-btn i {
  font-size: 1.1rem;
  line-height: 1;
  pointer-events: none;
}

/* ============================================
   PAGE HERO (Unterseiten)
   ============================================ */
.page-hero {
  min-height: 38vh;
  background: linear-gradient(
      to bottom,
      rgba(20, 16, 12, 0.78) 0%,
      rgba(20, 16, 12, 0.42) 65%,
      var(--clr-bg) 100%
    ),
    url('img/hero-placeholder.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(6rem + 2.5rem) 1.5rem 3rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #fff;
}

.page-hero p {
  color: var(--clr-light);
  max-width: 60ch;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ============================================
   GALLERY INTRO (kompaktes Titelband auf Galerie-Seite)
   ============================================ */
.gallery-intro {
  padding: calc(6rem + 0.75rem) 1.5rem 1.25rem;
  text-align: center;
  background: var(--clr-bg);
}

.gallery-intro h1 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin-bottom: 0.3rem;
  color: var(--clr-dark);
}

.gallery-intro p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

/* ============================================
   VIDEO
   ============================================ */
.video-section {
  padding: 2.5rem 1.5rem;
  text-align: center;
  max-width: 68.75rem;
  margin: 0 auto;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.responsive-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SECTION BASIS
   ============================================ */
.section {
  padding: 2.5rem 1.5rem;
  max-width: 68.75rem;
  margin: auto;
}

.section a {
  color: var(--clr-accent);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(208, 94, 53, 0.4);
  transition: all 0.2s ease;
}

.section a:hover {
  text-decoration-color: var(--clr-accent);
}

/* ============================================
   GALERIE
   ============================================ */
.gallery-teaser {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.gallery-teaser img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  filter: grayscale(15%);
  transition: transform .3s, filter .3s;
  cursor: pointer;
}

.gallery-teaser img:hover {
  filter: none;
  transform: scale(1.04);
}

/* ============================================
   FOTO-KARUSSELL
   ============================================ */
.carousel {
  position: relative;
  width: 100%;
  max-width: 68.75rem;
  margin: 0 auto 1.5rem;
  user-select: none;
}

.carousel-track-wrapper {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.22);
  background: var(--clr-dark);
  cursor: grab;
}

.carousel-track-wrapper:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  height: clamp(14rem, calc(100svh - 14rem), 48rem);
}

/* Galerie-Sektion: weniger Abstand oben/unten */
.section#gallery {
  padding-top: 1.25rem;
  padding-bottom: 2rem;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  cursor: zoom-in;
  transition: transform 0.4s ease;
}

.carousel-slide img:hover {
  transform: scale(1.015);
}

/* ----- Pfeil-Buttons ----- */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(28, 24, 20, 0.58);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 0.0625rem solid rgba(255, 255, 255, 0.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.4);
  transition: background 0.22s ease,
              transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.carousel-btn:hover {
  background: var(--clr-accent);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0.5rem 1.5rem rgba(208, 94, 53, 0.5);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.93);
}

.carousel-btn--prev { left: 1rem; }
.carousel-btn--next { right: 1rem; }

.carousel-btn svg {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
  pointer-events: none;
}

/* ----- Dot-Indikatoren ----- */
.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.carousel-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 0.25rem;
  background: rgba(208, 94, 53, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.35s ease, background 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}

.carousel-dot.active {
  width: 1.75rem;
  background: var(--clr-accent);
}

/* ----- Zähler ----- */
.carousel-counter {
  text-align: center;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

/* ----- Mobile ----- */
@media (max-width: 48rem) {
  .carousel-btn {
    width: 2.9rem;
    height: 2.9rem;
  }

  .carousel-btn svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .carousel-btn--prev { left: 0.5rem; }
  .carousel-btn--next { right: 0.5rem; }
}

/* ============================================
   LIGHTBOX (erweitert mit Pfeilen + Schließen)
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox img {
  max-width: min(90vw, 80rem);
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 0.5rem 3rem rgba(0, 0, 0, 0.6);
  object-fit: contain;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Pfeil- & Schließ-Buttons in Lightbox */
.lb-btn,
.lb-close {
  position: absolute;
  background: rgba(28, 24, 20, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.22s ease, transform 0.22s ease;
}

.lb-btn {
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.5);
}

.lb-btn:hover {
  background: var(--clr-accent);
  transform: translateY(-50%) scale(1.1);
}

.lb-btn--prev { left: 1.5rem; }
.lb-btn--next { right: 1.5rem; }

.lb-close {
  top: 1.25rem;
  right: 1.25rem;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
}

.lb-close:hover {
  background: rgba(208, 94, 53, 0.75);
  transform: scale(1.08);
}

.lb-btn svg,
.lb-close svg {
  width: 1.4rem;
  height: 1.4rem;
  pointer-events: none;
}

@media (max-width: 48rem) {
  .lb-btn--prev { left: 0.5rem; }
  .lb-btn--next { right: 0.5rem; }

  .lb-btn {
    width: 2.75rem;
    height: 2.75rem;
  }
}

/* ============================================
   PREISE
   ============================================ */
.preise {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.preis-card {
  flex: 1 1 17.5rem;
  max-width: 25rem;
  background: var(--clr-card);
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .3s;
}

.preis-card:hover {
  transform: translateY(-0.375rem)
}

.preis-card h3 {
  margin-bottom: .25rem
}

/* Preis-Betrag groß + Einheit klein */
.preis-amount {
  font-size: 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: var(--clr-dark);
  margin: 0.35rem 0 0;
  line-height: 1.2;
}

.preis-amount .preis-unit {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  font-family: 'Poppins', sans-serif;
}

/* Inklusivleistungen-Liste */
.preis-includes {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  text-align: left;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 1rem;
}

.preis-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.28rem 0;
  font-size: 0.9rem;
  color: var(--clr-text);
  line-height: 1.4;
}

.preis-includes li i {
  color: var(--clr-accent);
  font-size: 0.7rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* Dringlichkeits-Badge */
.urgency-note {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(208, 94, 53, 0.08);
  color: var(--clr-accent-dark);
  border: 1px solid rgba(208, 94, 53, 0.22);
  border-radius: 2rem;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 1.5rem auto 0.5rem;
}

.urgency-note i {
  font-size: 0.75rem;
}

.cta-box {
  text-align: center;
  margin: 3rem auto 2rem;
  padding: 2rem;
  background: var(--clr-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 70ch;
}

.cta-box h3 {
  font-size: 1.8rem;
  color: var(--clr-accent2);
  margin-bottom: 1rem;
}

.cta-box a {
  color: var(--clr-accent);
  font-weight: 600;
  text-decoration: underline;
}

.cta-box a:hover {
  text-decoration: none
}

/* ============================================
   CREDITS
   ============================================ */
/* ============================================
   SECTION-CTAS (Badge-Links in Inhaltsbereichen)
   ============================================ */
.section-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

@media (max-width: 48rem) {
  .section-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   CREDITS – Foto & Video Attribution
   ============================================ */
.fotocredit,
.video-credits {
  margin: 2rem 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
}

/* ============================================
   CREATOR CREDIT – elegante Fotografen-Attribuierung
   ============================================ */
.creator-credit {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.6rem 1rem;
  margin: 1.75rem 0 0.5rem;
  padding: 1rem 1.4rem;
  background: rgba(16,32,18,0.04);
  border: 1px solid rgba(16,32,18,0.09);
  border-radius: calc(var(--radius) + 0.25rem);
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.creator-credit-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: var(--clr-text-muted);
}

.creator-credit-label i {
  color: var(--clr-accent);
  font-size: 0.85rem;
}

.creator-credit-divider {
  width: 1px;
  height: 1.2rem;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
}

/* Creator Buttons */
.creator-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  border-radius: 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  white-space: nowrap;
}

.creator-btn--instagram {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0.2rem 0.8rem rgba(220,39,67,0.3);
}

.creator-btn--instagram:hover,
.creator-btn--instagram:active,
.creator-btn--instagram:visited {
  transform: translateY(-0.15rem);
  box-shadow: 0 0.4rem 1.2rem rgba(220,39,67,0.45);
  filter: brightness(1.08);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-decoration: none;
}

.creator-btn--web {
  background: var(--clr-accent2);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0.2rem 0.8rem rgba(16,32,18,0.2);
}

.creator-btn--web:hover,
.creator-btn--web:active,
.creator-btn--web:visited {
  transform: translateY(-0.15rem);
  box-shadow: 0 0.4rem 1.2rem rgba(16,32,18,0.35);
  filter: brightness(1.15);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-decoration: none;
}

.creator-btn i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

.creator-btn .ext-icon {
  font-size: 0.65rem;
  opacity: 0.7;
  margin-left: 0.1rem;
}

/* ============================================
   CTA BUTTONS – Call-to-Action auf Inhaltsseiten
   ============================================ */
.section-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  white-space: nowrap;
}

.btn-cta--primary {
  background: var(--clr-accent);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0.25rem 0.9rem rgba(208,94,53,0.35);
}

.btn-cta--primary:hover,
.btn-cta--primary:active,
.btn-cta--primary:visited {
  background: var(--clr-accent-dark);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  transform: translateY(-0.15rem);
  box-shadow: 0 0.5rem 1.4rem rgba(208,94,53,0.45);
  text-decoration: none;
}

.btn-cta--secondary {
  background: transparent;
  color: var(--clr-accent);
  border: 2px solid var(--clr-accent);
  box-shadow: none;
}

.btn-cta--secondary:hover {
  background: var(--clr-accent);
  color: #fff;
  transform: translateY(-0.15rem);
  box-shadow: 0 0.4rem 1.2rem rgba(208,94,53,0.35);
  text-decoration: none;
}

.btn-cta i {
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* =========================================================
   LEGACY credit-link – nur noch für Fallback, nicht löschen
   ========================================================= */
a.credit-link,
.section a.credit-link,
.video-section a.credit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-card);
  padding: 0.5rem 1.1rem 0.5rem 0.85rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--clr-dark);
  text-decoration: none;
  box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.08), 0 0 0 0.0625rem rgba(0,0,0,0.06);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

a.credit-link:hover,
.section a.credit-link:hover {
  background: var(--clr-accent);
  color: #fff;
  transform: translateY(-0.15rem);
  box-shadow: 0 0.4rem 1.25rem rgba(208,94,53,0.35);
  text-decoration: none;
}

a.credit-link i,
.section a.credit-link i {
  font-size: 1rem;
  color: var(--clr-accent);
  transition: color 0.25s ease;
}

a.credit-link:hover i,
.section a.credit-link:hover i {
  color: #fff;
}

/* ============================================
   SAND-SEKTION (edge-to-edge warm background)
   ============================================ */
.section--sand {
  background: var(--clr-sand);
  padding: 3.5rem 1.5rem;
  margin: 0;
  max-width: 100%;
}

.section--sand .section-inner {
  max-width: 68.75rem;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   3-SCHRITTE-ELEMENT
   ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  text-align: center;
  margin-top: 2rem;
}

/* Verbindungslinie zwischen den Schritten (nur Desktop) */
.steps::before {
  content: '';
  position: absolute;
  top: 1.75rem; /* Mitte der step-number Kreise (3.5rem / 2) */
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-dark));
  opacity: 0.22;
  pointer-events: none;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--clr-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
  box-shadow: 0 0.25rem 0.75rem rgba(208, 94, 53, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.1);
  box-shadow: 0 0.5rem 1.25rem rgba(208, 94, 53, 0.4);
}

.step h3 {
  font-size: 1.15rem;
  color: var(--clr-dark);
  margin: 0;
}

.step p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  max-width: 25ch;
  line-height: 1.55;
}

/* ============================================
   INFO-CARDS (Standort)
   ============================================ */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 40rem;
  margin-top: 2rem;
}

/* 2×2-Raster für 4 Karten */
.info-cards--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 52rem;
}

.info-card {
  background: var(--clr-card);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.info-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

.info-card i {
  font-size: 2rem;
  color: var(--clr-accent);
  margin-bottom: 1rem;
  display: block;
}

.info-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ============================================
   SONDERAUSFLUG-BUTTON (primärer CTA)
   – erhöhte Spezifität, damit .section a / .cta-box a
     die Farbe nicht überschreiben können
   ============================================ */
a.sonderausflug-btn,
.section a.sonderausflug-btn,
.cta-box a.sonderausflug-btn {
  display: inline-block;
  background: var(--clr-accent);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 0.015rem;
  box-shadow: 0 0.35rem 1rem rgba(208, 94, 53, 0.35);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.3s ease,
              background 0.3s ease,
              color 0.3s ease;
}

a.sonderausflug-btn:hover,
.section a.sonderausflug-btn:hover,
.cta-box a.sonderausflug-btn:hover {
  transform: translateY(-0.2rem);
  background: var(--clr-accent-dark);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0.6rem 1.6rem rgba(208, 94, 53, 0.5);
}

a.sonderausflug-btn:focus-visible,
.section a.sonderausflug-btn:focus-visible,
.cta-box a.sonderausflug-btn:focus-visible {
  outline: 0.1875rem solid var(--clr-accent);
  outline-offset: 0.25rem;
}

/* ============================================
   MAPS & STANDORT
   ============================================ */
#location {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 62rem;   /* breiter = mehr Karte */
  margin: 0 auto;
  gap: 1.5rem;
}

/* Karten-Consent und Frame nutzen volle Breite */
#location .mofa-embed-placeholder,
#location .maps-frame {
  width: 100%;
  align-self: stretch;
}

/* Karten-Frame: etwas mehr Tiefe */
#location .maps-frame {
  box-shadow:
    0 0.75rem 3rem rgba(0, 0, 0, 0.18),
    0 0.25rem 0.75rem rgba(0, 0, 0, 0.08);
}

#location h2, #location p {
  margin: 0;
}

#location address {
  font-style: normal; /* Browser-Standard (kursiv) überschreiben */
  font-weight: 600;
  color: var(--clr-dark);
  margin: 0.25rem 0 0;
  font-size: 1.05rem;
}

/* ============================================
   MAPS-KARTE (Standort) – Google Maps Embed
   ============================================ */

/* Äußere Karte: Rahmen + Schatten + Brand-Akzent-Linie */
.maps-frame {
  border-radius: 0.875rem;
  overflow: hidden;
  box-shadow:
    0 0.5rem 2.5rem rgba(0, 0, 0, 0.14),
    0 0.125rem 0.5rem rgba(0, 0, 0, 0.07);
  border: 1.5px solid rgba(208, 94, 53, 0.18);
  position: relative;
  margin: 1.5rem 0 0.75rem;
  background: var(--clr-card);
}

/* Oranger Akzent-Streifen oben */
.maps-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-dark));
  z-index: 2;
  pointer-events: none;
}

/* Label-Leiste mit Adresse (innerhalb des Frames, über der Karte) */
.maps-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  background: var(--clr-card);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-text);
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.01rem;
}

.maps-label i {
  color: var(--clr-accent);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Eigentlicher iFrame-Container */
.osm-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;   /* mehr Kartenhöhe = besser sichtbarer Standort */
  overflow: hidden;
  margin: 0;
}

.osm-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.osm-credit {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.25rem;
}

.osm-credit a {
  color: var(--clr-text-muted);
  text-decoration: underline;
}

/* Route-Button + Öffnungszeiten-Hinweis */
.route-btn-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.standort-hours-hint {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}

.standort-hours-hint a {
  color: var(--clr-accent);
  font-weight: 600;
  text-decoration: none;
}

.standort-hours-hint a:hover {
  text-decoration: underline;
}

iframe.map {
  width: 100%;
  height: 31.25rem;
  border: 0.1875rem solid var(--clr-accent2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.oeffnungszeiten {
  background: var(--clr-card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 30rem;
}

.oeffnungszeiten h3 {
  color: var(--clr-accent2);
  margin-bottom: 0.5rem;
}

.oeffnungszeiten em {
  color: var(--clr-accent);
  font-style: normal;
}

.section-divider {
  text-align: center;
  margin: 2.5rem auto;
  max-width: 40rem;
  border-top: 0.125rem solid rgba(0,0,0,0.05);
  padding-top: 1.5rem;
}

.section-divider h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.section-divider h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-divider p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
}

/* ============================================
   KONTAKT & FORMULAR
   ============================================ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  max-width: 65rem;
  margin: 0 auto;
  align-items: flex-start;
}

/* ---------- Linke Karte: dunkler Wald-Grün-Card ---------- */
.kontakt-info {
  text-align: left;
  margin: 0;
  padding: 2.5rem;
  background: var(--clr-accent2);
  border-radius: 0.875rem;
  box-shadow: 0 0.5rem 2.5rem rgba(0,0,0,0.22), 0 0.125rem 0.5rem rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

/* Orange Akzent-Streifen oben */
.kontakt-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-dark));
  pointer-events: none;
}

/* Dekorativer Schimmer rechts oben */
.kontakt-info::after {
  content: '';
  position: absolute;
  top: -3rem; right: -3rem;
  width: 14rem; height: 14rem;
  background: radial-gradient(circle, rgba(208,94,53,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.kontakt-info h2 {
  color: #fff;
  margin-bottom: 0.3rem;
  position: relative;
  z-index: 1;
}

.kontakt-info h2::after {
  background: linear-gradient(90deg, var(--clr-accent), transparent);
}

.kontakt-tagline {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  margin-bottom: 1.75rem !important;
  position: relative;
  z-index: 1;
}

/* Clickable Kontakt-Blöcke */
.kontakt-blocks {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

a.kontakt-block,
.section a.kontakt-block,
.kontakt-info a.kontakt-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

a.kontakt-block:hover,
.section a.kontakt-block:hover,
.kontakt-info a.kontakt-block:hover {
  background: rgba(208, 94, 53, 0.16);
  border-color: rgba(208, 94, 53, 0.32);
  transform: translateY(-0.1rem);
  text-decoration: none;
}

.kontakt-block-icon {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.5rem;
  background: rgba(208,94,53,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}

a.kontakt-block:hover .kontakt-block-icon {
  background: var(--clr-accent);
}

.kontakt-block-icon i {
  color: var(--clr-accent);
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

a.kontakt-block:hover .kontakt-block-icon i {
  color: #fff;
}

.kontakt-block-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.kontakt-block-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-family: 'Outfit', sans-serif;
}

.kontakt-block-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Öffnungszeiten-Block (innerhalb der dunklen Karte) */
.oeffnungszeiten {
  background: rgba(255,255,255,0.055);
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
}

.oeffnungszeiten h3 {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.oeffnungszeiten h3 i {
  color: var(--clr-accent);
}

/* Öffnungszeiten als sauberes Raster */
.oeffnungszeiten-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 1.25rem;
  margin-bottom: 0.75rem;
}

.oez-tag {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  white-space: nowrap;
}

.oez-time {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.88);
  font-weight: 600;
}

.oez-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.38);
  margin: 0 !important;
  line-height: 1.5;
}

.oeffnungszeiten em {
  color: var(--clr-accent);
  font-style: normal;
}

/* ---------- Rechte Karte: Formular ---------- */
.kontakt-formular {
  width: 100%;
  background: var(--clr-card);
  padding: 2.5rem 2rem;
  border-radius: 0.875rem;
  box-shadow: 0 0.25rem 1rem rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
}

.form-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.1rem;
  border-bottom: 1.5px solid rgba(0,0,0,0.06);
}

.form-header h3 {
  font-size: 1.2rem;
  color: var(--clr-dark);
  margin-bottom: 0.25rem;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

/* Select-Dropdown im Formular */
.form-select {
  width: 100%;
  padding: 1rem 2.5rem 1rem 1.25rem;
  border: 0.125rem solid transparent;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  font-weight: 500;
  background: var(--clr-light);
  color: var(--clr-text);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23D05E35' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  transition: all 0.3s ease;
  box-shadow: inset 0 0.125rem 0.25rem rgba(0,0,0,0.03);
}

.form-select:focus {
  border-color: var(--clr-accent);
  background-color: var(--clr-bg);
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(208, 94, 53, 0.15);
}

/* Submit-Button im Formular: orange + volle Breite */
.kontakt-formular button[type="submit"] {
  width: 100%;
  background: var(--clr-accent);
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02rem;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  box-shadow: 0 0.35rem 1rem rgba(208, 94, 53, 0.35);
}

.kontakt-formular button[type="submit"]:hover {
  background: var(--clr-accent-dark);
  box-shadow: 0 0.5rem 1.5rem rgba(208, 94, 53, 0.5);
}

form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
}

.form-group label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-accent2);
}

.form-group input,
.form-group textarea {
  width: 100%;
}

input,
textarea {
  padding: 1rem 1.25rem;
  border: 0.125rem solid transparent;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--clr-light);
  box-shadow: inset 0 0.125rem 0.25rem rgba(0,0,0,0.03);
}

input:focus,
textarea:focus {
  border-color: var(--clr-accent);
  background: var(--clr-bg);
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(208, 94, 53, 0.15);
}

button {
  background: var(--clr-accent2);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 0.25rem 0.5rem rgba(42, 59, 44, 0.2);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
}

button:hover {
  background: var(--clr-accent);
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1.5rem rgba(208, 94, 53, 0.5);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 0.25rem 0.5rem rgba(208, 94, 53, 0.3);
}

/* Popup */
.formspree-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9000;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background: var(--clr-card);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  max-width: 30ch;
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0
  }

  to {
    transform: scale(1);
    opacity: 1
  }
}

/* DSGVO-Checkbox */
.dsgvo-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0.25rem 0;
  font-size: 0.83rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.dsgvo-check input[type="checkbox"] {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.18rem;
  cursor: pointer;
  accent-color: var(--clr-accent);
}

.dsgvo-check label {
  cursor: pointer;
}

.dsgvo-check a {
  color: var(--clr-accent);
  text-decoration: underline;
}

/* ============================================
   FAQ – KATEGORIE-SYSTEM
   ============================================ */
.faq-wrap {
  max-width: 80ch;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 2rem;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.6rem;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
}

.faq-category-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.faq-category-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--clr-dark);
  letter-spacing: -0.01rem;
}

/* Farb-Varianten der Kategorie-Chips */
.faq-category--prep .faq-category-chip {
  background: rgba(208, 94, 53, 0.1);
  color: var(--clr-accent);
}
.faq-category--safety .faq-category-chip {
  background: rgba(16, 32, 18, 0.08);
  color: var(--clr-accent2);
}
.faq-category--booking .faq-category-chip {
  background: rgba(37, 99, 235, 0.08);
  color: #2563eb;
}
.faq-category--campfire .faq-category-chip {
  background: rgba(217, 119, 6, 0.12);
  color: #b45309;
}

/* Lagerfeuer-Sektion – warmer Hintergrund */
.faq-category--campfire {
  background: linear-gradient(135deg,
    rgba(234, 88, 12, 0.04) 0%,
    rgba(161, 85, 11, 0.07) 100%);
  border-radius: 0.875rem;
  padding: 1.35rem 1.5rem 1.5rem;
  border: 1px solid rgba(217, 119, 6, 0.14);
}

.faq-category--campfire .faq-category-header {
  border-bottom-color: rgba(217, 119, 6, 0.15);
}

/* ============================================
   AKKORDEON / FAQ
   ============================================ */
.accordion {
  margin: 0;
}

.accordion-item {
  background: var(--clr-card);
  border-radius: var(--radius);
  margin-bottom: 0.6rem;
  box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.07);
  border: 0.0625rem solid rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.accordion-item:last-child {
  margin-bottom: 0;
}

.accordion-item:hover {
  box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
}

/* Campfire-Kategorie: Karten leicht warm getönt */
.faq-category--campfire .accordion-item {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(217, 119, 6, 0.1);
}

.accordion-btn {
  width: 100%;
  padding: 1.1rem 1.25rem;
  border: none;
  background: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--clr-dark);
  gap: 1rem;
  text-align: left;
  transition: background 0.2s ease;
}

.accordion-btn svg {
  color: var(--clr-accent);
  width: 1.2rem;
  height: 1.2rem;
  min-width: 1.2rem;
}

/* Font Awesome chevron-Icon */
.accordion-btn > i:last-child {
  color: var(--clr-accent);
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-btn.active > i:last-child {
  transform: rotate(180deg);
}

.accordion-btn:hover {
  background: rgba(0, 0, 0, 0.025);
}

.accordion-btn.active {
  background: rgba(208, 94, 53, 0.04);
  color: var(--clr-accent-dark);
  border-bottom: 1px solid rgba(208, 94, 53, 0.1);
}

.faq-category--campfire .accordion-btn.active {
  background: rgba(217, 119, 6, 0.06);
  color: #92400e;
  border-bottom-color: rgba(217, 119, 6, 0.12);
}

.accordion-content {
  padding: 0 1.25rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content p {
  padding: 0.85rem 0 1rem;
  line-height: 1.65;
  font-size: 0.95rem;
  color: var(--clr-text);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: transparent;
  color: var(--clr-dark);
  padding: 1.5rem 1.5rem 1rem;
  margin-top: 2rem;
  border-top: 0.0625rem solid rgba(0, 0, 0, .08);
  position: relative;
}

.footer-container {
  max-width: 56.25rem;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: rgba(52, 45, 37, .7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  white-space: nowrap;
  transition: color .2s;
  letter-spacing: 0.01875rem;
}

footer .footer-links a:hover {
  color: var(--clr-accent);
}

.separator {
  color: rgba(52, 45, 37, .2)
}

.copyright {
  color: rgba(52, 45, 37, .5);
  font-size: 0.75rem;
  margin-top: 0.5rem;
}

.cookie-footer {
  margin-bottom: 0.6rem;
  text-align: center;
  color: rgba(52, 45, 37, .7);
  font-size: 0.8rem;
}

.cookie-footer a {
  color: var(--clr-dark);
  text-decoration: underline;
  transition: color .2s;
}

.cookie-footer a:hover {
  color: var(--clr-accent);
  text-decoration: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 56.25rem) {
  iframe.map {
    height: 21.875rem
  }
}

@media (max-width: 48rem) {
  .kontakt-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  .header-container {
    height: 4.5rem;
    padding: 0 1rem;
  }
  
  .header-logo img {
    height: 3.5rem;
  }

  .menu-toggle {
    display: block;
    color: #fff;
    padding: 0.5rem;
  }
  
  .header-nav {
    position: absolute;
    top: 4.5rem;
    left: 0;
    right: 0;
    background: var(--clr-accent2);
    display: none;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  
  .header-nav.open {
    display: block;
    animation: fadeDown 0.3s ease;
  }
  
  .header-nav ul {
    flex-direction: column;
    gap: 0.25rem;
  }
  
  .header-nav a {
    font-size: 1.15rem;
    padding: 1rem;
    justify-content: flex-start;
  }
  
  .header-nav a svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--clr-accent);
  }

  .header-nav a.active {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    border-left: 0.25rem solid var(--clr-accent);
    border-radius: 0 var(--radius) var(--radius) 0;
  }
  
  .header-nav a.nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    padding: 1rem;
  }
  
  
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 48rem) {
  /* ----- Layout-Basis ----- */
  footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    min-height: 55vh;
    padding: calc(4.5rem + 2.5rem) 1rem 3rem;
  }

  .page-hero {
    min-height: 28vh;
    padding: calc(4.5rem + 2rem) 1rem 2.5rem;
  }

  .gallery-intro {
    padding: calc(4.5rem + 0.75rem) 1rem 1rem;
  }

  .section#gallery .carousel-slide {
    height: clamp(12rem, calc(100svh - 12rem), 34rem);
  }

  html {
    scroll-padding-top: 5rem;
  }

  .section {
    padding: 2.5rem 1rem;
  }

  .section--sand {
    padding: 2.5rem 1rem;
  }

  /* ----- Typografie ----- */
  h2 {
    font-size: clamp(1.45rem, 5vw, 1.9rem);
  }

  h3 {
    font-size: 1.05rem;
  }

  body {
    font-size: 1rem;
  }

  /* ----- Galerie ----- */
  .gallery-teaser {
    grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr));
  }

  .gallery-teaser img {
    height: 10rem;
  }

  /* ----- Preiskarten ----- */
  .preise {
    flex-direction: column;
    align-items: center;
  }

  .preis-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* ----- 3-Schritte ----- */
  .steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Connector auf Mobile ausblenden (Spalten übereinander) */
  .steps::before {
    display: none;
  }

  .step p {
    max-width: 100%;
  }

  /* ----- Foto-Vorschau ----- */
  .preview-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  /* ----- Hero-CTAs ----- */
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }

  /* ----- Scroll-to-top ----- */
  .scroll-top-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  /* ----- Info-Karten (Standort) ----- */
  .info-cards,
  .info-cards--2col {
    grid-template-columns: 1fr;
  }

  /* ----- Sonderausflug-Button ----- */
  a.sonderausflug-btn,
  .section a.sonderausflug-btn,
  .cta-box a.sonderausflug-btn {
    width: 100%;
    text-align: center;
    padding: 1rem 1.25rem;
    box-sizing: border-box;
  }

  /* In section-divider the btn should stay auto-width, centered */
  .section-divider a.sonderausflug-btn {
    width: auto;
    display: inline-flex;
    justify-content: center;
  }

  /* ----- CTA-Box ----- */
  .cta-box {
    padding: 1.5rem 1.25rem;
  }

  /* ----- Kontakt-Grid ----- */
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* ----- Creator Credit & CTA Buttons ----- */
  .creator-credit {
    flex-direction: column;
    gap: 0.7rem;
    padding: 0.9rem 1rem;
  }
  .creator-credit-divider {
    display: none;
  }
  .btn-cta {
    font-size: 0.88rem;
    padding: 0.65rem 1.25rem;
  }
}

@media (max-width: 37.5rem) {
  .hero h1 {
    font-size: clamp(1.5rem, 7.5vw, 2.2rem);
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .gallery-teaser {
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
  }

  .gallery-teaser img {
    height: 8.125rem;
  }

  /* Öffnungszeiten-Box volle Breite */
  .oeffnungszeiten {
    max-width: 100%;
    padding: 1rem;
  }

  .kontakt-block-value {
    font-size: 0.82rem;
    white-space: normal;
    word-break: break-all;
  }

  /* Section-Divider kompakter */
  .section-divider {
    margin: 1.5rem auto;
  }

  /* Header-Logo etwas kleiner */
  .header-logo img {
    height: 3.5rem;
  }
}

@media (max-width: 25rem) {
  .gallery-teaser {
    grid-template-columns: 1fr;
  }

  .gallery-teaser img {
    height: 12.5rem;
  }
}

/* ============================================
   STICKY MOBILE CTA BAR
   ============================================ */
.sticky-cta-mobile {
  display: none; /* nur auf Mobile sichtbar */
}

@media (max-width: 48rem) {
  .sticky-cta-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(16, 32, 18, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 1.25rem;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
    box-shadow: 0 -0.25rem 1.25rem rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .sticky-cta-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.3;
    flex: 1;
  }

  .sticky-cta-text strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
  }

  .sticky-cta-btn {
    background: var(--clr-accent);
    color: #fff;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.92rem;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 0.25rem 0.75rem rgba(208, 94, 53, 0.4);
    transition: background 0.2s ease;
    flex-shrink: 0;
  }

  .sticky-cta-btn:hover {
    background: var(--clr-accent-dark);
  }

  /* Inhalt aus der Sticky-Bar hochschieben –
     nur wenn die Bar tatsächlich im DOM vorhanden ist (:has-Support ab 2023) */
  body:has(.sticky-cta-mobile) {
    padding-bottom: 4.25rem;
  }

  /* Scroll-to-top über der Sticky-Bar positionieren */
  body:has(.sticky-cta-mobile) .scroll-top-btn {
    bottom: 5.5rem;
  }
}

/* ============================================
   RECHTLICHES (Impressum, Datenschutz, AGB)
   ============================================ */
header.legal-header {
  background: var(--clr-accent2);
  position: sticky;
  top: 0;
  padding: 1rem;
  box-shadow: var(--shadow);
  z-index: 100;
}

.header-link {
  display: flex;
  align-items: center;
  max-width: 68.75rem;
  margin: 0 auto;
  text-decoration: none;
  gap: 1.5rem;
}

.header-link img {
  height: 5rem;
  transition: transform 0.3s ease;
}

.header-link:hover img {
  transform: rotate(-5deg) scale(1.05);
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--clr-bg);
  font-size: 2.5rem;
  letter-spacing: 0.0625rem;
}

.agb-article, .kontakt-box {
  background: var(--clr-card);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  box-shadow: var(--shadow);
}

.dsgvo-link {
  color: var(--clr-accent) !important;
  text-decoration: underline;
  font-weight: 600;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--clr-accent2);
  color: var(--clr-bg) !important;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  margin: 1rem 0;
  font-weight: 600;
  box-shadow: 0 0.25rem 0.5rem rgba(42, 59, 44, 0.2);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease;
}

.download-btn:hover {
  background: var(--clr-accent);
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1.5rem rgba(208, 94, 53, 0.5);
}

.download-btn:active {
  transform: translateY(0);
  box-shadow: 0 0.25rem 0.5rem rgba(208, 94, 53, 0.3);
}

.agb-article ul {
  padding-left: 1.8rem;
  margin: 1.2rem 0;
}

.agb-article li {
  margin-bottom: 0.5rem;
}

.legal-hinweis {
  font-size: 0.85rem;
  color: rgba(52, 45, 37, 0.8);
  border-top: 0.125rem solid var(--clr-accent);
  padding-top: 1rem;
  margin-top: 1.5rem;
}

@media print {
  header.legal-header, footer, .download-btn { display: none !important; }
  .agb-article, .kontakt-box { box-shadow: none; page-break-inside: avoid; }
}

@media (max-width: 48rem) {
  header.legal-header { padding: 0.5rem; }
  .header-link img { height: 3.5rem; }
  .logo-text { font-size: 1.8rem; }
  .agb-article, .kontakt-box { padding: 1.25rem; margin: 1.5rem 0; }
}

/* ============================================
   FAQ – FILTER-BAR (Suche + Kategorie-Tabs)
   ============================================ */
.faq-filter-bar {
  max-width: 80ch;
  margin: 0 auto 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-search-wrap {
  position: relative;
}

.faq-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  padding: 0.9rem 1.25rem 0.9rem 2.75rem;
  border: 0.125rem solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  font-size: 0.97rem;
  font-family: inherit;
  font-weight: 500;
  background: var(--clr-card);
  color: var(--clr-text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.05);
}

.faq-search-input:focus {
  border-color: var(--clr-accent);
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(208,94,53,0.12);
}

.faq-search-input::placeholder {
  color: var(--clr-text-muted);
  font-weight: 400;
}

.faq-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.faq-filter-tab {
  background: var(--clr-card);
  color: var(--clr-text-muted);
  border: 0.0625rem solid rgba(0,0,0,0.1);
  border-radius: 2rem;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: none;
}

.faq-filter-tab:hover {
  background: var(--clr-light);
  color: var(--clr-dark);
  transform: none;
  box-shadow: none;
}

.faq-filter-tab.active {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
  box-shadow: 0 0.2rem 0.6rem rgba(208,94,53,0.3);
}

.faq-filter-tab.active:hover {
  background: var(--clr-accent-dark);
}

.faq-filter-tab i {
  font-size: 0.75rem;
}

/* "Keine Ergebnisse" Hinweis */
.faq-no-results {
  max-width: 80ch;
  margin: 0 auto 1.5rem;
  background: var(--clr-light);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
}

.faq-no-results i {
  font-size: 1.4rem;
  color: var(--clr-accent);
  flex-shrink: 0;
}

.faq-no-results a {
  color: var(--clr-accent);
  text-decoration: underline;
  font-weight: 600;
}

/* Fragen-Anzahl-Badge in Kategorie-Headern */
.faq-category-count {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.04rem;
  color: var(--clr-text-muted);
  background: rgba(0,0,0,0.05);
  padding: 0.2rem 0.55rem;
  border-radius: 1rem;
}

/* ============================================
   SECTION-DIVIDER – CTA-Ergänzung
   ============================================ */
.section-divider-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--clr-accent);
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0.125rem solid var(--clr-accent);
  border-radius: 2rem;
  padding: 0.5rem 1.1rem;
  transition: all 0.25s ease;
}

.section-divider-cta:hover {
  background: var(--clr-accent);
  color: #fff;
}

.section-divider-cta i {
  transition: transform 0.3s ease;
}

.section-divider-cta:hover i {
  transform: translateY(3px);
}

/* ============================================
   TRUST-STRIP – Vertrauenssignale über dem Formular
   ============================================ */
.trust-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(208,94,53,0.07);
  border: 1px solid rgba(208,94,53,0.18);
  color: var(--clr-accent-dark);
  border-radius: 2rem;
  padding: 0.45rem 1rem;
  font-size: 0.83rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.trust-pill i {
  font-size: 0.8rem;
}

/* ============================================
   KONTAKT-BLOCK – WhatsApp Variante
   ============================================ */
.kontakt-block--whatsapp .kontakt-block-icon {
  background: rgba(37,211,102,0.18);
}

.kontakt-block--whatsapp .kontakt-block-icon i {
  color: #25d366;
}

a.kontakt-block--whatsapp:hover .kontakt-block-icon {
  background: #25d366;
}

a.kontakt-block--whatsapp:hover .kontakt-block-icon i {
  color: #fff;
}

/* ============================================
   NEXT-STEPS – "Wie geht's weiter?" in der Kontakt-Card
   ============================================ */
.next-steps {
  margin-top: 1.5rem;
  padding: 1.2rem 1.3rem;
  background: rgba(255,255,255,0.055);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.next-steps h3 {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

.next-steps h3 i {
  color: var(--clr-accent);
}

.next-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.next-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.ns-number {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: var(--clr-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  margin-top: 0.05rem;
}

.ns-text strong {
  color: rgba(255,255,255,0.95);
}

/* ============================================
   FORMULAR – Mikrokopie & Verbesserungen
   ============================================ */
.form-hint {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: 0.35rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.5;
}

.form-hint i {
  color: var(--clr-accent);
  font-size: 0.75rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.form-submit-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  margin-top: -0.5rem;
}

/* ============================================
   SUCCESS-POPUP – Wärmer & persönlicher
   ============================================ */
.popup-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.popup-content h3 {
  color: var(--clr-accent);
  margin-bottom: 0.5rem;
}

/* ============================================
   RESPONSIVE – neue Elemente
   ============================================ */
@media (max-width: 48rem) {
  .faq-filter-tabs {
    gap: 0.4rem;
  }
  .faq-filter-tab {
    font-size: 0.76rem;
    padding: 0.35rem 0.75rem;
  }
  .trust-strip {
    gap: 0.5rem;
  }
  .trust-pill {
    font-size: 0.76rem;
    padding: 0.4rem 0.8rem;
  }
}

/* ============================================
   CAMPFIRE-CARD – immer sichtbarer Info-Block
   ============================================ */
.campfire-card {
  background: linear-gradient(135deg, rgba(208,94,53,0.06) 0%, rgba(16,32,18,0.04) 100%);
  border: 1px solid rgba(208,94,53,0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.campfire-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--clr-text);
}

.campfire-subline {
  padding-top: 0.6rem;
  border-top: 1px solid rgba(208,94,53,0.15);
  color: var(--clr-text-muted) !important;
  font-size: 0.86rem !important;
}

/* ============================================
   TESTIMONIALS – Kundenstimmen
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 65rem;
  margin: 2rem auto 0;
}

.testimonial-card {
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 3px solid var(--clr-accent);
  position: relative;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 0.05rem;
}

.testimonial-text {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--clr-text);
  font-style: italic;
  flex: 1;
}

.testimonial-text::before {
  content: '\201E';
  font-size: 2.2rem;
  color: var(--clr-accent);
  opacity: 0.25;
  line-height: 0;
  vertical-align: -0.6rem;
  margin-right: 0.2rem;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.testimonial-author strong {
  font-size: 0.88rem;
  color: var(--clr-text);
  font-family: 'Outfit', sans-serif;
}

.testimonial-author span {
  font-size: 0.78rem;
  color: var(--clr-text-muted);
}

.testimonials-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 1.25rem;
}

/* ============================================
   ÜBER UNS / TEAM-CARD
   ============================================ */
.team-card {
  display: flex;
  align-items: flex-start;
  gap: 1.75rem;
  background: var(--clr-card);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
  max-width: 55rem;
  margin: 0 auto;
  border-left: 4px solid var(--clr-accent);
}

.team-avatar {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.8rem;
}

.team-text h2 {
  margin-bottom: 0.6rem;
}

.team-text p {
  color: var(--clr-text);
  line-height: 1.7;
  font-size: 0.97rem;
  margin-bottom: 0.6rem;
}

.team-text p:last-child {
  margin-bottom: 0;
}

/* Storno-Hinweis auf Preisseite */
.storno-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(16,32,18,0.05);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  max-width: 42rem;
  margin: 1.25rem auto 0;
  line-height: 1.5;
}

.storno-hint i {
  color: var(--clr-accent2);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* Galerie CTA nach dem Karussell */
.gallery-cta-wrap {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.gallery-cta-wrap p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* ============================================
   RESPONSIVE – Testimonials & Team-Card
   ============================================ */
@media (max-width: 60rem) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 40rem) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .team-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.4rem 1.2rem;
  }

  .team-avatar {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.4rem;
  }
}

/* ---------- Footer-Link (Cookie-Einstellungen) ---------- */
.mofa-cookie-link {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
  box-shadow: none;                        /* globales button-shadow zurücksetzen */
  transform: none;                         /* globales button-transform zurücksetzen */
  -webkit-tap-highlight-color: transparent; /* kein oranger Tap-Flash auf Mobile */
}
.mofa-cookie-link:hover,
.mofa-cookie-link:focus,
.mofa-cookie-link:active {
  background: none;   /* verhindert button:hover { background: var(--clr-accent) } */
  box-shadow: none;   /* verhindert button:hover { box-shadow: orange-glow } */
  transform: none;    /* verhindert button:hover { transform: translateY } */
  color: var(--clr-accent);
  text-decoration: underline;
  outline: none;
}

/* ---------- Inline-Placeholder für geblockte Embeds ---------- */
.mofa-embed-placeholder {
  position: relative;
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.75rem 1.75rem;
  background:
    linear-gradient(135deg, rgba(208, 94, 53, 0.06), rgba(208, 94, 53, 0) 60%),
    var(--clr-card);
  border: 1px solid rgba(28, 24, 20, 0.08);
  border-radius: 1rem;
  box-shadow:
    0 1rem 2.25rem rgba(0, 0, 0, 0.08),
    0 0.15rem 0.5rem rgba(0, 0, 0, 0.04);
  color: var(--clr-text);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.mofa-embed-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-accent), var(--clr-accent-dark));
  border-radius: 1rem 1rem 0 0;
  pointer-events: none;
}

.mofa-embed-placeholder__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(208, 94, 53, 0.12);
  color: var(--clr-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mofa-embed-placeholder__icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.mofa-embed-placeholder__body {
  flex: 1;
  min-width: 0;
}

.mofa-embed-placeholder__title {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin: 0 0 0.35rem;
  letter-spacing: 0;
}

.mofa-embed-placeholder__text {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--clr-text-muted);
}

.mofa-embed-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Kompakter Button-Varianten für Embed-Placeholders */
.mofa-btn--sm {
  font-size: 0.85rem;
  padding: 0.5rem 0.95rem;
  min-width: auto;
  min-height: 2.3rem;
  border-radius: 0.55rem;
}

@media (max-width: 34rem) {
  .mofa-embed-placeholder {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.25rem;
  }
  .mofa-embed-placeholder__actions {
    justify-content: center;
  }
}

/* ---------- Consent-Placeholder Buttons ---------- */
.mofa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  line-height: 1.3;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
              transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mofa-btn--primary {
  background: var(--clr-accent);
  color: #fff;
  border-color: var(--clr-accent);
  box-shadow: 0 0.2rem 0.6rem rgba(208, 94, 53, 0.35);
}

.mofa-btn--primary:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  transform: translateY(-0.1rem);
  box-shadow: 0 0.35rem 1rem rgba(208, 94, 53, 0.45);
}

.mofa-btn--ghost {
  background: transparent;
  color: var(--clr-text);
  border-color: rgba(28, 24, 20, 0.18);
}

.mofa-btn--ghost:hover {
  background: rgba(28, 24, 20, 0.05);
  border-color: rgba(28, 24, 20, 0.3);
  color: var(--clr-dark);
}