:root {
  --ossi-green-dark: #142E21;
  --ossi-green: #1B3C2A;
  --ossi-green-light: #2D5A3F;
  --ossi-olive: #6B7B3A;
  --ossi-gold: #B8A44E;
  --ossi-cream: #F7F3EB;
  --ossi-rose: #C46B7A;
  --ossi-dark: #0A140E;
  --ossi-white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-bg-light: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.15);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--ossi-dark);
  color: var(--ossi-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   GLASSMORPHISM SYSTEM
   ============================================ */

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.glass-light {
  background: var(--glass-bg-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.glass-dark {
  background: rgba(10, 20, 14, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.glass-green {
  background: rgba(27, 60, 42, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(45, 90, 63, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  pointer-events: none;
}

.logo-container {
  position: fixed;
  top: 16px;
  left: 24px;
  z-index: 1001;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 8px 16px;
  pointer-events: all;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.logo-container img {
  height: 44px;
  width: auto;
  display: block;
}

.navbar-pill {
  background: rgba(10, 20, 14, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-radius: 9999px;
  padding: 12px 40px;
  pointer-events: all;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar-pill:hover {
  background: rgba(10, 20, 14, 0.85);
}

.navbar-pill a {
  color: var(--ossi-cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-pill a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ossi-gold);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.navbar-pill a:hover {
  color: var(--ossi-gold);
}

.navbar-pill a:hover::after {
  width: 100%;
}

/* ============================================
   MOBILE MENU
   ============================================ */

.mobile-menu-btn {
  display: none;
  pointer-events: all;
  background: rgba(10, 20, 14, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px 16px;
  color: var(--ossi-cream);
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(10, 20, 14, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  color: var(--ossi-cream);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--ossi-gold);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('imgs/terrasse-aussen.jpeg') center 30% / cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><radialGradient id="g" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="%23B8A44E" stop-opacity="0.08"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><circle cx="25" cy="25" r="20" fill="url(%23g)"/><circle cx="75" cy="75" r="25" fill="url(%23g)"/></svg>') repeat;
  background-size: 400px 400px;
  animation: float-pattern 20s linear infinite;
}

@keyframes float-pattern {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-400px, -400px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 20, 14, 0.45) 0%, rgba(10, 20, 14, 0.55) 40%, rgba(10, 20, 14, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--ossi-cream) 0%, var(--ossi-gold) 50%, var(--ossi-cream) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: rgba(247, 243, 235, 0.7);
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ossi-gold), transparent);
  margin: 0 auto 40px;
}

/* ============================================
   CTA BUTTONS
   ============================================ */

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--ossi-green) 0%, var(--ossi-green-light) 100%);
  color: var(--ossi-cream);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(27, 60, 42, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(27, 60, 42, 0.6);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ossi-cream);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--ossi-gold) 0%, #C9B85C 100%);
  color: var(--ossi-dark);
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(184, 164, 78, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(184, 164, 78, 0.5);
}

/* ============================================
   FLOATING CTA (fixed)
   ============================================ */

.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.floating-cta .cta-call {
  background: linear-gradient(135deg, var(--ossi-green) 0%, var(--ossi-green-light) 100%);
  color: white;
}

.floating-cta .cta-reserve {
  background: linear-gradient(135deg, var(--ossi-gold) 0%, #C9B85C 100%);
  color: var(--ossi-dark);
}

.floating-cta a:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ============================================
   SECTIONS
   ============================================ */

.section-padding {
  padding: 120px 24px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: rgba(247, 243, 235, 0.6);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 64px;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ossi-gold), transparent);
  margin: 16px auto 16px;
}

/* ============================================
   OFFERS CARDS
   ============================================ */

.offer-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.offer-card .offer-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--ossi-gold) 0%, #C9B85C 100%);
  color: var(--ossi-dark);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  z-index: 2;
}

.offer-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ossi-gold);
}

/* ============================================
   MENU FILTER
   ============================================ */

.filter-btn {
  padding: 10px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--ossi-cream);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--ossi-green) 0%, var(--ossi-green-light) 100%);
  border-color: var(--ossi-green-light);
  color: white;
  box-shadow: 0 4px 16px rgba(27, 60, 42, 0.3);
}

.menu-item {
  padding: 20px 24px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.menu-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-user-select: none;
  user-select: none;
}

.gallery-item video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  max-height: 70vh;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:active img {
  transform: scale(1.03);
  transition-duration: 0.15s;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 14, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay svg {
  width: 40px;
  height: 40px;
  color: white;
  transform: scale(0.7);
  transition: transform 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* ============================================
   STORY PATH (Über uns — keine Jahreszahlen)
   ============================================ */

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--ossi-gold), var(--ossi-green), var(--ossi-gold), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 60px;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--ossi-gold);
  border: 3px solid var(--ossi-dark);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(184, 164, 78, 0.4);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-content {
  border-radius: 20px;
  padding: 24px;
}

.story-kicker {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ossi-gold);
  margin-bottom: 10px;
  line-height: 1.4;
  opacity: 0.92;
}

.timeline-item:nth-child(odd) .story-kicker {
  text-align: right;
}

.timeline-item:nth-child(even) .story-kicker {
  text-align: left;
}

/* ============================================
   QUANDOO WIDGET
   ============================================ */

.quandoo-wrapper {
  display: block;
  width: 100%;
  text-align: center;
}

#quandoo-booking-widget {
  display: block;
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  padding: 8px;
  min-height: 480px;
  text-align: left;
}

#quandoo-booking-widget > * {
  width: 100% !important;
  max-width: 100% !important;
}

#quandoo-booking-widget iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 460px !important;
  border: none !important;
  border-radius: 14px !important;
  display: block !important;
}

@media (max-width: 768px) {
  #quandoo-booking-widget {
    max-width: 100%;
    border-radius: 16px;
    padding: 4px;
    min-height: 420px;
  }
  #quandoo-booking-widget iframe {
    min-height: 400px !important;
    border-radius: 12px !important;
  }
}

/* ============================================
   MAP
   ============================================ */

.map-container {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 20px 24px;
  background: rgba(10, 20, 14, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.visible {
  transform: translateY(0);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: rgba(10, 20, 14, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer a {
  color: rgba(247, 243, 235, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--ossi-gold);
}

/* ============================================
   SUBPAGE STYLES
   ============================================ */

.subpage-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--ossi-dark) 0%, var(--ossi-green-dark) 50%, var(--ossi-dark) 100%);
  position: relative;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}

.legal-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  color: var(--ossi-gold);
  margin: 48px 0 16px;
}

.legal-content h3 {
  font-size: 1.1rem;
  color: var(--ossi-cream);
  margin: 32px 0 12px;
}

.legal-content p,
.legal-content li {
  color: rgba(247, 243, 235, 0.75);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content a {
  color: var(--ossi-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 94vw;
  max-height: 92vh;
  padding: 12px;
}

.lightbox-img,
.lightbox img {
  max-width: 90vw;
  max-height: 78vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  object-fit: contain;
  -webkit-user-select: none;
  user-select: none;
  transition: opacity 0.25s ease;
}

.lightbox-close {
  position: absolute;
  top: max(12px, env(safe-area-inset-top, 12px));
  right: 12px;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }
.lightbox-close:active { background: rgba(255, 255, 255, 0.35); transform: scale(0.92); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-nav:active { background: rgba(255, 255, 255, 0.32); transform: translateY(-50%) scale(0.92); }

.lightbox-nav-prev { left: 12px; }
.lightbox-nav-next { right: 12px; }

/* ============================================
   ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ossi-dark); }
::-webkit-scrollbar-thumb {
  background: var(--ossi-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--ossi-green-light);
}

/* ============================================
   MOBILE CTA BAR (sticky bottom)
   ============================================ */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 20, 14, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-bar .cta-inner {
  display: flex;
  gap: 10px;
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 12px;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-cta-bar a:active {
  transform: scale(0.96);
}

.mobile-cta-bar .mcta-call {
  background: linear-gradient(135deg, var(--ossi-green) 0%, var(--ossi-green-light) 100%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-cta-bar .mcta-reserve {
  background: linear-gradient(135deg, var(--ossi-gold) 0%, #C9B85C 100%);
  color: var(--ossi-dark);
  box-shadow: 0 4px 16px rgba(184, 164, 78, 0.25);
}

/* ============================================
   PULSE ANIMATION (floating CTAs)
   ============================================ */

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(184, 164, 78, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(184, 164, 78, 0); }
  100% { box-shadow: 0 0 0 0 rgba(184, 164, 78, 0); }
}

.floating-cta .cta-reserve {
  animation: pulse-ring 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================
   MOBILE MENU ENHANCEMENTS
   ============================================ */

.mobile-menu a,
.mobile-menu .mobile-menu-ctas {
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.4s ease;
}

.mobile-menu.active a,
.mobile-menu.active .mobile-menu-ctas {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.active a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu.active a:nth-child(7) { transition-delay: 0.3s; }
.mobile-menu.active .mobile-menu-ctas { transition-delay: 0.35s; }

/* ============================================
   TOUCH-FRIENDLY TARGETS
   ============================================ */

@media (pointer: coarse) {
  .filter-btn {
    min-height: 44px;
    padding: 12px 20px;
  }

  .gallery-item:hover img { transform: none; }
  .gallery-item:active img { transform: scale(1.04); transition-duration: 0.2s; }

  .gallery-overlay { opacity: 0; }
  .gallery-item:active .gallery-overlay { opacity: 0.7; }

  .glass-card:hover { transform: none; }
  .glass-card:active { transform: scale(0.98); transition-duration: 0.15s; }

  .btn-primary:active,
  .btn-secondary:active,
  .btn-gold:active {
    transform: scale(0.96);
    transition-duration: 0.1s;
  }

  .navbar-pill a { padding: 8px 4px; }

  .lightbox-nav { width: 48px; height: 48px; min-width: 48px; min-height: 48px; }
  .lightbox-nav-prev { left: 6px; }
  .lightbox-nav-next { right: 6px; }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .navbar-pill { padding: 10px 24px; }
  .navbar-pill a { font-size: 0.8rem; }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  .navbar-pill { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-cta-bar { display: block; }

  .floating-cta { display: none; }

  .logo-container {
    left: 16px;
    top: 12px;
    padding: 6px 12px;
    border-radius: 14px;
  }

  .logo-container img { height: 34px; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 0 20px; }
  .hero-title { line-height: 1.1; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; letter-spacing: 1.5px; }
  .hero-subtitle { letter-spacing: 2px; margin-bottom: 32px; }
  .hero-divider { margin-bottom: 32px; }

  .section-padding { padding: 72px 16px; }
  .section-subtitle { font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 48px; }

  .timeline::before { left: 20px; }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    padding: 0 0 32px 48px;
    text-align: left !important;
  }

  .timeline-dot {
    left: 12px !important;
    right: auto !important;
  }

  .timeline-content { padding: 20px; }
  .story-kicker {
    font-size: 0.625rem;
    letter-spacing: 0.18em;
    text-align: left !important;
  }

  .map-container iframe { height: 300px; }

  .cookie-banner {
    padding: 16px;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .cookie-banner .max-w-6xl {
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner p { font-size: 0.8rem; }

  .footer .grid { gap: 32px; }

  .glass-dark { padding: 24px !important; }

  #quandoo-booking-widget { min-height: 350px; }

  .offer-price { font-size: 1.6rem; }

  .menu-item { padding: 16px; }

  .lightbox-close {
    top: max(10px, env(safe-area-inset-top, 10px));
    right: 10px;
    width: 44px;
    height: 44px;
  }

  .lightbox-img,
  .lightbox img {
    max-width: 96vw;
    max-height: 72vh;
    border-radius: 10px;
  }

  .lightbox-content { padding: 8px; }

  .lightbox-nav { display: none; }

  .gallery-item { border-radius: 14px; }
  .gallery-item video { border-radius: 14px; max-height: 50vh; }

  .legal-content { padding: 60px 20px 100px; }
  .legal-content h2 { font-size: 1.35rem; margin-top: 36px; }
  .legal-content h3 { font-size: 1rem; }

  .subpage-hero { min-height: 35vh; }
}

@media (max-width: 480px) {
  .cta-group {
    flex-direction: column;
    align-items: stretch;
    padding: 0 8px;
    gap: 12px;
  }

  .btn-primary, .btn-secondary, .btn-gold {
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .gallery-item { border-radius: 12px; }
  .gallery-item video { border-radius: 12px; }
  .gallery-overlay { border-radius: 12px; }
  .gallery-overlay svg { width: 28px; height: 28px; }

  .hero-content { padding: 0 16px; }

  .logo-container {
    left: 12px;
    top: 10px;
    padding: 5px 10px;
    border-radius: 12px;
  }

  .logo-container img { height: 30px; }

  .mobile-menu-btn {
    padding: 10px 14px;
    border-radius: 14px;
  }

  .navbar-wrapper {
    padding: 10px 12px;
    justify-content: flex-end;
  }

  .mobile-menu a {
    font-size: 1.3rem;
  }

  .glass-card {
    border-radius: 20px;
  }

  .offer-card .h-48 { height: 140px; }

  .timeline-item { padding: 0 0 28px 44px; }
  .timeline-content { padding: 16px; }

  .filter-btn {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .footer .grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer .grid img { margin: 0 auto; }
  .footer .grid nav { align-items: center; }

  .mobile-cta-bar a {
    padding: 12px 10px;
    font-size: 0.85rem;
    border-radius: 14px;
  }

  .cookie-banner .flex.gap-3 {
    width: 100%;
  }

  .cookie-banner .flex.gap-3 button:first-child {
    flex: 1;
  }
}

@media (max-width: 360px) {
  .hero-title { font-size: 2.5rem; }
  .hero-badge { font-size: 0.65rem; }
  .section-title { font-size: 1.6rem; }
  .mobile-cta-bar a { font-size: 0.8rem; padding: 11px 8px; }
  .mobile-menu a { font-size: 1.15rem; }
  .btn-primary, .btn-secondary, .btn-gold { font-size: 0.85rem; padding: 12px 20px; }
}

/* ============================================
   LANDSCAPE PHONE
   ============================================ */

@media (max-height: 500px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 100px 24px 60px; }
  .hero-title { font-size: 2.5rem; }
  .section-padding { padding: 60px 16px; }
  .mobile-menu { gap: 12px; }
  .mobile-menu a { font-size: 1.1rem; }

  .lightbox-img,
  .lightbox img { max-height: 80vh; max-width: 85vw; }
  .lightbox-nav { display: flex; }
  .lightbox-nav-prev { left: 8px; }
  .lightbox-nav-next { right: 8px; }
}

/* ============================================
   SAFE AREA (iPhone notch)
   ============================================ */

@supports (padding: env(safe-area-inset-bottom)) {
  .mobile-cta-bar {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .cookie-banner {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
  .footer {
    padding-bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

/* ============================================
   LOADING SKELETON
   ============================================ */

.skeleton {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.05) 25%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,255,255,0.05) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 12px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Particle background for hero */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(184, 164, 78, 0.3);
  border-radius: 50%;
  pointer-events: none;
}
