@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-normal-200.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-normal-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-normal-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Jost";
  src: url("../fonts/Jost-normal-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-normal-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-normal-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-normal-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-italic-300.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/CormorantGaramond-italic-400.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --sand: #e8e4ee;
  --stone: #c4bada;
  --deep: #2c2640;
  --warm: #6b5b95;
  --accent: #7c6ba8;
  --gold: #9b8dc0;
  --white: #fafafa;
  --body-muted: #4a4540;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Jost", system-ui, sans-serif;
  /* Logo/Header: Abstand oben, damit Hero-Kicker nicht unter dem Logo liegt */
  --logo-h: 118px;
  --logo-h-scrolled: 48px;
  --header-pad-top: 3rem;
  --header-pad-bottom: 1.25rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.8;
  color: var(--deep);
  background: var(--white);
}

.container {
  width: min(1200px, calc(100% - 4rem));
  margin: 0 auto;
}

.narrow {
  width: min(720px, 100%);
}

.section-space {
  padding: 8rem 0;
}

/* Overlay über dem Hero: kein weißer Streifen über dem dunklen Startbild */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color 0.35s ease;
}

/* Frosted-Hintergrund nur beim Scrollen; Text/Logo bleiben scharf */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  transition: background 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
  pointer-events: none;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(196, 186, 218, 0.45);
}

.site-header.is-scrolled::before {
  background: rgba(250, 250, 250, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 1;
  box-shadow: 0 8px 24px rgba(44, 38, 64, 0.08);
}

.nav-wrap {
  position: relative;
  z-index: 1;
  min-height: auto;
  /* Logo beginnt bewusst tiefer unter dem Viewport-Rand */
  padding: var(--header-pad-top) 0 var(--header-pad-bottom);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  transition: padding 0.35s ease;
}

.site-header.is-scrolled .nav-wrap {
  padding: 0.75rem 0;
}

.logo-wrap {
  display: inline-flex;
  gap: 0.85rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  /* Schatten am Wrapper statt filter am SVG (zuverlässiger in Safari) */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  border-radius: 12px;
  transition: box-shadow 0.35s ease;
}

.site-header.is-scrolled .logo-wrap {
  box-shadow: 0 2px 6px rgba(44, 38, 64, 0.16);
}

.logo-image {
  display: block;
  /* Feste Höhe nötig: sonst kollabiert SVG-img oft auf 0 und nur der weiße Balken bleibt */
  height: var(--logo-h);
  width: auto;
  aspect-ratio: 1 / 1;
  transition: height 0.4s ease;
}

.site-header.is-scrolled .logo-image {
  height: var(--logo-h-scrolled);
}

.logo-text {
  font-family: var(--display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sand);
}

.site-header.is-scrolled .logo-text {
  color: var(--warm);
}

.nav-back {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 228, 238, 0.55);
  padding-bottom: 1px;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled .nav-back {
  color: var(--warm);
  border-bottom-color: var(--stone);
}

.nav-back:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.8);
}

.site-header.is-scrolled .nav-back:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 1.2rem;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h1 em,
h2 em {
  font-style: italic;
}

.kicker {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 2rem;
}

.kicker-on-dark {
  color: var(--stone);
}

.lead,
.audience-intro {
  font-size: 0.95rem;
  color: var(--body-muted);
  max-width: 52ch;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* Oben Platz für großes Logo + Luft, damit der Kicker darunter frei bleibt */
  padding:
    calc(var(--logo-h) + var(--header-pad-top) + var(--header-pad-bottom) + 3.5rem)
    0
    8rem;
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 80% 30%, rgba(168, 136, 106, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 30% 50% at 10% 80%, rgba(200, 191, 176, 0.08) 0%, transparent 60%);
  z-index: 0;
}

.hero-photos {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 8s ease;
}

.hero-photo.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-photo-veil {
  position: absolute;
  inset: 0;
  background: var(--deep);
  pointer-events: none;
}

.hero.has-photos .hero-bg {
  opacity: 0.35;
}

.hero-line {
  position: absolute;
  right: 5rem;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(168, 136, 106, 0.4) 50%, transparent);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero .kicker {
  color: var(--accent);
}

.hero h1 {
  color: var(--sand);
  margin-bottom: 2.5rem;
}

.hero h1 em {
  color: var(--stone);
  display: block;
}

.hero-claim {
  max-width: 42ch;
  font-family: var(--display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  line-height: 1.7;
  color: var(--stone);
  margin: 0 0 3rem;
}

.hero-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(200, 191, 176, 0.4);
  color: var(--stone);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: border-color 0.3s, color 0.3s;
}

.hero-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.two-col {
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.story {
  background: var(--deep);
  color: var(--sand);
}

.story h2 {
  color: var(--sand);
}

.story h2 em {
  color: var(--accent);
}

.story .copy,
.story .copy p {
  color: var(--stone);
  max-width: 52ch;
}

.signature {
  color: var(--accent);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 2rem;
}

.big-quote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: var(--stone);
  margin: 0;
  padding-top: 3rem;
  position: relative;
  border: 0;
}

.big-quote::before {
  content: "„";
  position: absolute;
  top: 0.5rem;
  left: -0.4rem;
  font-size: 6rem;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  font-style: normal;
}

.audience-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.audience-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--stone);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--body-muted);
}

.audience-list li:first-child {
  border-top: 1px solid var(--stone);
}

.quote-line {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--warm);
  font-style: italic;
  padding-left: 2rem;
  border-left: 2px solid var(--accent);
  margin: 0;
}

.features {
  background: var(--sand);
  text-align: center;
}

.features h2 {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
}

.features h2 em {
  color: var(--warm);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.5rem 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
}

.lucide-icon {
  width: 1.85rem;
  height: 1.85rem;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}

.feature-item h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--deep);
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: #5a5248;
  margin: 0;
}

.notice {
  padding: 3.5rem 0;
  background: var(--white);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
}

.notice-inner {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.notice-inner--no-icon {
  gap: 0;
}

.notice-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--accent);
}

.notice-icon .lucide-icon {
  width: 1.75rem;
  height: 1.75rem;
}

.notice-text {
  margin: 0;
  font-size: 0.95rem;
  color: var(--body-muted);
  line-height: 1.55;
}

.notice-text p {
  margin: 0;
}

.notice-text em,
.notice-text i {
  font-style: italic;
  color: var(--warm);
}

.notice-text strong,
.notice-text b {
  font-weight: 500;
  color: var(--ink);
}

.travel-worlds h2 em {
  color: var(--warm);
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--stone);
  margin-top: 3rem;
}

.travel-card {
  padding: 0;
  border-right: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.travel-card:nth-child(2n) {
  border-right: 0;
}

.travel-card.is-featured {
  border-top: 2px solid var(--gold);
}

/* Signature-Karten: etwas kräftiger, dunkler Akzent */
.travel-card.is-signature {
  background:
    linear-gradient(165deg, rgba(44, 38, 64, 0.04) 0%, transparent 45%),
    var(--white);
}

.travel-card-cover {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--deep);
}

.travel-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.travel-card-body {
  padding: 2rem 2.8rem 2.8rem;
  flex: 1 1 auto;
}

.travel-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.travel-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  margin-left: 0.15rem;
}

.travel-card-icon .lucide-icon {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 1.6;
}

.travel-card.is-standard .travel-card-icon {
  color: var(--accent);
}

.travel-card.is-signature .travel-card-icon {
  color: var(--warm);
}

.travel-badge {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
  margin-bottom: 0;
  font-weight: 400;
}

.badge-standard {
  color: var(--accent);
}

.badge-signature {
  color: var(--warm);
  letter-spacing: 0.16em;
}

.badge-signature .badge-prefix {
  font-weight: 400;
}

.badge-signature .badge-emphasis {
  font-weight: 700;
  font-style: normal;
}

.travel-card h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem;
}

.travel-card.is-signature h3 {
  font-weight: 500;
  font-style: normal;
  color: var(--deep);
}

.travel-card h3 a {
  color: inherit;
  text-decoration: none;
}

.travel-card.is-signature h3 a:hover {
  color: var(--warm);
}

.travel-card p {
  font-size: 0.88rem;
  color: var(--body-muted);
  line-height: 1.8;
  margin: 0;
}

.travel-card.is-signature p {
  color: var(--deep);
  opacity: 0.78;
}

.image-rail {
  margin-top: 1.2rem;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 70%);
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.image-rail-item {
  margin: 0;
  scroll-snap-align: start;
}

.image-rail-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

/* Bild-Slider-Modul */
.image-slider h2 {
  margin-bottom: 1rem;
}

.image-slider-intro {
  margin-bottom: 2.5rem;
}

.image-slider-frame {
  width: min(1200px, calc(100% - 4rem));
  margin-inline: auto;
}

.image-slider.is-fullbleed .image-slider-frame {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.image-slider-stage {
  position: relative;
  overflow: hidden;
  background: var(--deep);
}

.image-slider.is-fullbleed .image-slider-slide img {
  height: min(78vh, 760px);
}

.image-slider-slide {
  margin: 0;
  display: none;
}

.image-slider-slide.is-active {
  display: block;
  animation: slider-fade 0.7s ease;
}

@keyframes slider-fade {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 1;
  }
}

.image-slider-slide img {
  width: 100%;
  height: min(70vh, 640px);
  object-fit: cover;
  object-position: center;
  display: block;
}

.image-slider-slide figcaption {
  padding: 0.85rem 1.2rem;
  font-size: 0.8rem;
  color: var(--warm);
  background: rgba(44, 38, 64, 0.92);
}

.image-slider-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.image-slider-dot {
  pointer-events: auto;
}

.image-slider-dots {
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

/* Strichel: inaktiv schmal, aktiv breiter + Zeitfortschritt */
.image-slider-dot {
  width: 1.65rem;
  height: 0.38rem;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: width 0.35s ease;
}

.image-slider-dot.is-active {
  width: 3.1rem;
}

.image-slider-dot-track {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(232, 228, 238, 0.32);
  overflow: hidden;
}

.image-slider-dot-fill {
  display: block;
  width: 0;
  height: 100%;
  background: var(--sand);
  transform-origin: left center;
}

.image-slider-dot.is-done .image-slider-dot-fill {
  width: 100%;
}

.image-slider-dot.is-active .image-slider-dot-fill {
  width: 0;
  animation: slider-dot-progress var(--slider-interval, 6s) linear forwards;
}

.image-slider.is-paused .image-slider-dot.is-active .image-slider-dot-fill {
  animation-play-state: paused;
}

@keyframes slider-dot-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo,
  .image-slider-slide.is-active {
    transition: none;
    animation: none;
  }

  .image-slider-dot.is-active .image-slider-dot-fill {
    animation: none;
    width: 100%;
  }
}

.testimonial {
  background: var(--sand);
}

/* Alle Zitate übereinander: Höhe = längstes Zitat → kein Springen vorm Formular */
.testimonial-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.testimonial-slide {
  grid-area: 1 / 1;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.35rem);
  transition: opacity 0.55s ease, transform 0.55s ease, visibility 0.55s ease;
  pointer-events: none;
  z-index: 0;
}

.testimonial-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}

.quote-main {
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--warm);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  padding-left: 2rem;
  border-left: 2px solid var(--accent);
}

.quote-author {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5a5248;
  font-style: normal;
  padding-left: 2rem;
}

.testimonial-dots {
  display: flex;
  gap: 0.55rem;
  margin-top: 2rem;
  padding-left: 2rem;
}

.testimonial-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(108, 91, 149, 0.28);
  cursor: pointer;
}

.testimonial-dot.is-active {
  background: var(--accent);
}

.quote-note {
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: #5a5248;
  font-style: italic;
  padding-left: 2rem;
}

.waitlist {
  background: var(--deep);
  color: var(--sand);
}

.waitlist h2 {
  color: var(--sand);
}

.waitlist h2 em {
  color: var(--accent);
}

.waitlist .poem {
  font-family: var(--display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--stone);
  line-height: 2;
  margin: 2rem 0;
}

.waitlist-form {
  display: grid;
  gap: 0.9rem;
  max-width: 520px;
}

.wl-tabs {
  display: flex;
  border: 1px solid rgba(200, 191, 176, 0.25);
}

.wl-tab {
  flex: 1;
  padding: 0.8rem 0.4rem;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(200, 191, 176, 0.25);
  color: var(--warm);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.wl-tab:last-child {
  border-right: 0;
}

.wl-tab.active {
  background: var(--accent);
  color: var(--sand);
}

.wl-row {
  display: flex;
  align-items: stretch;
}

.waitlist-form input:not([type="checkbox"]):not([type="hidden"]),
.waitlist-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 191, 176, 0.3);
  border-radius: 0;
  color: var(--sand);
  font: inherit;
  font-size: 0.9rem;
}

.waitlist-form input:not([type="checkbox"])::placeholder,
.waitlist-form textarea::placeholder {
  color: var(--warm);
}

.wl-row input {
  border-right: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.wl-row button {
  flex: 0 0 auto;
  padding: 1rem 1.5rem;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--sand);
  font: inherit;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.2s ease;
}

.wl-row button:hover {
  background: var(--warm);
}

/* Bestätigungs-Popup nach erfolgreicher Anfrage */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

.form-modal[hidden] {
  display: none;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 32, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.45s ease;
}

.form-modal.is-open .form-modal__backdrop {
  opacity: 1;
}

.form-modal__panel {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  padding: 2.4rem 2rem 2rem;
  background: linear-gradient(165deg, #3a3354 0%, #2c2640 55%, #241f36 100%);
  border: 1px solid rgba(232, 228, 238, 0.18);
  color: var(--sand);
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(18px) scale(0.94);
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.form-modal.is-open .form-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.form-modal__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(124, 107, 168, 0.35) 0%, transparent 70%);
  pointer-events: none;
  animation: form-modal-glow 2.8s ease-in-out infinite alternate;
}

@keyframes form-modal-glow {
  from {
    opacity: 0.55;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1.05);
  }
}

.form-modal__kicker {
  position: relative;
  margin: 0 0 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.form-modal__title {
  position: relative;
  margin: 0 0 1rem;
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.2;
  color: var(--sand);
}

.form-modal__text {
  position: relative;
  margin: 0 0 1.75rem;
  color: var(--stone);
  font-size: 0.95rem;
  line-height: 1.7;
}

.form-modal__close {
  position: relative;
  padding: 0.85rem 1.6rem;
  border: 1px solid rgba(232, 228, 238, 0.35);
  background: transparent;
  color: var(--sand);
  font: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.form-modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 228, 238, 0.6);
}

@media (prefers-reduced-motion: reduce) {
  .form-modal__backdrop,
  .form-modal__panel,
  .form-modal__glow {
    transition: none;
    animation: none;
  }

  .form-modal.is-open .form-modal__panel {
    transform: none;
  }
}

.checkbox {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  color: var(--stone);
  font-size: 0.85rem;
  line-height: 1.55;
  cursor: pointer;
  max-width: 36rem;
}

.checkbox__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}

.checkbox__box {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.15rem;
  border: 1px solid rgba(200, 191, 176, 0.55);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.checkbox__box::after {
  content: "";
  width: 0.35rem;
  height: 0.65rem;
  border-right: 2px solid var(--sand);
  border-bottom: 2px solid var(--sand);
  transform: rotate(45deg) translate(-1px, -1px) scale(0);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.checkbox__input:checked + .checkbox__box {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox__input:checked + .checkbox__box::after {
  opacity: 1;
  transform: rotate(45deg) translate(-1px, -1px) scale(1);
}

.checkbox__input:focus-visible + .checkbox__box {
  box-shadow: 0 0 0 3px rgba(124, 107, 168, 0.35);
  border-color: var(--accent);
}

.checkbox:hover .checkbox__box {
  border-color: rgba(232, 228, 238, 0.75);
}

.checkbox__label {
  flex: 1 1 auto;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.wl-or {
  display: block;
  margin-top: 1.5rem;
  color: var(--warm);
  font-size: 0.78rem;
}

.btn-ghost {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(200, 191, 176, 0.3);
  color: var(--stone);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.form-note {
  font-size: 0.78rem;
  color: var(--warm);
  font-style: italic;
  margin-top: 1.5rem;
}

.form-success {
  color: #ddf1e2;
  background: rgba(33, 95, 48, 0.35);
  padding: 0.75rem 0.9rem;
}

.form-error {
  color: #f8dfdf;
  background: rgba(141, 28, 28, 0.35);
  padding: 0.75rem 0.9rem;
}

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

.site-footer {
  background: var(--deep);
  border-top: 1px solid rgba(200, 191, 176, 0.12);
  padding: 2.6rem 0;
  color: var(--warm);
  font-size: 0.75rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.75rem 2.5rem;
}

.footer-meta {
  max-width: 28rem;
  line-height: 1.7;
}

.footer-meta p {
  margin: 0 0 0.35rem;
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--sand);
  margin-bottom: 0.65rem !important;
}

.footer-meta a {
  color: var(--stone);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 186, 218, 0.35);
}

.footer-meta a:hover {
  color: var(--sand);
  border-bottom-color: rgba(232, 228, 238, 0.7);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
}

.footer-nav a {
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.68rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a[aria-current="page"] {
  color: var(--sand);
  border-bottom-color: rgba(232, 228, 238, 0.55);
}

.legal-page {
  /* Abstand unter dem fixed Header */
  padding-top: calc(var(--logo-h-scrolled, 48px) + 2rem);
}

.trip-intro {
  padding-top: calc(var(--logo-h) + var(--header-pad-top) + var(--header-pad-bottom) + 3rem);
}

.trip-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.trip-kicker-icon {
  display: inline-flex;
  color: var(--accent);
  order: 2;
}

.trip-kicker-icon .lucide-icon {
  width: 1rem;
  height: 1rem;
}

.trip-intro.is-signature .trip-kicker {
  color: var(--warm);
  font-weight: 600;
  letter-spacing: 0.14em;
}

.trip-intro.is-signature .trip-kicker-icon {
  color: var(--warm);
}

.trip-intro.is-signature .trip-title {
  font-weight: 500;
}

.trip-intro.is-standard .trip-title {
  font-weight: 300;
  font-style: italic;
}

.legal-page h1 {
  margin-top: 0;
  margin-bottom: 1.75rem;
}

.legal-copy {
  color: var(--body-muted);
  max-width: 62ch;
}

.legal-copy p {
  margin: 0 0 1rem;
}

.legal-copy a {
  color: var(--warm);
}

@media (max-width: 960px) {
  :root {
    --logo-h: 92px;
    --logo-h-scrolled: 40px;
    --header-pad-top: 2.25rem;
  }

  .logo-image {
    height: var(--logo-h);
  }

  .site-header.is-scrolled .logo-image {
    height: var(--logo-h-scrolled);
  }

  .container {
    width: min(100% - 2.5rem, 1200px);
  }

  .image-slider-frame {
    width: min(100% - 2.5rem, 1200px);
  }

  .image-slider.is-fullbleed .image-slider-frame {
    width: 100%;
  }

  .section-space {
    padding: 5rem 0;
  }

  .two-col,
  .feature-grid,
  .travel-grid {
    grid-template-columns: 1fr;
  }

  .travel-card {
    border-right: 0;
  }

  .wl-row {
    flex-direction: column;
  }

  .wl-row input {
    border-right: 1px solid rgba(200, 191, 176, 0.3);
    border-bottom: 0;
  }

  .notice-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-line {
    display: none;
  }
}
