/* ============================================
   VANLIFE BY ALEX — Adventure Design System
   Amber + Teal + Navy — Unique Identity
   ============================================ */

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

:root {
  --white: #FFFFFF;
  --bg: #FEFEFE;
  --bg-warm: #FDF6EC;
  --bg-dark: #0F1923;
  --surface: #FFFFFF;
  --text: #0F1923;
  --text-sec: #3D4F5F;
  --text-muted: #7A8B99;
  --amber: #E8A838;
  --amber-hover: #D4952E;
  --amber-light: #FFF5E1;
  --amber-glow: rgba(232, 168, 56, 0.35);
  --teal: #2B8A8A;
  --teal-light: #E6F5F5;
  --teal-glow: rgba(43, 138, 138, 0.25);
  --navy: #0F1923;
  --navy-light: #1A2D3D;
  --border: #E2DDD6;
  --border-light: #F0EBE3;
  --font-heading: 'Space Grotesk', system-ui, sans-serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { color: var(--amber); font-style: normal; font-weight: 700; }
::selection { background: var(--amber); color: var(--navy); }

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

/* LOADER */
.loader { position: fixed; inset: 0; z-index: 9999; background: var(--navy); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px; transition: opacity 0.6s, visibility 0.6s; }
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo { height: 80px; filter: brightness(0) invert(1); }
.loader-bar { width: 120px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 3px; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: var(--amber); border-radius: 3px; animation: loaderFill 1.2s var(--ease) forwards; }
@keyframes loaderFill { to { width: 100%; } }

/* ========================
   NAV — Pill-shaped glass
   ======================== */
.nav { position: fixed; top: 16px; left: 24px; right: 24px; z-index: 100; padding: 14px 28px; border-radius: 100px; background: rgba(15, 25, 35, 0.4); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); transition: all 0.4s var(--ease); }
.nav.scrolled { background: rgba(255,255,255,0.88); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border-color: rgba(0,0,0,0.06); box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo img { height: 38px; transition: var(--transition); filter: brightness(0) invert(1); }
.nav.scrolled .nav-logo img { filter: none; }
.nav-links { display: flex; gap: 24px; flex-shrink: 0; }
.nav-links a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); transition: var(--transition); position: relative; letter-spacing: 0.3px; white-space: nowrap; }
.nav.scrolled .nav-links a { color: var(--text-sec); }
.nav-links a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--amber); transition: width 0.3s var(--ease); border-radius: 1px; }
.nav-links a:hover { color: #fff; }
.nav.scrolled .nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { font-size: 13px; font-weight: 700; padding: 10px 22px; background: var(--amber); color: var(--navy); border-radius: 100px; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; overflow: hidden; position: relative; }
.nav-cta .btn-arrow-icon { opacity: 0; transform: translateX(-12px); transition: all 0.3s var(--ease); width: 14px; height: 14px; }
.nav-cta:hover .btn-arrow-icon { opacity: 1; transform: translateX(0); }
.nav-cta:hover { background: var(--amber-hover); box-shadow: 0 4px 16px var(--amber-glow); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 101; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.nav.scrolled .nav-toggle span { background: var(--text); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 200; background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%); flex-direction: column; align-items: center; justify-content: center; gap: 4px; transform: translateX(100%); transition: transform 0.5s var(--ease); }
.mobile-menu.open { transform: translateX(0); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer; color: #fff; }
.mobile-link { font-size: 24px; font-family: var(--font-heading); font-weight: 700; color: #fff; padding: 14px; opacity: 0; transform: translateX(40px); transition: all 0.4s var(--ease); position: relative; }
.mobile-link:not(.btn):hover { color: var(--amber); }
.mobile-menu.open .mobile-link { opacity: 1; transform: translateX(0); }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-link:nth-child(6) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-link:nth-child(7) { transition-delay: 0.3s; }
.mobile-menu.open .mobile-link:nth-child(8) { transition-delay: 0.35s; }

/* ========================
   HERO — Ken Burns + Left Aligned
   ======================== */
.hero { position: relative; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg-img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.hero-bg-img.ken-burns { animation: kenBurns 20s ease-in-out infinite alternate; transform-origin: 30% 60%; }
@keyframes kenBurns {
  0% { transform: scale(1.0); }
  50% { transform: scale(1.12) translate(-2%, 1%); }
  100% { transform: scale(1.05) translate(1%, -1%); }
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,25,35,0.75) 0%, rgba(15,25,35,0.4) 50%, rgba(15,25,35,0.2) 100%); }

/* Passport Stamp */
.passport-stamp { position: absolute; top: 120px; right: 60px; z-index: 3; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; animation: stampRotate 30s linear infinite; opacity: 0.8; }
@keyframes stampRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.stamp-border { position: absolute; inset: 0; }
.stamp-text { text-align: center; animation: stampCounterRotate 30s linear infinite; display: flex; flex-direction: column; gap: 2px; }
@keyframes stampCounterRotate { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
.stamp-top { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); }
.stamp-year { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--amber); }
.stamp-bottom { font-family: var(--font-heading); font-size: 10px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--amber); }

/* Compass Rose */
.compass-rose { position: absolute; bottom: 120px; right: 80px; z-index: 2; opacity: 0.5; animation: compassSpin 60s linear infinite; }
@keyframes compassSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* Hero Content — LEFT aligned, centered wrapper on wide screens */
.hero-content { position: relative; z-index: 2; text-align: left; width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px 0 80px; }
.hero-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--amber); margin-bottom: 28px; padding: 10px 24px; border: 1px solid rgba(232,168,56,0.3); border-radius: 100px; background: rgba(232,168,56,0.08); backdrop-filter: blur(10px); }
.hero-dot { width: 6px; height: 6px; background: var(--amber); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:0.5; transform:scale(1.5); } }
.hero-title { font-family: var(--font-heading); font-size: clamp(42px, 7vw, 80px); line-height: 1.05; color: #fff; margin-bottom: 24px; font-weight: 700; letter-spacing: -1px; max-width: 680px; }
.hero-title em { color: var(--amber); font-style: normal; }
.hero-sub { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.65); max-width: 520px; margin-bottom: 44px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; display: flex; align-items: flex-end; justify-content: space-between; padding: 0 80px 40px; z-index: 2; max-width: 1200px; margin: 0 auto; }
.hero-stats { display: flex; align-items: center; gap: 28px; background: rgba(15,25,35,0.5); backdrop-filter: blur(16px); padding: 16px 28px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.1); }
.stat { text-align: center; }
.stat-num { display: block; font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.stat-divider { width: 1px; height: 28px; background: rgba(255,255,255,0.12); }
.hero-scroll { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero-scroll span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); font-weight: 600; }
.scroll-mouse { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,0.25); border-radius: 12px; display: flex; justify-content: center; padding-top: 8px; }
.scroll-dot { width: 3px; height: 8px; background: var(--amber); border-radius: 3px; animation: scrollDot 1.8s ease-in-out infinite; }
@keyframes scrollDot { 0% { opacity:1; transform:translateY(0); } 50% { opacity:0.3; transform:translateY(8px); } 100% { opacity:0; transform:translateY(14px); } }

/* ========================
   BUTTONS — Slide-in arrow micro-interaction
   ======================== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-heading); font-size: 14px; font-weight: 700; padding: 14px 32px; border-radius: 100px; border: none; cursor: pointer; transition: all 0.35s var(--ease); overflow: hidden; position: relative; letter-spacing: 0.3px; }
.btn-arrow { overflow: hidden; }
.btn-arrow .btn-arrow-icon { transition: all 0.35s var(--ease); opacity: 0; transform: translateX(-16px); }
.btn-arrow:hover .btn-arrow-icon { opacity: 1; transform: translateX(0); }
.btn svg { transition: transform 0.3s var(--ease); }
.btn-primary { background: var(--amber); color: var(--navy); }
.btn-primary:hover { background: var(--amber-hover); transform: translateY(-2px); }
.btn-glow:hover { box-shadow: 0 8px 32px var(--amber-glow); }
.btn-ghost { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.35); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--amber); color: var(--navy); background: var(--amber-light); transform: translateY(-2px); }
.btn-full { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 15px; }

/* ========================
   SECTIONS
   ======================== */
.section { padding: 120px 0; position: relative; }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--navy); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; font-family: var(--font-heading); }
.section-title { font-family: var(--font-heading); font-size: clamp(30px, 4.5vw, 48px); font-weight: 700; line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.5px; }
.section-title em { color: var(--amber); font-style: normal; }
.section-sub { font-size: 16px; color: var(--text-sec); max-width: 500px; margin: 0 auto; line-height: 1.7; }

/* SPLIT SECTION */
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }
.split-desc { font-size: 15px; color: var(--text-sec); line-height: 1.8; margin-bottom: 20px; }
.split-hint { font-size: 13px; color: var(--text-muted); font-style: italic; margin-top: 8px; }
.split-image { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.split-image::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); border: 2px solid transparent; transition: border-color 0.5s var(--ease); }
.split-image:hover::after { border-color: var(--amber); }
.split-image img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.6s var(--ease); }
.split-image:hover img { transform: scale(1.03); }
.check-list { list-style: none; margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li { font-size: 14px; color: var(--text-sec); padding-left: 28px; position: relative; line-height: 1.6; }
.check-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--teal); border-radius: 50%; }

/* ========================
   CAMPER TABS + LARGE CARDS
   ======================== */
.camper-tab svg { opacity: 0.5; }
.camper-tab.active svg { opacity: 1; }
.camper-card-inner { display: grid; grid-template-columns: 1.2fr 1fr; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--border); transition: border-color 0.4s var(--ease); }
.camper-card-inner:hover { border-color: var(--teal); }
.camper-card-large .camper-image { position: relative; height: 100%; min-height: 480px; overflow: hidden; background: var(--border-light); }
.camper-slider { display: flex; width: 100%; height: 100%; transition: transform 0.4s var(--ease); }
.camper-slider img { min-width: 100%; width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; }
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s; box-shadow: 0 2px 12px rgba(0,0,0,0.12); z-index: 3; }
.camper-card-large:hover .slider-btn { opacity: 1; }
.slider-btn:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 3; }
.slider-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); transition: all 0.3s; cursor: pointer; }
.slider-dot.active { background: var(--amber); width: 20px; border-radius: 3px; }
.camper-badge { position: absolute; top: 20px; left: 20px; font-size: 12px; font-weight: 700; padding: 8px 18px; background: rgba(15,25,35,0.75); backdrop-filter: blur(10px); border-radius: 100px; color: #fff; z-index: 3; letter-spacing: 0.5px; font-family: var(--font-heading); border: 1px solid rgba(255,255,255,0.15); }
.camper-badge-premium { background: var(--amber); color: var(--navy); border-color: var(--amber); box-shadow: 0 4px 16px var(--amber-glow); }
.camper-body { padding: 36px 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.camper-name { font-family: var(--font-heading); font-size: 28px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.3px; }
.camper-type { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase; }
.camper-desc { font-size: 15px; color: var(--text-sec); line-height: 1.7; margin-bottom: 24px; }
.camper-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.spec { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--text-sec); padding: 8px 16px; background: var(--bg-warm); border: 1px solid transparent; border-radius: 100px; letter-spacing: 0.3px; transition: all 0.3s var(--ease); }
.spec:hover { border-color: var(--teal); background: var(--teal-light); }
.spec svg { color: var(--teal); flex-shrink: 0; width: 15px; height: 15px; }
.camper-price { display: flex; gap: 16px; margin-bottom: 16px; padding: 20px; background: var(--bg-warm); border-radius: var(--radius); border-left: 4px solid var(--amber); position: relative; overflow: hidden; }
.price-item { flex: 1; text-align: center; }
.price-label { display: block; font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; font-weight: 600; }
.price-val { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--text); }
.price-val small { font-size: 13px; font-weight: 400; color: var(--text-muted); font-family: var(--font-sans); }
.booking-hint { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 32px; font-style: italic; }

/* COSTS */
.costs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cost-card { text-align: center; padding: 44px 28px; background: rgba(43,138,138,0.08); border: 1px solid rgba(43,138,138,0.15); border-radius: var(--radius-lg); transition: all 0.4s var(--ease); }
.cost-card:hover { background: rgba(43,138,138,0.12); transform: translateY(-4px); border-color: var(--teal); }
.cost-icon { margin: 0 auto 20px; color: var(--teal); }
.cost-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.cost-price { display: inline-block; font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--amber); margin-bottom: 12px; transition: transform 0.3s var(--ease); }
.cost-card:hover .cost-price { transform: scale(1.08); }
.cost-card p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ========================
   TIMELINE — Horizontal Scroll
   ======================== */
.timeline-wrapper { overflow-x: auto; overflow-y: visible; padding: 20px 0 40px; -webkit-overflow-scrolling: touch; scrollbar-width: thin; scrollbar-color: var(--amber) var(--border-light); scroll-snap-type: x proximity; }
.timeline-wrapper::-webkit-scrollbar { height: 6px; }
.timeline-wrapper::-webkit-scrollbar-track { background: var(--border-light); border-radius: 3px; }
.timeline-wrapper::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }
.timeline-track { display: flex; gap: 0; position: relative; min-width: max-content; padding: 0 40px; }
.timeline-line { position: absolute; top: 38px; left: 60px; right: 60px; height: 4px; background: var(--border); border-radius: 2px; z-index: 0; }
.timeline-line::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--amber) 0%, var(--teal) 100%); border-radius: 2px; opacity: 0.6; }
.timeline-step { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; width: 220px; flex-shrink: 0; scroll-snap-align: center; }
.timeline-content { text-align: center; padding: 0 16px; }
.timeline-content h3 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.timeline-content p { font-size: 13px; color: var(--text-sec); line-height: 1.65; }

/* Dotted route between nodes — replaced by arrow elements */

/* ========================
   BENTO GALLERY — Masonry
   ======================== */
.bento-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.bento-item { border-radius: var(--radius); overflow: hidden; position: relative; cursor: zoom-in; aspect-ratio: 4 / 3; }
.bento-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s var(--ease); }
.bento-item::after { content: ''; position: absolute; inset: 0; border-radius: var(--radius); border: 3px solid transparent; transition: border-color 0.4s var(--ease); pointer-events: none; z-index: 2; }
.bento-item:hover::after { border-color: var(--amber); }
.bento-item:hover img { transform: scale(1.06); }

/* ========================
   CTA — Split Layout
   ======================== */
.section-cta-split { padding: 0; overflow: hidden; }
.cta-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.cta-split-image { position: relative; overflow: hidden; min-height: 500px; }
.cta-split-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 8s ease; }
.cta-split-image:hover img { transform: scale(1.05); }
.cta-split-content { background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 60px 48px; position: relative; }
.cta-split-content::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; border-radius: 50%; border: 2px dotted rgba(232,168,56,0.15); pointer-events: none; }
.cta-split-inner { max-width: 440px; }
.cta-split-inner h2 { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.cta-split-inner h2 em { color: var(--amber); font-style: normal; }
.cta-split-inner p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; line-height: 1.7; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { text-align: center; padding: 44px 28px; background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--border); transition: all 0.4s var(--ease); display: block; }
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); border-color: var(--teal); }
.contact-icon { width: 60px; height: 60px; margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; background: var(--teal-light); border-radius: 50%; }
.contact-icon svg { width: 24px; height: 24px; color: var(--teal); }
.contact-card h3 { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: var(--text-sec); line-height: 1.7; }

/* FOOTER */
.footer { padding: 80px 0 0; background: var(--navy); border-top: none; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { height: 60px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--teal); margin-bottom: 20px; font-family: var(--font-heading); }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); padding: 5px 0; transition: var(--transition); }
.footer-col a:hover { color: var(--amber); transform: translateX(4px); }
.footer-bottom { display: flex; justify-content: center; padding: 24px 0; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.25); }

/* WAVE DIVIDERS */
.wave-divider { position: relative; margin-top: -3px; margin-bottom: -2px; line-height: 0; z-index: 2; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; height: 54px; }
.wave-divider--sand { color: var(--bg-warm); }
.wave-divider--white { color: var(--white); }
.wave-divider--dark { color: var(--navy); }

/* TOPOGRAPHIC TEXTURE ON DARK SECTIONS */
.section-dark { background: var(--navy); position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; inset: 0; opacity: 0.03; background-image: url("data:image/svg+xml,%3Csvg width='600' height='600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M300 50c80 0 150 60 200 120s80 140 50 210-100 120-180 140-170 0-230-40S60 380 50 300s20-130 70-170S220 50 300 50z' fill='none' stroke='%232B8A8A' stroke-width='1'/%3E%3Cpath d='M300 100c60 0 120 50 160 100s60 110 40 170-80 100-140 110-130 0-180-30-70-80-80-140 10-100 50-130S240 100 300 100z' fill='none' stroke='%232B8A8A' stroke-width='1'/%3E%3Cpath d='M300 150c40 0 90 40 120 80s40 80 25 130-60 75-100 80-95-5-130-25-50-55-55-100 5-70 35-95S260 150 300 150z' fill='none' stroke='%232B8A8A' stroke-width='1'/%3E%3C/svg%3E"); background-size: 300px 300px; pointer-events: none; }

/* MINDESTBUCHUNG BOX */
.mindestbuchung-box { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; background: var(--amber-light); border: 1px dashed var(--amber); border-radius: 10px; margin-bottom: 20px; }
.mindestbuchung-box svg { color: var(--amber); flex-shrink: 0; margin-top: 1px; }
.mindestbuchung-box span { font-size: 12px; color: var(--text-sec); line-height: 1.5; }

/* ========================
   SCROLL PROGRESS BAR
   ======================== */
.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, var(--amber), var(--amber-hover), var(--teal)); z-index: 9998; transition: width 0.1s linear; pointer-events: none; }

/* ========================
   LIGHTBOX
   ======================== */
.lightbox { position: fixed; inset: 0; z-index: 9000; background: rgba(15,25,35,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease), visibility 0.4s; cursor: zoom-out; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-close { position: absolute; top: 24px; right: 24px; background: rgba(0,0,0,0.3); border: none; color: rgba(255,255,255,0.8); cursor: pointer; transition: all 0.3s var(--ease); z-index: 2; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { color: #fff; transform: scale(1.1); background: rgba(0,0,0,0.5); }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; transform: scale(0.9); transition: transform 0.4s var(--ease); box-shadow: 0 24px 80px rgba(0,0,0,0.4); }
.lightbox.active .lightbox-img { transform: scale(1); }
[data-lightbox] { cursor: zoom-in; }

/* ========================
   TAB SWITCHER — Sliding pill
   ======================== */
.camper-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; position: relative; }
.camper-tab-pill { position: absolute; top: 0; left: 0; height: 100%; background: var(--amber); border-radius: 100px; transition: all 0.45s var(--ease); z-index: 0; pointer-events: none; }
.camper-tab { position: relative; z-index: 1; font-family: var(--font-heading); font-size: 15px; font-weight: 700; padding: 14px 32px; border-radius: 100px; border: 2px solid var(--border); background: var(--bg-warm); color: var(--text-sec); cursor: pointer; transition: color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease); display: inline-flex; align-items: center; gap: 10px; }
.camper-tab:hover { color: var(--text); border-color: var(--amber); }
.camper-tab.active { color: var(--navy); border-color: transparent; background: transparent; }

/* Camper card morph transition */
.camper-card-large { display: none; }
.camper-card-large.active { display: block; animation: camperFadeIn 0.55s var(--ease) both; }
@keyframes camperFadeIn { from { opacity: 0; transform: translateY(16px) scale(0.99); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ========================
   TIMELINE — Icons & arrows
   ======================== */
.timeline-icon { color: var(--amber); }
.timeline-node { width: 76px; height: 76px; border-radius: 50%; background: var(--white); border: 4px solid var(--amber); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 0.4s var(--ease); box-shadow: 0 4px 16px rgba(0,0,0,0.06); position: relative; }
.timeline-node:hover { transform: scale(1.1); border-color: var(--teal); box-shadow: 0 8px 24px var(--teal-glow); }
.timeline-node:hover .timeline-icon { color: var(--teal); }
.timeline-arrow { position: absolute; top: 36px; right: -18px; opacity: 0.45; z-index: 2; }
.timeline-step:last-child .timeline-arrow { display: none; }
.timeline-step { position: relative; }

/* ========================
   PASSPORT STAMP — Pulse on scroll + 3D tilt
   ======================== */
.passport-stamp { transition: transform 0.15s ease-out; }
.passport-stamp.pulse { animation: stampPulse 0.6s ease-out; }
@keyframes stampPulse { 0% { transform: scale(1); } 50% { transform: scale(1.08); } 100% { transform: scale(1); } }

/* ========================
   EMPFEHLUNG BADGE
   ======================== */
.empfehlung-badge { display: inline-flex; align-items: center; gap: 6px; position: absolute; top: -16px; left: 50%; transform: translateX(-50%); z-index: 5; background: linear-gradient(135deg, var(--amber), var(--amber-hover)); color: var(--navy); font-family: var(--font-heading); font-size: 13px; font-weight: 700; letter-spacing: 1px; padding: 10px 28px; border-radius: 100px; box-shadow: 0 4px 20px var(--amber-glow); white-space: nowrap; text-transform: uppercase; animation: badgeGlow 3s ease-in-out infinite; }
@keyframes badgeGlow { 0%, 100% { box-shadow: 0 4px 20px var(--amber-glow); } 50% { box-shadow: 0 6px 28px rgba(232, 168, 56, 0.5); } }
.camper-card-large { position: relative; overflow: visible; margin-top: 20px; }

/* ========================
   BUTTON PRESS EFFECT
   ======================== */
.btn-primary:active { transform: scale(0.97) translateY(0); transition: transform 0.1s ease; }

/* ========================
   CONTACT CARD — Amber top line
   ======================== */
.contact-card { position: relative; overflow: hidden; }
.contact-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--amber), var(--amber-hover)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.contact-card:hover::before { transform: scaleX(1); }

/* ========================
   CTA FLOATING COMPASS
   ======================== */
.cta-floating-compass { position: absolute; bottom: 40px; right: 40px; animation: floatCompass 4s ease-in-out infinite; pointer-events: none; }
@keyframes floatCompass { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(8deg); } }

/* ========================
   FOOTER SOCIAL ICONS
   ======================== */
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-icon { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); transition: all 0.35s var(--ease); cursor: pointer; }
.social-icon:hover { background: var(--amber); border-color: var(--amber); color: var(--navy); transform: translateY(-3px) scale(1.05); box-shadow: 0 4px 16px var(--amber-glow); }
.social-icon:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }

/* ========================
   IMAGE FADE-IN ON LOAD
   ======================== */
img[loading="lazy"] { transition: opacity 0.6s var(--ease); }

/* ANIMATIONS */
[data-aos] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-aos].visible { opacity: 1; transform: translateY(0); }
.anim-hero { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.anim-hero.visible { opacity: 1; transform: translateY(0); }

/* ========================
   NEW CAMPER CARDS
   ======================== */
.camper-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.camper-card-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: all 0.4s var(--ease);
}

.camper-card-new:hover {
  border-color: var(--teal);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.camper-card-new:nth-child(even) {
  direction: rtl;  /* flip image to right side */
}
.camper-card-new:nth-child(even) > * {
  direction: ltr;
}

.camper-gallery {
  position: relative;
  min-height: 480px;
  overflow: hidden;
}

.camper-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.camper-info-top {
  margin-bottom: 16px;
}

.camper-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.camper-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.camper-feature svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.camper-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-heading);
}

.camper-feature span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.camper-pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.price-box {
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--bg-warm);
  text-align: center;
  border: 1px solid var(--border-light);
}

.price-box-highlight {
  background: linear-gradient(135deg, var(--amber-light), #FFF0D4);
  border-color: var(--amber);
}

.price-season {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.price-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}

.price-amount small {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  font-family: var(--font-sans);
}

.price-min {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Show slider buttons on hover for new camper cards */
.camper-card-new:hover .slider-btn { opacity: 1; }

/* ========================
   IMPRESSUM & DATENSCHUTZ
   ======================== */
.legal-section {
  display: none;
  padding: 80px 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.legal-section:target {
  display: block;
}

.legal-section h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

.legal-section h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-section p {
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-section a {
  color: var(--teal);
  text-decoration: underline;
}

.legal-close {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  transition: color 0.3s;
}

.legal-close:hover {
  color: var(--text);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1024px) {
  /* Nav: hide links on medium screens, show hamburger */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .camper-card-inner { grid-template-columns: 1fr; }
  .camper-card-large .camper-image { min-height: 340px; }
  .camper-card-new {
    grid-template-columns: 1fr;
  }
  .camper-card-new:nth-child(even) {
    direction: ltr;
  }
  .camper-gallery {
    min-height: 320px;
  }
  .costs-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .bento-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse { direction: ltr; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split-image { min-height: 340px; }
  .cta-split-content { padding: 60px 32px; }
  .passport-stamp { top: 100px; right: 20px; width: 140px; height: 140px; }
  .passport-stamp svg { width: 140px; height: 140px; }
  .stamp-year { font-size: 18px; }
  .stamp-top { font-size: 9px; }
  .stamp-bottom { font-size: 8px; }
  .compass-rose { display: none; }
  .hero-content { padding: 0 24px 0 48px; }
  .hero-bottom { padding: 0 48px 40px; }
}

@media (max-width: 768px) {
  .nav { top: 10px; left: 12px; right: 12px; padding: 10px 20px; border-radius: 20px; }
  .section { padding: 80px 0; }
  .hero-content { padding: 0 24px; text-align: left; }
  .hero-bottom { flex-direction: column; align-items: center; gap: 28px; padding: 0 24px 28px; }
  .hero-stats { gap: 16px; padding: 12px 20px; }
  .stat-num { font-size: 22px; }
  .passport-stamp { display: none; }
  .camper-tabs { flex-direction: column; align-items: stretch; }
  .camper-tab { justify-content: center; }
  .camper-tab-pill { display: none; }
  .camper-tab { border-color: var(--border); background: var(--bg-warm); }
  .camper-tab.active { background: var(--amber); border-color: var(--amber); }
  .timeline-arrow { display: none; }
  .camper-gallery {
    min-height: 260px;
  }
  .camper-info {
    padding: 28px 24px;
  }
  .camper-features {
    grid-template-columns: 1fr;
  }
  .camper-pricing {
    grid-template-columns: 1fr;
  }
  .bento-gallery { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .split-image img { height: 300px; }
  .timeline-step { width: 170px; }
  .cta-split-content { padding: 48px 24px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-sub { font-size: 15px; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .camper-price { flex-direction: column; gap: 12px; }
  .container { padding: 0 16px; }
  .hero-tag { font-size: 10px; letter-spacing: 2px; padding: 8px 16px; }
  .camper-body { padding: 24px 20px 28px; }
  .nav { top: 8px; left: 8px; right: 8px; }
  .timeline-step { width: 150px; }
}

/* Touch devices: always show slider buttons */
@media (hover: none), (pointer: coarse) {
  .slider-btn { opacity: 0.85; }
  .slider-btn:active { opacity: 1; background: #fff; transform: translateY(-50%) scale(0.95); }
}

/* Ensure minimum touch target sizes */
@media (pointer: coarse) {
  .btn { min-height: 44px; }
  .nav-toggle { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
  .mobile-close { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
  .slider-dot { min-width: 12px; min-height: 12px; }
  .mobile-link { padding: 16px; min-height: 44px; }
}

/* Disable parallax on mobile for performance */
@media (max-width: 768px) {
  .hero-bg-img { will-change: auto; }
  .hero-bg-img.ken-burns { animation: none; transform: scale(1.05); }
}

/* Focus styles for accessibility */
.btn:focus-visible,
.nav-links a:focus-visible,
.nav-cta:focus-visible,
.nav-toggle:focus-visible,
.mobile-close:focus-visible,
.mobile-link:focus-visible,
.slider-btn:focus-visible,
.slider-dot:focus-visible,
.contact-card:focus-visible,
.footer-col a:focus-visible,
.camper-tab:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}

/* Performance: will-change hints */
.camper-card-large { will-change: auto; }
.camper-slider { will-change: transform; }
.loader { will-change: opacity; }
.mobile-menu { will-change: transform; }

/* Prevent horizontal overflow globally */
html, body { overflow-x: hidden; max-width: 100vw; }

/* Mindestbuchung box: prevent overflow on small screens */
.mindestbuchung-box { word-break: break-word; overflow-wrap: break-word; }
.mindestbuchung-box span { min-width: 0; }

/* ===== RESPONSIVE FIXES ===== */
@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero-title { font-size: 32px; }
  .hero-sub { font-size: 14px; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .camper-gallery { min-height: 220px; }
  .contact-grid { max-width: 100%; }
  .section-title { font-size: clamp(24px, 6vw, 32px); }
  .bento-item img { height: 200px; object-fit: cover; }
  .cta-split-content { padding: 36px 20px; }
  .footer-top { gap: 24px; }
  .footer-bottom { font-size: 12px; }
}

@media (max-width: 375px) {
  .container { padding: 0 14px; }
  .hero-title { font-size: 28px; }
  .hero-tag { font-size: 9px; padding: 6px 12px; }
  .stat-num { font-size: 20px; }
  .section-title { font-size: 22px; }
  .btn { min-height: 44px; font-size: 14px; }
  .camper-name { font-size: 20px; }
  .price-amount { font-size: 24px; }
  .nav { top: 6px; left: 6px; right: 6px; padding: 8px 16px; }
}
