/* ==========================================================================
   FunnelExpert — Vacation Rental Template Styles
   Extracted from LovelyAp Monolith
   ========================================================================== */

/* ==========================================================================
   Variables
   ========================================================================== */

:root {
  /* --dark, --gold, --cream are set inline by head.php from tenant config.
     Only define supplementary variables here. Do NOT override tenant colors. */
  --dark-lighter: #252545;
  --gold-light: #D0BF81;
  --gold-dim: #b89d5e;
  --brand-blue: #0099CC;
  --white: #FFFFFF;
  --text: #2a2a2a;
  --text-light: #555;
  --wa-green: #DCF8C6;
  --wa-dark: #075E54;
  --wa-blue: #4FC3F7;
  --shadow: 0 2px 20px rgba(10, 57, 78, 0.08);
  --shadow-lg: 0 8px 40px rgba(10, 57, 78, 0.12);
}

/* Reset + html: inherited from base.css */

body {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: 'Overlock', serif;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.3rem;
  line-height: 1.4;
}

p {
  margin-bottom: 1.1rem;
}

.gold { color: var(--accent); }
.white { color: var(--white); }

/* .container: inherited from base.css */

.section {
  padding: 60px 0;
  scroll-margin-top: 80px;
}

/* ==========================================================================
   Components — Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 18px 44px;
  font-family: 'Overlock', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.btn-gold {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-gold:hover {
  background: var(--accent-dim);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(224, 193, 129, .45);
}

.btn-subtle {
  background: rgba(224, 193, 129, .15);
  color: var(--accent);
  border: 2px solid var(--accent);
  backdrop-filter: blur(4px);
}

.btn-subtle:hover {
  background: var(--accent);
  color: var(--bg-primary);
}

.btn-cta {
  background: var(--accent);
  color: var(--bg-primary);
  font-size: 1.1rem;
  padding: 18px 44px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(224, 193, 129, .3);
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(224, 193, 129, .5);
  background: var(--accent-dim);
}

/* ==========================================================================
   Components — Navigation
   ========================================================================== */

/* Navigation — shared across all pages */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  transition: all .3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(10, 57, 78, .2);
  padding: 6px 0;
}
.nav.scrolled .nav-links a { font-size: .875rem; }
.nav.scrolled .lang-btn { padding: 2px; }
.nav.scrolled .nav-cta { padding: 8px 18px !important; font-size: .875rem !important; }

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-logo {
  font-family: 'Overlock', serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo img { height: 48px; width: auto; border-radius: 3px; object-fit: contain; }
.nav.scrolled .nav-logo img { height: 38px; }
.nav-logo-text { font-size: 1.1rem; }

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

.nav-links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(10, 57, 78, .98);
  flex-direction: column;
  padding: 16px 24px;
  gap: 12px;
  list-style: none;
  align-items: center;
  max-height: 85vh;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav-links.open { display: flex; }

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .85;
  transition: all .3s;
  white-space: nowrap;
}

.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-links li { position: relative; }

.nav-dropdown {
  display: none;
  position: static;
  transform: none;
  background: rgba(255, 255, 255, .05);
  border-radius: 6px;
  margin: 4px 0 0;
  padding: 8px 0;
  box-shadow: none;
  min-width: 180px;
  z-index: 100;
}

.nav-dropdown::before { display: none; }
.nav-links li.open > .nav-dropdown { display: block; }

.nav-dropdown a {
  display: block;
  padding: 8px 24px;
  font-size: .875rem !important;
  letter-spacing: .3px !important;
  opacity: .75;
}

.nav-dropdown a:hover { opacity: 1; background: rgba(224, 193, 129, .08); }

.nav-cta {
  padding: 10px 24px !important;
  font-size: .875rem !important;
  opacity: 1 !important;
  background: var(--accent);
  color: var(--bg-primary) !important;
  border-radius: var(--radius-md, 8px);
  margin-left: 32px;
}

.nav-cta:hover { filter: brightness(1.1); transform: translateY(-1px); }

.lang-switcher {
  display: none;
  gap: 6px;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  padding: 4px;
  opacity: .5;
  transition: all .25s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 44px;
  min-height: 44px;
  overflow: hidden;
}

.lang-btn:hover { opacity: .8; border-color: rgba(224, 193, 129, .3); }
.lang-btn.active { opacity: 1; border-color: rgba(224, 193, 129, .5); }
.lang-btn svg { width: 22px; height: 22px; border-radius: 50%; display: block; object-fit: cover; }
.nav-links .lang-switcher-mobile {
  display: flex;
  gap: 6px;
  padding: 8px 0;
  justify-content: center;
  border-top: 1px solid rgba(224, 193, 129, .15);
  margin-top: 8px;
  padding-top: 16px;
}

.nav-toggle {
  display: block;
  background: var(--bg-primary);
  border: none;
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--accent);
  margin: 6px 0;
  transition: all .3s;
}

/* Nav: semi-transparent over hero, solid on scroll */
.nav { background: rgba(10, 57, 78, .65); backdrop-filter: blur(8px); }
.nav.scrolled { background: rgba(10, 57, 78, .97); backdrop-filter: blur(12px); }

/* ==========================================================================
   Section — Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: #000 center/cover no-repeat;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: opacity, transform;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
  overflow: hidden;
}

.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide.fast-cut { transition: opacity .4s ease-in; }

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 57, 78, .5) 0%, rgba(10, 57, 78, .75) 100%);
  z-index: 1;
}

.hero-slide img,
.hero-slide video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 24px;
  will-change: transform, opacity;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(224, 193, 129, .5);
  border-radius: 30px;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 28px;
  background: rgba(10, 57, 78, .6);
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: var(--accent);
  font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .5), 0 4px 20px rgba(10, 57, 78, .4);
}

.hero-sub {
  font-size: .95rem;
  font-weight: 400;
  opacity: 1;
  margin-bottom: 24px;
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .4);
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 12px;
}

.hero-cta-wrap .btn { width: 100%; text-align: center; padding: 16px 24px; font-size: 1rem; }

.hero-price-hint {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 22px;
  background: rgba(224, 193, 129, .1);
  border: 1px solid rgba(224, 193, 129, .3);
  border-radius: 30px;
  font-size: .95rem;
  color: rgba(255, 255, 255, .85);
  font-family: 'Overlock', serif;
  letter-spacing: .3px;
  min-height: 40px;
  min-width: 200px;
  opacity: 0;
  transition: opacity .5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-price-hint.loaded { opacity: 1; }
.hero-price-hint strong { color: var(--accent); font-size: 1.1rem; font-weight: 900; }

.hero-ratings {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 57, 78, .55);
  backdrop-filter: blur(10px);
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(224, 193, 129, .25);
  width: 100%;
  max-width: 300px;
  justify-content: center;
}

.hero-rating-score {
  font-family: 'Overlock', serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--accent);
}

.hero-rating-label {
  font-size: .875rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.3;
}

.hero-rating-label strong { color: var(--white); font-weight: 600; }

/* ==========================================================================
   Section — Trust Bar
   ========================================================================== */

.trust-bar {
  background: rgba(10, 57, 78, .85);
  border-top: 1px solid rgba(224, 193, 129, .15);
  padding: 22px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: .95rem;
  color: rgba(255, 255, 255, .85);
}

.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-item .score { color: var(--accent); font-weight: 700; font-size: 1.25rem; }
.score-max { font-size: .7em; font-weight: 500; opacity: .65; }

/* ==========================================================================
   Section — About / Welcome
   ========================================================================== */

.welcome { background: var(--text-primary); }

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}

.welcome-text h2 { color: var(--bg-primary); }

.welcome-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin-top: 14px;
}

.welcome-text p { color: var(--text-light); font-size: 1.1rem; }

.welcome-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.welcome-image img,
.welcome-image video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform .8s cubic-bezier(.25, .46, .45, .94);
}

.welcome-morph { position: relative; height: 300px; overflow: hidden; }

.welcome-morph .welcome-vid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.welcome-morph .welcome-vid.active { opacity: 1; }

.icon-boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

.icon-box {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.icon-box:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.icon-box-icon { font-size: 2.6rem; margin-bottom: 16px; }
.icon-box h3 { color: var(--bg-primary); margin-bottom: 10px; font-size: 1.1rem; }
.icon-box p { color: var(--text-light); font-size: 1rem; margin: 0; }


/* ==========================================================================
   Section — Host (Dark Accent Block)
   ========================================================================== */

.host-section {
  background: linear-gradient(168deg, #0C4058 0%, var(--bg-primary) 50%, #072D3E 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.host-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(224, 193, 129, .05) 0%, transparent 70%);
  pointer-events: none;
}

.host-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 32px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(224, 193, 129, .12);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  text-align: center;
}

.host-avatar {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(224, 193, 129, .2), 0 0 0 3px rgba(224, 193, 129, .2);
  border: 3px solid var(--accent);
  flex-shrink: 0;
}

.host-avatar img { width: 100%; height: 100%; object-fit: cover; }

.host-name {
  font-family: 'Overlock', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.badge-icon { font-size: 1.1rem; }

.host-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 24px;
  justify-content: center;
}

.host-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: rgba(224, 193, 129, .08);
  border: 1px solid rgba(224, 193, 129, .15);
  border-radius: 20px;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

.host-bio {
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

.host-bio + .host-bio {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(224, 193, 129, .1);
}

.host-quote {
  margin: 24px auto 0;
  max-width: 500px;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: rgba(224, 193, 129, .06);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: rgba(224, 193, 129, .9);
  font-size: .95rem;
  line-height: 1.65;
}


/* ==========================================================================
   Section — Gallery
   ========================================================================== */

.gallery { background: var(--text-primary); }
.gallery h2 { text-align: center; color: var(--bg-primary); margin-bottom: 44px; }
.gallery h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 14px auto 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 220px;
  gap: 10px;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-item { overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.25, .46, .45, .94); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:first-child { grid-column: span 1; }
.gallery-item video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s cubic-bezier(.25, .46, .45, .94); }
.gallery-item:hover video { transform: scale(1.08); }

.gallery-item .video-play-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.gallery-item .video-play-hint span {
  background: rgba(10, 57, 78, .45);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  transition: opacity .3s;
}

.gallery-item:hover .video-play-hint span { opacity: 0; }

/* Gallery watermark overlay (Free tier) */
.gallery-watermark-fe { position: relative; }
.gallery-watermark-fe::after {
  content: 'FunnelExpert';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(10, 57, 78, 0.12);
  letter-spacing: 4px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 2;
  white-space: nowrap;
}


/* ==========================================================================
   Section — Virtual Tour (Dark)
   ========================================================================== */

.virtual-tour {
  background: linear-gradient(168deg, #0C4058 0%, var(--bg-primary) 50%, #072D3E 100%);
  position: relative;
  overflow: hidden;
}

.virtual-tour::before {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 193, 129, .05) 0%, transparent 70%);
  pointer-events: none;
}

.virtual-tour h2 { text-align: center; color: #fff; margin-bottom: 14px; }
.virtual-tour h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 14px auto 0; }
.virtual-tour-sub { text-align: center; color: rgba(255, 255, 255, .7); font-size: 1.1rem; margin-bottom: 44px; }

.matterport-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10, 57, 78, .4);
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border: 1px solid rgba(224, 193, 129, .12);
}

.matterport-container iframe { width: 100%; height: 100%; border: none; }

/* ==========================================================================
   Section — Tour (Matterport 3D)
   ========================================================================== */

.tour-section {
  background: linear-gradient(168deg, #0C4058 0%, var(--bg-primary) 50%, #072D3E 100%);
  color: var(--white);
  padding: 80px 24px;
}
.tour-section .section-title {
  text-align: center;
  color: var(--accent);
  margin-bottom: 10px;
  font-size: 2rem;
  letter-spacing: 2px;
}
.tour-section .section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
}
.tour-section .section-sub {
  text-align: center;
  color: rgba(255, 255, 255, .7);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.tour-section .section-empty {
  text-align: center;
  color: rgba(255, 255, 255, .5);
}
.tour-container {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  border: 1px solid rgba(224, 193, 129, .12);
}
.consent-overlay {
  border-radius: var(--radius-lg, 12px);
}
.btn-primary {
  background: var(--accent, var(--bg-primary));
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-md, 8px);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: filter .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary:hover { filter: brightness(1.15); }

/* Shared section-title fallback */
.section-title { text-align: center; }
.section-sub { text-align: center; }

/* ==========================================================================
   Section — Amenities
   ========================================================================== */

.amenities {
  background: var(--white);
  padding: 60px 24px;
}
.amenities h2 { text-align: center; color: var(--bg-primary); margin-bottom: 36px; }
.amenities h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 14px auto 0; }

.amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.amenity-col h3 {
  color: var(--bg-primary);
  font-size: 1.15rem;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.amenity-list { list-style: none; }

.amenity-list li {
  padding: 7px 0 7px 32px;
  position: relative;
  font-size: 1rem;
  color: var(--bg-primary);
  border-bottom: 1px solid rgba(10, 57, 78, .06);
}

.amenity-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success, #2D7A5E);
  font-weight: 700;
  font-size: 1.2rem;
}


/* ==========================================================================
   Section — Reviews / Testimonials
   ========================================================================== */

.testimonials {
  background: var(--text-primary);
  color: var(--text-primary);
  overflow: hidden;
}

.testimonials h2 { text-align: center; color: var(--bg-primary); margin-bottom: 10px; }
.testimonials h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 14px auto 0; }
.testimonials-sub { text-align: center; color: var(--text-light); font-size: 1.05rem; margin-bottom: 54px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.testimonial-card.hidden-review { display: none; }

.btn-load-more {
  display: block;
  margin: 36px auto 0;
  padding: 14px 40px;
  font-family: 'Overlock', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--bg-primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 16px rgba(10, 57, 78, .2);
}

.btn-load-more:hover {
  filter: brightness(1.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(224, 193, 129, .4);
}

.btn-load-more.hidden { display: none; }
.testimonial-card {
  padding: 6px 0;
  display: flex;
  flex-direction: column;
}
.testimonial-bubble {
  flex: 1;
}

/* Review card — redesigned header with flag, city, stars */
.testimonial-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
.testimonial-avatar-row { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar-row strong { font-size: .95rem; color: var(--bg-primary); }
.testimonial-city { display: block; font-size: .875rem; color: var(--text-light); font-weight: 400; }
.testimonial-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: .875rem; flex-shrink: 0; }
.testimonial-rating { flex-shrink: 0; }
.testimonial-stars { color: var(--color-star); font-size: 1rem; letter-spacing: 1px; }
.testimonial-text { font-size: .95rem; line-height: 1.65; color: var(--text-primary); margin-bottom: 10px; }
.testimonial-footer { display: flex; align-items: center; gap: 8px; font-size: .875rem; color: var(--text-light); }
.testimonial-platform { font-weight: 500; }
.testimonial-date { font-size: .875rem; }

.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.testimonial-flag { font-size: 1.3rem; }
.testimonial-country { font-weight: 400; color: var(--text-light); font-size: .875rem; }

.testimonial-bubble {
  background: var(--wa-green);
  border-radius: 14px 14px 14px 0;
  padding: 16px 20px;
  position: relative;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  box-shadow: 0 2px 6px rgba(10, 57, 78, .1);
  max-width: 100%;
  word-wrap: break-word;
}

.testimonial-bubble::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -8px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent var(--wa-green) transparent;
}

.testimonial-bubble q { quotes: none; font-style: italic; }
.testimonial-check { color: var(--wa-blue); font-size: .875rem; float: right; margin-left: 6px; margin-top: 4px; }
.testimonial-meta { color: var(--text-light); font-size: .875rem; margin-top: 10px; display: flex; align-items: center; gap: 8px; }
.testimonial-stars { color: var(--color-star); letter-spacing: 2px; }

.booking-badge {
  text-align: center;
  margin-top: 54px;
  padding: 36px 28px;
  background: linear-gradient(168deg, #0C4058 0%, var(--bg-primary) 50%, #072D3E 100%);
  border: 1px solid rgba(224, 193, 129, .12);
  border-radius: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  background: var(--white);
}

.badge-scores { display: flex; justify-content: center; gap: 40px; margin-bottom: 18px; flex-wrap: wrap; }
.badge-platform { text-align: center; }
.badge-platform .badge-score { font-family: 'Overlock', serif; font-size: 2.6rem; font-weight: 900; color: var(--accent); }
.badge-platform .badge-source { font-size: .95rem; color: rgba(255, 255, 255, .7); margin-top: 4px; }
.badge-platform .score-max { font-size: .55em; font-weight: 600; opacity: .5; color: rgba(255, 255, 255, .5); }
.booking-badge .badge-detail { font-size: .95rem; color: rgba(255, 255, 255, .6); margin-bottom: 0; }


/* ==========================================================================
   Section — Location (Dark)
   ========================================================================== */

.location {
  background: linear-gradient(168deg, #0C4058 0%, var(--bg-primary) 50%, #072D3E 100%);
  color: var(--white);
}

.location h2 { text-align: center; color: var(--accent); margin-bottom: 44px; }
.location h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 14px auto 0; }

.map-container {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(10, 57, 78, .3);
  height: 340px;
  margin-bottom: 50px;
}

.map-container iframe { width: 100%; height: 100%; border: none; }

.location-cards { display: grid; grid-template-columns: 1fr; gap: 24px; }

.location-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(224, 193, 129, .15);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all .4s cubic-bezier(.25, .46, .45, .94);
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 193, 129, .35);
  box-shadow: 0 8px 24px rgba(10, 57, 78, .2);
}

.location-card-icon { font-size: 1.8rem; margin-bottom: 12px; }

.location-card h3 {
  font-family: 'Overlock', serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(224, 193, 129, .3);
}

.distance-list { list-style: none; }

.distance-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  font-size: .95rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .8);
}

.distance-list li:last-child { border-bottom: none; }
.dist { color: rgba(255, 255, 255, .5); font-weight: 500; white-space: nowrap; font-size: .9rem; }
.distance-list a { color: rgba(255, 255, 255, .85); text-decoration: none; transition: color .2s; }
.distance-list a:hover { color: var(--accent); }
.distance-list a::after { content: ' \2197'; font-size: .875rem; opacity: .4; }


/* Luggage storage grid */
.luggage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }

/* Luggage storage boxes */
.luggage-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(224, 193, 129, .15);
  border-radius: 10px;
  padding: 20px 16px;
  text-decoration: none;
  color: rgba(255, 255, 255, .85);
  transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
  gap: 6px;
}

.luggage-box:hover {
  border-color: rgba(224, 193, 129, .4);
  background: rgba(255, 255, 255, .1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10, 57, 78, .2);
}

.luggage-box a { text-decoration: none; }
.luggage-box strong { color: #fff; font-size: .95rem; }
.luggage-dist { font-size: .875rem; color: var(--accent); font-weight: 600; }

.luggage-tag {
  display: inline-block;
  background: rgba(224, 193, 129, .15);
  color: var(--accent);
  font-size: .875rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.luggage-detail { font-size: .875rem; color: rgba(255, 255, 255, .5); line-height: 1.3; }
.luggage-price { font-size: .875rem; color: rgba(255, 255, 255, .7); font-weight: 600; margin-top: 2px; }

.luggage-links { display: flex; gap: 10px; margin-top: 6px; justify-content: center; }

.luggage-links a {
  font-size: .875rem;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 14px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(224, 193, 129, .3);
  border-radius: 16px;
  transition: all .2s;
  white-space: nowrap;
}

.luggage-links a:hover { background: rgba(224, 193, 129, .15); border-color: var(--accent); }

/* Location consent gate + info */
.consent-gate {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 57, 78, .85);
  border-radius: 14px;
  height: 100%;
  min-height: 340px;
}
.consent-gate-inner {
  text-align: center;
  padding: 30px;
  max-width: 400px;
}
.consent-gate-inner p {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 16px;
  font-size: .95rem;
  line-height: 1.5;
}
.location-info {
  text-align: center;
  margin-top: 24px;
  padding: 16px;
}
.location-address {
  font-size: .95rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}
.location-note {
  text-align: center;
  font-size: .95rem;
  color: rgba(255, 255, 255, .7);
  margin-top: 24px;
}


/* ==========================================================================
   Section — CTA Banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(168deg, #0C4058 0%, var(--bg-primary) 50%, #072D3E 100%);
  padding: 28px 20px;
  text-align: center;
}

.cta-banner-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner-text { font-family: 'Overlock', serif; font-size: 1.1rem; line-height: 1.4; }
.cta-banner-gold { color: var(--accent); font-weight: 700; }
.cta-banner-white { color: rgba(255, 255, 255, .85); font-weight: 400; }

.cta-banner-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: 'Overlock', serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(224, 193, 129, .35);
  width: 100%;
  text-align: center;
}

.cta-banner-btn:hover {
  background: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 193, 129, .5);
}

/* ==========================================================================
   Section — Blog Preview
   ========================================================================== */

.blog-preview { background: var(--white); }
.blog-preview h2 { text-align: center; color: var(--bg-primary); margin-bottom: 14px; }
.blog-preview h2::after { content: ''; display: block; width: 60px; height: 3px; background: var(--accent); margin: 14px auto 0; }
.blog-preview-sub { text-align: center; color: var(--text-light); font-size: 1.1rem; margin-bottom: 54px; }

.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin: 0 auto; }

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--text-primary);
  box-shadow: var(--shadow);
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
  cursor: pointer;
  text-decoration: none;
  color: var(--text-primary);
}

.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; display: block; transition: transform .6s; }
.blog-card:hover img { transform: scale(1.06); }
.blog-card-body { padding: 24px 28px; }

.blog-card-cat {
  display: inline-block;
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-dim);
  margin-bottom: 10px;
}

.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; text-transform: none; letter-spacing: 0; color: var(--bg-primary); }
.blog-card p { font-size: .95rem; color: var(--text-light); margin: 0; line-height: 1.6; }
.blog-cta { text-align: center; margin-top: 44px; }

.blog-cat-link {
  padding: 8px 20px;
  border: none;
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--surface, #F0F4F5);
  color: var(--bg-primary);
  text-decoration: none;
  transition: all .3s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.blog-cat-link:hover {
  background: var(--accent, #E0C181);
  color: var(--bg-primary);
}
.blog-cat-link.active {
  background: var(--bg-primary);
  color: var(--white);
}


/* Blog Feed & Pagination */
.blog-feed { display: flex; flex-direction: column; gap: 32px; }
.blog-card-meta { display: block; font-size: .875rem; color: var(--text-light); margin-top: 10px; opacity: .7; }

.blog-load-more { text-align: center; margin-top: 40px; }
.blog-section .btn-load-more {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px; border: none; border-radius: 8px;
  background: var(--bg-primary); color: var(--white); font-size: .95rem; font-weight: 600;
  cursor: pointer; transition: all .3s cubic-bezier(0.22, 1, 0.36, 1); text-transform: uppercase; letter-spacing: .5px;
}
.blog-section .btn-load-more:hover { filter: brightness(1.15); }
.load-more-pages {
  font-size: .875rem; font-weight: 400; opacity: .6; text-transform: none; letter-spacing: 0;
}

/* Störer (Interrupter Banners) */
.blog-stoerer {
  border-radius: 16px; padding: 28px 20px; position: relative; overflow: hidden;
}
.blog-stoerer--gradient {
  background: linear-gradient(135deg, var(--bg-primary) 0%, #0C4862 100%);
  color: var(--cream, var(--text-primary));
}
.blog-stoerer--dark {
  background: linear-gradient(168deg, #0C4058 0%, var(--bg-primary) 50%, #072D3E 100%);
  color: var(--cream, var(--text-primary));
}
.blog-stoerer--light {
  background: var(--cream, var(--text-primary)); border: 1px solid var(--border, #D3DDE1);
  color: var(--dark, #0A394E);
}
.stoerer-content {
  display: flex; flex-direction: column; text-align: center; align-items: center; gap: 16px; max-width: 900px; margin: 0 auto;
}
.stoerer-icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
}
.blog-stoerer--light .stoerer-icon { background: rgba(10,57,78,.08); }
.stoerer-text { flex: 1; }
.stoerer-text h3 { font-size: 1.25rem; font-weight: 700; margin: 0 0 6px; }
.stoerer-text p { font-size: .92rem; margin: 0; opacity: .85; line-height: 1.5; }
.stoerer-btn {
  flex-shrink: 0; display: inline-flex; align-items: center; padding: 12px 28px;
  border-radius: 8px; font-weight: 600; font-size: .9rem; text-decoration: none;
  border: none; cursor: pointer; transition: all .3s; white-space: nowrap;
}
.blog-stoerer--gradient .stoerer-btn,
.blog-stoerer--dark .stoerer-btn {
  background: linear-gradient(to bottom right, #ea580c, #c2410c);
  color: #fff; box-shadow: 0 4px 8px rgba(234,88,12,.4);
}
.blog-stoerer--gradient .stoerer-btn:hover,
.blog-stoerer--dark .stoerer-btn:hover {
  background: linear-gradient(to bottom right, #c2410c, #9a3412);
}
.blog-stoerer--light .stoerer-btn {
  background: var(--bg-primary); color: #fff;
}
.blog-stoerer--light .stoerer-btn:hover { background: #0C4862; }

/* Störer Newsletter Form */
.stoerer-newsletter {
  flex-shrink: 0; display: flex; flex-direction: column; gap: 8px; width: 100%;
}
.stoerer-email {
  padding: 12px 16px; border-radius: 8px; border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1); color: inherit; font-size: .9rem; width: 100%;
}
.stoerer-email::placeholder { color: rgba(255,255,255,.5); }
.blog-stoerer--light .stoerer-email {
  border-color: var(--border, #D3DDE1); background: #fff; color: var(--bg-primary);
}
.blog-stoerer--light .stoerer-email::placeholder { color: var(--text-placeholder, #8A9DA5); }


/* ==========================================================================
   Section — Booking (v6 — 2-Step, Full Width, Light Cards)
   Step 1: Calendar always visible. Step 2: Form slides down.
   ========================================================================== */

.booking {
  background: linear-gradient(168deg, #0C4058 0%, var(--bg-primary) 50%, #072D3E 100%);
  color: var(--white);
  padding: 80px 0;
}

.booking-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.booking h2 {
  text-align: center;
  color: var(--accent);
  font-size: 1.8rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.booking h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 14px auto 0;
}
.booking-sub {
  text-align: center;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 32px;
  font-size: 1.05rem;
}
.booking-season-msg {
  text-align: center;
  font-size: .95rem;
  color: var(--accent);
  margin-bottom: 24px;
  opacity: .8;
}

/* --- Light card shared style --- */
.booking-card-light {
  background: #FAFBFC;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(10, 57, 78, .12);
}

/* --- Calendar on LIGHT card: override all dark-bg colors --- */
.booking-card-light .cal-month-title { color: var(--bg-primary); }
/* Blocked = light gray, clearly different from available */
.booking-card-light .cal-day { color: rgba(10, 57, 78, .25); }
.booking-card-light .cal-day.avail {
  background: rgba(224, 193, 129, .08);
  color: var(--bg-primary);
  font-weight: 600;
  border: 1.5px solid rgba(224, 193, 129, .35);
}
.booking-card-light .cal-day.avail:hover {
  background: rgba(224, 193, 129, .18);
  border-color: var(--accent);
  transform: scale(1.04);
}
.booking-card-light .cal-day.past { color: rgba(10, 57, 78, .12); }
.booking-card-light .cal-day.today {
  box-shadow: inset 0 0 0 2px var(--bg-primary);
  color: var(--bg-primary);
  font-weight: 700;
}
.booking-card-light .cal-day.blocked {
  color: rgba(10, 57, 78, .2);
  background: rgba(10, 57, 78, .02);
  text-decoration: line-through;
  text-decoration-color: rgba(10, 57, 78, .15);
}
/* Selected start/end: strong dark fill with clear contrast */
.booking-card-light .cal-day.selected-start,
.booking-card-light .cal-day.selected-end {
  background: var(--bg-primary);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(10, 57, 78, .3);
  transform: scale(1.05);
  border-color: var(--bg-primary);
  z-index: 2;
}
.booking-card-light .cal-day.selected-start .cal-price,
.booking-card-light .cal-day.selected-end .cal-price { color: rgba(255, 255, 255, .8); }
.booking-card-light .cal-day.selected-start .cal-gap-label,
.booking-card-light .cal-day.selected-end .cal-gap-label { color: rgba(255, 255, 255, .7); }

/* In-range: light warm tint, clearly different from selected */
.booking-card-light .cal-day.in-range {
  background: rgba(224, 193, 129, .15);
  color: var(--bg-primary);
  font-weight: 600;
  border-radius: 0;
  border-color: rgba(224, 193, 129, .2);
}
/* Checkout on blocked day — dashed border like kato */
.booking-card-light .cal-day.blocked.checkout-allowed {
  color: var(--bg-primary);
  opacity: .75;
  cursor: pointer;
  text-decoration: none;
  background: rgba(45, 122, 94, .06);
  border: 1.5px dashed rgba(45, 122, 94, .4);
}
.booking-card-light .cal-day.blocked.checkout-allowed:hover {
  background: rgba(45, 122, 94, .12);
  border-color: var(--success, #2D7A5E);
  opacity: 1;
}
.booking-card-light .cal-day .cal-price { color: var(--text-light, #555); }
.booking-card-light .cal-day.avail .cal-price { color: var(--bg-primary); opacity: .6; }
.booking-card-light .cal-day-head { color: var(--bg-primary); opacity: .6; font-size: .875rem; }
.booking-card-light .cal-nav { background: var(--bg-primary); color: var(--white); box-shadow: 0 2px 8px rgba(10, 57, 78, .15); }
.booking-card-light .cal-nav:hover { filter: brightness(1.15); }
.booking-card-light .cal-legend {
  background: var(--surface-alt, #F0F4F5);
  border-color: var(--border, #D3DDE1);
  padding: 12px 20px;
  gap: 10px 20px;
}
.booking-card-light .cal-legend-item { color: var(--bg-primary); font-weight: 600; }
.booking-card-light .cal-legend-dot.booked { background: rgba(10, 57, 78, .1); border-color: rgba(10, 57, 78, .2); }
.booking-card-light .cal-sel-label { color: var(--text-light, #555); }
.booking-card-light .cal-sel-date { color: var(--bg-primary); }
.booking-card-light .cal-sel-arrow { color: rgba(10, 57, 78, .25); }
.booking-card-light .cal-sel-nights,
.booking-card-light .cal-nights { color: var(--text-light, #555); }
.booking-card-light .cal-hint {
  text-align: center;
  color: var(--accent, #5C7A7A);
  font-size: 1rem;
  font-weight: 600;
  margin: 16px 0 8px;
  letter-spacing: .5px;
}
.booking-card-light .cal-status { color: var(--bg-primary); }
.booking-card-light .cal-selection {
  color: var(--bg-primary);
  font-weight: 500;
  font-size: 1.05rem;
}
.booking-card-light .cal-total {
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 1.2rem;
  background: var(--surface-alt, #F0F4F5);
  border-radius: var(--radius-md, 8px);
  padding: 12px 16px;
  margin-top: 12px;
}
.booking-card-light .cal-total-amount { font-size: 1.4rem; font-weight: 700; }
.booking-card-light .cal-total-detail {
  display: block;
  color: var(--text-light, #555);
  font-size: 1rem;
  font-weight: 400;
  margin-top: 4px;
}
.booking-card-light .cal-title { color: var(--bg-primary); }
.booking-card-light .cal-clear-btn { background: var(--bg-primary); color: var(--white); }
.booking-card-light .cal-loading { color: rgba(10, 57, 78, .3); }
.booking-card-light .cal-checkin-hint { color: var(--bg-primary); }
.booking-card-light .cal-gap-label { color: var(--success, #2D7A5E); font-size: .85rem; font-weight: 700; margin-top: 2px; }
.booking-card-light .cal-day.gap-avail {
  border: 1.5px solid rgba(45, 122, 94, .3);
  background: rgba(45, 122, 94, .05);
}
.booking-card-light .cal-day.gap-night { border-color: rgba(10, 57, 78, .2); }
.booking-card-light .cal-day.selected-start .cal-price,
.booking-card-light .cal-day.selected-end .cal-price { color: rgba(255, 255, 255, .85); }
/* Month header "April 2026 / May 2026" */
.booking-card-light #cal-months,
.booking-card-light .cal-month-head { color: var(--bg-primary); }
.booking-card-light #cal-checkin-display,
.booking-card-light #cal-checkout-display,
.booking-card-light #cal-nights-display { color: var(--bg-primary); }
/* Legend dots on light card */
.booking-card-light .cal-dot-available,
.booking-card-light .cal-dot-avail { background: var(--bg-primary); }
.booking-card-light .cal-dot-booked { background: rgba(10, 57, 78, .2); }
.booking-card-light .cal-dot-today { background: none; border: 2px solid var(--bg-primary); }
.booking-card-light .cal-dot-best,
.booking-card-light .cal-dot-value { background: var(--success, #2D7A5E); }
.booking-card-light .cal-dot-peak { background: #ea580c; }
.booking-card-light .cal-dot-checkout { background: none; border: 2px dashed rgba(45, 122, 94, .5); }

/* Also define base-level dots (dark theme fallback) */
.cal-dot-best { background: var(--success, #2D7A5E); }
.cal-dot-checkout { border: 2px dashed rgba(255, 255, 255, .3); background: none; }
.booking-card-light .cal-day.price-tier-low { border-color: rgba(45, 122, 94, .2); background: rgba(45, 122, 94, .06); }
.booking-card-light .cal-day.price-tier-low .cal-price { color: var(--success, #2D7A5E); }
.booking-card-light .cal-day.price-tier-high { border-color: rgba(234, 88, 12, .2); background: rgba(234, 88, 12, .05); }
.booking-card-light .cal-day.price-tier-high .cal-price { color: #ea580c; }

/* Toggle on light card */
.booking-card-light .toggle-label { background: var(--surface-alt, #F0F4F5); border-color: var(--border, #D3DDE1); }
.booking-card-light .toggle-label:hover { border-color: var(--bg-primary); }
.booking-card-light .toggle-switch { background: var(--border, #D3DDE1); }
.booking-card-light .toggle-text span:first-child { color: var(--bg-primary); }
.booking-card-light .toggle-hint { color: var(--text-light, #555); }
.booking-card-light .toggle-detail { background: var(--surface-alt, #F0F4F5); border-color: var(--border, #D3DDE1); }
.booking-card-light .toggle-note { color: var(--text-light, #555); }

/* All inputs/labels on light card */
.booking-card-light input,
.booking-card-light textarea,
.booking-card-light select {
  background: var(--white);
  color: var(--bg-primary);
  border: 1.5px solid var(--border, #D3DDE1);
  border-radius: var(--radius-md, 8px);
  padding: 14px 16px;
  font-size: 1rem;
  width: 100%;
}
.booking-card-light input:focus,
.booking-card-light textarea:focus,
.booking-card-light select:focus {
  outline: none;
  border-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(10, 57, 78, .1);
}
.booking-card-light input::placeholder,
.booking-card-light textarea::placeholder {
  color: var(--text-placeholder, #8A9DA5);
}
.booking-card-light label {
  font-size: .875rem;
  color: var(--bg-primary);
  font-weight: 600;
}
.booking-card-light .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

/* Price summary on light card */
.booking-card-light .form-price-summary { background: var(--surface-alt, #F0F4F5); border-color: var(--border, #D3DDE1); }
.booking-card-light .price-line { color: var(--bg-primary); }
.booking-card-light .price-line-detail { color: var(--text-light, #555); }
.booking-card-light .price-total { border-color: var(--border, #D3DDE1); color: var(--bg-primary); }

/* Platforms row on light card */
.booking-card-light .platforms-label { color: var(--text-light, #555); }

/* --- Step 1: Calendar card --- */
.booking-step-calendar { margin-bottom: 24px; }

/* --- Step 2: Form card (slide-down) --- */
.booking-step-form { margin-top: 24px; }
.booking-step-form[hidden] { display: none; }

/* --- Form header with badge + close --- */
.booking-form-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.booking-form-header h3 {
  color: var(--bg-primary);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 8px 0 0;
}
.booking-form-badge {
  display: inline-block;
  background: var(--bg-primary);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.booking-form-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light, #555);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  border-radius: var(--radius-md, 8px);
  transition: background .2s cubic-bezier(0.22, 1, 0.36, 1);
}
.booking-form-close:hover { background: var(--surface-alt, #F0F4F5); }

/* Dates display bar */
.booking-dates-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: var(--surface-alt, #F0F4F5);
  border-radius: var(--radius-md, 8px);
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--bg-primary);
  font-weight: 500;
}
.btn-change-dates {
  background: none;
  border: none;
  color: var(--accent, #5C7A7A);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.booking-warning {
  padding: 10px 14px;
  background: var(--error-bg, #FDF0F0);
  color: var(--error, #B83B3B);
  border-radius: var(--radius-sm, 5px);
  font-size: 14px;
  margin-bottom: 12px;
}

/* --- Proceed button (Step 1 CTA) --- */
.booking-proceed-btn {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: var(--accent, #E0C181);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius-md, 8px);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 24px;
  transition: filter .25s cubic-bezier(0.22, 1, 0.36, 1), transform .25s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 16px rgba(224, 193, 129, .3);
}
.booking-proceed-btn:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(224, 193, 129, .4); }

/* --- Platform buttons row --- */
.booking-platforms-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.platforms-label {
  font-size: 1rem;
  color: var(--text-light, #555);
  font-weight: 500;
}
.btn-platform {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--white);
  border: 1.5px solid var(--border, #D3DDE1);
  border-radius: var(--radius-md, 8px);
  color: var(--bg-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  transition: all .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-platform:hover {
  background: var(--bg-primary);
  color: var(--white);
  border-color: var(--bg-primary);
}

/* --- Calendar --- */
.cal-widget { margin-bottom: 20px; }
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cal-nav {
  background: rgba(224, 193, 129, .08);
  border: 1px solid rgba(224, 193, 129, .15);
  color: var(--accent);
  font-size: 1.3rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.cal-nav:hover {
  background: rgba(224, 193, 129, .15);
  border-color: rgba(224, 193, 129, .35);
}
.cal-prev, .cal-next { /* inherits .cal-nav */ }

.cal-months { display: grid; grid-template-columns: 1fr; gap: 16px; }
.cal-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; margin-top: 2px; }
.cal-dot-available { background: var(--accent); }
.cal-dot-booked { background: rgba(255, 255, 255, .2); }
.cal-dot-peak { background: #ea580c; }
.cal-dot-value { background: var(--success, #2D7A5E); }
.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
}
.cal-legend-item { display: flex; align-items: center; gap: 5px; }
.cal-status { margin-top: 12px; }
.cal-selection { text-align: center; font-size: .95rem; color: rgba(255, 255, 255, .8); }
.cal-nights { text-align: center; margin-top: 6px; font-size: .9rem; color: rgba(255, 255, 255, .6); }
.cal-total { text-align: center; margin-top: 8px; font-size: 1.1rem; color: var(--accent); font-weight: 700; }

/* --- Form fields (mobile first) --- */
.booking-form { display: flex; flex-direction: column; gap: 0; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
/* Light card labels */
.booking-card-light .form-field label,
.booking-card-light .form-row label {
  font-size: 1rem;
  color: var(--bg-primary);
  font-weight: 600;
  letter-spacing: .3px;
}
.booking-card-light .form-field label.required::after { content: ' *'; color: #ea580c; }
.form-field label.required::after, .form-row label.required::after { content: ' *'; color: #ea580c; }

/* Dates + Guests: 3-col on mobile stack, side-by-side on tablet+ */
.form-group-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.guests-field {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Contact: stack on mobile */
.form-group-contact {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Message field: generous space */
.form-field-message textarea {
  min-height: 140px;
}

.form-dates { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.date-field { display: flex; flex-direction: column; gap: 6px; position: relative; }
.date-field label {
  font-size: .8rem;
  color: rgba(255, 255, 255, .6);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Light form inputs */
.booking-form input,
.booking-form textarea,
.booking-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border, #D3DDE1);
  border-radius: var(--radius-md, 8px);
  background: var(--white, #fff);
  color: var(--bg-primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: border-color .25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .25s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--text-placeholder, #8A9DA5);
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-form select:focus {
  outline: none;
  border-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(10, 57, 78, .1);
}

.booking-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230A394E' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 14px center;
  padding-right: 40px;
  cursor: pointer;
  min-height: 50px;
}

.booking-form select option { background: var(--white); color: var(--bg-primary); }

.booking-form .date-display {
  cursor: pointer;
  padding: 14px 16px;
  border: 1.5px solid var(--border, #D3DDE1);
  border-radius: var(--radius-md, 8px);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%230A394E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") no-repeat right 12px center;
  padding-right: 40px;
  min-height: 50px;
  color: var(--text-placeholder, #8A9DA5);
  font-size: 1rem;
  transition: border-color .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.booking-form .date-display.has-value {
  color: var(--bg-primary);
  font-weight: 600;
  font-size: 1.05rem;
}
.date-field.pulse { animation: date-pulse .6s cubic-bezier(0.22, 1, 0.36, 1); }

/* --- Airport pickup toggle --- */
.form-toggle-row { flex-direction: row !important; margin-bottom: 16px; }
.toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  border-radius: var(--radius-md, 8px);
  background: var(--surface-alt, #F0F4F5);
  border: 1px solid var(--border, #D3DDE1);
  transition: all .25s cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}
.toggle-label:hover { border-color: var(--bg-primary); background: #E8EEF0; }
.toggle-label input[type="checkbox"] { display: none; }
.toggle-switch {
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: var(--border, #D3DDE1);
  position: relative;
  transition: background .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.toggle-label input:checked + .toggle-switch { background: var(--accent); }
.toggle-label input:checked + .toggle-switch::after { transform: translateX(20px); }
.toggle-text { display: flex; flex-direction: column; gap: 2px; }
.toggle-text span:first-child { font-size: .95rem; color: var(--bg-primary); }
.toggle-hint { font-size: .875rem; color: var(--text-light, #555); }
.toggle-detail {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: var(--radius-md, 8px);
  background: var(--surface-alt, #F0F4F5);
  border: 1px solid var(--border, #D3DDE1);
}
.toggle-note { font-size: .875rem; color: var(--text-light, #555); margin: 0 0 8px; line-height: 1.5; }

/* --- Price summary (light) --- */
.form-price-summary {
  background: var(--surface-alt, #F0F4F5);
  border: 1px solid var(--border, #D3DDE1);
  border-radius: var(--radius-md, 8px);
  padding: 16px;
  margin-bottom: 16px;
}

.price-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: .95rem;
  color: var(--bg-primary);
}
.price-line-detail {
  font-size: .85rem;
  color: var(--text-light, #555);
  padding: 0 0 6px;
}
.price-total {
  border-top: 1px solid var(--border, #D3DDE1);
  padding-top: 10px;
  margin-top: 6px;
  font-size: 1.1rem;
  color: var(--bg-primary);
  font-weight: 700;
}

.price-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  cursor: pointer;
}
.price-summary-total { color: var(--accent); font-family: 'Overlock', serif; font-size: 1.2rem; font-weight: 700; }
.price-summary-total strong { font-size: 1.4rem; }
.price-toggle-icon { color: rgba(201, 164, 74, .6); font-size: .85rem; transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1); }
.price-toggle-icon.open { transform: rotate(180deg); }
.price-summary-details { padding: 0 16px 16px; }

.price-breakdown { display: flex; flex-direction: column; gap: 6px; padding-bottom: 10px; border-bottom: 1px solid rgba(201, 164, 74, .15); margin-bottom: 10px; }
.price-row { display: flex; justify-content: space-between; font-size: .92rem; color: rgba(255, 255, 255, .8); }
.price-row.total-row { color: var(--accent); font-weight: 700; font-size: 1.1rem; font-family: 'Overlock', serif; padding-top: 6px; }

.price-savings { margin-top: 6px; padding: 8px 10px; border-radius: 6px; background: rgba(255, 255, 255, .03); border: 1px solid rgba(255, 255, 255, .06); }
.price-savings-title { font-size: .875rem; color: rgba(255, 255, 255, .7); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; font-weight: 600; }
.psb-row { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: .88rem; }
.psb-row + .psb-row { border-top: 1px solid rgba(255, 255, 255, .06); }
.psb-name { color: rgba(255, 255, 255, .9); font-weight: 500; flex: 1; }
.psb-detail { color: rgba(255, 255, 255, .4); font-size: .875rem; }
.psb-price { color: rgba(255, 255, 255, .5); text-decoration: line-through; font-size: .875rem; }
.psb-you-save { color: var(--accent); font-weight: 700; font-size: .88rem; }

/* --- Consent (light) --- */
.form-consent-row { margin-bottom: 16px; }
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: .9rem;
  padding: 12px 14px;
  background: var(--surface-alt, #F0F4F5);
  border-radius: var(--radius-md, 8px);
  border: 1px solid var(--border, #D3DDE1);
}
.consent-label input { display: none; }
.consent-checkmark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 2px solid var(--border, #D3DDE1);
  border-radius: 5px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s cubic-bezier(0.22, 1, 0.36, 1);
}
.consent-label input:checked + .consent-checkmark {
  background: var(--bg-primary);
  border-color: var(--bg-primary);
}
.consent-text { color: var(--text-light, #555); line-height: 1.5; font-size: 1rem; }

/* --- Action buttons --- */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.btn-wa-submit,
.btn-email-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: var(--radius-md, 8px);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-wa-submit {
  background: var(--bg-primary);
  color: var(--white);
}
.btn-wa-submit:hover { filter: brightness(1.15); transform: translateY(-1px); }

.btn-email-submit {
  background: var(--surface-alt, #F0F4F5);
  color: var(--bg-primary);
  border: 1.5px solid var(--border, #D3DDE1);
}
.btn-email-submit:hover { background: #E4EAED; border-color: var(--bg-primary); }

.btn-stripe-submit,
.btn-revolut-submit {
  width: 100%;
  padding: 14px 20px;
  border: 1.5px solid var(--border, #D3DDE1);
  border-radius: var(--radius-md, 8px);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--white);
  color: var(--bg-primary);
  transition: all .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-stripe-submit:hover,
.btn-revolut-submit:hover { background: var(--surface-alt, #F0F4F5); border-color: var(--bg-primary); }

.btn-hint {
  font-size: .8rem;
  font-weight: 400;
  opacity: .65;
  text-transform: none;
  letter-spacing: 0;
}

.form-note {
  text-align: center;
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text-light, #555);
  line-height: 1.5;
}

.terms-link-wrap { text-align: center; margin-top: 8px; }
.terms-link { color: var(--text-light, #555); font-size: 1rem; text-decoration: underline; }
.terms-link:hover { color: var(--bg-primary); }

/* --- Trust badges --- */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .9rem;
  color: var(--bg-primary);
  font-weight: 600;
}

/* --- Platform card --- */
.platform-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(224, 193, 129, .04);
  border: 1px solid rgba(224, 193, 129, .1);
  border-radius: var(--radius-md, 8px);
  text-align: left;
}

.platform-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: rgba(255, 255, 255, .8);
  line-height: 1.5;
}

.platform-benefit svg { flex-shrink: 0; margin-top: 2px; }
/* Legacy .booking-card removed — now uses .booking-card-light */

.btn-platform {
  display: block;
  padding: 14px 20px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(224, 193, 129, .15);
  border-radius: var(--radius-md, 8px);
  color: var(--white);
  text-decoration: none;
  text-align: center;
  font-weight: 600;
  font-size: .95rem;
  transition: all .25s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-platform:hover { background: rgba(255, 255, 255, .1); border-color: rgba(224, 193, 129, .3); }

/* Transfer toggle */
.transfer-toggle { padding: 2px 0; }
.toggle-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  cursor: pointer; user-select: none;
}
.toggle-row input[type="checkbox"] { display: none; }
.toggle-slider {
  position: relative; width: 44px; height: 24px; background: rgba(255, 255, 255, .12);
  border-radius: 12px; flex-shrink: 0; transition: background .2s cubic-bezier(0.22, 1, 0.36, 1);
}
.toggle-slider::after {
  content: ''; position: absolute; top: 3px; left: 3px; width: 18px; height: 18px;
  background: rgba(255, 255, 255, .5); border-radius: 50%; transition: transform .2s cubic-bezier(0.22, 1, 0.36, 1), background .2s;
}
.toggle-row input:checked + .toggle-slider { background: var(--accent); }
.toggle-row input:checked + .toggle-slider::after { transform: translateX(20px); background: #fff; }
.transfer-details { padding-left: 4px; border-left: 2px solid rgba(224, 193, 129, .2); margin: 6px 0 0 4px; }
.transfer-note { font-size: .875rem; color: rgba(255, 255, 255, .8); line-height: 1.4; margin-top: 6px; padding: 6px 8px; background: rgba(255, 255, 255, .04); border-radius: 5px; }

/* ==========================================================================
   Section — Footer
   ========================================================================== */

.footer {
  background: linear-gradient(168deg, #0C4058 0%, var(--bg-primary) 50%, #072D3E 100%);
  color: rgba(255, 255, 255, .5);
  padding: 44px 0 28px;
  text-align: center;
  font-size: .95rem;
}

.footer-host {
  color: var(--accent);
  font-family: 'Overlock', serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.footer-contact { display: flex; flex-direction: column; justify-content: center; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.footer-contact a { color: rgba(255, 255, 255, .6); text-decoration: none; transition: color .3s; font-size: 1rem; }
.footer-contact a:hover { color: var(--accent); }

.footer-legal {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .875rem;
  color: rgba(255, 255, 255, .3);
}

.footer-legal a,
.footer-legal button {
  color: var(--accent);
  text-decoration: underline;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .875rem;
  font-family: inherit;
}

.footer-legal a:hover, .footer-legal button:hover { color: var(--accent); }

.footer-credits { margin-top: 10px; font-size: .875rem; color: rgba(255, 255, 255, .25); }
.footer-credits a { color: rgba(255, 255, 255, .35); text-decoration: none; transition: color .3s; }
.footer-credits a:hover { color: var(--accent); }
.footer-license { opacity: .6; margin-left: 6px; }
.footer-powered { font-size: .875rem; color: rgba(255, 255, 255, .2); margin-top: 4px; }
.footer-powered a { color: rgba(255, 255, 255, .3); text-decoration: none; transition: color .3s; }
.footer-powered a:hover { color: var(--accent); }

/* ==========================================================================
   Components — Cookie Consent Banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--bg-primary);
  border-top: 1px solid rgba(224, 193, 129, .2);
  padding: 16px 14px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  display: none;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(10, 57, 78, .3);
  font-size: .875rem;
  color: rgba(255, 255, 255, .75);
  max-height: 35vh;
  overflow-y: auto;
}

.cookie-banner.show { display: flex; }

.cookie-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .6);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 1;
}

.cookie-close:hover { color: #fff; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-intro { margin: 0; line-height: 1.5; text-align: center; }

.cookie-providers { display: flex; flex-direction: column; gap: 12px; justify-content: center; flex-wrap: wrap; }

.cookie-provider {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  padding: 10px 12px;
  flex: 1;
  min-width: 200px;
  max-width: none;
}

.cookie-provider-name { font-weight: 600; color: var(--accent); font-size: .9rem; margin-bottom: 4px; }
.cookie-provider-desc { font-size: .875rem; color: rgba(255, 255, 255, .5); line-height: 1.4; margin-bottom: 6px; }

.cookie-provider button {
  padding: 6px 14px;
  border-radius: 6px;
  border: 1px solid rgba(224, 193, 129, .3);
  background: transparent;
  color: var(--accent);
  font-family: inherit;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
}

.cookie-provider button:hover { background: var(--accent); color: var(--bg-primary); }
.cookie-provider button.accepted { background: rgba(45, 122, 94, .3); border-color: rgba(45, 122, 94, .5); color: #6fcf97; pointer-events: none; }

.cookie-btns { display: flex; flex-direction: column; gap: 10px; justify-content: center; width: 100%; }

.cookie-btns button {
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .3s;
  width: 100%;
}

.cookie-btn-accept { background: var(--accent); color: var(--bg-primary); }
.cookie-btn-accept:hover { background: var(--gold-light); transform: translateY(-1px); }
.cookie-btn-reject { background: rgba(252,252,252,0.15); color: var(--text-primary); border: 1px solid rgba(252,252,252,0.2) !important; }
.cookie-btn-reject:hover { color: var(--white); border-color: rgba(255, 255, 255, .4) !important; }


/* ==========================================================================
   Components — Social Proof Toast
   ========================================================================== */

.social-proof-toast {
  position: fixed;
  bottom: calc(70px + env(safe-area-inset-bottom, 0px));
  left: 8px;
  right: 8px;
  z-index: 998;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(10, 57, 78, 0.18);
  padding: 14px 18px;
  max-width: none;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all .5s cubic-bezier(.25, .46, .45, .94);
  pointer-events: none;
}

.social-proof-toast.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.toast-icon { font-size: 1.6rem; flex-shrink: 0; }
.toast-text { font-size: .88rem; color: var(--text-primary); line-height: 1.5; }
.toast-text strong { color: var(--bg-primary); }

.toast-close {
  position: absolute;
  top: 6px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-light);
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}


/* ==========================================================================
   Components — Lightbox
   ========================================================================== */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10, 57, 78, .94);
  align-items: center;
  justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 98vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(10, 57, 78, .5);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2.2rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  z-index: 2001;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.8rem;
  color: var(--white);
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px 16px;
  z-index: 2001;
}

.lightbox-nav:hover { color: var(--accent); }
.lightbox-prev { left: 10px; }
.lightbox-next { right: 10px; }

.lightbox video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
}

#lightbox-embed {
  width: 80vw;
  height: 70vh;
  max-width: 1200px;
  border-radius: 8px;
  overflow: hidden;
}

.lightbox-consent-prompt {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2002;
}

.lightbox-consent-prompt .consent-inner {
  text-align: center;
  max-width: 420px;
  padding: 32px;
  background: rgba(10,57,78,0.9);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.lightbox-consent-prompt p {
  color: var(--cream, #f5f5f5);
  font-size: .9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.btn-consent-accept {
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  background: var(--gold, #c9a44a);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.btn-consent-accept:hover {
  background: var(--gold-hover, #d4b05a);
}

/* ==========================================================================
   Components — Modal
   ========================================================================== */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(10, 57, 78, .65);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

.modal-overlay.active { display: flex; }

/* Native <dialog> modal (replaces .modal-overlay) */
dialog.modal-dialog {
  border: none;
  padding: 0;
  background: transparent;
  max-width: none;
  width: auto;
  overflow: visible;
}
dialog.modal-dialog::backdrop {
  background: rgba(10, 57, 78, .65);
  backdrop-filter: blur(6px);
}

.modal-content {
  background: var(--white);
  border-radius: 16px;
  max-width: 640px;
  width: 95%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(10, 57, 78, .3);
  display: flex;
  flex-direction: column;
}

#modal-booking-summary .modal-content > div:nth-child(2) { overflow-y: auto; flex: 1; min-height: 0; }

/* ── Booking Summary Modal — semantic classes ── */
.modal-summary-header {
  background: var(--bg-primary);
  padding: 28px 32px;
  text-align: center;
}
.modal-summary-title {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.modal-summary-subtitle {
  color: rgba(255,255,255,.6);
  font-size: .875rem;
  margin: 0;
}
.modal-summary-body {
  padding: 28px 32px;
}
.modal-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.modal-stat-cell {
  background: var(--text-primary);
  border-radius: 8px;
  padding: 14px 16px;
}
.modal-stat-label {
  font-size: .875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.modal-stat-value {
  font-family: 'Overlock', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-primary);
}
.modal-price-block {
  background: linear-gradient(135deg, var(--bg-primary), var(--dark-lighter));
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
}
.modal-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.modal-price-label {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}
.modal-price-value {
  color: var(--white);
  font-weight: 600;
}
.modal-price-row-divider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(224,193,129,.2);
}
.modal-price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-price-total-label {
  color: var(--accent);
  font-family: 'Overlock', serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.modal-price-total-value {
  color: var(--accent);
  font-family: 'Overlock', serif;
  font-size: 1.5rem;
  font-weight: 900;
}
.modal-gap-note {
  background: rgba(234,179,8,.12);
  border: 1px solid rgba(234,179,8,.3);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: .875rem;
  color: var(--gold, #b8860b);
  line-height: 1.5;
}
.modal-guest-info {
  background: var(--text-primary);
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 24px;
}
.modal-guest-info-text {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.6;
}
.modal-guest-name {
  font-weight: 600;
  color: var(--bg-primary);
}
.modal-actions-footer {
  padding: 20px 32px;
  border-top: 1px solid rgba(10,57,78,.06);
  background: var(--white);
  border-radius: 0 0 16px 16px;
  flex-shrink: 0;
}
.modal-actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-back-link {
  display: block;
  margin: 10px auto 0;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: .875rem;
  cursor: pointer;
  text-decoration: underline;
}
.modal-actions-row .btn {
  flex: 1;
  min-width: 200px;
}
.cookie-privacy-link {
  color: inherit;
  text-decoration: underline;
}

/* ── Booking Confirm Modal ── */
.modal-confirm-content {
  max-width: 480px;
  text-align: center;
  padding: 48px 36px;
}
.modal-confirm-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.modal-confirm-title {
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.modal-confirm-text {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── Bus Stops Modal ── */
.modal-bus-stops {
  max-width: 520px;
  background: var(--bg-primary, #111826);
  color: rgba(255,255,255,.85);
}
.modal-bus-stops-subtitle {
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  margin-bottom: 20px;
}
.modal-bus-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.modal-bus-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(224,193,129,.15);
  border-radius: 10px;
  padding: 16px;
}
.modal-bus-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.modal-bus-card-name {
  color: #fff;
}
.modal-bus-card-distance {
  color: var(--accent);
  font-weight: 600;
  font-size: .875rem;
}
.modal-bus-card-routes {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
}
.modal-bus-maps-link {
  font-size: .875rem;
  color: var(--accent);
  text-decoration: none;
  padding: 4px 12px;
  border: 1px solid rgba(224,193,129,.3);
  border-radius: 16px;
}
.modal-bus-footer {
  text-align: center;
  margin-top: 16px;
  font-size: .875rem;
  color: rgba(255,255,255,.4);
}
.modal-bus-footer a {
  color: var(--accent);
  text-decoration: underline;
}

/* ── Terms Modal ── */
.modal-terms-title {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 4px;
}
.modal-terms-subtitle {
  color: var(--text-light);
  font-size: .875rem;
  margin-bottom: 20px;
}
.modal-terms-body {
  line-height: 1.7;
}
.modal-terms-heading {
  color: var(--accent);
  font-size: 1rem;
  margin: 18px 0 6px;
}
.modal-terms-footer {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.modal-terms-footer-text {
  color: var(--text-light);
  font-size: .875rem;
}

/* Mobile defaults — responsive overrides for summary modal */
#modal-booking-summary .modal-summary-grid { grid-template-columns: 1fr !important; }
#modal-booking-summary .modal-summary-header { padding: 16px !important; }
#modal-booking-summary .modal-summary-body { padding: 16px !important; }
#modal-booking-summary .modal-summary-title { font-size: 1.15rem !important; margin-bottom: 2px !important; }
#modal-booking-summary .modal-summary-subtitle { font-size: .875rem !important; }
#modal-booking-summary .modal-stat-cell { padding: 10px 12px !important; }
#modal-booking-summary .modal-price-block { padding: 14px !important; margin-bottom: 14px !important; }
#modal-booking-summary .modal-guest-info { margin-bottom: 14px !important; }
#modal-booking-summary .modal-summary-grid { margin-bottom: 12px !important; }
#modal-booking-summary .modal-actions-row { gap: 8px !important; }
#modal-booking-summary .modal-actions-footer { padding: 14px 16px !important; }
#modal-booking-summary .modal-actions-row { flex-direction: column !important; }
#modal-booking-summary .modal-actions-row .btn { min-width: 0 !important; font-size: .875rem !important; padding: 12px 8px !important; width: 100% !important; flex: none !important; }
#modal-booking-confirm .modal-confirm-content { padding: 32px 20px !important; }
.location-card div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }

.modal {
  background: var(--white);
  border-radius: 16px;
  max-width: 640px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 24px 16px;
  position: relative;
  box-shadow: 0 20px 60px rgba(10, 57, 78, .3);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color .3s;
}

.modal-close:hover { color: var(--bg-primary); }

.modal h3 {
  font-family: 'Overlock', serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--bg-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal p, .modal li { font-size: .95rem; color: var(--text-light); line-height: 1.7; margin-bottom: 10px; }
.modal h4 { font-size: 1rem; color: var(--bg-primary); margin: 20px 0 10px; font-weight: 700; }
.modal ul { padding-left: 20px; }

/* ==========================================================================
   Components — Form Buttons
   ========================================================================== */

.form-buttons { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.form-btn-row { display: flex; flex-direction: column; align-items: stretch; }

.form-buttons .btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  line-height: 1.3;
  padding: 12px 20px;
}

.form-buttons .btn svg { margin-right: 8px; flex-shrink: 0; }

.form-buttons .btn .btn-hint {
  display: block;
  width: 100%;
  font-size: .875rem;
  font-weight: 400;
  opacity: .65;
  margin-top: 3px;
  letter-spacing: .3px;
  text-transform: none;
  text-align: center;
}

.btn-wa-submit {
  width: 100%;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: 'Overlock', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(224, 193, 129, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: btnNudge 3s ease-in-out infinite;
}

.btn-wa-submit:hover { animation: none; background: var(--accent-dim); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224, 193, 129, .5); }

.btn-email-submit {
  width: 100%;
  background: var(--accent);
  color: var(--bg-primary);
  font-family: 'Overlock', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 12px;
  border: 1px solid rgba(224, 193, 129, .4);
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-email-submit:hover { background: rgba(224, 193, 129, .1); transform: translateY(-2px); border-color: var(--accent); }
.form-buttons.has-payment .btn-wa-submit { animation: none; }

.btn-stripe-submit,
.btn-revolut-submit {
  width: 100%;
  background: linear-gradient(135deg, rgba(99, 91, 255, .22), rgba(99, 91, 255, .1));
  color: var(--accent-light, #b8b3ff);
  font-family: 'Overlock', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 12px;
  border: 1px solid rgba(99, 91, 255, .45);
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(99, 91, 255, .15);
}

.form-buttons.has-payment .btn-stripe-submit { animation: btnNudge 3s ease-in-out infinite; }
.form-buttons.has-payment .btn-stripe-submit:hover { animation: none; }
.btn-stripe-submit:hover, .btn-revolut-submit:hover { background: linear-gradient(135deg, rgba(99, 91, 255, .25), rgba(99, 91, 255, .1)); transform: translateY(-2px); border-color: rgba(99, 91, 255, .6); }

/* Summary modal: high-contrast buttons on white background */
.sum-actions .btn-wa-submit { background: var(--bg-primary); color: var(--accent); box-shadow: 0 4px 16px rgba(10, 57, 78, .25); }
.sum-actions .btn-wa-submit:hover { background: var(--dark-lighter); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(10, 57, 78, .35); }
.sum-actions .btn-email-submit { background: var(--accent); color: #fff; border: none; }
.sum-actions .btn-email-submit:hover { background: var(--bg-primary); color: var(--accent); transform: translateY(-2px); }
.sum-actions .btn-stripe-submit { background: linear-gradient(135deg, #635bff, #4b44d9); color: #fff; border: none; box-shadow: 0 4px 16px rgba(99, 91, 255, .35); }
.sum-actions .btn-stripe-submit:hover { background: linear-gradient(135deg, #4b44d9, #3a33c0); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(99, 91, 255, .5); }
.sum-actions .btn-revolut-submit { background: linear-gradient(135deg, #0075eb, #0060c0); color: #fff; border: none; box-shadow: 0 4px 16px rgba(0, 117, 235, .3); }
.sum-actions .btn-revolut-submit:hover { background: linear-gradient(135deg, #0060c0, #004a99); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0, 117, 235, .45); }

.btn-platform {
  width: 100%;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Overlock', serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 12px;
  border: 1px solid rgba(224, 193, 129, .35);
  border-radius: 8px;
  cursor: pointer;
  transition: all .3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: none;
  opacity: .75;
  flex-wrap: wrap;
}

.btn-platform:hover { background: rgba(224, 193, 129, .08); transform: translateY(-2px); box-shadow: none; border-color: var(--accent); opacity: 1; }
.platform-label { flex: 1; text-align: center; }

.platform-price {
  width: 100%;
  display: block;
  font-size: .875rem;
  font-weight: 500;
  opacity: .6;
  margin-top: 4px;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 200, 100, .9);
}

.response-hint { display: none; }

.fees-note {
  font-size: .875rem;
  color: rgba(255, 255, 255, .45);
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.fees-note svg { flex-shrink: 0; opacity: .5; }
.wa-hint { color: rgba(224, 193, 129, .5); }

/* ==========================================================================
   Components — Availability Calendar
   ========================================================================== */

.cal-wrap {
  position: relative;
  max-width: 920px;
  margin: 0 auto 24px;
  background: linear-gradient(168deg, rgba(201, 164, 74, .08) 0%, rgba(255, 248, 235, .06) 100%);
  border: 1px solid rgba(201, 164, 74, .18);
  border-radius: 12px;
  padding: 20px 14px 18px;
  backdrop-filter: blur(6px);
  scroll-margin-top: 80px;
}

.cal-header { display: flex; flex-direction: column; gap: 10px; align-items: stretch; margin-bottom: 20px; }

.cal-title {
  font-family: 'Overlock', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 16px;
}

.cal-legend-item { display: flex; align-items: center; gap: 8px; font-size: 1rem; font-weight: 600; color: rgba(255, 255, 255, .8); white-space: nowrap; }
.cal-legend-dot { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; }
.cal-legend-dot.avail { background: rgba(201, 164, 74, .35); border: 1px solid var(--accent); }
.cal-legend-dot.booked { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .15); }
.cal-legend-dot.today-dot { background: transparent; border: 2px solid var(--accent); }

.cal-status {
  text-align: center;
  font-size: 1.05rem;
  color: var(--accent);
  margin-bottom: 16px;
  min-height: 36px;
  line-height: 36px;
  opacity: .85;
  transition: opacity .3s;
  font-weight: 600;
}

.cal-selection { display: flex; justify-content: center; gap: 14px; align-items: center; margin-bottom: 16px; flex-wrap: wrap; }
.cal-sel-block { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.cal-sel-label { font-size: .875rem; color: rgba(255, 255, 255, .45); text-transform: uppercase; letter-spacing: 0; font-weight: 600; white-space: nowrap; }

.cal-sel-date {
  font-family: 'Overlock', serif;
  font-size: .95rem;
  min-width: 80px;
  color: var(--accent);
  font-weight: 700;
  min-width: 100px;
  text-align: center;
}

.cal-sel-arrow { color: rgba(201, 164, 74, .3); font-size: 1.2rem; }
.cal-sel-nights { font-size: .875rem; color: rgba(255, 255, 255, .75); margin-top: 2px; }

.cal-clear-btn {
  background: var(--accent);
  border: none;
  color: #fff;
  font-size: .875rem;
  padding: 4px 14px;
  border-radius: 4px;
  cursor: pointer;
  transition: all .3s;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .5px;
}

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

.cal-months { display: grid; grid-template-columns: 1fr; gap: 20px; }
.cal-month { min-width: 0; }
.cal-month-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; padding: 0 4px; }
.cal-month-title { font-family: 'Overlock', serif; font-size: 1rem; font-weight: 700; color: rgba(255, 255, 255, .9); letter-spacing: 1px; }

.cal-nav {
  background: var(--accent);
  border: none;
  color: var(--bg-primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(224, 193, 129, .25);
}

.cal-nav:hover { background: var(--accent-dim); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(224, 193, 129, .35); }
.cal-nav:disabled { opacity: .15; cursor: default; pointer-events: none; box-shadow: none; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }

.cal-day-head {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-dim);
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 0;
  opacity: .8;
}

.cal-day {
  position: relative;
  text-align: center;
  padding: 8px 4px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .35);
  border-radius: 8px;
  cursor: pointer;
  transition: all .25s;
  user-select: none;
  font-weight: 600;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.cal-day.avail { background: rgba(224, 193, 129, .15); color: rgba(255, 255, 255, .9); font-weight: 600; border: 1px solid rgba(224, 193, 129, .12); }
.cal-day.avail:hover { background: rgba(224, 193, 129, .28); color: var(--accent); border-color: rgba(224, 193, 129, .3); }
.cal-day.empty { cursor: default; }
.cal-day.past { color: rgba(255, 255, 255, .12); cursor: default; background: none; }
.cal-day.today { box-shadow: inset 0 0 0 1.5px var(--accent); color: var(--accent); }
.cal-day.blocked { color: rgba(255, 255, 255, .15); cursor: not-allowed; text-decoration: line-through; text-decoration-color: rgba(255, 255, 255, .12); background: none; }
.cal-day.selected-start, .cal-day.selected-end { background: var(--accent); color: #fff; font-weight: 700; border-radius: 6px; box-shadow: 0 2px 12px rgba(201, 164, 74, .35); }
.cal-day.selected-end.blocked { background: linear-gradient(135deg, rgba(201, 164, 74, .85) 0%, rgba(201, 164, 74, .85) 50%, rgba(201, 164, 74, .25) 50%, rgba(201, 164, 74, .25) 100%); color: #fff; cursor: pointer; text-decoration: none; border: 1px solid rgba(201, 164, 74, .5); }
.cal-day.in-range { background: rgba(201, 164, 74, .12); color: var(--accent); border-radius: 0; }
.cal-day.in-range.first-in-range { border-radius: 6px 0 0 6px; }
.cal-day.in-range.last-in-range { border-radius: 0 6px 6px 0; }
.cal-day.selected-start { border-radius: 6px 0 0 6px; }
.cal-day.selected-end { border-radius: 0 6px 6px 0; }
.cal-day.selected-start.selected-end { border-radius: 6px; }
.cal-day .cal-price { display: block; font-size: 1rem; color: rgba(224, 193, 129, .7); font-weight: 600; margin-top: 4px; letter-spacing: 0; }
.cal-day.avail .cal-price { color: rgba(224, 193, 129, .8); }

/* Price tier colors */
.cal-day.price-tier-low { border-color: rgba(134, 239, 172, .25); background: rgba(134, 239, 172, .07); }
.cal-day.price-tier-low .cal-price { color: rgba(134, 239, 172, .8); }
.cal-day.price-tier-low .cal-price::before { content: ''; display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: rgba(134, 239, 172, .6); margin-right: 2px; vertical-align: middle; }
.cal-day.price-tier-low:hover { background: rgba(134, 239, 172, .14); border-color: rgba(134, 239, 172, .4); }
.cal-day.price-tier-high { border-color: rgba(252, 165, 165, .25); background: rgba(252, 165, 165, .06); }
.cal-day.price-tier-high .cal-price { color: rgba(252, 165, 165, .7); }
.cal-day.price-tier-high:hover { background: rgba(252, 165, 165, .12); border-color: rgba(252, 165, 165, .35); }

/* Gap night + checkout states */
.cal-day.gap-night { border-color: rgba(255, 255, 255, .25); border-style: dashed; }
.cal-day.gap-night:hover { background: rgba(224, 193, 129, .2); border-color: rgba(224, 193, 129, .5); }

.cal-day.checkout-ok {
  cursor: pointer;
  color: rgba(224, 193, 129, .55);
  text-decoration: none;
  border-color: rgba(201, 164, 74, .25);
  border-style: solid;
  background: linear-gradient(135deg, rgba(201, 164, 74, .12) 0%, rgba(201, 164, 74, .12) 50%, rgba(255, 255, 255, .03) 50%, rgba(255, 255, 255, .03) 100%);
}

.cal-day.checkout-ok:hover {
  background: linear-gradient(135deg, rgba(201, 164, 74, .22) 0%, rgba(201, 164, 74, .22) 50%, rgba(255, 255, 255, .06) 50%, rgba(255, 255, 255, .06) 100%);
  border-color: rgba(201, 164, 74, .45);
  color: rgba(224, 193, 129, .8);
}

.cal-day.checkout-active {
  color: rgba(224, 193, 129, .95);
  border-color: rgba(201, 164, 74, .5);
  background: linear-gradient(135deg, rgba(201, 164, 74, .25) 0%, rgba(201, 164, 74, .25) 50%, rgba(255, 255, 255, .04) 50%, rgba(255, 255, 255, .04) 100%);
}

.cal-day.checkout-active:hover {
  background: linear-gradient(135deg, rgba(201, 164, 74, .35) 0%, rgba(201, 164, 74, .35) 50%, rgba(255, 255, 255, .08) 50%, rgba(255, 255, 255, .08) 100%);
  border-color: rgba(201, 164, 74, .65);
  color: var(--accent);
}

.cal-checkout-hint { display: block; font-size: .875rem; color: rgba(224, 193, 129, .7); font-weight: 500; line-height: 1; margin-top: 1px; text-transform: uppercase; letter-spacing: .5px; }
.cal-checkin-hint { display: block; font-size: .875rem; color: rgba(255, 255, 255, .75); font-weight: 600; line-height: 1; margin-top: 1px; text-transform: uppercase; letter-spacing: .5px; }
.cal-day.selected-end .cal-checkout-hint { color: rgba(255, 255, 255, .7); }
.cal-gap-label { display: block; font-size: .875rem; color: rgba(255, 255, 255, .7); font-weight: 600; line-height: 1; margin-top: 0; }
.cal-day.selected-start .cal-price, .cal-day.selected-end .cal-price { color: rgba(255, 255, 255, .85); opacity: 1; }

.cal-min-toast {
  position: absolute;
  z-index: 100;
  background: rgba(30, 30, 56, .97);
  color: var(--accent);
  font-family: 'Overlock', serif;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .3px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid rgba(224, 193, 129, .4);
  box-shadow: 0 4px 16px rgba(10, 57, 78, .5);
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%) translateY(4px);
  transition: opacity .25s, transform .25s;
}

.cal-min-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==========================================================================
   Cookie Consent Banner (DSGVO)
   ========================================================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: var(--dark, var(--bg-primary));
  border-top: 1px solid rgba(224, 193, 129, .15);
  padding: 16px;
  padding-bottom: max(16px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 24px rgba(10, 57, 78, .2);
}
.cookie-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, .5);
  font-size: 1.3rem;
  cursor: pointer;
}
.cookie-text {
  text-align: center;
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
  margin-bottom: 16px;
}
.cookie-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.cookie-service {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 16px 20px;
  max-width: 100%;
}
.cookie-svc-name {
  color: var(--gold, var(--accent));
  font-size: .88rem;
  display: block;
  margin-bottom: 6px;
}
.cookie-svc-desc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .5);
  line-height: 1.5;
  margin-bottom: 10px;
}
.btn-cookie-accept {
  background: var(--accent);
  border: none;
  color: var(--bg-primary);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: .875rem;
  cursor: pointer;
  transition: all .2s;
}
.btn-cookie-accept:hover {
  background: rgba(224, 193, 129, .1);
  border-color: var(--gold, var(--accent));
}
.cookie-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.btn-cookie-all {
  background: var(--gold, var(--accent));
  color: var(--dark, var(--bg-primary));
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
}
.btn-cookie-all:hover { opacity: .9; }
.btn-cookie-essential {
  background: rgba(252,252,252,0.15);
  border: 1px solid rgba(252,252,252,0.2);
  color: var(--text-primary);
  padding: 10px 24px;
  border-radius: 8px;
  font-size: .88rem;
  cursor: pointer;
  transition: all .2s;
}
.btn-cookie-essential:hover { border-color: rgba(255, 255, 255, .3); color: rgba(255, 255, 255, .8); }
.cal-min-toast::after { content: ''; position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: rgba(30, 30, 56, .97); }

.cal-total { text-align: center; margin-top: 8px; font-family: 'Overlock', serif; font-size: 1.1rem; color: var(--accent); font-weight: 700; min-height: 28px; }
.cal-total-detail { font-size: .875rem; color: rgba(255, 255, 255, .75); font-weight: 400; margin-top: 2px; }

.cal-loading { text-align: center; padding: 40px 0; color: rgba(255, 255, 255, .3); font-size: .9rem; }
.cal-loading::after { content: ''; display: inline-block; width: 16px; height: 16px; border: 2px solid rgba(201, 164, 74, .25); border-top-color: var(--accent); border-radius: 50%; animation: cal-spin .7s linear infinite; margin-left: 10px; vertical-align: middle; }

/* ==========================================================================
   Components — Floating Contact Buttons
   ========================================================================== */

.contact-fab {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom));
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s cubic-bezier(0.22, 1, 0.36, 1), transform .4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-fab.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

.fab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 12px;
  border-radius: 50%;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: .875rem;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 2px 10px rgba(10, 57, 78, .12);
  transition: all .3s cubic-bezier(.25, .46, .45, .94);
  opacity: 1;
  min-width: auto;
  width: 48px;
  height: 48px;
  overflow: hidden;
}

.fab-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  transition: max-width .3s cubic-bezier(0.22, 1, 0.36, 1), opacity .2s cubic-bezier(0.22, 1, 0.36, 1), margin-left .3s cubic-bezier(0.22, 1, 0.36, 1);
  margin-left: 0;
}

.fab-btn:hover {
  border-radius: 30px;
  width: auto;
  padding: 10px 16px;
  gap: 8px;
}

.fab-btn:hover .fab-label {
  max-width: 140px;
  opacity: 1;
  margin-left: 4px;
}

.fab-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(10, 57, 78, .2); }
.fab-btn-wa { background: var(--color-whatsapp); }
.fab-btn-wa:hover { background: var(--color-whatsapp-hover); }
.fab-btn-call { background: var(--color-phone, #0099CC); }
.fab-btn-call:hover { background: var(--color-phone-hover, #0088b5); }
.fab-icon { font-size: 1.1rem; line-height: 1; }
.fab-label { white-space: nowrap; }

/* ==========================================================================
   Animations
   ========================================================================== */

/* Keyframes */
@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 2px 12px rgba(224, 193, 129, .4); }
  50% { box-shadow: 0 2px 20px rgba(224, 193, 129, .7), 0 0 30px rgba(224, 193, 129, .2); }
}

@keyframes date-pulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 3px rgba(224, 193, 129, .4); }
}

@keyframes priceSlideIn {
  from { opacity: 0; transform: translateY(-8px); max-height: 0; }
  to { opacity: 1; transform: translateY(0); max-height: 400px; }
}

@keyframes btnNudge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1px); }
}

@keyframes cal-spin { to { transform: rotate(360deg); } }

@keyframes calPulse {
  0% { box-shadow: 0 0 0 0 rgba(201, 164, 74, .4); }
  50% { box-shadow: 0 0 0 12px rgba(201, 164, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 164, 74, 0); }
}

/* Scroll animations (.fade-in, .scale-in, .slide-left, .slide-right, .blur-in): inherited from base.css */
/* Section h2 reveal: inherited from base.css */

/* VR-only scroll animations */
.rotate-in { opacity: 0; transform: rotate(-3deg) scale(.95); transition: opacity .8s cubic-bezier(0.22, 1, 0.36, 1), transform .8s cubic-bezier(.25, .46, .45, .94); }
.rotate-in.visible { opacity: 1; transform: rotate(0) scale(1); }

/* Parallax scroll sections */
.parallax-bg { background-attachment: fixed; background-size: cover; background-position: center; }
.section .container { will-change: transform; transition: transform .05s linear; }

/* Counter animation */
.count-up { display: inline-block; transition: transform .3s; }

/* Gallery video */
.gallery-video { cursor: pointer; }
.gallery-video .video-play-hint span { transition: opacity .3s, transform .3s; }
.gallery-video.playing .video-play-hint span { opacity: 0; transform: scale(1.5); }
.gallery-video:hover { box-shadow: 0 0 20px rgba(224, 193, 129, .3); }

/* Amenity list stagger */
.amenity-list li { opacity: 0; transform: translateX(-20px); transition: opacity .5s cubic-bezier(0.22, 1, 0.36, 1), transform .5s cubic-bezier(0.22, 1, 0.36, 1); }
.amenity-list li.visible { opacity: 1; transform: translateX(0); }

/* Testimonial cards float in */
.testimonial-card { opacity: 0; transform: translateY(40px); transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(.25, .46, .45, .94); }
.testimonial-card.visible { opacity: 1; transform: translateY(0); }

/* Blog cards tilt */
.blog-card { opacity: 0; transform: translateY(30px) rotate(-1deg); transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(.25, .46, .45, .94); }
.blog-card.visible { opacity: 1; transform: translateY(0) rotate(0); }

/* Booking cards rise */
.booking-card { opacity: 0; transform: translateY(40px); transition: opacity .7s cubic-bezier(0.22, 1, 0.36, 1), transform .7s cubic-bezier(.25, .46, .45, .94); }
.booking-card.visible { opacity: 1; transform: translateY(0); }

/* Distance list items */
.distance-list li { opacity: 0; transform: translateX(20px); transition: opacity .4s cubic-bezier(0.22, 1, 0.36, 1), transform .4s cubic-bezier(0.22, 1, 0.36, 1); }
.distance-list li.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays: inherited from base.css */

.cal-pulse { animation: calPulse 1.5s cubic-bezier(0.22, 1, 0.36, 1); }

/* ==========================================================================
   Responsive (Mobile-First: min-width)
   ========================================================================== */

/* --- 375px: Very small phones -> small phones --- */
@media (min-width: 375px) {
  .cal-grid { margin: 0; }
  .cal-day { padding: 5px 1px; height: 48px; }
  .cal-day .cal-price { font-size: .875rem; }
  .cal-day-head { font-size: .875rem; padding: 3px 0; }
  .cal-sel-label { font-size: .875rem; letter-spacing: .5px; }
  .booking-card { padding: 28px 20px; }
  .btn-wa-submit, .btn-email-submit, .btn-platform { font-size: .88rem !important; padding: 14px 10px !important; letter-spacing: .5px !important; }
  .date-field label { font-size: .875rem !important; }
  .booking-form .date-display { padding: 12px 34px 12px 12px !important; font-size: .9rem !important; }
  .fab-btn { width: 48px; height: 48px; padding: 12px; }
  .contact-fab { bottom: 16px; right: 12px; gap: 10px; }
}

/* --- 481px: Small phones -> regular phones --- */
@media (min-width: 481px) {
  body { font-size: 16px; }
  .hero-badge { font-size: .95rem; padding: 8px 24px; letter-spacing: 2px; }
  .hero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
  .hero-sub { font-size: clamp(1.1rem, 2.2vw, 1.4rem); margin-bottom: 40px; }
  .hero-cta-wrap { flex-direction: row; padding: 0; }
  .hero-cta-wrap .btn { width: auto; text-align: left; }
  .hero-rating-score { font-size: 1.5rem; }
  .hero-rating-label { font-size: .9rem; }
  .trust-bar-inner { gap: 20px; font-size: .95rem; }
  .trust-item .score { font-size: 1.25rem; }
  .nav-logo img { height: 48px; }
  .booking-card { padding: 28px 20px; }
  .badge-scores { gap: 44px; }
  .footer-contact { flex-direction: row; gap: 28px; }
  .modal-content { width: 90%; max-height: 85vh; }
  .cal-grid { gap: 1px; }
  .cal-day { padding: 6px 2px; height: 50px; }
  .cal-legend-item { font-size: .875rem; }
  .cal-legend-dot { width: 10px; height: 10px; }
  .lightbox img { max-width: 95vw; max-height: 80vh; }
  .testimonial-bubble { max-width: 95%; }
  .booking-info span { margin: 0 12px; }

  /* Undo mobile modal overrides */
  #modal-booking-summary .modal-summary-header { padding: 24px !important; }
  #modal-booking-summary .modal-summary-body { padding: 24px !important; }
  #modal-booking-summary .modal-summary-title { font-size: 1.4rem !important; margin-bottom: 8px !important; }
  #modal-booking-summary .modal-summary-subtitle { font-size: 1rem !important; }
  #modal-booking-summary .modal-stat-cell { padding: 14px 16px !important; }
  #modal-booking-summary .modal-price-block { padding: 20px !important; margin-bottom: 20px !important; }
  #modal-booking-summary .modal-guest-info { margin-bottom: 24px !important; }
  #modal-booking-summary .modal-summary-grid { margin-bottom: 20px !important; }
  #modal-booking-summary .modal-actions-row { gap: 12px !important; }
  #modal-booking-summary .modal-actions-footer { padding: 20px 24px !important; }
  #modal-booking-summary .modal-actions-row { flex-direction: row !important; }
  #modal-booking-summary .modal-actions-row .btn { min-width: auto !important; font-size: 1rem !important; padding: 14px 24px !important; width: auto !important; flex: 1 !important; }
  #modal-booking-confirm .modal-confirm-content { padding: 40px !important; }
}

/* --- 601px: Phones -> small tablets --- */
@media (min-width: 601px) {
  .trust-bar-inner { gap: 44px; font-size: 1.1rem; }
  .icon-boxes { grid-template-columns: repeat(2, 1fr); }
  .welcome-image img, .welcome-image video { height: 360px; }
  .welcome-morph { height: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .cookie-banner { padding: 20px 24px; gap: 14px; max-height: 40vh; }
  .cookie-providers { flex-direction: row; }
  .cookie-provider { max-width: 320px; padding: 12px 16px; }
  .cookie-provider-desc { font-size: .875rem; margin-bottom: 8px; }
  .cookie-btns { flex-direction: row; width: auto; }
  .cookie-btns button { width: auto; }
  .social-proof-toast { bottom: 16px; left: 16px; right: auto; max-width: 320px; padding: 14px 18px; border-radius: 12px; }
  .social-proof-toast .toast-icon { font-size: 1.6rem; }
  .social-proof-toast .toast-text { font-size: .88rem; }
  .modal { padding: 28px 20px; }
  .modal h3 { font-size: 1.2rem; }
  .cal-grid { gap: 2px; }
  .cal-day { padding: 6px 2px; height: 54px; }
  .cal-day .cal-price { font-size: .875rem; }
  .cal-day-head { font-size: .875rem; padding: 6px 0; }
  .cal-legend { grid-template-columns: repeat(3, auto); gap: 4px 14px; padding: 6px 10px; }
  .cta-banner-inner { flex-direction: row; gap: 28px; }
  .cta-banner-text { font-size: 1.25rem; }
  .cta-banner-btn { width: auto; padding: 12px 32px; white-space: nowrap; }
  .stoerer-content { flex-direction: row; text-align: left; gap: 24px; }
  .stoerer-newsletter { flex-direction: row; width: auto; }
  .stoerer-email { width: 220px; }
  .blog-stoerer { padding: 40px 36px; }
  .location-card[style*="grid-column"] div[style*="grid-template-columns"] { grid-template-columns: repeat(2, 1fr); }
  .fab-btn:hover { border-radius: 30px; width: auto; padding: 10px 16px; gap: 8px; }
  .fab-btn:hover .fab-label { max-width: 140px; opacity: 1; margin-left: 4px; }
}

/* --- 768px: Tablets --- */
@media (min-width: 768px) {
  .section { padding: 100px 0; }
  body { font-size: 18px; }
  .hero-slide::after { background: linear-gradient(180deg, rgba(10, 57, 78, .4) 0%, rgba(10, 57, 78, .6) 100%); }
  .hero h1 { text-shadow: 0 2px 16px rgba(10, 57, 78, .6), 0 4px 32px rgba(10, 57, 78, .3); }
  .hero-sub { text-shadow: 0 2px 12px rgba(10, 57, 78, .5), 0 1px 4px rgba(10, 57, 78, .4); }
  .hero-ratings { flex-direction: row; gap: 24px; }
  .hero-rating { width: auto; max-width: none; }
  .welcome-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .welcome-image img, .welcome-image video { height: 480px; }
  .welcome-morph { height: 480px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .host-card { padding: 48px 40px; }
  .host-avatar { width: 150px; height: 150px; }
  .amenities-grid { gap: 40px; }
  .testimonials-grid { gap: 24px; }
  .booking-wrap { padding: 0 40px; }
  .booking-card-light { padding: 40px 36px; }
  .booking-card { padding: 40px; }
  .booking-info { flex-direction: row; }
  .cookie-consent { padding: 24px 32px; }
  .cookie-services { flex-direction: row; }
  .cookie-service { max-width: 280px; }
  .nav-links .lang-switcher-mobile { display: none; }
  .nav-logo img { height: 32px; }
  .modal { padding: 40px; }
  .modal h3 { font-size: 1.4rem; }
  .cal-wrap { padding: 32px 28px 24px; margin-bottom: 36px; }
  .cal-header { flex-direction: row; justify-content: space-between; align-items: center; }
  .cal-legend { grid-template-columns: repeat(3, auto); gap: 6px 20px; padding: 8px 14px; }
  .cal-legend-item { font-size: .875rem; }
  .cal-selection { gap: 24px; }
  .cal-sel-date { font-size: 1.1rem; min-width: auto; }
  .cal-sel-label { font-size: .875rem; letter-spacing: 1px; }
  .location-card div[style*="grid-template-columns"] { grid-template-columns: repeat(2, 1fr) !important; }
  #modal-booking-summary .modal-summary-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* --- 901px: Tablets -> desktop --- */
@media (min-width: 901px) {
  .nav-toggle { display: none; }
  .nav-links {
    display: flex;
    position: static;
    background: none !important;
    backdrop-filter: none;
    flex-direction: row;
    padding: 0;
    gap: 16px;
    max-height: none;
    overflow-y: visible;
  }
  .nav-links a { font-size: .875rem; letter-spacing: .3px; }
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 57, 78, .97);
    backdrop-filter: blur(12px);
    border-radius: 0 0 8px 8px;
    padding: 16px 0 12px;
    box-shadow: 0 8px 24px rgba(10, 57, 78, .3);
    margin: 0;
  }
  .nav-links li:hover > .nav-dropdown { display: block; }
  .nav-links li.open > .nav-dropdown { display: block; }
  .nav-dropdown a { padding: 8px 20px; }
  .lang-switcher { display: flex; }
  .icon-boxes { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .amenities-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
  .location-cards { grid-template-columns: repeat(2, 1fr); max-width: 1100px; margin: 0 auto; }
  .map-container { height: 440px; }
  .form-group-contact { flex-direction: row; gap: 14px; }
  .form-group-contact .form-field { flex: 1; }
  .platform-links { flex-direction: row; justify-content: center; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cal-months { grid-template-columns: 1fr 1fr; gap: 24px; }
  .host-card { padding: 52px; }
  .host-avatar { width: 160px; height: 160px; }
}

/* --- 1024px: Desktop --- */
@media (min-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .icon-boxes { grid-template-columns: repeat(3, 1fr); }
  .location-cards { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- 1081px: Wide desktop nav --- */
@media (min-width: 1081px) {
  .nav-links a { font-size: .875rem; letter-spacing: .5px; }
  .nav-links { gap: 24px; }
}

@media (min-width: 1280px) {
  .booking-wrap { padding: 0 60px; }
  .booking-card-light { padding: 44px 48px; }
}

/* ==========================================================================
   Accessibility (WCAG AA)
   ========================================================================== */

/* Skip-to-content link — visible only on focus for keyboard users */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--bg-primary);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  transition: top .2s;
}

.skip-link:focus {
  top: 0;
}

/* Global focus-visible ring */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Focus ring on dark surfaces */
.footer :focus-visible,
.booking :focus-visible,
.section-dark :focus-visible,
[style*="background:var(--bg-primary)"] :focus-visible {
  outline-color: var(--accent);
}

/* Remove default focus for mouse users, keep for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}

/* GDPR consent checkbox */
.form-consent-row { margin-top: 4px; }

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: .875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .7);
}

.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.consent-label a {
  color: var(--accent);
  text-decoration: underline;
}

.consent-label a:hover {
  color: var(--gold-light);
}

/* Minimum touch targets (44x44px WCAG) */
.nav-toggle,
.fab-btn,
.lang-btn,
.cal-nav,
.modal-close,
.toast-close,
.cookie-close {
  min-width: 44px;
  min-height: 44px;
}

/* Reduced motion — disable animations for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  html { scroll-behavior: auto; }
  .fade-in { opacity: 1 !important; transform: none !important; }
  .skip-link { transition: none; }
}
