:root {
  --aubergine: #413c58;
  --bluegray: #6e8894;
  --fresh: #e1f4cb;
  --ice: #d6e5ff;
  --lavender: #e3daff;

  --white: #ffffff;
  --soft-white: #fbfbff;
  --text: #2e2a3c;
  --muted: #69707d;
  --border: rgba(65, 60, 88, 0.14);
  --shadow: 0 26px 80px rgba(65, 60, 88, 0.18);
  --radius-xl: 36px;
  --radius-lg: 24px;
}

/* =========================================================
   1. Reset / Base
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  font-family:
    "Inter",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at 5% 10%,
      rgba(225, 244, 203, 0.75),
      transparent 28rem
    ),
    radial-gradient(
      circle at 90% 20%,
      rgba(227, 218, 255, 0.85),
      transparent 30rem
    ),
    var(--soft-white);
  line-height: 1.65;
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
video {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

/* =========================================================
   2. Typography
   ========================================================= */

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 790px;
  color: var(--white);
  font-size: clamp(3.4rem, 4vw, 4.8rem);
  font-weight: 700;
}

h2 {
  color: var(--aubergine);
  font-size: clamp(2.25rem, 3.8vw, 3.2rem);
  font-weight: 700;
}

h3 {
  color: var(--aubergine);
  font-size: 1.75rem;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 14px;
  padding: 0;
  color: var(--fresh);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.2rem;
  font-weight: 950;
}

.eyebrow.dark {
  color: var(--bluegray);
}

.lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--aubergine);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}
.lead strong {
  color: var(--fresh);
}
/* =========================================================
   3. Layout Utilities
   ========================================================= */

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-center {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-center p {
  color: var(--muted);
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--aubergine);
  background: var(--fresh);
  box-shadow: 0 18px 36px rgba(225, 244, 203, 0.23);
}

.btn-primary:hover {
  background: #d4efb9;
}

.btn-light {
  color: var(--aubergine);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-light:hover {
  background: #e6fff7;
}

.btn.small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.92rem;
}

/* =========================================================
   4. Header / Navigation
   ========================================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: clamp(120px, 10vw, 160px);
  display: block;
  mix-blend-mode: multiply;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--aubergine);
  font-size: 0.95rem;
  font-weight: 800;
}

.main-nav a {
  opacity: 0.78;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--bluegray);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--aubergine);
  font-weight: 850;
  cursor: pointer;
}

/* =========================================================
   5. Hero
   ========================================================= */

.hero-full-slider {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 0;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(227, 218, 255, 0.22),
      transparent 28rem
    ),
    linear-gradient(145deg, var(--ice) 0%, #585070 58%, var(--bluegray) 100%);
}

.hero-full-slider::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(225, 244, 203, 0.12);
}

.hero-full-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.hero-left {
  position: relative;
  z-index: 2;
  grid-column: 1;
  min-width: 0;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: clamp(48px, 5vw, 80px);
}

.hero-left-inner {
  width: 100%;
  max-width: 680px;
  min-width: 0;
  color: var(--white);
}

.hero-logo {
  display: block;
  /* height: min(100%, 120px); */
  width: min(100%, 720px);
  max-width: 100%;
  margin-bottom: 34px;
  mix-blend-mode: normal;
}

.hero-left-inner .eyebrow {
  color: var(--fresh);
}

.hero-left-inner .lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-left .hero-actions {
  justify-content: flex-start;
}

.hero-slider-full {
  position: relative;
  z-index: 2;
  grid-column: 2;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 86px);
}

.hero-slider-full .hero-slider-window {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 86px);
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, var(--ice), var(--lavender));
  box-shadow: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  opacity: 0;
  transform: scale(1.025);
  pointer-events: none;
  transition:
    opacity 0.45s ease,
    transform 0.65s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide::before {
  content: "Vergrößern";
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(65, 60, 88, 0.86);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(65, 60, 88, 0.3), transparent 36%),
    linear-gradient(180deg, transparent 48%, rgba(65, 60, 88, 0.36));
  opacity: 1;
}

.hero-slide:hover::before,
.hero-slide:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--aubergine);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(65, 60, 88, 0.18);
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-slider-arrow:hover {
  background: var(--fresh);
  transform: translateY(-50%) scale(1.05);
}

.hero-slider-arrow.prev {
  left: 24px;
}

.hero-slider-arrow.next {
  right: 24px;
}

.hero-slider-full .hero-slider-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  display: flex;
  justify-content: center;
  gap: 9px;
  margin: 0;
  transform: translateX(-50%);
}

.hero-slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.hero-slider-dots button.active {
  width: 30px;
  background: var(--fresh);
}

/* =========================================================
   6. Intro
   ========================================================= */

.intro-band {
  position: relative;
  z-index: 5;
  margin-top: -48px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article {
  min-height: 210px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 56px rgba(65, 60, 88, 0.11);
}

.intro-grid article:nth-child(1) {
  background: linear-gradient(180deg, var(--white), var(--ice));
}

.intro-grid article:nth-child(2) {
  background: linear-gradient(180deg, var(--white), var(--fresh));
}

.intro-grid article:nth-child(3) {
  background: linear-gradient(180deg, var(--white), var(--lavender));
}

.intro-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--bluegray);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.intro-grid h2 {
  font-size: 1.75rem;
}

.intro-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

/* =========================================================
   7. Ferienwohnungen
   ========================================================= */

.layout-two {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
}

.sticky-title {
  position: sticky;
  top: 120px;
}

.sticky-title p {
  color: var(--muted);
  font-size: 1.08rem;
}

.apartment-stack {
  display: grid;
  gap: 24px;
}

.apartment-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 54px rgba(65, 60, 88, 0.08);
}

.apartment-card.highlight {
  background: linear-gradient(
    135deg,
    rgba(227, 218, 255, 0.88),
    rgba(214, 229, 255, 0.9)
  );
}

.card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}

.tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--aubergine);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.card-top strong {
  color: var(--bluegray);
  font-weight: 950;
}

.apartment-card p {
  color: var(--muted);
}

.apartment-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.apartment-card li {
  position: relative;
  padding-left: 30px;
  margin: 10px 0;
}

.apartment-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--bluegray);
  font-weight: 950;
}

/* Apartment Slider */

.apartment-slider {
  margin: 26px 0 8px;
}

.slider-window {
  position: relative;
  overflow: hidden;
  height: 260px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--ice), var(--lavender));
  box-shadow: 0 18px 46px rgba(65, 60, 88, 0.13);
}

.slider-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  opacity: 0;
  transform: scale(1.02);
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.45s ease;
}

.slider-image.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.slider-image::before {
  content: "Vergrößern";
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(65, 60, 88, 0.86);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.slider-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(65, 60, 88, 0.28));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.slider-image:hover::before,
.slider-image:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.slider-image:hover::after,
.slider-image:focus-visible::after {
  opacity: 1;
}

.slider-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--aubergine);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(65, 60, 88, 0.18);
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.slider-arrow:hover {
  background: var(--fresh);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev {
  left: 14px;
}

.slider-arrow.next {
  right: 14px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(65, 60, 88, 0.22);
  cursor: pointer;
  transition:
    width 0.2s ease,
    background 0.2s ease;
}

.slider-dots button.active {
  width: 28px;
  background: var(--aubergine);
}
.calender {
  display: flex;
  justify-content: center;
}
.cta-btn {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* =========================================================
   8. Preise
   ========================================================= */

.price-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 94% 50%,
      rgba(225, 244, 203, 0.9),
      transparent 28rem
    ),
    radial-gradient(
      circle at 30% 50%,
      rgba(227, 218, 255, 0.9),
      transparent 30rem
    ),
    linear-gradient(135deg, var(--ice), var(--lavender));
}

.price-section::before {
  content: "";
  position: absolute;
  left: -160px;
  top: 100px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(65, 60, 88, 0.13);
}

.price-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.price-row article {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 18px 54px rgba(65, 60, 88, 0.08);
}

.price-row article span,
.price-row article strong,
.price-row article small {
  text-align: center;
}

.price-row .boxoffer {
  background: linear-gradient(180deg, var(--fresh), var(--ice));
}

.price-row .price-main {
  background: var(--bluegray);
  color: var(--white);
}

.price-row span {
  display: block;
  margin-bottom: 20px;
  color: var(--bluegray);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.price-main span {
  color: var(--fresh);
}

.price-row strong {
  display: block;
  color: var(--aubergine);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.05;
  overflow-wrap: break-word;
}

.price-main strong {
  color: var(--white);
}

.price-row small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.price-main small {
  color: rgba(255, 255, 255, 0.78);
}

.cleaning {
  position: static;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ice);
  color: var(--aubergine);
  font-size: 0.8rem;
  line-height: 1.3;
  text-align: center;
}

/* =========================================================
   9. Galerie
   ========================================================= */

.gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 4%,
      rgba(225, 244, 203, 0.9),
      transparent 28rem
    ),
    radial-gradient(
      circle at 94% 22%,
      rgba(227, 218, 255, 0.9),
      transparent 30rem
    ),
    radial-gradient(
      circle at 15% 60%,
      rgba(105, 112, 125, 0.4),
      transparent 28rem
    ),
    linear-gradient(180deg, var(--soft-white), var(--ice));
}

.gallery-group {
  margin-top: 64px;
}

.gallery-group:first-of-type {
  margin-top: 44px;
}

.gallery-heading {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 24px;
}

.gallery-heading span {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--aubergine);
  color: var(--fresh);
  font-weight: 950;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 42px rgba(65, 60, 88, 0.18);
}

.gallery-heading h3 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.gallery-heading p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 230px;
  gap: 18px;
}

.gallery-grid-reverse {
  grid-template-columns: 0.9fr 0.9fr 1.1fr;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  min-height: 220px;
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: var(--lavender);
  cursor: zoom-in;
  box-shadow: 0 18px 50px rgba(65, 60, 88, 0.12);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item::before {
  content: "Vergrößern";
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(65, 60, 88, 0.86);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 850;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(65, 60, 88, 0.28));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.03);
}

/* =========================================================
   10. Lightbox
   ========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 28px;
}

.lightbox.active {
  display: grid;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(24, 21, 36, 0.82);
  backdrop-filter: blur(12px);
  cursor: zoom-out;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 94vw);
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.38);
  animation: lightboxZoom 0.24s ease-out;
}

.lightbox-content img {
  width: 100%;
  max-height: 78vh;
  display: block;
  object-fit: contain;
  background: linear-gradient(135deg, var(--ice), var(--lavender));
}

.lightbox-content figcaption {
  padding: 16px 22px;
  color: var(--aubergine);
  background: var(--white);
  font-weight: 800;
}

.lightbox-close,
.lightbox-arrow {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 3;
  width: 52px;
  height: 52px;
  background: var(--fresh);
  color: var(--aubergine);
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.lightbox-close:hover {
  background: var(--white);
}

.lightbox-arrow {
  position: fixed;
  top: 50%;
  z-index: 4;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: var(--fresh);
  color: var(--aubergine);
  font-size: 2.4rem;
  line-height: 1;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-50%);
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    opacity 0.2s ease;
}

.lightbox-arrow:hover {
  background: var(--white);
  transform: translateY(-50%) scale(1.06);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-arrow.hidden {
  display: none;
}

@keyframes lightboxZoom {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(14px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* =========================================================
   11. Kultur
   ========================================================= */

.leisure-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 94% 50%,
      rgba(225, 244, 203, 0.9),
      transparent 28rem
    ),
    radial-gradient(
      circle at 10% 50%,
      rgba(227, 218, 255, 0.9),
      transparent 30rem
    ),
    linear-gradient(135deg, var(--ice), var(--lavender));
}

.leisure-section::before {
  content: "";
  position: absolute;
  left: -160px;
  top: -90px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(65, 60, 88, 0.13);
}

.leisure-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: center;
}

.leisure-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.leisure-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.leisure-highlight {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--aubergine);
  color: var(--white);
  box-shadow: var(--shadow);
}

.leisure-highlight h3 {
  color: var(--white);
  font-size: 2rem;
}

.leisure-highlight p,
.leisure-highlight li {
  color: rgba(255, 255, 255, 0.78);
}

.leisure-highlight ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.leisure-highlight li {
  position: relative;
  padding-left: 28px;
}

.leisure-highlight li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--fresh);
  font-weight: 950;
}

.leisure-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--fresh);
  color: var(--aubergine);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leisure-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.leisure-grid article {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(65, 60, 88, 0.1);
}

.leisure-grid article > span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--lavender);
  font-size: 1.55rem;
}

.link-list {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--aubergine);
  font-weight: 850;
  text-decoration: none;
}

.link-list a::after {
  content: "↗";
  color: var(--bluegray);
  font-size: 0.9em;
  transition: transform 0.2s ease;
}

.link-list a:hover {
  color: var(--bluegray);
}

.link-list a:hover::after {
  transform: translate(2px, -2px);
}

/* =========================================================
   12. Wanderreitstation
   ========================================================= */

.trail-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(225, 244, 203, 0.95),
      transparent 26rem
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(227, 218, 255, 0.82),
      transparent 30rem
    ),
    linear-gradient(135deg, var(--soft-white), var(--ice));
}

.trail-section::before {
  content: "";
  position: absolute;
  right: -160px;
  top: 90px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(110, 136, 148, 0.13);
}

.trail-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: center;
}

.trail-intro {
  max-width: 760px;
}

.trail-intro p {
  color: var(--muted);
  font-size: 1.08rem;
}

.outlink {
  color: var(--aubergine);
  font-weight: 800;
  box-shadow: inset 0 0 0 0 var(--aubergine);
  color: var(--aubergine);
  padding: 0 0.25rem;
  margin: 0 -0.25rem;
  transition:
    color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;
}

.outlink:hover {
  color: var(--ice);
  box-shadow: inset 200px 0 0 0 var(--aubergine);
}

.outlink:visited {
  color: var(--bluegray);
}

.trail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trail-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--aubergine);
  color: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.trail-card h3 {
  color: var(--white);
  font-size: 2rem;
}

.trail-number {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--fresh);
  color: var(--aubergine);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trail-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trail-list li {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.trail-list strong {
  display: block;
  color: var(--fresh);
  margin-bottom: 5px;
}

.trail-list span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
}

.trail-bottom {
  position: relative;
  z-index: 1;
  width: clamp(60vw, 60rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.trail-bottom article {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(65, 60, 88, 0.1);
}

.trail-bottom span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--lavender);
  font-size: 1.55rem;
}

.trail-bottom h3 {
  font-size: 1.45rem;
}

.trail-bottom p {
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================================================
   13. SEO / Übersicht
   ========================================================= */

.seo-section {
  padding: 3rem 0;
  background: linear-gradient(90deg, var(--fresh), var(--ice));
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
}

.seo-layout p:last-child {
  margin: auto;
  color: #3f4654;
  font-size: 1.12rem;
}

/* =========================================================
   14. FAQ
   ========================================================= */

.faq-section {
  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(227, 218, 255, 0.85),
      transparent 28rem
    ),
    radial-gradient(
      circle at 92% 18%,
      rgba(225, 244, 203, 0.85),
      transparent 28rem
    ),
    var(--soft-white);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 14px 42px rgba(65, 60, 88, 0.08);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding: 22px 58px 22px 24px;
  color: var(--aubergine);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 24px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--fresh);
  color: var(--aubergine);
  font-size: 1.2rem;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.faq-list details[open] summary::after {
  content: "–";
  background: var(--ice);
}

.faq-list details[open] summary {
  border-bottom: 1px solid var(--border);
}

.faq-list p {
  margin: 0;
  padding: 20px 24px 24px;
  color: var(--muted);
}

.faq-list details:nth-child(even) summary::after {
  background: var(--lavender);
}

/* =========================================================
   15. Kontakt
   ========================================================= */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background: var(--aubergine);
}

.contact-section::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(225, 244, 203, 0.12);
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.052) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent);
}

.contact-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(214, 229, 255, 0.16)
  );
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.contact-card h2 {
  color: var(--white);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-card address {
  display: grid;
  gap: 9px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-style: normal;
}

.contact-card address strong {
  color: var(--fresh);
  font-size: 1.35rem;
}

.contact-card address a {
  color: var(--fresh);
  font-weight: 900;
}
.contact-content {
  display: grid;
  align-content: center;
}

.contact-content address {
  margin-top: 34px;
}
.cta-btn-con {
  display: flex;
  gap: 1rem;
  padding: 2rem 0;
}
.route-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 70px rgba(24, 21, 36, 0.2);
}

.route-map {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: linear-gradient(135deg, var(--ice), var(--lavender));
}

.route-map img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  object-fit: cover;
}

.route-info {
  padding: 28px;
}

.route-info h3 {
  color: var(--white);
}

.route-info p {
  color: rgba(255, 255, 255, 0.75);
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* =========================================================
   16. Footer
   ========================================================= */

.site-footer {
  padding: 36px 0;
  background: #302c43;
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.footer-inner img {
  width: 300px;
  display: block;
  border-radius: 14px;
  mix-blend-mode: lighten;
  opacity: 0.9;
}

.footer-inner p {
  margin: 0;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-inner a:hover {
  color: var(--fresh);
}

/* =========================================================
   17. Cookie Banner
   ========================================================= */

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  max-width: calc(100vw - 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--border);
  box-shadow: 0 22px 70px rgba(65, 60, 88, 0.24);
}

.cookie-banner strong {
  color: var(--aubergine);
}

.cookie-banner p {
  margin: 5px 0 0;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner.hidden {
  display: none;
}

/* =========================================================
   18. Back to Top
   ========================================================= */

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: var(--aubergine);
  color: var(--fresh);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(65, 60, 88, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.22s ease,
    visibility 0.22s ease,
    transform 0.22s ease,
    background 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--bluegray);
  color: var(--white);
}
