/* ==========================================
   RESIDENCIA DE TÍO - Luxury Theme
   Inspired by Velaa Private Island
   ========================================== */

/* ---- CSS Variables ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #d4b96a;
  --gold-dark: #a68a3e;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --dark-overlay: rgba(10, 10, 10, 0.55);
  --charcoal: #2a2a2a;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --cream: #faf7f2;
  --text: #333333;
  --text-light: #999999;
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.section {
  position: relative;
}

.hidden {
  display: none !important;
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.4em;
  margin-bottom: 30px;
}

.preloader-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  animation: preloaderLine 1.5s ease-in-out infinite;
}

@keyframes preloaderLine {
  0%, 100% { width: 60px; opacity: 0.3; }
  50% { width: 120px; opacity: 1; }
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  padding: 12px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: 48px;
}

.nav-logo-img {
  height: 84px;             /* Sprint M: doppelt so gross (war 42px) */
  width: auto;
  max-width: 360px;         /* doppelt (war 180px) */
  display: block;
  object-fit: contain;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
  margin: 0 auto 20px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.35em;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  transition: var(--transition);
}

.lang-switch:hover {
  border-color: var(--gold);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 2px 4px;
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--white);
}

.lang-btn.lang-active {
  color: var(--gold);
  font-weight: 600;
}

.lang-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.6rem;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  pointer-events: none;
  border-top: 1px solid var(--gold);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}

.dropdown-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 28px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.dropdown-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  padding-left: 32px;
}

.dropdown-link span {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
}

.dropdown-link:hover span {
  color: var(--gold-light);
}

/* Mobile Sub Items */
.mobile-sub a {
  font-family: var(--font-accent) !important;
  font-size: 1.1rem !important;
  color: var(--gold-light) !important;
  letter-spacing: 0.05em !important;
}

/* Hamburger — minimal, modern, kompakt */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 20px;
  height: 12px;
  position: relative;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--white);
  position: absolute;
  left: 0;
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.18s ease,
              top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* nth-of-type statt nth-child: Beim WP-Embed fügt wpautop <br>-Elemente zwischen
   die 3 Hamburger-<span> ein. nth-child würde die <br> mitzählen und die falschen
   Linien treffen (→ kaputtes X beim Öffnen). nth-of-type zählt nur die <span>. */
.hamburger span:nth-of-type(1) { top: 0; }
.hamburger span:nth-of-type(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-of-type(3) { bottom: 0; }

.hamburger.active span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.hamburger.active span:nth-of-type(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
}
.hamburger.active span:nth-of-type(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--black);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-slow);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
}

.mobile-menu li {
  margin: 20px 0;
  transform: translateY(30px);
  opacity: 0;
  transition: var(--transition);
}

.mobile-menu.active li {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu li:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu li:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu li:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu li:nth-child(7) { transition-delay: 0.4s; }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.15em;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-parallax {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* hero-overlay entfernt — Text sitzt jetzt in .hero-text-box */

.hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  /* bleibt oberhalb der Quick-Book-Bar */
  max-height: calc(100% - 200px);
  z-index: 2;
  color: var(--white);
}

/* Box vertikal zentriert, links am Rand, 20% größer */
.hero-text-box {
  background: rgba(8, 8, 8, 0.78); /* Desktop: leicht transparent */
  padding: 24px 34px 28px 40px;
  max-width: 576px;
  text-align: left;
}

@media (max-width: 768px) {
  .hero-text-box {
    background: #0a0a0a; /* Mobile: komplett schwarz */
    max-width: 85vw;
    padding: 16px 20px 18px 20px;
  }
}

@media (max-width: 480px) {
  .hero-text-box {
    max-width: 94vw;
    padding: 14px 16px 16px 16px;
  }
}

.hero-subtitle {
  font-family: var(--font-accent, 'Cormorant Garamond', serif);
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  letter-spacing: 0.01em;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease 0.4s forwards;
}

/* Mobile: Subtitle ausblenden — Box bleibt klein, Video oben frei */
@media (max-width: 768px) {
  .hero-subtitle {
    display: none;
  }
  /* Statement-Strip: kein Verlauf auf Mobile — alles sichtbar */
  .qb-statement-strip {
    -webkit-mask-image: none;
            mask-image: none;
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-line {
  display: block;
  font-size: clamp(1.6rem, 2.8vw, 2.6rem);
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease 0.7s forwards;
}

.hero-line-italic {
  font-style: italic;
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  color: var(--gold-light);
  animation-delay: 0.9s;
}

.hero-divider {
  display: none; /* im kompakten Handle-Stil nicht nötig */
}

.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}

.hero-scroll:hover {
  color: var(--gold);
}

/* Strich wie beim exp-handle-cta::after */
.hero-scroll::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.hero-scroll:hover::after {
  width: 48px;
}

.scroll-arrow {
  display: none; /* ersetzt durch den Strich im ::after */
}

.scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ---- Section Styling ---- */
.section-tag {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}

.section-tag-light {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-title-light {
  color: var(--white);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
}

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ---- About Section ---- */
.about-section {
  padding: 140px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 25px;
}

.about-stats {
  display: flex;
  gap: 50px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ---- Parallax Divider — Bild oben, Text-Box darunter (Stack) ---- */
.parallax-divider-wrap,
.parallax-divider-wrap-reverse {
  display: flex;
  flex-direction: column;
}

/* Bild */
.parallax-divider-img {
  width: 100%;
  height: 65vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Parallax-Divider 2: Gärten zeigen — oberer Bereich des Bildes */
.parallax-divider-img--left {
  background-position: 20% top;
}

/* Text-Box darunter */
.parallax-text-box {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 56px;
  color: var(--white);
}

.parallax-text-tag {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  font-weight: 500;
  margin-bottom: 22px;
  color: var(--gold-light);
  text-transform: uppercase;
}

.parallax-text-box h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 0;
  color: var(--white);
}

.parallax-sub {
  font-family: var(--font-accent);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.80);
}

/* CTA in Text-Box (dunkler Hintergrund) */
.parallax-cta-dark {
  margin-top: 32px;
  align-self: flex-start;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 38px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.parallax-cta-dark:hover {
  background: var(--gold);
  color: #0a0a0a;
}

/* Parallax-CTA (alt — bleibt für ev. andere Stellen) */
.parallax-cta {
  display: inline-block;
  margin-top: 32px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 38px;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  align-self: flex-start;
}
.parallax-cta:hover {
  background: var(--gold);
  color: #0a0a0a;
}

@media (max-width: 900px) {
  .parallax-divider-img {
    height: 55vw;
    min-height: 240px;
    background-attachment: scroll;
  }
  .parallax-text-box {
    padding: 36px 24px;
  }
}

/* ---- Suites Section ---- */
.suites-section {
  padding: 140px 0 80px;
  background: var(--cream);
}

.suites-slider {
  width: 100%;
  margin-bottom: 80px;
}

.suite-slide {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Bild: feste Höhe, voll sichtbar */
.suite-image {
  width: 100%;
  height: 62vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease;
  flex-shrink: 0;
}

.suite-slide:hover .suite-image,
.swiper-slide-active .suite-image {
  transform: scale(1.05);
}

/* Info-Box direkt unterhalb des Bildes — kein absolute mehr */
.suite-slide-info {
  background: var(--dark);
  padding: 28px 40px 32px;
  border-top: 2px solid rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
}

.suite-tag {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 10px;
}

.suite-name {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--white);
}

.suite-sqm {
  font-family: var(--font-body);
  font-size: 0.45em;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  vertical-align: middle;
  margin-left: 10px;
}

.suite-desc {
  font-family: var(--font-accent);
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 20px;
}

.suite-cta {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
}

.suite-cta:hover {
  background: var(--gold);
  color: #0a0a0a; /* WCAG-AA */
}

.suite-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.suite-cta-gold {
  background: var(--gold);
  color: #0a0a0a; /* WCAG-AA */
}

.suite-cta-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Swiper Custom */
.suites-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  width: 30px;
  height: 2px;
  border-radius: 0;
  opacity: 1;
  transition: var(--transition);
}

.suites-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 50px;
}

.suites-prev, .suites-next {
  color: var(--white) !important;
}

.suites-prev::after, .suites-next::after {
  font-size: 20px !important;
}

/* Suite Features */
.suite-features {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
  padding: 60px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature {
  text-align: center;
}

.feature-icon {
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
}

.feature-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.feature h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-light);
}

/* ---- Experiences Section (Slide-In Boxen) ---- */
.experiences-section {
  background: var(--dark);
  padding: 0;
}

.experience-block {
  position: relative;
  height: 80vh;
  min-height: 540px;
  max-height: 760px;
  overflow: hidden;
}

.exp-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 600ms ease;
  will-change: transform;
}

.experience-block:hover .exp-image {
  transform: scale(1.05);
}

.exp-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.20) 0%,
    rgba(0, 0, 0, 0.10) 40%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}

/* ---- Handle (Trigger an Bildschirm-Rand) ---- */
.exp-handle {
  position: absolute;
  bottom: 32px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 18px 26px;
  background: rgba(15, 15, 15, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: #fff;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease, padding 280ms ease;
  max-width: min(90vw, 420px);
}

.exp-handle-left  { left: 0;  border-left: none;  border-radius: 0 4px 4px 0; }
.exp-handle-right { right: 0; border-right: none; border-radius: 4px 0 0 4px; }

.exp-handle:hover,
.exp-handle:focus-visible {
  background: rgba(20, 20, 20, 0.92);
  border-color: var(--gold);
  outline: none;
  padding-left: 32px;
  padding-right: 32px;
}

.exp-handle-left:hover,
.exp-handle-left:focus-visible  { transform: translateX(4px); }
.exp-handle-right:hover,
.exp-handle-right:focus-visible { transform: translateX(-4px); }

.exp-handle-tag {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.exp-handle-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
}

.exp-handle-cta {
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.exp-handle-cta::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: width 240ms ease;
}

.exp-handle:hover .exp-handle-cta::after,
.exp-handle:focus-visible .exp-handle-cta::after {
  width: 38px;
}

/* ---- Slide-In Panel ---- */
.exp-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: clamp(320px, 38vw, 480px);
  max-width: 100vw;
  background: rgba(10, 10, 10, 0.92);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  backdrop-filter: blur(20px) saturate(120%);
  color: #fff;
  padding: 56px 44px 44px;
  overflow-y: auto;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 520ms ease;
  will-change: transform;
  border-color: rgba(201, 168, 76, 0.25);
  border-style: solid;
  border-width: 0;
}

.exp-panel-left  { left: 0;  transform: translateX(-105%); border-right-width: 1px; }
.exp-panel-right { right: 0; transform: translateX(105%);  border-left-width: 1px; }

.experience-block.is-open .exp-panel-left,
.experience-block.is-open .exp-panel-right {
  transform: translateX(0);
  box-shadow: 0 0 60px rgba(0,0,0,0.45);
}

.experience-block.is-open .exp-handle {
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.exp-panel .section-tag {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}

.exp-panel h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 500;
  margin: 0 0 22px;
  line-height: 1.2;
  color: #fff;
}

.exp-panel p {
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.78;
  color: rgba(255,255,255,0.88);
  font-weight: 400;
}

.exp-panel-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.exp-panel-close:hover,
.exp-panel-close:focus-visible {
  background: rgba(201,168,76,0.18);
  border-color: var(--gold);
  outline: none;
  transform: rotate(90deg);
}

/* X als CSS (kein Emoji) */
.exp-x {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
}
.exp-x::before,
.exp-x::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
}
.exp-x::before { transform: translateY(-50%) rotate(45deg); }
.exp-x::after  { transform: translateY(-50%) rotate(-45deg); }

/* Mobile: Panel = Vollbreite */
@media (max-width: 768px) {
  .experience-block {
    height: 65vh;
    min-height: 420px;
  }
  .exp-handle {
    bottom: 20px;
    padding: 14px 20px;
    max-width: calc(100% - 16px);
  }
  .exp-handle-title {
    font-size: 1.15rem;
  }
  .exp-panel {
    width: 100%;
    padding: 60px 26px 32px;
  }
  .exp-panel-left  { transform: translateX(-100%); }
  .exp-panel-right { transform: translateX(100%); }
}

/* ---- Gallery Section ---- */
.gallery-section {
  padding: 140px 0;
  background: var(--cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Festes Row-Raster damit gi-tall/wide-Spans dicht packen, ohne Lücken.
     220px ergibt mit 4 Spalten ein harmonisches Quadratraster. */
  grid-auto-rows: 220px;
  /* dense: füllt Lücken indem es kleine Items vor grosse einsortiert */
  grid-auto-flow: dense;
  gap: 8px;
  padding: 0 30px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  /* Garantiert dass jedes Item die volle Zelle ausfüllt — Bild dehnt sich */
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

.gi-tall {
  grid-row: span 2;
}

.gi-wide {
  grid-column: span 2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--gold);
}

.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 20px;
  transition: var(--transition);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 60px; }

.lightbox-prev:hover, .lightbox-next:hover {
  color: var(--gold);
}

/* ---- Booking Section ---- */
.booking-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.booking-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.88);
}

.booking-container {
  position: relative;
  z-index: 2;
}

/* Booking Tabs */
.booking-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 30px;
}

.booking-tab {
  padding: 16px 35px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.booking-tab:first-child { border-right: none; }

.booking-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.booking-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #0a0a0a; /* WCAG-AA */
}

.booking-tab-info {
  max-width: 900px;
  margin: 0 auto 40px;
  padding: 0;
  background: transparent;
  border: none;
  text-align: center;
}

.booking-tab-info .booking-info-text {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 auto 28px;
  max-width: 780px;
}

.booking-price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  max-width: 540px;
  margin: 0 auto;
}

.booking-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.booking-price-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.booking-price-amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
}

.booking-price-unit {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.booking-minstay {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
  .booking-tab-info .booking-info-text { font-size: 1.05rem; }
  .booking-price-amount { font-size: 2rem; }
}

@media (max-width: 768px) {
  .booking-tabs { flex-direction: column; }
  .booking-tab { border-right: 1px solid rgba(255, 255, 255, 0.12) !important; }
  .booking-tab:first-child { border-bottom: none; }
}

.booking-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  flex: 1 1 100%;
}

.form-group label {
  font-size: 0.78rem;            /* +0.08rem -> besser lesbar, weniger Zeilenumbruch */
  letter-spacing: 0.12em;        /* von 0.2em -> 0.12em -> Labels brechen nicht mehr ungewollt */
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
  font-weight: 600;              /* dicker fuer Lesbarkeit */
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-privacy {
  margin-bottom: 30px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.92);   /* von 0.6 -> 0.92 (deutlich lesbarer) */
  font-size: 0.95rem;                 /* von 0.8rem -> 0.95rem */
  line-height: 1.55;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: 22px;                        /* groesser fuer Touch + Sichtbarkeit */
  height: 22px;
  accent-color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
}

/* Hinweis-Text auf dunklem Background (z.B. Exclusive-Modal) */
.form-note-light {
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  font-weight: 400;
}

.btn-submit {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--gold);
  border: none;
  color: #0a0a0a; /* WCAG-AA: dunkler Text auf Gold */
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.form-success {
  text-align: center;
  padding: 60px 20px;
  color: var(--white);
}

.success-icon {
  width: 60px;
  height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  margin: 0 auto 25px;
  position: relative;
  color: var(--gold);
}
/* CSS-Häkchen statt Emoji im Erfolgs-Indikator */
.success-icon::before, .success-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
}
.success-icon::before {
  width: 8px; height: 2px;
  left: 16px; top: 32px;
  transform: rotate(45deg);
  transform-origin: left center;
}
.success-icon::after {
  width: 20px; height: 2px;
  left: 22px; top: 36px;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 15px;
}

.form-success p {
  font-family: var(--font-accent);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

/* ---- Contact Section ---- */
.contact-section {
  padding: 140px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 40px;
}

.contact-item {
  margin-bottom: 30px;
}

.contact-item h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-item p {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
}

.contact-map {
  height: 450px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer-brand p {
  font-family: var(--font-accent);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 14px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal {
  display: flex;
  gap: 25px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ---- Reveal Animations ---- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up { transform: translateY(60px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* ---- Flatpickr Custom Theme ---- */
.flatpickr-calendar {
  background: var(--dark) !important;
  border: 1px solid rgba(201, 168, 76, 0.3) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
  font-family: var(--font-body) !important;
}

.flatpickr-months .flatpickr-month {
  background: var(--dark) !important;
  color: var(--gold) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--dark) !important;
  color: var(--gold) !important;
}

.flatpickr-weekdays {
  background: var(--dark) !important;
}

span.flatpickr-weekday {
  color: var(--gold) !important;
  font-weight: 600 !important;
}

.flatpickr-day {
  color: var(--white) !important;
}

.flatpickr-day:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.flatpickr-day.selected {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
}

.flatpickr-day.today {
  border-color: var(--gold) !important;
}

.flatpickr-day.inRange {
  background: rgba(201, 168, 76, 0.2) !important;
  border-color: rgba(201, 168, 76, 0.2) !important;
  box-shadow: -5px 0 0 rgba(201, 168, 76, 0.2), 5px 0 0 rgba(201, 168, 76, 0.2) !important;
}

.numInputWrapper span {
  border-color: var(--gold) !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: var(--gold) !important;
}

/* ---- Steps Section (3-Schritte-Plan) ---- */
.steps-section {
  background: var(--cream);
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.step-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-light);
}

.steps-cta {
  text-align: center;
  margin-top: 50px;
}

.steps-cta .btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 16px 40px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.steps-cta .btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .suite-features { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .nav-menu { display: none; }
  .hamburger { display: block; }

  .nav-container { padding: 0 20px; }
  .logo-text { font-size: 0.75rem; letter-spacing: 0.15em; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .suite-slide-info { padding: 22px 30px 26px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;  /* leicht kleiner auf Tablet */
  }
  /* Auf Tablet: gi-tall behaelt span 2 (für Vertikal-Akzent),
     gi-wide spannt nur 1 Spalte (sonst zu dominant in 2-Col-Layout) */
  .gi-wide { grid-column: span 1; }

  .footer-top { flex-direction: column; gap: 30px; }
  .footer-links { flex-wrap: wrap; }

  .suite-features { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
  /* Im WP-Embed rendert die .container mit einer festen width (= Viewport) statt
     width:auto, wodurch margin:0 auto sie auf ~300px zentriert und 75px Breite
     verschenkt (Testimonial-Text wurde dadurch auf ~90px gequetscht).
     Auf Mobile volle Block-Breite erzwingen. */
  .container { padding: 0 25px; width: auto; margin-left: 0; margin-right: 0; }

  .about-section,
  .suites-section,
  .gallery-section,
  .booking-section,
  .steps-section,
  .contact-section { padding: 80px 0; }

  .steps-grid { grid-template-columns: 1fr; gap: 30px; }

  /* About-Stats auf Mobile: nebeneinander statt stacked
     (z.B. "19 EXKLUSIVE SUITEN" + "7 KM ZUM FLUGHAFEN" auf einer Linie) */
  .about-stats {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px 32px;
  }
  .about-stats .stat { flex: 0 1 auto; text-align: center; }

  .form-row { flex-direction: column; gap: 20px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 4px;
    padding: 0 15px;
  }

  .parallax-divider {
    background-attachment: scroll;
    height: 50vh;
    min-height: 350px;
  }

  /* .experience-block hat eigene Mobile-Regeln innerhalb der Slide-In-Sektion */

  .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }

  .suite-features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  html { font-size: 14px; }

  .logo-text { font-size: 0.6rem; letter-spacing: 0.1em; }
  .lang-switch { padding: 2px 5px; gap: 2px; }
  .lang-btn { font-size: 0.55rem; padding: 1px 2px; }
  .lang-sep { font-size: 0.45rem; }

  /* MOBILE: Galerie wird zum Horizontal-Slider mit Snap-Scroll —
     wie Instagram-Stories, statt vertikalen Stack scrollen User horizontal
     durch die Bilder. */
  .gallery-grid {
    display: flex;
    grid-template-columns: none;
    grid-auto-rows: auto;
    grid-auto-flow: row;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;  /* Firefox */
    gap: 12px;
    padding: 0 16px 8px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item {
    flex: 0 0 85%;
    height: 280px;
    scroll-snap-align: start;
    border-radius: 8px;
  }
  /* Spans deaktivieren auf Mobile — Slider-Items sind alle gleich gross */
  .gi-tall, .gi-wide { grid-row: auto; grid-column: auto; flex: 0 0 85%; }
  /* Letztes Item: rechts etwas Platz lassen damit es schoen scrollt */
  .gallery-item:last-child { margin-right: 16px; }

  .suite-slide-info { padding: 18px 20px 22px; }
  .suite-name { font-size: 1.6rem; }
}

/* ==========================================
   QUICK-BOOK BAR (Hero-Booking)
   ========================================== */
.quick-book-section {
  position: relative;
  background: transparent;       /* kein schwarzer Block mehr — schwebt auf Video */
  padding: 0;
  z-index: 20;
  border-bottom: none;
}

/* Overlay-Variante (veraltet — nicht mehr genutzt) */
.quick-book-overlay {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 0 24px;
  background: transparent;
}

/* Below-Variante: unterhalb des Heroes im normalen Flow */
.quick-book-below {
  position: relative;
  padding: 0 24px;
  background: transparent;
  margin-top: -2px; /* nahtloser Übergang zum Hero */
}

.quick-book-bar {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  /* Sprint M: Kinder-Feld raus -> 3 Felder + Submit-Button */
  grid-template-columns: 1.5fr 1.5fr 1fr auto;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(20,20,20,0.92) 0%, rgba(10,10,10,0.95) 100%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: relative;
  margin-top: 0;                 /* kein Hack mehr, Position via .quick-book-overlay */
  z-index: 30;
  box-shadow: 0 18px 50px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.28);
  border-radius: 2px;
}

.qb-field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 26px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.qb-field:last-of-type { border-right: none; }

.qb-field label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.85);
  margin-bottom: 6px;
  font-weight: 500;
}

.qb-field input,
.qb-field select {
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 400;
  padding: 0;
  margin: 0;
  outline: none;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.02em;
}

.qb-field input::placeholder {
  color: rgba(255,255,255,0.35);
}

.qb-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9a84c' stroke-width='1.2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 20px;
}

.qb-field select option { background: #111; color: #fff; }

.qb-submit {
  background: var(--gold);
  color: #0a0a0a;
  border: none;
  padding: 0 44px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.qb-submit:hover {
  background: var(--gold-light, #d4b96a);
}

/* Sprint M.1: 'Only Adults' Banner — exakt so breit wie das Quick-Book-Widget,
   sitzt direkt oben auf dem Widget, gleicher max-width + zentriert. */
.qb-only-adults {
  max-width: 1180px;       /* identisch zu .quick-book-bar */
  margin: 0 auto;
  text-align: center;
  background: #0a0a0a;
  color: var(--gold);
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,168,76,0.3);
  box-sizing: border-box;
}

.qb-statement-strip {
  display: flex;
  align-items: center;
  background: #0a0a0a;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 18px 0;
  /* Wichtig: overflow:hidden + nowrap fuer das Band */
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  -webkit-mask-image: none;
          mask-image: none;
}

.qb-marquee-track {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 28px;
  padding-right: 28px;
  /* Animation: kontinuierlich nach links scrollen.
     -50% weil JS den Track verdoppelt -> seamless loop */
  animation: qb-marquee 42s linear infinite;
  will-change: transform;
}

.qb-marquee-track > span {
  flex-shrink: 0;
  display: inline-block;
}

/* Mouse-Hover: Pause damit User lesen kann */
.qb-statement-strip:hover .qb-marquee-track {
  animation-play-state: paused;
}

@keyframes qb-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.qb-statement-strip .qb-dot {
  color: var(--gold);
  opacity: 0.65;
}

/* Reduced-Motion: Marquee laeuft trotzdem aber langsamer (80s statt 42s).
   Kein Flash/kein Parallax, also a11y-OK, und das Branding bleibt erhalten. */
@media (prefers-reduced-motion: reduce) {
  .qb-marquee-track { animation-duration: 80s; }
  .qb-statement-strip {
    /* Keine Aenderungen am Layout — Marquee laeuft weiter */
  }
}

@media (max-width: 960px) {
  .quick-book-bar {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }
  .quick-book-overlay {
    bottom: 30px;
    padding: 0 16px;
  }
  /* LAYOUT-001: hero-content ist jetzt position:absolute bottom — kein padding-bottom nötig */
  .qb-field:nth-child(1),
  .qb-field:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .qb-field:nth-child(2) { border-right: none; }
  .qb-field:nth-child(4) { border-right: none; }
  .qb-submit {
    grid-column: 1 / -1;
    padding: 20px;
  }
}

@media (max-width: 560px) {
  /* MOBILE: Quick-Book kompakter — Anreise+Abreise je eine Zeile,
     Erwachsene+Kinder side-by-side, Submit voll. Dadurch nur 4 statt
     5 Zeilen — Hero atmet wieder. */
  .quick-book-bar {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }
  .quick-book-overlay {
    bottom: 16px;
    padding: 0 12px;
  }
  /* hero-content bottom auf Mobile bereits via Media-Query gesetzt */
  .hero-scroll {
    margin-bottom: 8px;
  }
  /* Datepicker-Felder spannen ueber 2 Spalten, Selects bleiben einzeln */
  .qb-field { padding: 14px 18px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .qb-field:nth-child(1), .qb-field:nth-child(2) { grid-column: 1 / -1; border-right: none; }
  .qb-field:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.08); }
  .qb-field:nth-child(4) { border-right: none; }
  .qb-submit { grid-column: 1 / -1; padding: 18px; }
  .qb-statement-strip {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }
  /* LAYOUT: Lang-Switch nicht mehr ueberlappend mit Logo — separate Zeile */
  .nav-container {
    flex-wrap: wrap;
    row-gap: 8px;
  }
  .nav-logo-img {
    max-height: 64px;  /* Mobile: doppelt (war 32px effective) */
    height: 64px;
  }
}

/* ==========================================
   PARALLAX CTA (Exclusive Trigger)
   ========================================== */
.parallax-cta {
  margin-top: 30px;
  display: inline-block;
  background: transparent;
  color: #fff;
  border: 1px solid var(--gold);
  padding: 16px 42px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.parallax-cta:hover {
  background: var(--gold);
  color: #0a0a0a;
}

/* ==========================================
   EXCLUSIVE MODAL
   ========================================== */
.exclusive-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 20px;
}
.exclusive-modal.is-open {
  display: flex;
}
.exclusive-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1;
}
.exclusive-modal-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  background: #0f0f0f;
  border: 1px solid rgba(201, 168, 76, 0.28);
  box-shadow: 0 40px 90px rgba(0,0,0,0.7);
  padding: 60px 50px 50px;
  margin: auto;
}
.exclusive-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px 12px;
  transition: color 0.2s ease;
}
.exclusive-modal-close:hover { color: var(--gold); }

.exclusive-modal-header {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
}
.exclusive-modal-header .section-tag {
  display: inline-block;
  margin-bottom: 10px;
}
.exclusive-modal-header .section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 10px;
}
.exclusive-modal-header .section-subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto;
}
body.modal-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .exclusive-modal-inner {
    padding: 55px 22px 35px;
  }
}

/* ===========================================
   FIX-019: iOS Zoom-Bug bei Eingaben verhindern
   Inputs <16px loesen Auto-Zoom in Safari iOS aus.
   Plus WCAG 2.1 Touch-Target min 44x44.
   =========================================== */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea,
  .qb-field input,
  .qb-field select {
    font-size: 16px;
    min-height: 44px;
  }
  .form-group textarea {
    min-height: 88px;
  }
}

/* ===========================================
   FIX-020: Touch-Targets Hamburger / Modal-Close / Lang-Buttons
   =========================================== */
.hamburger {
  padding: 12px;
}

.exclusive-modal-close {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .lang-btn {
    min-width: 32px;
    min-height: 32px;
    padding: 8px 10px;
    font-size: 0.75rem;
  }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
  background: var(--dark);
  padding: 100px 0;
  color: var(--white);
}
.testimonials-section .section-tag {
  color: var(--gold);
}
.testimonials-section .section-title {
  color: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 50px;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 8px;
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.testimonial-name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  color: var(--white);
}
.testimonial-detail {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.testimonials-cta {
  text-align: center;
  margin-top: 44px;
}
.testimonials-summary {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .testimonials-section { padding: 70px 0; }
}

/* ---- Testimonial Slider ---- */
.tslider-outer {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 50px;
}
.tslider-track-wrap {
  overflow: hidden;
  width: 100%;
  border-radius: 8px;
}
.tslider-track {
  display: flex;
  flex-wrap: nowrap;          /* KRITISCH: nie umbrechen */
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.tslider-slide {
  /* 3 sichtbar auf Desktop — Breite relativ zur track-wrap, nicht zum track */
  flex: 0 0 calc((100% - 42px) / 3);
  min-width: calc((100% - 42px) / 3);
  margin-right: 21px;
  box-sizing: border-box;
}
.tslider-slide:last-child { margin-right: 0; }

/* Prev/Next Buttons */
.tslider-btn {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.4);
  background: rgba(255,255,255,0.04);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}
.tslider-btn:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
}
.tslider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Dots */
.tslider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.tslider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.tslider-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* Tablet: 2 sichtbar */
@media (max-width: 992px) {
  .tslider-slide {
    flex: 0 0 calc((100% - 22px) / 2);
    min-width: calc((100% - 22px) / 2);
    margin-right: 22px;
  }
  .tslider-btn { width: 40px; height: 40px; font-size: 1rem; }
}

/* Mobile: 1 sichtbar */
@media (max-width: 640px) {
  .tslider-slide {
    flex: 0 0 100%;
    min-width: 100%;
    margin-right: 0;
  }
  /* Buttons aus dem Flex-Flow nehmen, damit die Card volle Breite bekommt
     (sonst quetschen die zwei 36px-Buttons + gaps den Text auf ~90px). */
  .tslider-outer {
    gap: 0;
    position: relative;
  }
  .tslider-track-wrap {
    width: 100%;
    flex: 1 1 100%;
  }
  .tslider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 3;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
  }
  .tslider-prev { left: 6px; }
  .tslider-next { right: 6px; }
  /* Card-Innenpadding etwas reduzieren + Platz für die overlay-Buttons lassen */
  .testimonial-card { padding: 32px 22px; }
}

/* ==========================================
   BLOG SECTION (Index-Page, ueber Footer)
   ========================================== */
.blog-section {
  background: var(--cream, #faf7f0);
  padding: 110px 0 90px;
}
.blog-section .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.blog-section .section-tag {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  color: var(--gold, #c9a84c);
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.blog-section .section-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.15;
}
.blog-section .section-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #5e5e5e;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.blog-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 16px;
  color: #888;
  font-size: 0.95rem;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}
.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: #eee;
}
.blog-card-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark, #a8893a);
  margin-bottom: 14px;
  font-weight: 600;
}
.blog-card-meta-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  background: currentColor;
  border-radius: 50%;
  opacity: 0.6;
}
.blog-card-title {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 12px;
}
.blog-card-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #5e5e5e;
  margin: 0 0 18px;
  flex: 1;
}
.blog-card-link {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark, #a8893a);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}
.blog-card-link::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: width 0.25s ease;
}
.blog-card:hover .blog-card-link::after {
  width: 36px;
}

.blog-cta-row {
  text-align: center;
}
.blog-all-link {
  display: inline-block;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
  padding: 14px 32px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease;
}
.blog-all-link:hover {
  background: #1a1a1a;
  color: var(--cream, #faf7f0);
}

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 640px) {
  .blog-section { padding: 70px 0; }
  /* MOBILE: Blog-Cards horizontal slidebar (analog zur Galerie) */
  .blog-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 16px;
    padding: 0 16px 8px;
    margin-left: -16px;
    margin-right: -16px;
  }
  .blog-grid::-webkit-scrollbar { display: none; }
  .blog-grid > * {
    flex: 0 0 88%;
    scroll-snap-align: start;
  }
  .blog-grid > *:last-child { margin-right: 16px; }
  .blog-card-title { font-size: 1.25rem; }
}

/* ==========================================
   NAV BUCHEN CTA-BUTTON (rechts vom letzten Menue-Item)
   ========================================== */
.nav-menu .nav-link-cta {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a !important;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
  margin-left: 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-menu .nav-link-cta:hover {
  background: var(--gold-light, #d4b96a);
  transform: translateY(-1px);
}
.nav-menu .nav-link-cta::after { display: none; } /* Underline-Effekt deaktivieren */

.mobile-menu .mobile-cta a {
  display: inline-block;
  background: var(--gold);
  color: #0a0a0a !important;
  padding: 14px 32px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  margin-top: 12px;
}

/* =====================================================================
   MOBILE-FIXES Sprint G — A-Team-Audit 2026-04-26
   (A15-Healer-Auto-Run, 14 Bugs aus mobile-audit-results.json)
   ===================================================================== */

/* MOBILE-FIX-001: About-Section Overflow (CRIT-1) */
@media (max-width: 768px) {
  .about-section { overflow-x: hidden; }
  .about-right, .about-text, .about-stats, .stat, .stat-number {
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
  }
}

/* MOBILE-FIX-002 (Sprint K Revision): Hamburger Hit-Box dezenter
   Visual 20x12 + padding 8px = 36x28 Hit-Area (a11y-OK ab 36px) */
.hamburger {
  padding: 8px;
  box-sizing: content-box;
}

/* MOBILE-FIX-003 (Sprint K Revision): Lang-Buttons kompakter
   Von 44x44 zurueck auf 36x32 — visuell deutlich dezenter. */
@media (max-width: 768px) {
  .lang-btn {
    min-width: 36px;
    min-height: 32px;
    padding: 6px 8px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }
  .lang-sep { font-size: 0.7rem; }
  .lang-switch { gap: 2px; padding: 2px 4px; }
}

/* SPRINT K: Mobile generell dezenter — Quick-Book-Felder kompakter,
   Section-Tags kleiner, weniger Whitespace */
@media (max-width: 768px) {
  .qb-field { padding: 12px 16px !important; }
  .qb-field label {
    font-size: 0.62rem !important;
    letter-spacing: 0.16em;
    margin-bottom: 4px !important;
  }
  .qb-field input,
  .qb-field select {
    font-size: 0.95rem !important;
    padding: 4px 0 !important;
  }
  .qb-submit {
    padding: 14px 18px !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.18em !important;
  }
  /* Section-Tags / Headings dezenter */
  .section-tag { font-size: 0.65rem; letter-spacing: 0.28em; }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .section-subtitle { font-size: 0.92rem; }
  /* Body-Text-Mins von 14 auf 13 — leichter visuell */
  body p, body label, body li, body td {
    font-size: max(13px, 0.92em);
  }
  /* Suite-Hero dezenter */
  .suite-hero-meta,
  .suite-hero p,
  .suite-slide-info p { font-size: 13px !important; }
}

/* MOBILE-FIX-004: Min-Font-Size 14px für Body-Text (HIGH-8 + HIGH-9) */
@media (max-width: 768px) {
  body p, body label, body li, body td {
    font-size: max(14px, 1em);
  }
  /* Suite-Hero-Specs explizit anheben (war 9.1px!) */
  .suite-hero-meta,
  .suite-hero p,
  .suite-slide-info p { font-size: 14px !important; }
  /* Quick-Book-Box-Labels (waren 8.7px) */
  .quick-book-section label,
  .quick-book-section .qb-field span { font-size: 13px; }
}

/* MOBILE-FIX-005: AGB-Tabellen lesbar (MID-14) */
@media (max-width: 768px) {
  .legal-page table td,
  .legal-page table th { font-size: 14px; }
}

/* MOBILE-FIX-006: Cookie-Banner kompakter auf Mobile (MID-13)
   Banner hat ID #cookieConsent + Inline-Styles aus js/cookie-consent.js,
   daher !important nötig. */
@media (max-width: 768px) {
  #cookieConsent,
  .cookie-banner,
  .cc-window,
  [class*="cookie"][class*="banner"] {
    max-height: 130px !important;
    padding: 10px 14px !important;
    overflow-y: auto !important;
  }
  #cookieConsent p,
  .cookie-banner p,
  .cc-window p { font-size: 12px !important; line-height: 1.4 !important; margin: 0 0 4px !important; }
  #cookieConsent button,
  .cookie-banner button { padding: 8px 12px !important; font-size: 0.72rem !important; min-height: 40px !important; }
}

/* ==========================================
   MOBILE HERO STACK (≤768px)
   Video oben → Text-Box → Booking-Widget
   ========================================== */

/* Desktop: Mobile-Block ausblenden */
.hero-mobile-below { display: none; }

@media (max-width: 768px) {
  /* Hero: Bildschirmhöhe auf Mobile */
  .hero-section {
    height: 100svh; /* svh = safe viewport height, kein Browser-Chrome-Überlapp */
    min-height: 500px;
    max-height: none;
  }
  /* Desktop-Elemente im Hero verstecken */
  .hero-content,
  .quick-book-overlay { display: none !important; }

  /* Mobile-Block einblenden — gleiche Farbe wie Desktop-Box */
  .hero-mobile-below {
    display: block;
    background: rgba(8, 8, 8, 0.78);
  }

  /* Text-Box */
  .hero-mobile-textbox {
    padding: 24px 20px 20px;
  }
  .hero-mobile-textbox .hero-title {
    margin-bottom: 12px;
  }
  .hero-mobile-textbox .hero-line {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    opacity: 1;
    transform: none;
    animation: none;
    color: var(--white); /* weiß wie Desktop */
  }
  .hero-mobile-textbox .hero-line-italic {
    font-size: clamp(2rem, 8vw, 2.7rem);
    color: var(--gold-light); /* gold wie Desktop */
  }
  .hero-mobile-textbox .hero-subtitle {
    display: block;
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.88);
    margin-top: 10px;
    opacity: 1;
    transform: none;
    animation: none;
    padding: 0;
    font-family: var(--font-accent);
    font-style: italic;
  }
}

/* ==========================================================================
   WP-Embed-Fix (2026-06-11): Divi/Theme-CSS setzt display:block auf section
   u.a. und uebersteuert damit den Browser-Default [hidden]{display:none}.
   Folge: ALLE Buchungs-Steps waren gleichzeitig sichtbar, showStep() wirkte
   "tot" (Klick auf Suite -> scheinbar passiert nichts). Hier hart erzwingen.
   ========================================================================== */
.rdt-residencia-embed [hidden] { display: none !important; }
