/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  --bg: #F8F2E8;
  --bg-card: #F3EBDD;
  --bg-alt: #EFE4D2;
  --primary: #2A7B6A;
  --primary-dark: #1E5A4C;
  --primary-deep: #1C4A3E;
  --accent: #D4704E;
  --accent-dark: #B85E3F;
  --amber: #C49040;
  --text: #1C1C1C;
  --text-light: #555;
  --text-muted: #888;
  --card: #FCF7EF;
  --border: #DECFB8;
  --shadow: rgba(0,0,0,0.06);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-pill: 50px;
  --nav-bg-scroll: rgba(248,242,232,0.92);
}
[data-theme="dark"] {
  --bg: #1A3830;
  --bg-card: #243D35;
  --bg-alt: #1F3F37;
  --primary: #3A9B8A;
  --primary-dark: #2E7D6E;
  --primary-deep: #162E28;
  --accent: #D4704E;
  --accent-dark: #B85E3F;
  --amber: #C7B38A;
  --text: #E8E1D4;
  --text-light: #B0A898;
  --text-muted: #7A7268;
  --card: #1F3F37;
  --border: #2A4D44;
  --shadow: rgba(0,0,0,0.3);
  --nav-bg-scroll: rgba(22,46,40,0.92);
}
/* Theme transition class — applied temporarily during toggle */
html.theme-transition,
html.theme-transition *,
html.theme-transition *::before,
html.theme-transition *::after {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* ═══════════════════════════════════════════
   RESET & BASE (Mobile-First)
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter Tight', sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.7; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 16px; }

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

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
.heading-serif {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 700; line-height: 1.15;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px; letter-spacing: 0.3px;
  transition: all 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  white-space: nowrap; min-height: 48px;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,123,106,0.3); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,112,78,0.3); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.12); }
.btn-sm { padding: 12px 28px; font-size: 13px; }

/* ═══════════════════════════════════════════
   SECTION HELPERS
   ═══════════════════════════════════════════ */
.section { padding: 80px 0; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: 'Inter Tight', sans-serif;
  font-size: 32px; font-weight: 700; line-height: 1.2;
  color: var(--text); margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--text-light);
  max-width: 540px; line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ═══════════════════════════════════════════
   NAVIGATION — Logo CENTERED, Hamburger RIGHT
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  padding: 0 40px; height: 112px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; transition: all 0.4s ease;
}
.nav.scrolled {
  background: var(--nav-bg-scroll);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

/* Nav spacer removed — using nav-left/nav-right instead */

.nav-logo { position: absolute; top: calc(50% + 20px); left: 50%; transform: translate(-50%, -50%); z-index: 2; }
.nav-logo img { width: 140px; height: auto; transition: filter 0.4s, width 0.3s ease; filter: brightness(0) saturate(100%) invert(87%) sepia(19%) saturate(400%) hue-rotate(5deg) brightness(103%) contrast(90%); }
.nav.scrolled .nav-logo img { width: 100px; filter: none; }
.nav:not(.scrolled) .nav-logo img { filter: brightness(0) saturate(100%) invert(87%) sepia(19%) saturate(400%) hue-rotate(5deg) brightness(103%) contrast(90%); }

/* Desktop nav links hidden by default (mobile-first) */
.nav-links { display: none; }

/* Hamburger always visible, positioned in nav-right */
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
  width: 28px; padding: 4px 0; z-index: 1100;
}
.nav-hamburger span {
  display: block; height: 2px; border-radius: 2px;
  transition: all 0.3s ease;
}
.nav:not(.scrolled) .nav-hamburger span { background: #fff; }
.nav.scrolled .nav-hamburger span { background: var(--text); }
.nav-hamburger.active span { background: #fff !important; }
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile fullscreen menu */
.nav-mobile {
  position: fixed; inset: 0; z-index: 1100;
  background: var(--primary-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.4s;
}
.nav-mobile.active { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-size: 31px; font-weight: 500; color: #fff;
  transition: color 0.3s;
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .nav-cta-mobile {
  font-size: 17px; font-weight: 600;
  background: var(--accent); color: #fff;
  padding: 16px 40px; border-radius: var(--radius-pill);
  margin-top: 16px; transition: all 0.3s;
}

/* ═══════════════════════════════════════════
   HERO — Fullscreen Background Image
   ═══════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: -webkit-image-set(
    url('./assets/tour-xl-pano.avif') type('image/avif'),
    url('./assets/tour-xl-pano.webp') type('image/webp')
  );
  background-image: image-set(
    url('./assets/tour-xl-pano.avif') type('image/avif'),
    url('./assets/tour-xl-pano.webp') type('image/webp')
  );
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 112px 20px 0;
  text-align: center;
}
.hero-text { z-index: 2; }
.hero-badge {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: #fff; margin-bottom: 20px;
  padding: 6px 16px; border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-pill);
}
.hero h1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 48px; font-weight: 600; line-height: 1.08;
  color: #fff; margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic; color: var(--accent);
  display: block; margin-top: 4px;
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,0.85);
  margin-bottom: 32px; line-height: 1.7; max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll-icon {
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 11px; position: relative;
}
.hero-scroll-icon::after {
  content: ''; position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 3px; height: 7px; border-radius: 2px; background: rgba(255,255,255,0.6);
  animation: scrollDot 1.5s ease infinite;
}
@keyframes scrollDot {
  0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
  50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.trust {
  background: var(--bg-card); padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: flex; flex-direction: column; gap: 20px;
  align-items: center;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
}
.trust-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.trust-text { font-size: 14px; font-weight: 700; color: var(--text); }
.trust-text small { display: block; font-weight: 400; color: var(--text-muted); font-size: 12px; }

/* ═══════════════════════════════════════════
   TOUR BLADES — Card layout, always image RIGHT
   ═══════════════════════════════════════════ */
#touren {
  display: flex; flex-direction: column; gap: 40px;
  padding: 80px 20px; max-width: 1200px; margin: 0 auto;
}

.tour-section {
  border-radius: 24px; overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.10);
}
.tour-section:hover,
.tour-section:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.18);
}
.tour-section[data-tour="xs"] { background: #C7B38A !important; }
.tour-section[data-tour="s"] { background: #95886C !important; }
.tour-section[data-tour="m"] { background: #90A7A1 !important; }
.tour-section[data-tour="l"] { background: #4C9691 !important; }
.tour-section[data-tour="xl"] { background: #2A6560 !important; }

.tour-section-inner {
  display: flex; flex-direction: column;
  position: relative;
}

.tour-content {
  padding: 40px 24px; position: relative; z-index: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.tour-section-inner,
.tour-content { background: transparent !important; }
.tour-section:hover .tour-content,
.tour-section:focus-within .tour-content {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

/* Decorative size label — large, transparent */
.tour-size-deco {
  font-family: 'Inter Tight', sans-serif;
  font-size: 80px; font-weight: 700; line-height: 1;
  opacity: 0.2; color: #FFFFFF;
  pointer-events: none; user-select: none; -webkit-user-select: none;
  margin-bottom: -8px;
}

.tour-content .tour-tag {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 8px; margin-bottom: 12px;
}
.tour-tag-popular { background: rgba(255,255,255,0.2); color: #fff; }
.tour-tag-premium { background: rgba(255,255,255,0.2); color: #fff; }

.tour-content h3 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 24px; font-weight: 700; color: #fff;
  margin-bottom: 12px;
}

/* Gold divider line */
.tour-divider {
  width: 60px; height: 3px; background: rgba(255,255,255,0.4);
  border-radius: 2px; margin-bottom: 16px;
}

.tour-meta {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 16px;
}
.tour-meta span {
  font-size: 13px; color: rgba(255,255,255,0.8);
  display: flex; align-items: center; gap: 4px;
}
.tour-content p {
  font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.7;
  margin-bottom: 20px; max-width: 480px;
}
.tour-price {
  font-family: 'Inter Tight', sans-serif;
  font-size: 32px; font-weight: 700; color: #fff;
  margin-bottom: 4px;
}
.tour-price small {
  font-family: 'Inter Tight', sans-serif; font-size: 13px;
  font-weight: 400; color: rgba(255,255,255,0.7);
}
.tour-price-note {
  font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 20px;
}
.tour-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.tour-buttons .btn-primary {
  background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5);
}
.tour-buttons .btn-primary:hover {
  background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px);
  box-shadow: none;
}
.tour-buttons .btn-outline {
  border-color: rgba(255,255,255,0.3); color: #fff;
}
.tour-buttons .btn-outline:hover {
  border-color: #fff; background: rgba(255,255,255,0.12); color: #fff;
}

/* Tour image */
.tour-image-wrap {
  overflow: hidden; position: relative;
  border-radius: 0;
}
.tour-image-wrap picture { display: block; }
.tour-image-wrap img {
  width: 100%; height: 100%; min-height: 300px; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
/* ═══════════════════════════════════════════
   BOOKING FORM — Progress DOTS, mobile-first
   ═══════════════════════════════════════════ */
.booking { background: var(--card); }
.booking-wrapper {
  max-width: 600px; margin: 0 auto; margin-top: 40px;
  padding: 40px 24px; background: var(--bg-card); border-radius: var(--radius);
}

/* Progress dots */
.booking-progress {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-bottom: 40px;
}
.booking-dot {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.booking-dot-circle {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--border); transition: all 0.4s;
  position: relative;
}
.booking-dot.active .booking-dot-circle,
.booking-dot.done .booking-dot-circle {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(42,123,106,0.15);
}
.booking-dot-label {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  transition: color 0.3s; text-transform: uppercase; letter-spacing: 1px;
}
.booking-dot.active .booking-dot-label,
.booking-dot.done .booking-dot-label { color: var(--primary); }
.booking-dot-connector {
  width: 40px; height: 2px; background: var(--border);
  transition: background 0.4s; align-self: flex-start; margin-top: 6px;
}
.booking-dot-connector.done { background: var(--primary); }

/* Form steps */
.booking-form { position: relative; }
.booking-panel {
  display: none; animation: panelIn 0.4s ease;
}
.booking-panel.active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 18px 20px;
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg); color: var(--text); font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
  -webkit-appearance: none; min-height: 56px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(42,123,106,0.1);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }

/* Tour selection cards in booking */
.tour-select-grid {
  display: grid; grid-template-columns: 1fr; gap: 10px;
  margin-bottom: 20px;
}
.tour-select-card {
  border: 2px solid var(--border); border-radius: var(--radius-sm);
  padding: 16px; cursor: pointer; transition: all 0.3s;
  display: flex; justify-content: space-between; align-items: center;
}
.tour-select-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(28,28,28,0.12);
}
.tour-select-card.selected {
  border-color: var(--primary); background: rgba(42,123,106,0.05);
  box-shadow: 0 8px 18px rgba(42,123,106,0.14);
}
.tour-select-card h4 { font-size: 15px; font-weight: 600; }
.tour-select-card .tour-select-price {
  font-family: 'Inter Tight', sans-serif; font-size: 18px;
  font-weight: 700; color: var(--accent);
}
.tour-select-card small { font-size: 12px; color: var(--text-muted); display: block; }

/* Summary */
.booking-summary {
  background: var(--bg); border-radius: var(--radius-sm); padding: 20px;
  margin-bottom: 20px;
}
.booking-summary-row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: 14px;
}
.booking-summary-row:last-child { border-bottom: none; }
.booking-summary-row strong { color: var(--text); }
.booking-summary-row span { color: var(--text-light); }

.booking-notice {
  background: rgba(42,123,106,0.06); border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin-bottom: 20px;
  font-size: 14px; color: var(--primary-dark); line-height: 1.6;
}
.booking-notice strong { display: block; margin-bottom: 4px; }

.booking-storno {
  background: #D4856A; color: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 22px; margin-bottom: 20px;
  font-size: 14px; line-height: 1.6; font-weight: 500;
}
.booking-storno strong { color: #fff; }

.form-checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 20px; cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 22px; height: 22px; margin-top: 2px; accent-color: var(--primary);
  flex-shrink: 0; min-width: 22px;
}
.form-checkbox span { font-size: 14px; color: var(--text-light); }

.booking-nav {
  display: flex; gap: 12px; flex-direction: column; margin-top: 32px;
}
.booking-nav .btn { width: 100%; min-height: 56px; font-size: 15px; font-weight: 700; }

/* ═══════════════════════════════════════════
   STICKY MOBILE BOOK BUTTON
   ═══════════════════════════════════════════ */
.mobile-book-btn {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  padding: 12px 20px; padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: var(--primary-deep);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.mobile-book-btn.visible { transform: translateY(0); }
.mobile-book-btn .btn {
  width: 100%; font-size: 16px; padding: 18px;
  background: var(--primary); color: #fff;
  border-radius: var(--radius-pill);
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how { background: var(--bg); }
.how-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 48px;
}
.how-step { text-align: center; }
.how-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 28px;
  transition: all 0.4s;
}
.how-step:hover .how-icon {
  border-color: var(--primary); background: var(--primary); color: #fff;
  transform: translateY(-4px); box-shadow: 0 12px 32px var(--shadow);
}
.how-num {
  font-family: 'Inter Tight', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--accent); margin-bottom: 6px;
}
.how-step h3 {
  font-family: 'Inter Tight', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.how-step p { font-size: 14px; color: var(--text-light); line-height: 1.6; max-width: 280px; margin: 0 auto; }

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.reviews { background: var(--card); }
.reviews-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
  justify-content: center; margin-top: 8px;
}
.reviews-badge {
  background: var(--primary); color: #fff;
  padding: 6px 14px; border-radius: 8px;
  font-family: 'Inter Tight', sans-serif; font-size: 22px; font-weight: 700;
}
.reviews-stars { color: var(--amber); font-size: 24px; }
.reviews-count { font-size: 14px; color: var(--text-muted); }
.reviews-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px;
}
.review-card {
  background: var(--bg); border-radius: var(--radius);
  padding: 32px; transition: transform 0.3s;
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--amber); margin-bottom: 16px; font-size: 24px; letter-spacing: 2px; }
.review-text {
  font-size: 17px; color: var(--text); line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.review-text::before { content: '\201E'; }
.review-text::after { content: '\201C'; }
.review-author { font-size: 15px; font-weight: 700; color: var(--text); }
.review-author small { display: block; font-weight: 500; color: var(--text-muted); font-size: 13px; margin-top: 2px; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq { background: var(--bg); }
.faq-list { max-width: 680px; margin: 40px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0 16px; border-radius: var(--radius-sm);
  transition: background 0.3s;
}
.faq-item:hover { background: var(--bg-card); }
.faq-question {
  width: 100%; padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; color: var(--text);
  cursor: pointer; text-align: left; background: none; border: none;
  font-family: 'Inter Tight', sans-serif; min-height: 56px; gap: 16px;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
  background: var(--card); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--text-muted); transition: all 0.3s;
}
.faq-item.open .faq-icon {
  background: var(--primary); color: #fff; border-color: var(--primary);
  transform: rotate(45deg);
}
.faq-answer {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.faq-answer > p {
  overflow: hidden; min-height: 0;
  padding-bottom: 0; font-size: 14px; color: var(--text-light); line-height: 1.7;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer > p { padding-bottom: 20px; }

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  background: var(--primary-deep); padding: 80px 0; text-align: center;
}
.cta-section .section-label { color: var(--accent); }
.cta-section .section-title { color: #fff; }
.cta-section .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto 32px; }

/* ═══════════════════════════════════════════
   FOOTER — Dark Petrol #1C4A3E
   ═══════════════════════════════════════════ */
.footer {
  background: var(--primary-deep); color: rgba(255,255,255,0.5); padding: 80px 0 48px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px;
}
.footer-brand { text-align: center; }
.footer-brand img { height: 72px; margin: 0 auto 24px; padding-bottom: 0; filter: brightness(0) saturate(100%) invert(87%) sepia(19%) saturate(412%) hue-rotate(351deg) brightness(98%) contrast(90%); }
.footer-brand p { font-size: 15px; line-height: 1.7; max-width: 280px; margin: 0 auto; }
.footer-grid { gap: 48px; }
.footer-col h4 {
  font-family: 'Inter Tight', sans-serif; font-size: 15px; font-weight: 600;
  color: #fff; margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 15px; color: rgba(255,255,255,0.5);
  margin-bottom: 10px; transition: color 0.3s; min-height: 32px;
  display: flex; align-items: center;
}
.footer-col a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 0;
  transition: all 0.3s; min-height: 40px;
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px; display: flex; flex-direction: column; gap: 10px;
  align-items: center; text-align: center; font-size: 15px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); margin: 0 10px; }
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 899px) {
  .footer-col { text-align: center; }
  .footer-col h4 { text-align: center; }
  .footer-col a { justify-content: center; }
  .footer-social { justify-content: center; }
}

/* ═══════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
  padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--card); border-radius: var(--radius);
  padding: 40px 28px; max-width: 440px; width: 100%;
  text-align: center; transform: scale(0.9); transition: transform 0.3s;
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(42,123,106,0.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 32px;
}
.modal h3 {
  font-family: 'Inter Tight', sans-serif; font-size: 24px; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
}
.modal p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.modal-summary {
  background: var(--bg); border-radius: var(--radius-sm); padding: 16px 20px;
  margin-bottom: 20px; text-align: left; font-size: 14px;
}
.modal-summary-row {
  display: flex; justify-content: space-between; padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.modal-summary-row:last-child { border-bottom: none; }
.modal-summary-row span { color: var(--text-muted); }
.modal-summary-row strong { color: var(--text); }
.modal-buttons { display: flex; flex-direction: column; gap: 10px; }
.btn-whatsapp {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 16px 36px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 14px; letter-spacing: 0.3px;
  background: #25D366; color: #fff; min-height: 48px;
  transition: all 0.3s; text-decoration: none;
}
.btn-whatsapp:hover { background: #1DA851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
/* ═══════════════════════════════════════════
   THEME TOGGLE — Circle button top right
   ═══════════════════════════════════════════ */
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--text); color: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; cursor: pointer; border: none;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  z-index: 1100; flex-shrink: 0;
}
.theme-toggle:hover { transform: scale(1.1); }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ═══════════════════════════════════════════
   LANGUAGE TOGGLE — DE | EN
   ═══════════════════════════════════════════ */
.lang-toggle {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px; font-weight: 500; letter-spacing: 1px;
  background: none; border: 2px solid var(--text);
  color: var(--text); padding: 6px 14px;
  border-radius: var(--radius-pill); cursor: pointer;
  transition: all 0.3s; z-index: 1100; flex-shrink: 0;
  white-space: nowrap;
}
.lang-toggle:hover { background: var(--text); color: var(--bg); }
.nav:not(.scrolled) .lang-toggle { border-color: #fff; color: #fff; }
.nav:not(.scrolled) .lang-toggle:hover { background: #fff; color: #1C1C1C; }
.nav:not(.scrolled) .theme-toggle { background: #fff; color: #1C1C1C; }

/* ═══════════════════════════════════════════
   NAV LEFT / RIGHT containers
   ═══════════════════════════════════════════ */
.nav-left {
  position: absolute; left: 20px;
  display: flex; align-items: center; gap: 12px;
}
.nav-right {
  position: absolute; right: 20px;
  display: flex; align-items: center; gap: 16px;
}

/* ═══════════════════════════════════════════
   IMPRESSUM & DATENSCHUTZ Sections
   ═══════════════════════════════════════════ */
.legal-section {
  background: var(--bg-alt); padding: 80px 0;
  border-top: 1px solid var(--border);
}
.legal-section h2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--text);
  margin-bottom: 24px;
}
.legal-section h3 {
  font-size: 18px; font-weight: 600; color: var(--text);
  margin: 24px 0 12px;
}
.legal-section p, .legal-section li {
  font-size: 15px; color: var(--text-light); line-height: 1.8;
  margin-bottom: 12px;
}
.legal-section ul { padding-left: 20px; margin-bottom: 16px; }
.legal-section a { color: var(--primary); text-decoration: underline; }

.reveal { clip-path: inset(100% 0 0 0); }
.fade-up { opacity: 0; transform: translateY(40px); }

/* ═══════════════════════════════════════════
   RESPONSIVE — Tablet (600px+)
   ═══════════════════════════════════════════ */
@media (min-width: 600px) {
  .container { padding: 0 32px; }
  .section { padding: 100px 0; }
  .section-title { font-size: 38px; }
  .hero h1 { font-size: 64px; }
  .nav-left { left: 32px; }
  .nav-right { right: 32px; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .trust-grid { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 40px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  #touren { padding: 80px 32px; }
  .tour-content { padding: 40px 32px; }
  .tour-image-wrap img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-nav { flex-direction: row; justify-content: space-between; }
  .booking-nav .btn { width: auto; min-width: 160px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Desktop (900px+)
   ═══════════════════════════════════════════ */
@media (min-width: 900px) {
  .container { padding: 0 48px; }
  .nav { padding: 0 48px; height: 92px; }
  .nav.scrolled .nav-logo { top: 50%; }
  .nav-left { left: 48px; }
  .nav-right { right: 48px; }
  .nav-hamburger { right: auto; position: relative; }
  .tour-section[data-tour="m"] .tour-image-wrap img { min-height: 681px; }

  .section { padding: 120px 0; }
  .section-title { font-size: 42px; }

  .hero { padding: 0; }
  .hero-inner {
    min-height: auto; padding: 0 48px;
  }
  .hero h1 { font-size: 80px; }

  /* Tour blades: always text LEFT, image RIGHT */
  #touren { padding: 80px 48px; }
  .tour-section-inner {
    flex-direction: row; align-items: stretch;
  }
  .tour-content {
    flex: 1; padding: 60px;
    display: flex; flex-direction: column; justify-content: center;
  }
  .tour-image-wrap {
    flex: 0 0 55%;
    border-radius: 0 24px 24px 0;
  }
  .tour-image-wrap img { height: 100%; min-height: 440px; }
  .tour-size-deco { font-size: 100px; }

  .trust-grid { gap: 60px; }
  .how-grid { grid-template-columns: repeat(4, 1fr); }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  /* Hide mobile book button on desktop */
  .mobile-book-btn { display: none; }
}

@media (max-width: 767px) {
  .nav-logo { top: 50%; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Large Desktop (1200px+)
   ═══════════════════════════════════════════ */
@media (min-width: 1200px) {
  .hero h1 { font-size: 80px; }
}

/* ═══════════════════════════════════════════
   PREMIUM ANIMATIONS — Desktop Only (768px+)
   ═══════════════════════════════════════════ */

/* 1. Custom Cursor */
.cursor-dot, .cursor-ring { display: none; }
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  .cursor-dot {
    display: block; position: fixed; top: 0; left: 0;
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--text); z-index: 99999;
    pointer-events: none; transform: translate(-50%, -50%);
    opacity: 0; transition: opacity 0.3s;
  }
  .cursor-ring {
    display: block; position: fixed; top: 0; left: 0;
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid rgba(42,42,42,0.3); z-index: 99998;
    pointer-events: none; transform: translate(-50%, -50%);
    opacity: 0; transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, border-color 0.3s ease, opacity 0.3s;
    will-change: transform;
  }
  .cursor-ring.hover {
    width: 60px; height: 60px;
    background: rgba(42,123,106,0.06);
    border-color: var(--primary);
  }
  body { cursor: none; }
  a, button, [onclick], select, input, textarea, .faq-question, .tour-select-card, label { cursor: none; }
}

@media (hover: none), (pointer: coarse) {
  body,
  a,
  button,
  [onclick],
  select,
  input,
  textarea,
  .faq-question,
  .tour-select-card,
  label {
    cursor: auto !important;
  }
}

/* 2. Text Reveal Words */
@media (min-width: 768px) {
  .word-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; }
  .word-reveal { display: inline-block; transform: translateY(110%); will-change: transform; }
}

/* 3. Hero Parallax */

/* 4. Marquee Reviews */
.marquee-wrap { overflow: hidden; width: 100%; margin-top: 32px; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.marquee-wrap::before { left: 0; background: linear-gradient(to right, var(--card), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(to left, var(--card), transparent); }
.marquee-track { display: flex; width: max-content; }
.marquee-track .review-card { flex-shrink: 0; width: 340px; margin-right: 24px; }
@media (min-width: 768px) {
  .marquee-track { animation: marqueeScroll 40s linear infinite; }
  .marquee-track:hover { animation-play-state: paused; }
}
@media (max-width: 767px) {
  .marquee-track { flex-wrap: wrap; width: 100%; }
  .marquee-track .review-card { width: 100%; min-width: 0; margin-right: 0; margin-bottom: 16px; }
  .marquee-track .review-card-dup, .marquee-track .review-card-extra { display: none; }
  .marquee-wrap::before, .marquee-wrap::after { display: none; }
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 5. Count Up */
.count-up { display: inline-block; }


/* Local detail and occasion pages */
@media (min-width: 768px) and (hover: hover) and (pointer: fine) {
  body:not(.has-custom-cursor),
  body:not(.has-custom-cursor) a,
  body:not(.has-custom-cursor) button,
  body:not(.has-custom-cursor) [onclick],
  body:not(.has-custom-cursor) select,
  body:not(.has-custom-cursor) input,
  body:not(.has-custom-cursor) textarea,
  body:not(.has-custom-cursor) .faq-question,
  body:not(.has-custom-cursor) .tour-select-card,
  body:not(.has-custom-cursor) label {
    cursor: auto !important;
  }
}
.sub-hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.68), rgba(0,0,0,0.22));
}
.sub-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding-top: 112px;
}
.sub-hero-kicker {
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  margin-bottom: 20px;
}
.sub-hero h1 {
  color: #fff;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.sub-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 19px;
  max-width: 680px;
  margin-bottom: 32px;
}
.detail-grid {
  display: grid;
  gap: 28px;
}
.detail-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 36px var(--shadow);
}
.detail-card h2,
.detail-card h3 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.detail-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.detail-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-light);
}
.detail-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}
.detail-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.detail-meta div {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.detail-meta strong {
  display: block;
  font-size: 20px;
  color: var(--primary-dark);
}
.detail-meta span {
  color: var(--text-muted);
  font-size: 13px;
}
.route-columns {
  display: grid;
  gap: 20px;
}
.occasion-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}
.occasion-card {
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  background: var(--primary-deep);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.occasion-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  opacity: 0.62;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.occasion-card:hover img {
  transform: scale(1.04);
  opacity: 0.48;
}
.occasion-card-content {
  position: absolute;
  inset: auto 0 0 0;
  color: #fff;
  padding: 28px;
}
.occasion-card-content h3 {
  font-size: 25px;
  line-height: 1.15;
  margin-bottom: 8px;
}
.booking-strip {
  background: var(--primary-deep);
  color: #fff;
  padding: 56px 0;
}
.booking-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
}
.booking-strip h2 {
  color: #fff;
  font-size: 32px;
}
.booking-strip p {
  color: rgba(255,255,255,0.78);
  max-width: 620px;
}
@media (min-width: 760px) {
  .detail-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }
  .route-columns,
  .occasion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .booking-strip-inner {
    flex-direction: row;
    align-items: center;
  }
}
@media (max-width: 560px) {
  .detail-meta {
    grid-template-columns: 1fr;
  }
}

