/* ═══════════════════════════════════════════════
   PLAU AM SEE · Tourismusportal 2026
   Klar & blau: Navy, Seeblau, Eisblau
   ═══════════════════════════════════════════════ */

:root {
  --white: #FFFFFF;
  --ice: #EAF4FB;        /* sehr helles Blau – Kontrastflächen */
  --ice-deep: #DCEBF7;
  --ice-line: #C4DEF0;
  --navy: #123A63;       /* Primär-Blau */
  --navy-deep: #0C2B4B;  /* dunkle Sektionen */
  --navy-night: #081F38; /* Footer */
  --blue: #2F7FC2;       /* Aktiv-/Akzentblau */
  --blue-light: #A9D9F5; /* helle Akzente auf Dunkel */
  --ink: #10304F;        /* Fließtext auf Hell */
  --muted: #5F7B94;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Albert Sans", "Helvetica Neue", sans-serif;

  --radius: 18px;
  --shadow: 0 16px 44px -18px rgba(12, 43, 75, .25);
  --shadow-soft: 0 10px 30px -16px rgba(12, 43, 75, .16);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container { width: min(1200px, 92vw); margin-inline: auto; }

/* ── Typographie ─────────────────────────────── */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--navy-deep);
}
h1 { font-size: clamp(2.6rem, 7vw, 5rem); color: var(--white); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-bottom: .5em; }
h1 em, h2 em { font-style: italic; font-weight: 480; color: var(--blue); }
h1 em { color: var(--blue-light); }
.section-dark h2, .cta h2 { color: var(--white); }
.section-dark h2 em, .cta h2 em { color: var(--blue-light); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--blue-light); }

.lead { font-size: 1.15rem; margin-bottom: 1rem; }
.lead-light { font-size: 1.12rem; color: rgba(255,255,255,.85); margin-bottom: 1.4rem; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .95rem 2.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 30px -12px rgba(18, 58, 99, .55);
}
.btn-primary:hover { background: var(--navy-deep); }
.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.12); }
.btn-light {
  background: var(--blue-light);
  color: var(--navy-deep);
  box-shadow: 0 12px 30px -12px rgba(169, 217, 245, .5);
}
.btn-light:hover { background: var(--ice-deep); }

/* ── Header ──────────────────────────────────── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1.1rem 0;
  transition: padding .4s;
}
/* Hintergrund/Blur liegt auf ::before, damit der Header kein
   Containing Block für die fixierte Mobile-Nav wird */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px -12px rgba(12, 43, 75, .16);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.site-header.scrolled { padding: .6rem 0; }
.site-header.scrolled::before { opacity: 1; }
.header-inner {
  position: relative;
  width: min(1280px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--white);
  transition: color .4s;
}
.site-header.scrolled .logo { color: var(--navy-deep); }
.logo.light { color: var(--white); }
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.logo-text em { font-style: italic; font-weight: 400; }

.main-nav { display: flex; align-items: center; gap: 1.8rem; }
.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: .98rem;
  position: relative;
  transition: color .4s;
}
.site-header.scrolled .main-nav a { color: var(--navy-deep); }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2.5px;
  background: var(--blue-light);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.site-header.scrolled .main-nav a:not(.nav-cta)::after { background: var(--blue); }
.main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--blue-light);
  color: var(--navy-deep) !important;
  padding: .6rem 1.4rem;
  border-radius: 999px;
  transition: background .3s, transform .3s;
}
.nav-cta:hover { background: var(--white); transform: translateY(-2px); }
.site-header.scrolled .nav-cta { background: var(--navy); color: var(--white) !important; }
.site-header.scrolled .nav-cta:hover { background: var(--navy-deep); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav-toggle span {
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s, background .4s;
}
.site-header.scrolled .nav-toggle span,
.site-header.nav-open .nav-toggle span { background: var(--navy-deep); }
.site-header.nav-open .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg img { animation: heroZoom 18s var(--ease) both; }
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 31, 56, .6) 0%, rgba(8, 31, 56, .28) 45%, rgba(8, 31, 56, .65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 92vw);
  padding: 9rem 0 7rem;
}
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 640px;
  margin: 1.4rem auto 2.6rem;
  color: rgba(255,255,255,.92);
}

/* Suchleiste im Hero */
.hero-search {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--white);
  border-radius: 999px;
  padding: .55rem;
  max-width: 780px;
  margin-inline: auto;
  box-shadow: 0 24px 60px -20px rgba(8, 31, 56, .55);
  text-align: left;
}
.hs-field {
  flex: 1;
  padding: .55rem 1.6rem;
  border-right: 1px solid var(--ice-line);
  min-width: 0;
}
.hs-field:last-of-type { border-right: none; }
.hs-field span {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.hs-field strong {
  display: block;
  font-size: .98rem;
  font-weight: 600;
  color: var(--navy-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hs-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 0 2.2rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: background .3s, transform .3s;
}
.hs-btn:hover { background: var(--navy-deep); transform: translateY(-2px); }

/* Koordinaten-Zeile im Hero */
.hero-coords {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-top: 2.4rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(234, 244, 251, .7);
}
.hero-coords svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Ladeanimation Hero */
.anim {
  opacity: 0;
  transform: translateY(28px);
  animation: rise .9s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ── Kennzahlen-Strip ────────────────────────── */
.stat-strip { position: relative; z-index: 5; margin-top: -58px; }
.stat-strip .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.8rem, 2vw, 1.4rem);
}
.stat {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--ice-deep);
  padding: 1.4rem 1rem 1.2rem;
  text-align: center;
}
.stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 600;
  color: var(--navy);
  display: block;
  line-height: 1.1;
}
.stat span {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Scroll-Reveal ───────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--rd, 0s);
}
.reveal.in { opacity: 1; transform: none; }

/* ── Intro ───────────────────────────────────── */
.intro { padding: clamp(4.5rem, 9vw, 7.5rem) 0 clamp(4rem, 8vw, 6.5rem); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.intro p { color: var(--ink); }
.intro .lead { color: var(--navy-deep); }

.intro-images { position: relative; aspect-ratio: 10 / 10.5; }
.img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: absolute;
}
.img-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); background: var(--ice); }
.img-card:hover img { transform: scale(1.05); }
.img-a { width: 66%; aspect-ratio: 3/4; top: 0; left: 0; }
.img-b { width: 56%; aspect-ratio: 4/3; bottom: 0; right: 0; border: 6px solid var(--white); }

/* Koordinaten-Chip auf der Bild-Collage */
.coord-chip {
  position: absolute;
  top: 5%;
  right: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  padding: .45rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
}
.coord-chip svg { width: 14px; height: 14px; }

/* ── Sektionen ───────────────────────────────── */
.section { position: relative; padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-dark {
  background: linear-gradient(175deg, var(--navy-deep) 0%, var(--navy-night) 100%);
  color: var(--ice);
  isolation: isolate;
  overflow: hidden;
}
/* Stilisierte Tiefenkarte im Hintergrund (Erleben-Sektion) */
.lake-map {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: .14;
  pointer-events: none;
}

/* Kompassrosen-Wasserzeichen (nur Camping-Sektion) */
.camping.section-dark::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(420px, 46vw, 680px);
  aspect-ratio: 1;
  top: -120px;
  right: -140px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='%23A9D9F5'%3E%3Ccircle cx='100' cy='100' r='96' stroke-width='.8'/%3E%3Ccircle cx='100' cy='100' r='76' stroke-width='.5'/%3E%3Ccircle cx='100' cy='100' r='2.5' fill='%23A9D9F5' stroke='none'/%3E%3Cpath d='M100 4v18M100 178v18M4 100h18M178 100h18' stroke-width='1'/%3E%3Cpath d='M32 32l14 14M168 32l-14 14M32 168l14-14M168 168l-14-14' stroke-width='.7'/%3E%3Cpath d='M100 34l10 66-10 66-10-66z' stroke-width='.9'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .07;
  pointer-events: none;
  right: auto; left: -160px; top: auto; bottom: -140px;
}

.section-sand { background: var(--ice); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}
.section-head.split .section-sub { max-width: 400px; margin-bottom: .6em; }
.section-sub { font-size: 1.1rem; color: var(--muted); }
.section-dark .section-sub { color: rgba(234, 244, 251, .75); }

/* ── Aktivitäten-Karten ──────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 16/10; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); background: var(--ice); }
.card:hover .card-img img { transform: scale(1.07); }
.card-body { padding: 1.5rem 1.6rem 1.8rem; }
.card-body h3 { font-size: 1.45rem; margin: .7rem 0 .4rem; color: var(--navy-deep); }
.card-body p { font-size: .97rem; color: var(--muted); }

.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--ice);
  border-radius: 999px;
  padding: .3rem .85rem;
}
.tag-light {
  color: var(--white);
  background: rgba(8, 31, 56, .45);
  backdrop-filter: blur(6px);
}

/* ── Kulinarik-Scroller ──────────────────────── */
.scroller-wrap { position: relative; }
.scroller {
  display: flex;
  gap: clamp(1.2rem, 2.5vw, 2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .5rem max(calc((100vw - 1200px) / 2), 4vw) 2.5rem;
  scrollbar-width: none;
}
.scroller::-webkit-scrollbar { display: none; }
.food-card {
  flex: 0 0 clamp(270px, 30vw, 380px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ice-deep);
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease), box-shadow .45s;
}
.food-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.food-card img { aspect-ratio: 4/3; width: 100%; object-fit: cover; background: var(--ice); }
.food-body { padding: 1.4rem 1.5rem 1.7rem; }
.food-body h3 { font-size: 1.35rem; margin-bottom: .4rem; color: var(--navy-deep); }
.food-body p { font-size: .95rem; color: var(--muted); }

.scroller-nav {
  display: flex;
  gap: .7rem;
  justify-content: flex-end;
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.scroll-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .3s, color .3s, transform .3s;
}
.scroll-btn:hover { background: var(--navy); color: var(--white); transform: scale(1.06); }

/* ── Ausflüge ────────────────────────────────── */
.trip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(240px, 22vw, 310px);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.trip-tall { grid-row: span 2; }
.trip {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.trip-lg { grid-column: span 2; grid-row: span 2; }
.trip-wide { grid-column: span 2; }
.trip img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
  background: var(--navy);
}
.trip:hover img { transform: scale(1.06); }
.trip::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,31,56,0) 35%, rgba(8,31,56,.85) 100%);
}
.trip-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.6rem;
  color: var(--white);
  transform: translateY(8px);
  transition: transform .5s var(--ease);
}
.trip:hover .trip-info { transform: translateY(0); }
.trip-info h3 { font-size: clamp(1.2rem, 1.8vw, 1.6rem); margin: .6rem 0 .25rem; color: var(--white); }
.trip-info p { font-size: .92rem; opacity: .85; max-width: 420px; }

/* ── Seen-Kompass ────────────────────────────── */
.lake-explorer {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background: var(--navy-night);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.lx-bg, .lx-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.lx-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 31, 56, .92) 0%, rgba(8, 31, 56, .72) 45%, rgba(8, 31, 56, .45) 100%);
}

/* Drehrad links: Kreismittelpunkt liegt außerhalb des Viewports */
.lx-dial {
  position: absolute;
  top: 50%;
  left: -60px;
  z-index: 4;
  pointer-events: none;
}
.lx-ring {
  position: absolute;
  width: 720px; height: 720px;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(169, 217, 245, .3);
  border-radius: 50%;
}
.lx-wheel { position: absolute; left: 0; top: 0; }
.lx-item {
  position: absolute;
  left: 0; top: 0;
  display: flex;
  align-items: center;
  gap: .9rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  pointer-events: auto;
  text-align: left;
  transition: transform .8s var(--ease), opacity .8s var(--ease);
  opacity: .55;
}
.lx-item svg {
  width: 64px; height: 64px;
  flex-shrink: 0;
  transition: transform .8s var(--ease);
}
.lx-item svg path {
  fill: rgba(255, 255, 255, .22);
  stroke: rgba(255, 255, 255, .75);
  stroke-width: 2;
  stroke-linejoin: round;
}
.lx-item span strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 560;
  line-height: 1.15;
  white-space: nowrap;
}
.lx-item span small {
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-light);
  white-space: nowrap;
}
.lx-item.active { opacity: 1; }
.lx-item.active svg { transform: scale(1.35); }
.lx-item.active svg path { fill: rgba(169, 217, 245, .35); stroke: var(--blue-light); }
.lx-item.hidden { opacity: 0; pointer-events: none; }

.lx-arrows {
  position: absolute;
  left: clamp(1rem, 3vw, 2.5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: grid;
  gap: .8rem;
}
.lx-arrow {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .5);
  background: rgba(8, 31, 56, .35);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .3s, border-color .3s, transform .3s;
}
.lx-arrow:hover { background: var(--blue-light); border-color: var(--blue-light); color: var(--navy-deep); transform: scale(1.06); }

/* Info-Panel rechts */
.lx-layout {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.lx-info { width: min(560px, 100%); }
.lx-info h2 { color: var(--white); font-size: clamp(2.4rem, 4.5vw, 3.6rem); margin-bottom: .3em; }
.lx-info.switching h2,
.lx-info.switching .lx-loc,
.lx-info.switching .lx-stats,
.lx-info.switching .lx-desc,
.lx-info.switching .lx-bathing { opacity: 0; transform: translateY(10px); }
.lx-info h2, .lx-loc, .lx-stats, .lx-desc, .lx-bathing {
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.lx-loc {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--blue-light);
  margin-bottom: 1.4rem;
}
.lx-loc svg { width: 16px; height: 16px; }
.lx-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: start;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  padding: 1.1rem 0;
  margin-bottom: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}
.lx-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
}
.lx-stats span {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(234, 244, 251, .6);
}
.lx-desc { color: rgba(255, 255, 255, .88); margin-bottom: 1.4rem; }
.lx-bathing { margin-bottom: 2rem; }
.lx-bath-label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: .6rem;
}
.lx-bathing ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.lx-bathing li {
  font-size: .85rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(169, 217, 245, .45);
  background: rgba(169, 217, 245, .1);
}
.lx-actions { display: flex; gap: .9rem; flex-wrap: wrap; }

.lx-tabs { display: none; }

/* Mobile: Rad als Bogen am oberen Sektionsrand, aktiver See unten am Bogen */
@media (max-width: 900px) {
  .lx-dial {
    left: 50%;
    top: -60px;
  }
  .lx-ring { width: 480px; height: 480px; }
  .lx-item {
    flex-direction: column;
    text-align: center;
    gap: .4rem;
  }
  .lx-item svg { width: 48px; height: 48px; }
  .lx-item span { display: none; }
  .lx-item.active span { display: block; }
  .lx-item span strong { font-size: 1rem; white-space: nowrap; }
  .lx-item span small { font-size: .68rem; }

  .lx-arrows {
    top: 96px;
    left: 0;
    right: 0;
    transform: none;
    display: flex;
    justify-content: space-between;
    padding: 0 1.2rem;
  }
  .lx-arrow { transform: rotate(-90deg); }
  .lx-arrow:hover { transform: rotate(-90deg) scale(1.06); }

  .lake-explorer { align-items: flex-start; min-height: 0; }
  .lx-layout { justify-content: flex-start; padding-top: 225px; }
}

/* ── Camping ─────────────────────────────────── */
.camping-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.camping-imgs { position: relative; aspect-ratio: 10 / 11; }
.img-c { width: 70%; aspect-ratio: 3/4; top: 0; left: 0; }
.img-d { width: 54%; aspect-ratio: 1/1; bottom: 0; right: 0; border: 6px solid rgba(169, 217, 245, .25); }
.check-list {
  list-style: none;
  margin: 0 0 2rem;
  display: grid;
  gap: .7rem;
}
.check-list li {
  padding-left: 2.1rem;
  position: relative;
  font-weight: 500;
  color: rgba(255,255,255,.9);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  font-weight: 700;
  color: var(--blue-light);
}

/* ── Events ──────────────────────────────────── */
.event-list { display: grid; gap: 1.1rem; }
.event {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--ice-deep);
  border-left: 6px solid var(--blue);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.event:hover { transform: translateX(8px); box-shadow: var(--shadow); }
.event:nth-child(2) { border-left-color: var(--blue-light); }
.event:nth-child(3) { border-left-color: var(--navy); }
.event:nth-child(4) { border-left-color: var(--ice-line); }
.event-date { text-align: center; }
.event-date strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  display: block;
  line-height: 1;
  color: var(--blue);
}
.event-date span {
  display: block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.3;
  overflow-wrap: break-word;
}
.event-info h3 { font-size: 1.35rem; margin-bottom: .2rem; color: var(--navy-deep); }
.event-info p { font-size: .95rem; color: var(--muted); max-width: 640px; }
.event-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--ice);
  color: var(--navy);
  padding: .4rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── Galerie ─────────────────────────────────── */
.gallery {
  columns: 4 240px;
  gap: 1.1rem;
}
.gallery figure {
  margin-bottom: 1.1rem;
  border-radius: 14px;
  overflow: hidden;
  break-inside: avoid;
  box-shadow: var(--shadow-soft);
}
.gallery img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .7s var(--ease);
  background: var(--ice-deep);
}
.gallery .tall img { aspect-ratio: 3/4; }
.gallery figure:hover img { transform: scale(1.06); }

/* ── CTA ─────────────────────────────────────── */
.cta {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(ellipse 80% 90% at 70% 10%, rgba(47, 127, 194, .4), transparent 60%),
    linear-gradient(170deg, var(--navy-deep) 0%, var(--navy-night) 90%);
  color: var(--ice);
  text-align: center;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
/* Kompassrose hinter dem CTA-Inhalt */
.compass-rose {
  position: absolute;
  width: clamp(360px, 42vw, 560px);
  right: max(-120px, calc(50% - 720px));
  top: 50%;
  transform: translateY(-50%);
  color: var(--blue-light);
  opacity: .1;
  pointer-events: none;
}
.compass-needle {
  transform-origin: 100px 100px;
  animation: needleDrift 14s ease-in-out infinite;
}
@keyframes needleDrift {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(10deg); }
}

.cta-inner { position: relative; max-width: 640px; }
.cta p { margin-bottom: 1rem; color: rgba(234, 244, 251, .85); }
.cta-form {
  display: flex;
  gap: .7rem;
  margin: 1.8rem auto 1rem;
  max-width: 520px;
}
.cta-form input {
  flex: 1;
  padding: .95rem 1.4rem;
  border-radius: 999px;
  border: 2px solid rgba(169, 217, 245, .3);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color .3s, background .3s;
}
.cta-form input::placeholder { color: rgba(234, 244, 251, .55); }
.cta-form input:focus { border-color: var(--blue-light); background: rgba(255,255,255,.14); }
.cta-form .btn-primary { background: var(--blue-light); color: var(--navy-deep); box-shadow: none; }
.cta-form .btn-primary:hover { background: var(--white); }
.cta-note { font-size: .85rem; opacity: .6; }

/* ── Footer ──────────────────────────────────── */
.footer {
  position: relative;
  background: var(--navy-night);
  color: rgba(234, 244, 251, .8);
  padding: clamp(3.5rem, 7vw, 5rem) 0 2rem;
  border-top: 1px solid rgba(169, 217, 245, .12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { margin-top: 1rem; font-size: .95rem; }
.footer-nav { display: grid; gap: .55rem; align-content: start; }
.footer-nav h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: .5rem;
}
.footer-nav a {
  color: rgba(234, 244, 251, .72);
  text-decoration: none;
  font-size: .95rem;
  transition: color .25s;
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.6rem;
  font-size: .85rem;
  opacity: .6;
  flex-wrap: wrap;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-grid { grid-template-columns: repeat(2, 1fr); }
  .trip-lg { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    font-size: 1.3rem;
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform .5s var(--ease), visibility 0s .5s;
  }
  .site-header.nav-open .main-nav {
    transform: none;
    visibility: visible;
    transition: transform .5s var(--ease);
  }
  .main-nav a { color: var(--navy-deep) !important; font-size: 1.4rem; }
  .main-nav .nav-cta { background: var(--navy); color: var(--white) !important; }

  .hero-search { flex-wrap: wrap; border-radius: var(--radius); gap: .4rem; }
  .hs-field { flex: 1 1 45%; border-right: none; padding: .55rem 1rem; }
  .hs-btn { flex: 1 1 100%; justify-content: center; padding: .9rem 0; }

  .stat-strip { margin-top: -40px; }
  .stat-strip .stats { grid-template-columns: repeat(2, 1fr); }

  .intro-grid, .camping-grid { grid-template-columns: 1fr; }
  .camping-imgs { order: 2; }
  .section-head.split { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .event { grid-template-columns: 72px 1fr; }
  .event-tag { display: none; }
}

@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
  .trip-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .trip-lg, .trip-wide, .trip-tall { grid-column: span 1; grid-row: span 1; }
  .cta-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .hs-field { flex: 1 1 100%; }
}

/* Weniger Bewegung, wenn gewünscht */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .anim { opacity: 1; transform: none; }
}
