/* ============================================================
   FOTOBOX NIDDA — main.css
   1. Custom Properties
   2. Reset / Base
   3. Typography
   4. Layout utilities + scroll-reveal
   5. Brand logo
   6. Components (buttons, nav, cards…)
   7. Sections
   8. Footer
   9. Media queries
   ============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Brand colors */
  --color-brand-orange:  #CD582A;
  --color-orange-soft:   #E0764C;
  --color-orange-deep:   #B0461F;
  --color-dark-teal:     #1A3C3D;
  --color-mid-teal:      #215256;
  --color-form-teal:     #1F484C;
  --color-teal-line:     #437073;

  /* Surfaces */
  --color-cream:         #FFFDF8;
  --color-cream-2:       #FBF6EC;
  --color-heading-light: #FFF3E7;

  /* Text */
  --color-text:          #2B2B2B;
  --color-text-muted:    #5E5E5E;
  --color-text-light:    #FFFDF8;

  /* Button aliases */
  --color-btn-primary-bg:     #CD582A;
  --color-btn-primary-text:   #FFFDF8;
  --color-btn-outline-border:  rgba(255,253,248,.5);
  --color-btn-outline-text:    #FFFDF8;

  /* Typography */
  --font-body:    'NeueEinstellung', system-ui, -apple-system, sans-serif;
  --font-heading: 'NeueEinstellung Bold', system-ui, -apple-system, sans-serif;
  --font-accent:  'Radnika', system-ui, -apple-system, sans-serif;

  /* Fluid type scale (clamp: min, preferred, max) */
  --text-sm:   .875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   clamp(1.25rem, 1.1rem + .6vw, 1.4rem);
  --text-2xl:  clamp(1.5rem, 1.3rem + 1vw, 1.85rem);
  --text-3xl:  clamp(1.9rem, 1.5rem + 1.8vw, 2.6rem);
  --text-h2:   clamp(2rem, 1.5rem + 2.6vw, 3.25rem);
  --text-hero: clamp(2.5rem, 1.6rem + 4.4vw, 4.25rem);

  /* Layout */
  --max-width:      1140px;
  --max-width-text: 720px;
  --section-pad:    clamp(64px, 8vw, 110px);
  --gap:            2rem;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-card: 20px;
  --radius-pill: 999px;
  --nav-height:  74px;

  /* Shadows (soft, layered) */
  --shadow-sm: 0 1px 2px rgba(16,32,33,.06), 0 2px 6px rgba(16,32,33,.05);
  --shadow-md: 0 4px 12px rgba(16,32,33,.08), 0 10px 28px rgba(16,32,33,.07);
  --shadow-lg: 0 8px 24px rgba(16,32,33,.10), 0 24px 60px rgba(16,32,33,.12);
  --shadow-orange: 0 10px 30px rgba(205,88,42,.32);

  /* Motion */
  --ease:        cubic-bezier(.22,.61,.36,1);
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --dur:         .35s;
}

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

html {
  font-size: 16px;
  interpolate-size: allow-keywords; /* erlaubt height:0 -> auto Animationen (FAQ) */
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; color: inherit; }

[hidden] { display: none !important; }
::selection { background: var(--color-brand-orange); color: #fff; }

:focus-visible {
  outline: 3px solid var(--color-orange-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.01em;
}

.section-title {
  font-size: var(--text-h2);
  color: var(--color-heading-light);
  margin-bottom: .75rem;
}
.section-title--dark { color: var(--color-text); }

.section-subtitle {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: rgba(255,253,248,.78);
  max-width: 560px;
}
.section-subtitle--dark { color: var(--color-text-muted); }

/* Small overline label above section titles */
.overline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-orange-soft);
  margin-bottom: 1rem;
}
.overline::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--color-brand-orange);
  border-radius: 2px;
}
.overline--center::before { display: none; }

/* ============================================================
   4. LAYOUT UTILITIES + SCROLL REVEAL
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.section { padding-block: var(--section-pad); }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Scroll reveal — only hidden when JS is active (html.js); visible otherwise */
html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
html.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   5. BRAND LOGO
   ============================================================ */
.brand { display: inline-flex; align-items: center; line-height: 1; }
.brand-logo { height: 38px; width: auto; display: block; }
.brand--footer .brand-logo { height: 34px; }

/* ============================================================
   6. COMPONENTS
   ============================================================ */

/* --- Buttons --- */
.btn {
  --btn-pad-y: 13px;
  --btn-pad-x: 28px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--radius-pill);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur);
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-orange-soft), var(--color-brand-orange));
  color: var(--color-btn-primary-text);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(205,88,42,.42);
}

.btn-outline {
  background: rgba(255,255,255,.04);
  color: var(--color-btn-outline-text);
  border-color: var(--color-btn-outline-border);
  backdrop-filter: blur(6px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--color-text-light);
  transform: translateY(-3px);
}

.btn-lg { --btn-pad-y: 16px; --btn-pad-x: 36px; font-size: var(--text-lg); }
.btn-block { width: 100%; }

/* --- Announcement Bar --- */
#top-bar {
  background: linear-gradient(90deg, var(--color-orange-deep), var(--color-brand-orange), var(--color-orange-soft));
  text-align: center;
  padding: 9px 1.25rem;
  line-height: 1.4;
}
#top-bar a {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--color-text-light);
  font-size: var(--text-sm);
  font-weight: 600;
}
#top-bar a span.arrow { transition: transform var(--dur) var(--ease); }
#top-bar a:hover span.arrow { transform: translateX(4px); }

/* --- Navigation --- */
#main-nav {
  position: sticky;
  top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
  padding-inline: clamp(1.25rem, 4vw, 2rem);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              height var(--dur) var(--ease), backdrop-filter var(--dur);
}
#main-nav.scrolled {
  height: 64px;
  background: rgba(26,60,61,.82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
}
.nav-logo { display: inline-flex; transition: transform var(--dur) var(--ease); }
.nav-logo:hover { transform: translateY(-1px); }

.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links > li > a {
  position: relative;
  color: var(--color-text-light);
  font-weight: 500;
  font-size: var(--text-base);
  padding-block: 6px;
  transition: color var(--dur);
}
.nav-links > li > a:not(.btn-nav)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; border-radius: 2px;
  background: var(--color-brand-orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.nav-links > li > a:not(.btn-nav):hover::after { transform: scaleX(1); }

.btn-nav {
  background: linear-gradient(135deg, var(--color-orange-soft), var(--color-brand-orange));
  color: var(--color-btn-primary-text) !important;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  box-shadow: var(--shadow-orange);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(205,88,42,.42); }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; margin-inline: auto;
  background: var(--color-text-light); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Feature Cards --- */
.feature-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-card);
  padding: 1.85rem 1.65rem;
  transition: transform var(--dur) var(--ease), background var(--dur), border-color var(--dur);
}
.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.06);
  border-color: rgba(224,118,76,.4);
}
.feature-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--color-orange-soft);
  background: radial-gradient(circle at 30% 30%, rgba(224,118,76,.28), rgba(205,88,42,.12));
  border: 1px solid rgba(224,118,76,.3);
  border-radius: 14px;
  margin-bottom: 1.15rem;
}
.feature-card h3 {
  font-size: var(--text-lg);
  color: var(--color-heading-light);
  margin-bottom: .5rem;
}
.feature-card p { font-size: var(--text-sm); color: rgba(255,253,248,.72); line-height: 1.7; }

/* --- Review Cards --- */
.review-card {
  background: linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-card);
  padding: 1.9rem 1.7rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: transform var(--dur) var(--ease), border-color var(--dur);
}
.review-card:hover { transform: translateY(-5px); border-color: rgba(224,118,76,.35); }
.review-card .stars { color: var(--color-orange-soft); font-size: var(--text-lg); letter-spacing: 3px; }
.review-card blockquote { color: var(--color-text-light); line-height: 1.75; font-style: italic; flex: 1; }
.review-card__person { display: flex; align-items: center; gap: .75rem; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: .95rem;
  color: var(--color-text-light);
  background: linear-gradient(135deg, var(--color-orange-soft), var(--color-brand-orange));
  flex-shrink: 0;
}
.review-card cite { font-style: normal; }
.review-card cite b { display: block; color: var(--color-heading-light); font-family: var(--font-heading); font-size: .95rem; }
.review-card cite span { font-size: var(--text-sm); color: rgba(255,253,248,.6); }

/* --- Price Cards (Foto-Banner + schwebender Preis-Chip) --- */
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(16,32,33,.07);
  border-radius: var(--radius-card);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.price-card--featured {
  z-index: 2;
  border: 1.5px solid var(--color-brand-orange);
  box-shadow: 0 18px 50px rgba(205,88,42,.2);
}
/* Scale gilt auch nach der Scroll-Reveal-Animation (überschreibt deren transform:none) */
.price-card--featured,
html.js .price-card--featured.is-visible { transform: scale(1.04); }
.price-card--featured:hover,
html.js .price-card--featured.is-visible:hover { transform: scale(1.04) translateY(-8px); }

/* Foto-Banner */
.price-card__media {
  position: relative;
  aspect-ratio: 2.3 / 1;
  background: linear-gradient(135deg, var(--color-mid-teal), var(--color-dark-teal)) center/cover no-repeat;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
.price-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(26,60,61,.28));
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

/* Badge "Beliebt" — oben links auf dem Bild */
.price-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: .35em;
  background: linear-gradient(135deg, var(--color-orange-soft), var(--color-brand-orange));
  color: #fff; font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 11px; border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0,0,0,.22);
}
.price-card__badge i { font-size: .75em; }

/* Aktions-Label — oben rechts auf dem Bild */
.price-card__sale {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: #fff; color: var(--color-brand-orange);
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 11px; border-radius: var(--radius-pill);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}

/* Schwebender Preis-Chip auf der unteren Bildkante */
.price-card__chip {
  position: absolute; right: 18px; bottom: -20px; z-index: 3;
  background: #fff; border-radius: 16px;
  padding: 10px 16px; text-align: center; line-height: 1;
  box-shadow: var(--shadow-md);
}
.price-card--featured .price-card__chip { background: var(--color-brand-orange); }
.price-card__chip .price-label {
  display: block; font-family: var(--font-body); font-weight: 600;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--color-text-muted); margin-bottom: 2px;
}
.price-card--featured .price-card__chip .price-label { color: rgba(255,255,255,.82); }
.price-card__chip .price-amount {
  font-family: var(--font-heading); font-size: 1.65rem;
  color: var(--color-dark-teal); line-height: 1;
}
.price-card--featured .price-card__chip .price-amount { color: #fff; }
.price-card__chip .cur { font-size: .55em; vertical-align: super; margin-right: .04em; color: var(--color-brand-orange); }
.price-card--featured .price-card__chip .cur { color: #fff; }
.price-card__old {
  display: block; font-family: var(--font-body); font-size: .62rem;
  color: var(--color-text-muted); text-decoration: line-through; margin-top: 2px;
}
.price-card--featured .price-card__chip .price-card__old { color: rgba(255,255,255,.78); }

/* Name + Tagline */
.price-card__head { padding: 28px 1.6rem 0; }
.price-card__name { font-size: var(--text-xl); color: var(--color-dark-teal); }
.price-card__tagline { font-size: var(--text-sm); color: var(--color-text-muted); margin-bottom: 0; }

.price-card__body { padding: 1.3rem 1.6rem .4rem; flex: 1; }
.price-card__features { display: flex; flex-direction: column; gap: .7rem; }
.price-card__features li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: var(--text-sm); color: var(--color-text); line-height: 1.45;
}
.price-card__features li i { color: var(--color-brand-orange); font-size: .85rem; margin-top: .25rem; flex-shrink: 0; }
.price-card__footer { padding: .9rem 1.6rem 1.9rem; }

/* --- FAQ Accordion --- */
.faq-item { border-bottom: 1px solid rgba(255,255,255,.14); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.2rem .2rem;
  cursor: pointer;
  color: var(--color-text-light);
  font-family: var(--font-heading);
  font-size: var(--text-base);
  transition: color var(--dur);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--color-orange-soft); }
.faq-item summary .faq-icon {
  position: relative; width: 22px; height: 22px; flex-shrink: 0;
}
.faq-item summary .faq-icon::before,
.faq-item summary .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: var(--color-orange-soft); border-radius: 2px;
  transform: translate(-50%,-50%);
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}
.faq-item summary .faq-icon::before { width: 14px; height: 2px; }
.faq-item summary .faq-icon::after  { width: 2px; height: 14px; }
.faq-item details[open] summary .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-item__body {
  padding: 0 1.8rem 1.3rem .2rem;
  color: rgba(255,253,248,.78);
  line-height: 1.75;
}
/* Smoothes Auf-/Zuklappen: Höhe von 0 -> auto animieren.
   interpolate-size + transition-behavior:allow-discrete machen den
   Übergang zu/von display:none möglich. Browser ohne Support klappen
   einfach ohne Animation (graceful degradation). */
.faq-item details::details-content {
  height: 0;
  overflow: clip;
  opacity: 0;
  transition: height .35s var(--ease-out), opacity .3s var(--ease-out), content-visibility .35s allow-discrete;
}
.faq-item details[open]::details-content {
  height: auto;
  opacity: 1;
}

/* --- Photo Gallery Strip --- */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.gallery-strip figure { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.gallery-strip img {
  width: 100%; height: 200px; object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.gallery-strip figure:hover img { transform: scale(1.06); }

/* ============================================================
   7. SECTIONS
   ============================================================ */

/* --- Hero (Parallax) --- */
#hero {
  position: relative;
  /* pull the dark hero up behind the transparent sticky nav */
  margin-top: calc(-1 * var(--nav-height));
  min-height: min(100vh, 860px);
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--color-dark-teal);
}
.hero-scene { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
/* extra height = Bild-Reserve nach unten, damit beim Hochwandern (natürliche
   Richtung) keine Lücke am Hero-Boden entsteht. Muss >= max. data-speed sein. */
.parallax-layer { position: absolute; inset: 0; width: 100%; height: 125%; will-change: transform; }
.parallax-layer img { width: 100%; height: 100%; object-fit: cover; object-position: center bottom; }
/* readability scrim from the left so the headline always pops */
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20,40,41,.72) 0%, rgba(20,40,41,.32) 42%, rgba(20,40,41,0) 70%),
    linear-gradient(0deg, rgba(20,40,41,.5) 0%, rgba(20,40,41,0) 30%);
}

.hero__content { position: relative; z-index: 10; width: 100%; padding-block: calc(var(--nav-height) + 44px) 64px; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 3rem; }

.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(20,40,41,.5);
  color: var(--color-heading-light);
  font-size: var(--text-sm); font-weight: 500;
  padding: 7px 15px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,243,231,.28);
  margin-bottom: 1.4rem;
}
.hero__badge i { color: var(--color-orange-soft); }
.hero__title { font-size: var(--text-hero); color: var(--color-heading-light); margin-bottom: 1.25rem; max-width: 14ch; }
.hero__title .accent {
  background: linear-gradient(120deg, var(--color-orange-soft), var(--color-brand-orange));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__subtitle { font-size: var(--text-lg); color: rgba(255,253,248,.88); margin-bottom: 2rem; max-width: 46ch; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero trust row */
.hero__trust {
  display: flex; align-items: center; gap: 1.6rem;
  margin-top: 2.2rem; flex-wrap: wrap;
}
.hero__trust-item { display: flex; flex-direction: column; line-height: 1.2; }
.hero__trust-item b { font-family: var(--font-heading); font-size: 1.35rem; color: var(--color-heading-light); }
.hero__trust-item span { font-size: var(--text-sm); color: rgba(255,253,248,.65); }
.hero__trust-item .stars { color: var(--color-orange-soft); font-size: 1rem; letter-spacing: 1px; }
.hero__trust-sep { width: 1px; height: 34px; background: rgba(255,255,255,.18); }

.hero__image-wrap { position: relative; justify-self: center; width: min(100%, 400px); }
.hero__image-wrap::after { /* soft glow platform */
  content: ""; position: absolute; left: 50%; bottom: 6%;
  width: 70%; height: 60px; transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,0,0,.45), transparent 70%);
  filter: blur(6px); z-index: -1;
}
.hero__image-wrap img { width: 100%; filter: drop-shadow(0 28px 50px rgba(0,0,0,.5)); animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__scroll-hint {
  position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
  z-index: 10; color: rgba(255,253,248,.45); font-size: 1.3rem;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(7px); } }

/* --- Parallax-Trenner --- */
.parallax-divider {
  position: relative;
  height: clamp(260px, 42vh, 460px);
  background-image: var(--divider-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Parallax-Effekt */
}
.parallax-divider::after { /* leichtes Scrim für sanfte Übergänge oben/unten */
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,40,41,.45) 0%, rgba(20,40,41,.12) 25%, rgba(20,40,41,.12) 75%, rgba(20,40,41,.45) 100%);
}
/* Mobile/Touch: fixed-Attachment ist dort unzuverlässig → normales Scrollen */
@media (max-width: 768px) {
  .parallax-divider { background-attachment: scroll; height: clamp(200px, 32vh, 320px); }
}
@media (prefers-reduced-motion: reduce) {
  .parallax-divider { background-attachment: scroll; }
}

/* --- Features --- */
#features { position: relative; background: var(--color-dark-teal); }
#features::before { /* subtle top divider glow */
  content: ""; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224,118,76,.4), transparent);
}
.features__header { max-width: 620px; margin-bottom: 3.2rem; }
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

/* --- Reviews --- */
#erfahrungen { background: linear-gradient(180deg, var(--color-dark-teal), #163536); }
.reviews__header { text-align: center; margin-bottom: 3.2rem; }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.reviews__source {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  text-align: center; margin-top: 2.2rem;
  color: rgba(255,253,248,.55); font-size: var(--text-sm);
}
.reviews__source i { color: var(--color-orange-soft); }

/* --- Prices --- */
#preise { background: linear-gradient(180deg, var(--color-cream), var(--color-cream-2)); }
.prices__header { text-align: center; margin-bottom: 3.4rem; }
.prices__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); align-items: stretch; padding-top: .5rem; }
.prices__note {
  display: flex; align-items: center; justify-content: center; gap: .5rem; flex-wrap: wrap;
  text-align: center; margin-top: 2.2rem; font-size: var(--text-sm); color: var(--color-text-muted);
}
.prices__note i { color: var(--color-brand-orange); }

/* --- Booking / Anfrage --- */
#anfrage {
  position: relative;
  background: linear-gradient(180deg, rgb(26 60 61), rgba(31, 72, 76, .9)), center / cover fixed;
}
.anfrage__header { text-align: center; margin-bottom: 2.6rem; }
.anfrage__card {
  max-width: 920px; margin-inline: auto;
  background: var(--color-cream);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* --- Highlight / Gallery --- */
#highlight { background: var(--color-cream); }
.highlight__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; margin-bottom: 3rem; }
.highlight__image { position: relative; }
.highlight__image img,
.highlight__image video { border-radius: var(--radius-card); width: 100%; height: 420px; object-fit: cover; box-shadow: var(--shadow-lg); display: block; }
.highlight__image::before {
  content: ""; position: absolute; inset: -14px auto auto -14px;
  width: 90px; height: 90px; border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, var(--color-orange-soft), var(--color-brand-orange));
  opacity: .14; z-index: -1;
}
.highlight__content h2 { font-size: var(--text-3xl); color: var(--color-text); margin-bottom: 1.2rem; }
.highlight__content p { color: var(--color-text-muted); margin-bottom: 1rem; }
.highlight__content .btn { margin-top: .6rem; }

/* --- FAQ --- */
#faq {
  position: relative;
  background: linear-gradient(180deg, rgba(26,60,61,.96), rgba(22,48,49,.97)),
     center/cover;
}
.faq__header { text-align: center; margin-bottom: 3rem; }
.faq__grid { display: flex; align-items: flex-start; gap: 0 3.5rem; max-width: 940px; margin-inline: auto; }
.faq__col { flex: 1; min-width: 0; }

/* --- About --- */
#ueber { background: linear-gradient(180deg, var(--color-cream-2), var(--color-cream)); }
.ueber__inner { display: grid; grid-template-columns: 360px 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.ueber__image { position: relative; }
.ueber__image img { width: 100%; height: 460px; object-fit: cover; object-position: top; border-radius: var(--radius-card); box-shadow: var(--shadow-lg); }
.ueber__image .ueber__sig {
  position: absolute; right: -14px; bottom: 26px;
  background: #fff; border-radius: var(--radius);
  padding: .85rem 1.1rem; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: .7rem;
}
.ueber__sig i { color: var(--color-brand-orange); font-size: 1.3rem; }
.ueber__sig b { font-family: var(--font-heading); display: block; font-size: .95rem; color: var(--color-text); }
.ueber__sig span { font-size: var(--text-sm); color: var(--color-text-muted); }
.ueber__content h2 { font-size: var(--text-3xl); color: var(--color-text); margin-bottom: 1.2rem; }
.ueber__content p { color: var(--color-text-muted); margin-bottom: 1rem; }
.ueber__content a.inline-link { color: var(--color-brand-orange); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.ueber__content .btn { margin-top: .8rem; }

/* ============================================================
   8. FOOTER
   ============================================================ */
#footer { background: var(--color-dark-teal); padding: clamp(48px,6vw,64px) 0 30px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__logo { margin-bottom: 1.1rem; }
.footer__brand p { color: rgba(255,253,248,.6); font-size: var(--text-sm); line-height: 1.75; max-width: 320px; margin-bottom: 1.3rem; }
.footer__social { display: flex; gap: .7rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: var(--color-text-light);
  transition: background var(--dur), transform var(--dur) var(--ease);
}
.footer__social a:hover { background: var(--color-brand-orange); transform: translateY(-3px); }
.footer__heading { font-family: var(--font-heading); font-size: var(--text-base); color: var(--color-heading-light); margin-bottom: 1.2rem; }
.footer__links { display: flex; flex-direction: column; gap: .7rem; }
.footer__links a { color: rgba(255,253,248,.65); font-size: var(--text-sm); transition: color var(--dur), padding-left var(--dur) var(--ease); }
.footer__links a:hover { color: var(--color-text-light); padding-left: 4px; }
.footer__bottom { padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer__copyright { color: rgba(255,253,248,.4); font-size: var(--text-sm); }
.footer__legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__legal a { color: rgba(255,253,248,.5); font-size: var(--text-sm); transition: color var(--dur); }
.footer__legal a:hover { color: var(--color-text-light); }

/* ============================================================
   9. MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid  { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .prices__grid   { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .faq__grid      { flex-direction: column; gap: 0; max-width: 640px; }
  .ueber__inner   { grid-template-columns: 300px 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }

  /* mobile nav */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: var(--nav-height) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .4rem;
    background: rgba(26,60,61,.97);
    backdrop-filter: blur(14px);
    padding: 1.2rem clamp(1.25rem,4vw,2rem) 1.8rem;
    box-shadow: 0 12px 28px rgba(0,0,0,.32);
    border-top: 1px solid rgba(255,255,255,.1);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }

  /* when menu is open, pin nav to viewport top so logo + close stay visible */
  body.menu-open { overflow: hidden; }
  body.menu-open #main-nav {
    position: fixed; top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: rgba(26,60,61,.98);
    backdrop-filter: blur(14px);
  }
  .nav-links > li > a { font-size: var(--text-lg); padding: .7rem 0; }
  .nav-links > li > a.btn-nav { text-align: center; padding: .85rem; margin-top: .4rem; }

  /* hero */
  #hero { min-height: auto; }
  .hero__content { padding-block: calc(var(--nav-height) + 28px) 56px; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 1rem; }
  .hero__badge { margin-inline: auto; }
  .hero__title { max-width: none; margin-inline: auto; }
  .hero__subtitle { margin-inline: auto; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__image-wrap { width: min(74%, 260px); margin-inline: auto; }
  .hero__image-wrap img { animation: none; }

  .features__grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-strip img { height: 150px; }
  .highlight__inner { grid-template-columns: 1fr; }
  .highlight__image img,
  .highlight__image video { height: 280px; }
  .ueber__inner { grid-template-columns: 1fr; }
  .ueber__image { max-width: 360px; margin-inline: auto; }
  .ueber__image img { height: 360px; }

  /* Brand oben über volle Breite + zentriert, darunter die beiden
     Link-Spalten nebeneinander statt alles stumpf untereinander */
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; text-align: center; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__logo { display: flex; justify-content: center; }
  .footer__brand p { margin-inline: auto; }
  .footer__social { justify-content: center; }
  .footer__links { align-items: center; }
  .footer__links a:hover { padding-left: 0; } /* kein Links-Shift bei zentriertem Layout */
  .footer__bottom { flex-direction: column; text-align: center; }
  .footer__legal { justify-content: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__trust-sep { display: none; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }

  /* Footer-Linkspalten untereinander — Kontakttexte zu lang für 2 Spalten */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
}
