/* ============================================================
   AMMERSEE ESCAPES — Design System
   ============================================================ */

/* Selbst gehostete Schriften (latin) — DSGVO-konform, kein externer Ladevorgang */
@font-face { font-family: 'Dancing Script';  font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/DancingScript-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter';            font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/Inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter';            font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/Inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter';            font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/Inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/PlayfairDisplay-400.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/PlayfairDisplay-400i.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/PlayfairDisplay-700.woff2') format('woff2'); }

:root {
  --color-petrol:        #1B4B5A;
  --color-teal:          #3FAFA8;
  --color-orange:        #E8884A;
  --color-rust:          #8B4A2B;
  --color-sand:          #F2EEE5;
  --color-white:         #FAFAF7;
  --color-dark:          #1C2B35;
  --color-muted:         #6b7f87;
  --color-teal-light:    #E8F7F6;
  --color-orange-light:  #FDF0E8;
  --color-green-light:   #EEF5E8;
  --color-violet-light:  #F5EEF8;

  --sp-xs:  4px;
  --sp-s:   8px;
  --sp-m:   16px;
  --sp-l:   24px;
  --sp-xl:  32px;
  --sp-2xl: 48px;
  --sp-3xl: 64px;
  --sp-sec: 80px;

  --r-badge:  4px;
  --r-btn:    6px;
  --r-card:   12px;
  --r-modal:  16px;

  --container: 1120px;

  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-back: cubic-bezier(.34,1.56,.64,1);

  --shadow-sm: 0 2px 12px rgba(27,75,90,.08);
  --shadow-md: 0 10px 30px rgba(27,75,90,.13);
  --shadow-lg: 0 22px 48px rgba(27,75,90,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-dark);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h1 { font-weight: 700; font-size: 40px; }
h2 { font-weight: 400; font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -.01em; }
h3 { font-weight: 700; font-size: 18px; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--sp-s);
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-l); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-s);
  padding: 12px 24px;
  border-radius: var(--r-btn);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  transition: opacity .18s, transform .18s, box-shadow .18s;
  cursor: pointer;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }
.btn--orange {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 2px 12px rgba(232,136,74,.35);
}
.btn--outline-white {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.65);
  backdrop-filter: blur(2px);
}
.btn--outline-white:hover { background: rgba(255,255,255,.18); border-color: #fff; }

.wave-divider {
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-orange));
  border-radius: 2px;
  margin: var(--sp-m) 0 var(--sp-2xl);
}
.wave-divider--center { margin: var(--sp-m) auto var(--sp-2xl); }

/* --- NAVIGATION --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--color-sand);
  transition: background .25s, box-shadow .25s;
}
.nav.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 16px rgba(27,75,90,.1);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: var(--sp-l);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-s);
  flex-shrink: 0;
}
.nav__logo img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.nav__brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-petrol);
  white-space: nowrap;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-xl);
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-petrol);
  white-space: nowrap;
  transition: color .18s;
}
.nav__links a:hover { color: var(--color-teal); }

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--sp-m);
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
}
.lang-switch__btn {
  padding: 4px 8px;
  color: var(--color-muted);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
  line-height: 1;
}
.lang-switch__btn.active {
  color: var(--color-teal);
  border-bottom-color: var(--color-teal);
}
.lang-switch__sep { color: var(--color-muted); font-size: 12px; padding: 0 2px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-petrol);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--color-white);
  padding: var(--sp-l);
  border-top: 1px solid rgba(27,75,90,.08);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-petrol);
  border-bottom: 1px solid rgba(27,75,90,.07);
  transition: color .18s;
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile a:hover { color: var(--color-teal); }
.nav__mobile .lang-switch { margin-top: var(--sp-m); }
.nav__mobile .btn { margin-top: var(--sp-m); align-self: flex-start; }

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 95%;
  animation: kenBurns 12s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  0%   { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,30,40,.3) 0%,
    rgba(10,30,40,.1) 40%,
    rgba(10,30,40,.65) 70%,
    rgba(10,30,40,.85) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 68px;
  padding-bottom: 80px;
  max-width: 1000px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.hero__text {
  flex: 1;
  min-width: 0;
}
.hero__logo-wrap {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  margin-top: 2rem;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 3px rgba(255,255,255,.25), 0 4px 24px rgba(0,0,0,.4);
}
.hero__logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__eyebrow { color: rgba(255,255,255,.75); letter-spacing: .14em; margin-bottom: var(--sp-m); text-shadow: 0 2px 12px rgba(0,0,0,.6); }
.hero__title {
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: var(--sp-m);
  text-shadow: 0 3px 24px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.4);
}
.hero__title em { font-style: italic; color: #fff; }
.hero__subline {
  color: rgba(255,255,255,.9);
  font-size: 18px;
  max-width: 520px;
  margin-bottom: var(--sp-2xl);
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-l);
  flex-wrap: wrap;
}
.hero__secondary {
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 2px;
  transition: color .18s, border-color .18s;
}
.hero__secondary:hover { color: #fff; border-color: #fff; }

.hero__scroll {
  position: absolute;
  bottom: var(--sp-2xl);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-s);
  color: rgba(255,255,255,.55);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounceArrow 2s ease-in-out infinite;
}
@keyframes bounceArrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* --- FADE-IN --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-in-left {
  opacity: 0;
  transform: translateX(-160px) rotate(-7deg) scale(.8);
  transition: opacity .55s var(--ease), transform .8s var(--ease-back);
  will-change: transform, opacity;
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0) rotate(0) scale(1);
}
/* Auffälliger „Landungs"-Impuls auf der Nummer, sobald die Karte ankommt */
.slide-in-left.visible .step-card__num {
  animation: stepNumPop .6s var(--ease-back) .25s both;
}
@keyframes stepNumPop {
  0%   { transform: scale(.6); box-shadow: 0 0 0 0 rgba(63,175,168,.5); }
  60%  { transform: scale(1.25); box-shadow: 0 0 0 12px rgba(63,175,168,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(63,175,168,0); }
}
@media (prefers-reduced-motion: reduce) {
  .slide-in-left { transition: opacity .4s ease; transform: none; }
  .slide-in-left.visible .step-card__num { animation: none; }
}

/* --- WHATSAPP STICKY --- */
.whatsapp-sticky {
  position: fixed;
  bottom: var(--sp-l);
  right: var(--sp-l);
  z-index: 300;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-sticky:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,.5); }
.whatsapp-sticky svg { width: 30px; height: 30px; fill: #fff; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  h1 { font-size: 30px; }
  h2 { font-size: 22px; }
  .nav__links { display: none; }
  .nav__right .btn { display: none; }
  .nav__burger { display: flex; }
  .hero__content { padding-left: var(--sp-m); padding-right: var(--sp-m); max-width: 100%; }
  .hero__logo-wrap { display: none; }
}

/* ============================================================
   TRUST-BAR
   ============================================================ */
.trust-bar {
  background: var(--color-sand);
  border-top: 1px solid rgba(27,75,90,.08);
  border-bottom: 1px solid rgba(27,75,90,.08);
  padding: var(--sp-l) 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3xl);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-s);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-petrol);
  white-space: nowrap;
}
.trust-item__icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-petrol);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-teal);
}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-b {
  background: var(--color-sand);
  padding: var(--sp-sec) 0;
}
.section-header { margin-bottom: var(--sp-3xl); }
.section-header h2 { color: var(--color-petrol); margin-top: var(--sp-s); }
.section-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-muted);
  max-width: 580px;
  margin: var(--sp-m) auto 0;
}
.text-center { text-align: center; }

/* ============================================================
   ZIELGRUPPEN
   ============================================================ */
.zielgruppen { padding-top: var(--sp-sec); padding-bottom: var(--sp-sec); }

.zg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-m);
  margin-top: 0;
}
.zg-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  display: block;
  min-height: 340px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: var(--shadow-sm);
}
.zg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.zg-card__img {
  position: absolute;
  inset: 0;
}
.zg-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.zg-card:hover .zg-card__img img { transform: scale(1.06); }
.zg-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,52,63,.92) 0%, rgba(27,75,90,.35) 55%, rgba(27,75,90,.05) 100%);
  transition: background .4s var(--ease);
}
.zg-card:hover .zg-card__overlay {
  background: linear-gradient(to top, rgba(20,52,63,.95) 0%, rgba(27,75,90,.6) 60%, rgba(27,75,90,.25) 100%);
}
.zg-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-l) var(--sp-l) var(--sp-xl);
  z-index: 1;
}
.zg-card__body h3 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(26px, 2.4vw, 32px);
  line-height: 1.1;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
  transition: transform .4s var(--ease);
}
.zg-card:hover .zg-card__body h3 { transform: translateY(-6px); }
.zg-card__body p {
  color: rgba(255,255,255,.88);
  font-size: 14px;
  line-height: 1.55;
  margin-top: var(--sp-s);
  max-height: 0;
  opacity: 0;
  transform: translateY(8px);
  overflow: hidden;
  transition: max-height .45s var(--ease), opacity .4s var(--ease), transform .45s var(--ease), margin-top .45s var(--ease);
}
.zg-card:hover .zg-card__body p,
.zg-card:focus-within .zg-card__body p {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
}
/* Touch devices have no hover — keep the subtext visible there */
@media (hover: none) {
  .zg-card__body p { max-height: 160px; opacity: 1; transform: none; }
}

@media (max-width: 768px) {
  .trust-bar__inner { gap: var(--sp-xl); justify-content: flex-start; }
  .zg-grid { grid-template-columns: 1fr; }
  .zg-card { min-height: 260px; }
}

/* ============================================================
   ERLEBNISSE (#erlebnisse)
   ============================================================ */
.erlebnisse { padding: var(--sp-sec) 0; background: var(--color-white); }

.exp-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-s);
  margin: 0 0 var(--sp-2xl);
}
.exp-filter__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 24px;
  border: 1.5px solid rgba(27,75,90,.18);
  background: transparent;
  color: var(--color-petrol);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.exp-filter__btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.exp-filter__btn:hover { border-color: var(--color-teal); color: var(--color-teal); }
.exp-filter__btn.active {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #fff;
  box-shadow: 0 4px 14px rgba(63,175,168,.3);
}
.exp-card.exp-card--hidden { display: none; }

.erlebnisse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-l);
}

.exp-card {
  background: var(--color-sand);
  border-radius: var(--r-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.exp-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}
.exp-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.exp-card:hover .exp-card__img img { transform: scale(1.05); }

.exp-card__img--feature {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-petrol) 0%, var(--color-teal) 135%);
}
.exp-card__feature-icon {
  color: rgba(255,255,255,.92);
  transition: transform .5s var(--ease);
}
.exp-card__feature-icon svg { width: 66px; height: 66px; }
.exp-card:hover .exp-card__feature-icon { transform: scale(1.08) rotate(-4deg); }


.exp-card__badges {
  position: absolute;
  top: var(--sp-m);
  left: var(--sp-m);
  display: flex;
  gap: var(--sp-xs);
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--r-badge);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3px;
}
.badge--water   { background: var(--color-teal-light);   color: var(--color-petrol); }
.badge--nature  { background: var(--color-green-light);  color: #2d5a27; }
.badge--life    { background: var(--color-orange-light);  color: var(--color-rust); }
.badge--wellness{ background: var(--color-violet-light); color: #5a2d82; }
.badge--winter  { background: #e8f0f7; color: #2a4a6b; }
.badge--sport   { background: var(--color-teal-light);   color: var(--color-petrol); }
.badge--star    { background: var(--color-orange); color: #fff; }

.exp-card__body {
  padding: var(--sp-l);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-s);
}
.exp-card__title {
  color: var(--color-petrol);
  font-size: 17px;
}
.exp-card__desc {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.exp-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs) var(--sp-m);
  margin-top: var(--sp-xs);
}
.exp-fact {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--color-muted);
  font-weight: 500;
}
.exp-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--sp-s);
  padding-top: var(--sp-s);
  border-top: 1px solid rgba(27,75,90,.1);
}
.exp-card__price {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-rust);
}
.exp-card__price strong { font-size: 16px; }
.exp-card__btn {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-teal);
  letter-spacing: .3px;
  transition: color .18s;
  white-space: nowrap;
}
.exp-card__btn:hover { color: var(--color-orange); }

/* Surfskate accordion */
.surfskate-toggle {
  margin-top: var(--sp-s);
  border-top: 1px solid rgba(27,75,90,.1);
  padding-top: var(--sp-s);
}
.surfskate-toggle__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-petrol);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: 'Inter', sans-serif;
  text-align: left;
}
.surfskate-toggle__icon {
  font-size: 18px;
  line-height: 1;
  color: var(--color-teal);
  transition: transform .22s;
  flex-shrink: 0;
}
.surfskate-toggle__btn[aria-expanded="true"] .surfskate-toggle__icon { transform: rotate(45deg); }
.surfskate-toggle__content {
  display: none;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
  padding-top: var(--sp-s);
}
.surfskate-toggle__content.open { display: block; }
.surfskate-toggle__content ul {
  margin: var(--sp-s) 0;
  padding-left: var(--sp-m);
  list-style: disc;
}
.surfskate-toggle__content li { margin-bottom: 2px; }
.surfskate-no-exp {
  display: inline-block;
  margin-top: var(--sp-s);
  background: var(--color-teal-light);
  color: var(--color-petrol);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: var(--r-badge);
}

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

/* ============================================================
   HIGHLIGHTS (#highlights)
   ============================================================ */
.highlights {
  background: var(--color-petrol);
  padding: var(--sp-sec) 0;
}
.highlights .section-header h2,
.highlights .section-lead { color: rgba(255,255,255,.9); }
.highlights .section-header h2 { color: #fff; }
.highlights .eyebrow { color: var(--color-teal); }

.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-l);
}
.hl-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-card);
  padding: var(--sp-l);
  display: flex;
  flex-direction: column;
  transition: background .25s, transform .25s, border-color .25s, box-shadow .25s;
}
.hl-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(63,175,168,.45);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
.hl-card__media {
  position: relative;
  margin-bottom: calc(var(--sp-l) + 10px);
}
.hl-card__img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.hl-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s;
}
.hl-card:hover .hl-card__img img { transform: scale(1.05); }
.hl-card__icon {
  position: absolute;
  bottom: -24px;
  left: var(--sp-m);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid var(--color-petrol);
  box-shadow: 0 6px 20px rgba(15,110,86,.55);
  z-index: 2;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), background .25s;
}
.hl-card__icon svg { width: 26px; height: 26px; }
.hl-card:hover .hl-card__icon {
  transform: scale(1.1) rotate(-5deg);
  background: var(--color-orange);
}
.hl-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 21px;
  color: #fff;
  margin-bottom: var(--sp-s);
}
.hl-card__text {
  font-size: 14px;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-l);
}
.hl-card .btn { align-self: flex-start; }

/* ============================================================
   TAGLINE BANNER (#tagline)
   ============================================================ */
.tagline-banner {
  background: var(--color-dark);
  padding: 60px 0;
  text-align: center;
}
.tagline-banner__heart {
  display: block;
  font-size: 44px;
  line-height: 1;
  margin-bottom: var(--sp-m);
  color: var(--color-rust);
  transform-origin: center;
  animation: heartPulse 1.6s ease-in-out infinite;
}
@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  15%      { transform: scale(1.25); }
  30%      { transform: scale(1); }
  45%      { transform: scale(1.18); }
}
@media (prefers-reduced-motion: reduce) {
  .tagline-banner__heart { animation: none; }
}
.tagline-banner__text {
  display: block;
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 56px);
  line-height: 1.2;
  margin-bottom: var(--sp-m);
  background: linear-gradient(100deg,
    var(--color-orange) 25%,
    #ffd9a8 48%,
    #fff 50%,
    #ffd9a8 52%,
    var(--color-orange) 75%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: taglineShimmer 5s ease-in-out infinite;
}
@keyframes taglineShimmer {
  0%   { background-position: 150% center; }
  100% { background-position: -50% center; }
}
@media (prefers-reduced-motion: reduce) {
  .tagline-banner__text { animation: none; background-position: center; }
}
.tagline-banner__sub {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  letter-spacing: .3px;
}

/* ============================================================
   PAKETE (#pakete)
   ============================================================ */
.pakete { padding: var(--sp-sec) 0; background: var(--color-sand); }

.pakete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-l);
  align-items: stretch;
}
.paket-card {
  background: var(--color-white);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.paket-card--featured {
  border: 2px solid var(--color-orange);
  transform: scale(1.03);
}
.paket-card--featured:hover { transform: scale(1.03) translateY(-6px); }
.paket-card__header {
  background: var(--color-petrol);
  padding: var(--sp-l);
  position: relative;
}
.paket-card--featured .paket-card__header { background: var(--color-orange); }
.paket-card__badge-top {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  margin-bottom: var(--sp-xs);
}
.paket-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
}
.paket-card__popular {
  position: absolute;
  top: var(--sp-m);
  right: var(--sp-m);
  background: #fff;
  color: var(--color-orange);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 50px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.paket-card__body {
  padding: var(--sp-l);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-m);
}
.paket-card__text {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.65;
}
.paket-card__includes {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}
.paket-card__includes li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-s);
  font-size: 13px;
  color: var(--color-dark);
}
.paket-card__includes li::before {
  content: '✓';
  color: var(--color-teal);
  font-weight: 700;
  flex-shrink: 0;
}
.paket-card__price {
  font-size: 13px;
  color: var(--color-muted);
  padding-top: var(--sp-s);
  border-top: 1px solid rgba(27,75,90,.1);
  margin-top: auto;
}
.paket-card__price strong {
  display: block;
  font-size: 22px;
  color: var(--color-rust);
  font-family: 'Inter', sans-serif;
  margin-bottom: 2px;
}
.paket-card .btn { margin-top: var(--sp-s); width: 100%; justify-content: center; }
.btn--petrol { background: var(--color-petrol); color: #fff; }

@media (max-width: 900px) {
  .hl-grid { grid-template-columns: 1fr; }
  .pakete-grid { grid-template-columns: 1fr; }
  .paket-card--featured { transform: none; }
}

/* ============================================================
   BUCHUNG (#buchung)
   ============================================================ */
.buchung {
  background: var(--color-petrol);
  padding: var(--sp-sec) 0;
  color: #fff;
}
.buchung .section-header h2,
.buchung .section-lead { color: #fff; }
.buchung .section-lead { color: rgba(255,255,255,.7); }
.buchung-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  margin-top: var(--sp-3xl);
  position: relative;
}
.buchung-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: rgba(63,175,168,.35);
  z-index: 0;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-card__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-teal);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-m);
}
.step-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-s);
}
.step-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
}
.buchung__cta-wrap {
  text-align: center;
  margin-top: var(--sp-3xl);
}
.buchung__promise {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-s);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-card);
  padding: var(--sp-m) var(--sp-l);
  margin-top: var(--sp-l);
  font-size: 14px;
  color: rgba(255,255,255,.75);
}

/* ============================================================
   GUIDES (#guides)
   ============================================================ */
.guides {
  background: var(--color-white);
  padding: var(--sp-sec) 0;
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  margin-top: var(--sp-3xl);
}
.guide-card {
  background: var(--color-sand);
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.guide-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.guide-card__img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.guide-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.guide-card:hover .guide-card__img-wrap img {
  transform: scale(1.04);
}
.guide-card__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-s);
  background: linear-gradient(135deg, var(--color-petrol) 0%, var(--color-teal) 145%);
}
.guide-card__placeholder-icon {
  color: rgba(255,255,255,.9);
  transition: transform .4s var(--ease);
}
.guide-card__placeholder-icon svg { width: 58px; height: 58px; }
.guide-card:hover .guide-card__placeholder-icon { transform: scale(1.08) rotate(-4deg); }
.guide-card__placeholder-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.guide-card__body {
  padding: var(--sp-l);
}
.guide-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 2px;
}
.guide-card__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-teal);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: var(--sp-m);
}
.guide-card__bio {
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-muted);
}
.guide-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin-top: var(--sp-m);
}
.guide-tag {
  font-size: 12px;
  background: #fff;
  color: var(--color-petrol);
  border-radius: var(--r-badge);
  padding: 3px 8px;
  border: 1px solid rgba(27,75,90,.15);
}

@media (max-width: 900px) {
  .buchung-steps { grid-template-columns: repeat(2, 1fr); }
  .buchung-steps::before { display: none; }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .buchung-steps { grid-template-columns: 1fr; }
  .guides-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   REGION (#region)
   ============================================================ */
.region {
  background: var(--color-sand);
  padding: var(--sp-sec) 0;
}
.region-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: start;
  margin-top: var(--sp-3xl);
}
.region-map {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(27,75,90,.15);
  aspect-ratio: 4/3;
  background: var(--color-teal-light);
}
.region-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.region-map__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,75,90,.35) 0%, transparent 50%);
}
.region-map__label {
  position: absolute;
  bottom: var(--sp-l);
  left: var(--sp-l);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.region-facts {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}
.region-fact {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-m);
}
.region-fact__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--r-card);
  background: var(--color-teal-light);
  color: var(--color-petrol);
  display: flex;
  align-items: center;
  justify-content: center;
}
.region-fact__icon svg { width: 24px; height: 24px; }
.region-fact__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}
.region-fact__text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-muted);
}
.region-lakes {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-s);
  margin-top: var(--sp-2xl);
}
.lake-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-petrol);
  color: #fff;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
}

/* ============================================================
   GUTSCHEINE (#gutscheine)
   ============================================================ */
.gutscheine {
  background: linear-gradient(135deg, var(--color-petrol) 0%, #0f3140 100%);
  padding: var(--sp-sec) 0;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gutscheine::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(63,175,168,.08);
}
.gutscheine::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(232,136,74,.06);
}
.gutscheine .section-header { position: relative; z-index: 1; }
.gutscheine .section-header h2 { color: #fff; }
.gutscheine .section-lead { color: rgba(255,255,255,.7); }
.gutschein-card {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-modal);
  padding: var(--sp-3xl);
  max-width: 680px;
  margin: var(--sp-3xl) auto 0;
  backdrop-filter: blur(10px);
}
.gutschein-card__deco {
  width: 76px;
  height: 76px;
  margin: 0 auto var(--sp-l);
  border-radius: 50%;
  background: rgba(63,175,168,.16);
  color: var(--color-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gutschein-card__deco svg { width: 38px; height: 38px; }
.gutschein-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-m);
}
.gutschein-card__text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.75);
  margin-bottom: var(--sp-2xl);
}
.gutschein-card__features {
  display: flex;
  justify-content: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
}
.gutschein-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-xs);
  font-size: 13px;
  color: rgba(255,255,255,.65);
}
.gutschein-feature strong {
  font-size: 15px;
  color: var(--color-teal);
}
.gutschein-card .btn--orange {
  font-size: 16px;
  padding: 14px 40px;
}

@media (max-width: 900px) {
  .region-inner { grid-template-columns: 1fr; }
  .gutschein-card { padding: var(--sp-2xl) var(--sp-l); }
  .gutschein-card__features { gap: var(--sp-l); }
}

/* ============================================================
   KONTAKT (#kontakt)
   ============================================================ */
.kontakt {
  background: var(--color-white);
  padding: var(--sp-sec) 0;
}
.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  margin-top: var(--sp-3xl);
  align-items: start;
}
.kontakt-form {
  background: var(--color-sand);
  border-radius: var(--r-card);
  padding: var(--sp-2xl);
}
/* E-Mail-CTA (ersetzt das frühere Kontaktformular) */
.kontakt-cta {
  background: var(--color-sand);
  border-radius: var(--r-card);
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-m);
}
.kontakt-cta__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-teal-light);
  color: var(--color-petrol);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kontakt-cta__icon svg { width: 28px; height: 28px; }
.kontakt-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-dark);
}
.kontakt-cta__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--color-muted);
}
.kontakt-cta__btn {
  margin-top: var(--sp-s);
  font-size: 16px;
  padding: 14px 28px;
}
.kontakt-cta__note {
  font-size: 13px;
  color: var(--color-muted);
}
.form-group {
  margin-bottom: var(--sp-l);
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: var(--sp-xs);
  letter-spacing: .03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(27,75,90,.18);
  border-radius: var(--r-btn);
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--color-dark);
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(63,175,168,.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-m); }
.form-submit { margin-top: var(--sp-l); }
.form-submit .btn { width: 100%; justify-content: center; font-size: 16px; padding: 14px; }
.form-note {
  font-size: 12px;
  color: var(--color-muted);
  text-align: center;
  margin-top: var(--sp-m);
}
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-2xl);
  color: var(--color-teal);
  font-size: 18px;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}
.promise-box {
  background: var(--color-petrol);
  border-radius: var(--r-card);
  padding: var(--sp-2xl);
  color: #fff;
}
.promise-box__title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: var(--sp-l);
  color: #fff;
}
.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-m);
}
.promise-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-m);
  font-size: 15px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}
.promise-list li::before {
  content: '✓';
  color: var(--color-teal);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.kontakt-direct {
  background: var(--color-sand);
  border-radius: var(--r-card);
  padding: var(--sp-xl);
}
.kontakt-direct__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--sp-m);
}
.kontakt-channel {
  display: flex;
  align-items: center;
  gap: var(--sp-m);
  padding: var(--sp-m) 0;
  border-bottom: 1px solid rgba(27,75,90,.08);
  text-decoration: none;
  color: var(--color-dark);
  font-size: 15px;
  transition: color .2s;
}
.kontakt-channel:last-child { border-bottom: none; }
.kontakt-channel:hover { color: var(--color-teal); }
.kontakt-channel__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-teal-light);
  color: var(--color-petrol);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.kontakt-channel__icon svg { width: 19px; height: 19px; }
.kontakt-channel:hover .kontakt-channel__icon { background: var(--color-teal); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255,255,255,.65);
  padding: var(--sp-3xl) 0 var(--sp-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-3xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-m);
  margin-bottom: var(--sp-l);
  text-decoration: none;
}
.footer-brand__logo img { width: 40px; height: 40px; border-radius: 50%; }
.footer-brand__name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.footer-brand__tagline {
  font-style: italic;
  font-family: 'Dancing Script', cursive;
  font-size: 17px;
  color: var(--color-teal);
  margin-bottom: var(--sp-m);
}
.footer-brand__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 280px;
}
.footer-col__title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.4);
  margin-bottom: var(--sp-l);
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-m);
}
.footer-nav a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--color-teal); }
.footer-social {
  display: flex;
  gap: var(--sp-m);
  margin-bottom: var(--sp-l);
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: 16px;
  transition: background .2s, color .2s;
}
.social-btn:hover { background: var(--color-teal); color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--sp-l);
  font-size: 13px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: var(--sp-m);
}
.footer-legal {
  display: flex;
  gap: var(--sp-l);
}
.footer-legal a {
  color: rgba(255,255,255,.3);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.footer-legal a:hover { color: var(--color-teal); }

@media (max-width: 900px) {
  .kontakt-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   BESTOF (#bestof)
   ============================================================ */
.bestof {
  background: var(--color-petrol);
  padding: var(--sp-sec) 0;
  color: #fff;
}
.bestof .section-header h2 { color: #fff; }
.bestof .section-lead { color: rgba(255,255,255,.7); }
.bestof-tabs {
  display: flex;
  gap: var(--sp-s);
  margin-top: var(--sp-3xl);
  flex-wrap: wrap;
  justify-content: center;
}
.bestof-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 24px;
  border: 1.5px solid rgba(255,255,255,.25);
  background: transparent;
  color: rgba(255,255,255,.65);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.bestof-tab svg { width: 17px; height: 17px; flex-shrink: 0; }
.bestof-tab:hover {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.bestof-tab.active {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: #fff;
}
.bestof-panels {
  margin-top: var(--sp-2xl);
}
.bestof-panel {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-l);
}
.bestof-panel.active { display: grid; }
.bestof-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-card);
  padding: var(--sp-l);
  display: flex;
  flex-direction: column;
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.bestof-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(63,175,168,.4);
  transform: translateY(-6px);
}
.bestof-card__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-teal);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-s);
}
.bestof-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--sp-s);
}
.bestof-card__meta {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: var(--sp-s);
  display: flex;
  align-items: center;
  gap: 6px;
}
.bestof-card__meta svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--color-teal); }
.bestof-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  flex: 1 1 auto;
}
.bestof-card__tag {
  align-self: flex-start;
  margin-top: var(--sp-m);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: var(--r-badge);
  background: rgba(63,175,168,.2);
  color: var(--color-teal);
  border: 1px solid rgba(63,175,168,.3);
}
.bestof-cta {
  text-align: center;
  margin-top: var(--sp-3xl);
  color: rgba(255,255,255,.6);
  font-size: 15px;
}
.bestof-cta a { color: var(--color-teal); }

@media (max-width: 900px) {
  .bestof-panel { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .bestof-panel { grid-template-columns: 1fr; }
}

/* KI watermark badge */
.ki-image { position: relative; }
.ki-image::after {
  content: 'KI';
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,.22);
  color: rgba(255,255,255,.75);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .05em;
  padding: 2px 6px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 2;
}

/* Cookie-/Datenschutz-Hinweis */
.cookie-banner {
  position: fixed;
  left: var(--sp-l);
  right: var(--sp-l);
  bottom: var(--sp-l);
  z-index: 400;
  max-width: 720px;
  margin: 0 auto;
  background: var(--color-petrol);
  color: rgba(255,255,255,.85);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-l) var(--sp-xl);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.cookie-banner--visible { opacity: 1; transform: translateY(0); }
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-l);
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 220px;
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}
.cookie-banner__text a { color: var(--color-teal); text-decoration: underline; }
.cookie-banner__btn { flex-shrink: 0; white-space: nowrap; }
@media (max-width: 600px) {
  .cookie-banner { left: var(--sp-s); right: var(--sp-s); bottom: var(--sp-s); padding: var(--sp-m) var(--sp-l); }
  .cookie-banner__btn { width: 100%; justify-content: center; }
}

/* Guide-Karte: Website-Link */
.guide-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: var(--sp-m);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  transition: color .2s, gap .2s;
}
.guide-card__link svg { width: 14px; height: 14px; }
.guide-card__link:hover { color: var(--color-orange); gap: 8px; }

/* Best-of-Karte: Website-Link */
.bestof-card__link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 5px;
  margin-top: var(--sp-m);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal);
  transition: color .2s, gap .2s;
}
.bestof-card__link svg { width: 14px; height: 14px; }
.bestof-card__link:hover { color: var(--color-orange); gap: 8px; }

/* Honeypot-Feld (Bot-Schutz) — für Menschen unsichtbar, nicht fokussierbar */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
