/* ============================================================
   AQUAMENTUM HOMEPAGE — Design System
   Premium Liquid Minimal · Ocean Blue + Türkis + Cream
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand Farben */
  --c-ocean:       #0d2d4a;
  --c-ocean-deep:  #08192b;
  --c-ocean-mid:   #0f3558;
  --c-teal:        #2ab8d0;
  --c-teal-dark:   #1fa3ba;
  --c-teal-glow:   rgba(42, 184, 208, .18);
  --c-teal-border: rgba(42, 184, 208, .35);

  /* Warme Neutrals */
  --c-cream:       #faf7f2;
  --c-sand:        #f0ebe0;
  --c-parchment:   #e8e0d0;
  --c-sage:        #6b9e7a;

  /* Text */
  --c-ink:         #1a2332;
  --c-slate:       #3d4f63;
  --c-muted:       #6b7a90;
  --c-border:      #dce4ef;
  --c-white:       #ffffff;

  /* Feedback */
  --c-success:     #22c55e;
  --c-error:       #ef4444;

  /* Schriften */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Schriftgrößen */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-hero: clamp(2.2rem, 5vw, 5rem);
  --text-h2:   clamp(1.7rem, 3.2vw, 3rem);
  --text-h3:   clamp(1.2rem, 2vw, 1.5rem);

  /* Abstände (4pt Grid) */
  --s-1: 0.25rem;   --s-2: 0.5rem;    --s-3: 0.75rem;
  --s-4: 1rem;      --s-6: 1.5rem;    --s-8: 2rem;
  --s-10: 2.5rem;   --s-12: 3rem;     --s-16: 4rem;
  --s-20: 5rem;     --s-24: 6rem;     --s-32: 8rem;

  /* Effekte */
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   24px;
  --radius-xl:   36px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.07);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.14);

  /* Animationen */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
  --t-fast:   150ms;
  --t-base:   250ms;
  --t-slow:   400ms;

  /* Nav Höhe */
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Scrollbar Firefox */
  scrollbar-width: thin;
  scrollbar-color: var(--c-teal) var(--c-ocean-deep);
}

/* Scrollbar Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--c-ocean-deep);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--c-teal) 0%, var(--c-teal-dark) 100%);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,.08);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #3ecce3 0%, var(--c-teal) 100%);
}

/* ============================================================
   SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: var(--s-8);
  right: var(--s-6);
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--c-teal);
  color: var(--c-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(42,184,208,.4), 0 1px 4px rgba(0,0,0,.2);
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  transition:
    opacity var(--t-base) var(--ease-out),
    transform var(--t-base) var(--ease-out),
    background var(--t-fast),
    box-shadow var(--t-fast);
  pointer-events: none;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--c-teal-dark);
  box-shadow: 0 6px 28px rgba(42,184,208,.5), 0 2px 8px rgba(0,0,0,.25);
  transform: translateY(-2px) scale(1);
}
.scroll-top:active {
  transform: scale(0.93);
}
.scroll-top:focus-visible {
  outline: 3px solid var(--c-teal);
  outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-top { transition: opacity var(--t-fast); transform: none !important; }
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-white);
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   3. SCROLL ANIMATION — reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity var(--t-slow) var(--ease-out),
    transform var(--t-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}
.container--narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

/* ============================================================
   5. TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--c-ocean);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: var(--s-6);
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-teal);
  flex-shrink: 0;
}

.section-label--light {
  color: rgba(255,255,255,.7);
}
.section-label--light::before {
  background: rgba(255,255,255,.5);
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  padding: 15px 36px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
  min-height: 52px;
  transition:
    background var(--t-base) var(--ease-out),
    border-color var(--t-base) var(--ease-out),
    color var(--t-base) var(--ease-out),
    transform var(--t-fast) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--c-teal);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(42,184,208,.3);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--c-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42,184,208,.4);
}
.btn--primary:focus-visible {
  outline: 3px solid var(--c-teal);
  outline-offset: 3px;
}

.btn--outline {
  background: transparent;
  border-color: var(--c-ocean);
  color: var(--c-ocean);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--c-ocean);
  color: var(--c-white);
  transform: translateY(-2px);
}
.btn--outline:focus-visible {
  outline: 3px solid var(--c-ocean);
  outline-offset: 3px;
}

.btn--ghost-light {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.28);
  color: var(--c-white);
}
.btn--ghost-light:hover,
.btn--ghost-light:focus-visible {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}
.btn--ghost-light:focus-visible {
  outline: 3px solid rgba(255,255,255,.6);
  outline-offset: 3px;
}

.btn--teal-outline {
  background: transparent;
  border-color: var(--c-teal-border);
  color: var(--c-teal);
}
.btn--teal-outline:hover,
.btn--teal-outline:focus-visible {
  background: var(--c-teal);
  color: var(--c-white);
  transform: translateY(-2px);
}
.btn--teal-outline:focus-visible {
  outline: 3px solid var(--c-teal);
  outline-offset: 3px;
}

.btn--sm {
  padding: 10px 22px;
  font-size: var(--text-sm);
  min-height: 40px;
}

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition:
    background var(--t-base) var(--ease-out),
    box-shadow var(--t-base) var(--ease-out),
    backdrop-filter var(--t-base) var(--ease-out);
}

.nav--scrolled {
  background: rgba(250,247,242,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--c-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  height: 36px;
  width: auto;
  transition: filter var(--t-base) var(--ease-out);
}
.nav--hero .nav__logo img {
  filter: brightness(0) invert(1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-slate);
  transition: color var(--t-fast) var(--ease-out);
  position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--c-teal);
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease-out);
  transform-origin: left;
}
.nav__link:hover { color: var(--c-ocean); }
.nav__link:hover::after { transform: scaleX(1); }

.nav--hero .nav__link {
  color: rgba(255,255,255,.8);
}
.nav--hero .nav__link:hover {
  color: var(--c-white);
}

.nav__shop {
  position: relative;
  overflow: hidden;
  font-size: var(--text-sm);
  font-weight: 800;
  padding: 11px 26px;
  min-height: 44px;
  background: linear-gradient(135deg, var(--c-teal) 0%, #65d8e7 100%);
  border-color: rgba(255,255,255,.62);
  color: #062f3d;
  box-shadow:
    0 10px 28px rgba(42,184,208,.34),
    inset 0 1px 0 rgba(255,255,255,.42);
}
.nav__shop::before {
  content: '';
  position: absolute;
  inset: -2px auto -2px -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-18deg);
  transition: left 600ms var(--ease-out);
}
.nav__shop > * {
  position: relative;
  z-index: 1;
}
.nav__shop:hover {
  background: linear-gradient(135deg, #78e6f1 0%, var(--c-teal) 100%);
  border-color: rgba(255,255,255,.88);
  color: #042838;
  transform: translateY(-2px);
  box-shadow:
    0 14px 36px rgba(42,184,208,.45),
    inset 0 1px 0 rgba(255,255,255,.56);
}
.nav__shop:hover::before {
  left: 116%;
}
.nav--hero .nav__shop {
  background: linear-gradient(135deg, #7ff1f4 0%, var(--c-teal) 100%);
  border-color: rgba(255,255,255,.68);
  color: #042838;
  box-shadow:
    0 12px 34px rgba(42,184,208,.42),
    0 0 0 5px rgba(42,184,208,.12),
    inset 0 1px 0 rgba(255,255,255,.58);
}
.nav--hero .nav__shop:hover {
  background: linear-gradient(135deg, #9af8f5 0%, #42c9db 100%);
  border-color: rgba(255,255,255,.9);
}

/* Mobile hamburger */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--c-ocean);
  border-radius: var(--radius-md);
  transition: background var(--t-fast);
}
.nav__toggle:hover { background: rgba(13,45,74,.06); }
.nav--hero .nav__toggle { color: var(--c-white); }

/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  padding: var(--s-4) var(--s-6) var(--s-6);
  flex-direction: column;
  gap: var(--s-4);
  z-index: 99;
  box-shadow: var(--shadow-md);
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  font-size: var(--text-base);
  color: var(--c-ink);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--c-border);
}
.nav__mobile .nav__link:last-of-type { border-bottom: none; }
.nav__mobile .btn { width: 100%; margin-top: var(--s-2); }

@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__shop { display: none; }
  .nav__social { display: none; }
}

/* ============================================================
   8. HERO — Vollbild Einladung
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-ocean-deep);
}

/* Hintergrund — Platzhalter für Foto / Video */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Falls Foto vorhanden: Klasse .hero__bg--photo hinzufügen */
.hero__bg--photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(.35) saturate(1.1);
}

/* CSS-Wasser-Atmosphäre (Platzhalter, solange kein Foto) */
.hero__bg--css {
  background:
    radial-gradient(ellipse 120% 80% at 20% 60%, rgba(15,53,88,.9) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(42,184,208,.12) 0%, transparent 50%),
    linear-gradient(160deg, #08192b 0%, #0d2d4a 35%, #0f3558 65%, #0a2038 100%);
}

/* Overlay für Tiefe */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(13,45,74,.85) 0%, transparent 60%),
    linear-gradient(180deg, rgba(8,25,43,.3) 0%, transparent 40%, rgba(8,25,43,.6) 100%);
}

/* Schwebende Partikel / Blasen */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.hero__particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(42,184,208,.55), rgba(42,184,208,.08));
  border: 1px solid rgba(42,184,208,.4);
  box-shadow: 0 0 8px rgba(42,184,208,.2), inset 0 0 6px rgba(255,255,255,.15);
  animation: float-up linear infinite;
}

/* Kleine Bubbles */
.hero__particle:nth-child(1)  { width: 9px;  height: 9px;  left:  7%; animation-duration: 11s; animation-delay: 0s;    bottom: -30px; }
.hero__particle:nth-child(2)  { width: 6px;  height: 6px;  left: 13%; animation-duration:  8s; animation-delay: 2s;    bottom: -20px; }
.hero__particle:nth-child(3)  { width: 14px; height: 14px; left: 20%; animation-duration: 16s; animation-delay: 0.5s;  bottom: -50px; }
.hero__particle:nth-child(4)  { width: 7px;  height: 7px;  left: 27%; animation-duration: 10s; animation-delay: 3.5s;  bottom: -25px; }
.hero__particle:nth-child(5)  { width: 22px; height: 22px; left: 33%; animation-duration: 20s; animation-delay: 1s;    bottom: -80px; }
.hero__particle:nth-child(6)  { width: 5px;  height: 5px;  left: 40%; animation-duration:  7s; animation-delay: 4.5s;  bottom: -18px; }
.hero__particle:nth-child(7)  { width: 11px; height: 11px; left: 47%; animation-duration: 13s; animation-delay: 0s;    bottom: -40px; }
.hero__particle:nth-child(8)  { width: 18px; height: 18px; left: 53%; animation-duration: 19s; animation-delay: 6s;    bottom: -65px; }
.hero__particle:nth-child(9)  { width: 8px;  height: 8px;  left: 60%; animation-duration:  9s; animation-delay: 2.5s;  bottom: -28px; }
.hero__particle:nth-child(10) { width: 28px; height: 28px; left: 66%; animation-duration: 24s; animation-delay: 1.5s;  bottom: -90px; }
.hero__particle:nth-child(11) { width: 6px;  height: 6px;  left: 72%; animation-duration:  8s; animation-delay: 5s;    bottom: -22px; }
.hero__particle:nth-child(12) { width: 15px; height: 15px; left: 79%; animation-duration: 17s; animation-delay: 3s;    bottom: -55px; }
.hero__particle:nth-child(13) { width: 10px; height: 10px; left: 85%; animation-duration: 12s; animation-delay: 0.8s;  bottom: -35px; }
.hero__particle:nth-child(14) { width: 5px;  height: 5px;  left: 91%; animation-duration:  7s; animation-delay: 4s;    bottom: -18px; }
.hero__particle:nth-child(15) { width: 20px; height: 20px; left:  3%; animation-duration: 21s; animation-delay: 7s;    bottom: -70px; }
.hero__particle:nth-child(16) { width: 8px;  height: 8px;  left: 95%; animation-duration: 10s; animation-delay: 1.2s;  bottom: -30px; }
/* Große Akzent-Bubbles */
.hero__particle:nth-child(17) { width: 36px; height: 36px; left: 10%; animation-duration: 28s; animation-delay: 9s;    bottom: -100px; opacity: .5; }
.hero__particle:nth-child(18) { width: 12px; height: 12px; left: 44%; animation-duration: 14s; animation-delay: 5.5s;  bottom: -45px; }
.hero__particle:nth-child(19) { width: 24px; height: 24px; left: 57%; animation-duration: 22s; animation-delay: 8s;    bottom: -85px; opacity: .55; }
.hero__particle:nth-child(20) { width: 7px;  height: 7px;  left: 23%; animation-duration:  9s; animation-delay: 0.3s;  bottom: -25px; }
.hero__particle:nth-child(21) { width: 42px; height: 42px; left: 75%; animation-duration: 30s; animation-delay: 12s;   bottom: -120px; opacity: .4; }
.hero__particle:nth-child(22) { width: 9px;  height: 9px;  left: 36%; animation-duration: 11s; animation-delay: 3.8s;  bottom: -32px; }
.hero__particle:nth-child(23) { width: 16px; height: 16px; left: 88%; animation-duration: 18s; animation-delay: 6.5s;  bottom: -58px; }
.hero__particle:nth-child(24) { width: 6px;  height: 6px;  left: 50%; animation-duration:  8s; animation-delay: 1.8s;  bottom: -22px; }

@keyframes float-up {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  50%  { transform: translateY(-50vh) translateX(18px); }
  90%  { opacity: .7; }
  100% { transform: translateY(-105vh) translateX(-12px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__particle { animation: none; opacity: .2; }
}

/* Wellen-Trennlinie unten */
.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 2;
  line-height: 0;
}
.hero__wave svg { display: block; width: 100%; }

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: var(--s-24) var(--s-6);
  padding-top: calc(var(--nav-h) + var(--s-16));
  max-width: 800px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  background: rgba(42,184,208,.15);
  border: 1px solid rgba(42,184,208,.35);
  color: rgba(255,255,255,.9);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: var(--s-8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-teal);
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: .6; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow-dot { animation: none; }
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: var(--s-6);
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero__headline em {
  font-style: italic;
  color: var(--c-teal);
}

.hero__subline {
  font-size: clamp(var(--text-base), 1.6vw, var(--text-lg));
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  margin-bottom: var(--s-12);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: var(--s-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  color: rgba(255,255,255,.45);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__scroll { animation: none; }
}

/* ============================================================
   9. SECTION: MISSION
   ============================================================ */
.mission {
  background: var(--c-cream);
  padding: var(--s-8) 0;
}

.mission__inner {
  text-align: center;
}

.mission__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-ocean);
  line-height: 1.3;
  margin-bottom: var(--s-8);
  position: relative;
}
.mission__quote::before {
  content: '\201E';
  font-size: 4rem;
  line-height: 0;
  color: var(--c-teal);
  opacity: .35;
  position: absolute;
  left: -1.5rem;
  top: 1rem;
}

.mission__text {
  font-size: var(--text-lg);
  color: var(--c-slate);
  max-width: 640px;
  margin: 0 auto var(--s-6);
}

.mission__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-teal), transparent);
  margin: var(--s-10) auto;
}

.mission__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-8);
  margin-top: var(--s-16);
}

.mission__pillar {
  text-align: center;
  padding: var(--s-6);
}

.mission__pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-teal-glow);
  border: 1px solid var(--c-teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--s-4);
  color: var(--c-teal);
}

.mission__pillar h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--c-ocean);
  margin-bottom: var(--s-2);
  font-family: var(--font-serif);
}

.mission__pillar p {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.6;
}

@media (max-width: 680px) {
  .mission__pillars { grid-template-columns: 1fr; gap: var(--s-4); }
  .mission__quote::before { display: none; }
}

/* ============================================================
   10. SECTION: PHILOSOPHIE
   ============================================================ */
.philosophie {
  background: var(--c-sand);
  padding: var(--s-8) 0;
}

.philosophie__header {
  margin-bottom: var(--s-16);
}
.philosophie__title {
  font-size: var(--text-h2);
  max-width: 560px;
}
.philosophie__subtitle {
  font-size: var(--text-lg);
  color: var(--c-slate);
  margin-top: var(--s-4);
  max-width: 520px;
}

.philosophie__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.phil-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(220,228,239,.6);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.phil-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.phil-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s-4);
}

.phil-card__number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--c-teal);
  opacity: .18;
  line-height: 1;
  user-select: none;
}

.phil-card__icon {
  color: var(--c-teal);
}

.phil-card h3 {
  font-size: var(--text-xl);
  color: var(--c-ocean);
  margin-bottom: var(--s-3);
  line-height: 1.25;
}

.phil-card p {
  font-size: var(--text-base);
  color: var(--c-slate);
  line-height: 1.7;
  flex: 1;
}

.phil-card__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-border);
}

@media (max-width: 860px) {
  .philosophie__grid { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* ============================================================
   11. SECTION: TEAM
   ============================================================ */
.team {
  background: var(--c-white);
  padding: var(--s-8) 0;
}

.team__header {
  text-align: center;
  margin-bottom: var(--s-16);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.team__title { margin-bottom: var(--s-4); }
.team__tagline {
  font-style: italic;
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--c-muted);
}

.team__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-6);
}

.team__grid .team-card {
  flex: 0 1 260px;
  max-width: 300px;
}

.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto var(--s-4);
  background: linear-gradient(135deg, var(--c-ocean-mid), var(--c-ocean));
  border: 3px solid var(--c-sand);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.4);
}
.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--c-ocean);
  margin-bottom: var(--s-1);
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__role {
  font-size: var(--text-sm);
  color: var(--c-teal);
  font-weight: 500;
  margin-bottom: var(--s-3);
  height: 2.8rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-card__bio {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.6;
}

@media (max-width: 480px) {
  .team__grid .team-card { flex: 1 1 100%; max-width: 100%; }
}

/* ============================================================
   12. SECTION: EINBLICK (Behind the Scenes)
   ============================================================ */
.einblick {
  background: var(--c-ocean);
  padding: var(--s-16) 0;
  overflow: hidden;
}

.einblick__header {
  margin-bottom: var(--s-12);
}
.einblick__title {
  color: var(--c-white);
  max-width: 500px;
}
.einblick__subtitle {
  color: rgba(255,255,255,.6);
  font-size: var(--text-lg);
  margin-top: var(--s-3);
}

.einblick__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--s-4);
}

.einblick__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--c-ocean-mid);
  aspect-ratio: 3 / 4.1;
  border: 1px solid rgba(255,255,255,.06);
}
.einblick__item:first-child {
  grid-column: span 2;
  aspect-ratio: 3 / 2;
}
.einblick__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.einblick__item:hover img { transform: scale(1.04); }

/* Platzhalter wenn kein Foto */
.einblick__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  color: rgba(255,255,255,.2);
  background: linear-gradient(135deg, rgba(255,255,255,.04), rgba(42,184,208,.05));
}
.einblick__placeholder span {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Caption overlay */
.einblick__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--s-4) var(--s-4);
  background: linear-gradient(to top, rgba(8,25,43,.85) 0%, transparent 100%);
  color: rgba(255,255,255,.85);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: .05em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--t-base), transform var(--t-base);
}
.einblick__item:hover .einblick__caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .einblick__grid { grid-template-columns: repeat(2, 1fr); }
  .einblick__item:first-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .einblick__grid { grid-template-columns: 1fr; }
  .einblick__item:first-child { grid-column: span 1; }
}

/* ============================================================
   13. SECTION: COMMUNITY
   ============================================================ */
.community {
  background: var(--c-cream);
  padding: var(--s-16) 0;
}

.community__header {
  text-align: center;
  margin-bottom: var(--s-16);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.community__title { margin-bottom: var(--s-4); }
.community__subtitle {
  font-size: var(--text-lg);
  color: var(--c-slate);
}

.community__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.comm-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.comm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.comm-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.comm-card__icon-wrap--telegram {
  color: #2994d0;
}
.comm-card__icon-wrap--whatsapp {
  color: #25D366;
}
.comm-card__icon-wrap--vitalist {
  color: var(--c-teal);
}

.comm-card h3 {
  font-size: var(--text-lg);
  color: var(--c-ocean);
}
.comm-card p {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.65;
  flex: 1;
}
.comm-card .btn { align-self: flex-start; }

@media (max-width: 860px) {
  .community__cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   14. SECTION: PRODUKTE (dezent)
   ============================================================ */
.produkte {
  background: var(--c-sand);
  padding: var(--s-16) 0;
}

.produkte__header {
  text-align: center;
  margin-bottom: var(--s-16);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.produkte__title { margin-bottom: var(--s-4); }
.produkte__subtitle {
  font-size: var(--text-base);
  color: var(--c-slate);
}

.produkte__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.produkt-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(220,228,239,.7);
  transition: transform var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.produkt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.produkt-card__img {
  aspect-ratio: 4/3;
  background: var(--c-cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-8);
}
.produkt-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
}
.produkt-card:hover .produkt-card__img img {
  transform: scale(1.04);
}

.produkt-card__body {
  padding: var(--s-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.produkt-card__type {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-teal);
  margin-bottom: var(--s-2);
}

.produkt-card h3 {
  font-size: var(--text-lg);
  color: var(--c-ocean);
  margin-bottom: var(--s-3);
  line-height: 1.3;
}

.produkt-card p {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--s-6);
}

.produkte__cta-wrap {
  text-align: center;
  margin-top: var(--s-12);
}
.produkte__cta-wrap p {
  font-size: var(--text-sm);
  color: var(--c-muted);
  margin-top: var(--s-3);
}

@media (max-width: 860px) {
  .produkte__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

/* ============================================================
   15. SECTION: KONTAKT
   ============================================================ */
.kontakt {
  background: var(--c-ocean);
  padding: var(--s-16) 0;
}

.kontakt__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-16);
  align-items: start;
}

.kontakt__left {}
.kontakt__title {
  color: var(--c-white);
  margin-bottom: var(--s-4);
}
.kontakt__text {
  color: rgba(255,255,255,.65);
  font-size: var(--text-lg);
  margin-bottom: var(--s-10);
}

.kontakt__channels {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.kontakt__channel {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: 0 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  color: var(--c-white);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  text-decoration: none;
  min-height: 52px;
}
.kontakt__channel:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  transform: translateX(4px);
}
.kontakt__channel-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontakt__channel-icon--wa  { color: #25D366; }
.kontakt__channel-icon--tg  { color: #2994d0; }
.kontakt__channel-icon--mail { color: var(--c-teal); }

.kontakt__channel-text {
  flex: 1;
}
.kontakt__channel-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 2px;
}
.kontakt__channel-value {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.88);
}

/* Kontaktformular */
.kontakt__form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: var(--s-8);
}
.kontakt__form-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--c-white);
  margin-bottom: var(--s-6);
}

.form-field {
  margin-bottom: var(--s-5);
}
.form-field label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,.7);
  margin-bottom: var(--s-2);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  color: var(--c-white);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.5;
  transition: border-color var(--t-fast), background var(--t-fast);
  min-height: 48px;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,.3);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--c-teal);
  background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(42,184,208,.2);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
}
.form-field select option {
  background: var(--c-ocean);
  color: var(--c-white);
}
.form-field--checkbox {
  margin-top: var(--s-2);
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  cursor: pointer;
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: #2ab8d0;
  cursor: pointer;
}

.form-message {
  display: none;
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-top: var(--s-4);
}
.form-message--success {
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: #4ade80;
}
.form-message--error {
  background: rgba(239,68,68,.15);
  border: 1px solid rgba(239,68,68,.3);
  color: #f87171;
}

@media (max-width: 860px) {
  .kontakt__inner {
    grid-template-columns: 1fr;
    gap: var(--s-12);
  }
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: var(--c-ocean-deep);
  padding: var(--s-16) 0 var(--s-8);
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-12);
}

.footer__brand .footer__logo img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1) opacity(.7);
  margin-bottom: var(--s-4);
}
.footer__brand p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.4);
  line-height: 1.6;
  max-width: 240px;
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: var(--s-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.footer__links a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.55);
  transition: color var(--t-fast);
}
.footer__links a:hover { color: var(--c-white); }

.footer__social {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-4);
}
.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: background var(--t-fast), color var(--t-fast);
  min-height: 38px;
}
.footer__social-link:hover {
  background: rgba(42,184,208,.2);
  color: var(--c-teal);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.footer__copy {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.3);
}
.footer__legal {
  display: flex;
  gap: var(--s-6);
}
.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.3);
  transition: color var(--t-fast);
}
.footer__legal a:hover { color: rgba(255,255,255,.7); }

@media (max-width: 860px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   17. WAVE DIVIDER UTILITY
   ============================================================ */
.wave-sep {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}
.wave-sep svg { display: block; width: 100%; }

/* ============================================================
   NAV SOCIAL ICONS
   ============================================================ */
.nav__social {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.nav__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.7);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__social a:hover {
  color: var(--c-teal);
  background: rgba(42,184,208,.12);
}

.nav--scrolled .nav__social a { color: rgba(13,45,74,.55); }
.nav--scrolled .nav__social a:hover { color: var(--c-teal-dark); background: rgba(42,184,208,.08); }

@media (max-width: 900px) { .nav__social { display: none; } }


/* ============================================================
   WHATSAPP BALD VERFÜGBAR
   ============================================================ */
.comm-card--coming-soon { opacity: 0.72; }

.btn--disabled {
  pointer-events: none;
  opacity: 0.55;
  cursor: default;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}


/* ============================================================
   TEAM CARD — PLATZHALTER AVATAR
   ============================================================ */
.team-card__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-parchment);
  color: var(--c-muted);
}


/* ============================================================
   KUNDENSTIMMEN / TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: var(--s-16) var(--s-4);
  background: var(--c-cream);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--s-16);
}

.testimonials__header h2 {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  color: var(--c-ocean);
  margin: var(--s-3) 0 var(--s-2);
}

.testimonials__subtitle {
  color: var(--c-muted);
  font-size: var(--text-lg);
  max-width: 500px;
  margin: 0 auto;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-6);
}

.testimonial-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: box-shadow var(--t-base), transform var(--t-base);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--c-slate);
  font-size: var(--text-base);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.testimonial-card__meta {
  border-top: 1px solid var(--c-border);
  padding-top: var(--s-4);
}

.testimonial-card__name {
  font-weight: 600;
  color: var(--c-ocean);
  font-size: var(--text-sm);
}

.testimonial-card__product {
  color: var(--c-teal-dark);
  font-size: var(--text-xs);
  font-weight: 500;
  margin-top: 2px;
}


/* ============================================================
   VIDEO EMBEDS
   ============================================================ */
.videos-section {
  padding: var(--s-24) var(--s-4);
  background: var(--c-ocean);
}

.videos-section__header {
  text-align: center;
  margin-bottom: var(--s-16);
}

.videos-section__header h2 {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  color: var(--c-white);
  margin: var(--s-3) 0 var(--s-2);
}

.videos-section__subtitle {
  color: rgba(255,255,255,.65);
  font-size: var(--text-lg);
  max-width: 500px;
  margin: 0 auto;
}

.videos-section__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
}

.video-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.video-embed iframe,
.video-embed video {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  object-fit: cover;
}

.video-embed__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: var(--s-6);
  text-align: center;
}

.video-embed__placeholder p {
  color: rgba(255,255,255,.65);
  font-size: var(--text-sm);
  margin: 0;
}

.video-embed__hint {
  font-size: var(--text-xs);
  color: var(--c-teal);
  font-family: monospace;
}

.video-embed--large {
  aspect-ratio: 16 / 9;
  max-width: 860px;
  width: 100%;
}


/* ============================================================
   LARGE SCREEN RESPONSIVE (1440px+)
   ============================================================ */
@media (min-width: 1440px) {
  .container { max-width: 1200px; }
  .container--wide { max-width: 1480px; }
}

/* ============================================================
   KONTAKTFORMULAR ERFOLGS-MODAL
   ============================================================ */
.cf-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(8, 25, 43, 0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: var(--s-4);
}
.cf-modal.is-open {
  display: flex;
  animation: cf-modal-in 0.25s ease;
}
.cf-modal__box {
  background: #fff;
  border-radius: 16px;
  padding: var(--s-10) var(--s-8);
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 60px rgba(8,25,43,0.25);
  animation: cf-modal-box-in 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cf-modal__icon {
  color: #22c55e;
  margin-bottom: var(--s-4);
}
.cf-modal__title {
  font-family: 'Playfair Display', serif;
  font-size: var(--text-2xl);
  color: var(--c-ocean-deep);
  margin: 0 0 var(--s-3);
}
.cf-modal__text {
  color: var(--c-ink-muted);
  line-height: 1.6;
  margin: 0 0 var(--s-5);
}
.cf-modal__countdown {
  font-size: var(--text-xs);
  color: var(--c-ink-light);
  margin-bottom: var(--s-5);
}
.cf-modal__close {
  width: 100%;
}
@keyframes cf-modal-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes cf-modal-box-in {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

@media (min-width: 1920px) {
  .container { max-width: 1320px; }
  .container--wide { max-width: 1600px; }
}
