/* ═══════════════════════════════════════════════════════
   SKICAMP CHILE — Alpine Snow Theme
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #f2f6fc;
  --bg2:       #e8eef8;
  --bg3:       #ffffff;
  --navy:      #0b1f42;
  --blue:      #1756b8;
  --blue-l:    #3b82f6;
  --ice:       #dbeafe;
  --ice2:      #bfdbfe;
  --white:     #ffffff;
  --text:      #1e2d45;
  --gray:      #5a7294;
  --border:    rgba(11,31,66,.10);
  --shadow:    0 4px 24px rgba(11,31,66,.08);
  --shadow-lg: 0 16px 56px rgba(11,31,66,.13);
  --radius:    16px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --glow:      0 0 40px rgba(23,86,184,.25);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section      { padding: 6rem 0; background: var(--bg3); }
.section-dark { padding: 6rem 0; background: var(--bg2); }

.section-eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: .6rem; display: block;
}
.section-eyebrow.light { color: var(--blue-l); }

h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--navy); line-height: 1.05;
  margin-bottom: 1.2rem;
}
h2.light { color: var(--navy); }

.section-lead {
  color: var(--gray); font-size: 1.05rem;
  max-width: 620px; margin-bottom: 3.5rem;
}
.section-lead.light { color: var(--gray); }

/* ── SNOWFLAKE DIVIDER ── */
.snow-divider {
  text-align: center; padding: .3rem 0;
  color: var(--blue-l); letter-spacing: 1.4rem;
  font-size: 1.1rem; opacity: .45;
  user-select: none;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--blue);
  color: var(--white);
  padding: .85rem 2.2rem;
  border-radius: 50px; font-weight: 700;
  font-size: .95rem; text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 4px 18px rgba(23,86,184,.35);
}
.btn-primary:hover {
  background: #1a6bdb;
  transform: translateY(-3px);
  box-shadow: var(--glow);
}
.btn-primary.full { display: block; text-align: center; width: 100%; }

.btn-ghost {
  display: inline-block;
  border: 2px solid rgba(11,31,66,.22);
  color: var(--navy); padding: .85rem 2.2rem;
  border-radius: 50px; font-weight: 600;
  font-size: .95rem; text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  border-color: var(--blue);
  background: rgba(23,86,184,.06);
  color: var(--blue);
}

.btn-outline-white {
  display: inline-block;
  border: 2px solid rgba(11,31,66,.25);
  color: var(--navy); padding: .7rem 1.8rem;
  border-radius: 50px; font-weight: 600;
  font-size: .9rem; text-decoration: none;
  transition: all var(--transition); margin-top: 1.5rem;
}
.btn-outline-white:hover { border-color: var(--blue); color: var(--blue); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.nav-scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(11,31,66,.09);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo { text-decoration: none; font-size: 1.1rem; font-weight: 900; letter-spacing: .02em; display: flex; align-items: center; gap: .4rem; }
.logo-gocarv { color: var(--navy); }
.logo-chile  { color: var(--blue); margin-left: .15rem; }
.logo-flake  { color: var(--blue-l); font-size: .9rem; }

.nav-links { display: flex; gap: 2rem; }
.nav-links a {
  color: var(--gray); text-decoration: none;
  font-size: .88rem; font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--navy); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

.lang-switcher { display: flex; gap: .3rem; }
.lang-btn {
  background: none; border: 1px solid var(--border);
  color: var(--gray); font-size: .72rem; font-weight: 600;
  padding: .3rem .5rem; border-radius: 5px; cursor: pointer;
  transition: all var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  background: var(--blue); color: var(--white);
  border-color: var(--blue);
}
.btn-nav {
  background: var(--blue); color: var(--white) !important;
  padding: .55rem 1.4rem; border-radius: 50px;
  font-weight: 700; font-size: .85rem; text-decoration: none;
  transition: background var(--transition); white-space: nowrap;
  box-shadow: 0 3px 12px rgba(23,86,184,.3);
}
.btn-nav:hover { background: #1a6bdb; }
.nav-hamburger {
  display: none; background: none; border: none;
  color: var(--navy); font-size: 1.4rem; cursor: pointer;
}
.nav-mobile {
  display: none; flex-direction: column; gap: 1rem;
  background: rgba(255,255,255,.98); padding: 1.5rem;
  border-top: 1px solid var(--border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--text); text-decoration: none;
  font-size: 1rem; padding: .4rem 0;
}
.mobile-lang { margin-top: .5rem; }

/* ── 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('/img/hero.jpg') center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,18,40,.78) 0%,
    rgba(12,48,110,.55) 50%,
    rgba(6,14,30,.72) 100%
  );
}

/* — Animated snowflakes — */
.hero-snowflakes {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  overflow: hidden;
}
.sf {
  position: absolute; top: -60px;
  color: rgba(255,255,255,.75);
  user-select: none;
  animation: sfFall linear infinite;
}
.sf:nth-child(1)  { left:  5%; font-size:1.4rem; animation-duration:9s;  animation-delay:0s;   opacity:.65; }
.sf:nth-child(2)  { left: 13%; font-size:.9rem;  animation-duration:13s; animation-delay:2s;   opacity:.45; }
.sf:nth-child(3)  { left: 22%; font-size:1.8rem; animation-duration:8s;  animation-delay:4s;   opacity:.55; }
.sf:nth-child(4)  { left: 31%; font-size:1.1rem; animation-duration:11s; animation-delay:1s;   opacity:.5;  }
.sf:nth-child(5)  { left: 40%; font-size:2rem;   animation-duration:7s;  animation-delay:6s;   opacity:.6;  }
.sf:nth-child(6)  { left: 50%; font-size:1.3rem; animation-duration:14s; animation-delay:3s;   opacity:.4;  }
.sf:nth-child(7)  { left: 59%; font-size:.8rem;  animation-duration:10s; animation-delay:5s;   opacity:.5;  }
.sf:nth-child(8)  { left: 68%; font-size:1.6rem; animation-duration:12s; animation-delay:7s;   opacity:.6;  }
.sf:nth-child(9)  { left: 77%; font-size:1.1rem; animation-duration:9s;  animation-delay:2.5s; opacity:.45; }
.sf:nth-child(10) { left: 85%; font-size:1.9rem; animation-duration:15s; animation-delay:0.5s; opacity:.55; }
.sf:nth-child(11) { left: 93%; font-size:.7rem;  animation-duration:11s; animation-delay:4.5s; opacity:.4;  }
.sf:nth-child(12) { left: 8%;  font-size:2.2rem; animation-duration:16s; animation-delay:8s;   opacity:.35; }

@keyframes sfFall {
  0%   { transform: translateY(0) rotate(0deg); opacity: inherit; }
  90%  { opacity: inherit; }
  100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 7rem 1.5rem 4rem;
  max-width: 820px;
}
.hero-tag {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .25em; text-transform: uppercase;
  color: #93c5fd; margin-bottom: 1rem; display: block;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7.5rem);
  color: var(--white); line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 40px rgba(0,0,0,.5);
}
.hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.85);
  max-width: 580px; margin: 0 auto 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
/* hero buttons remain white on transparent for contrast on photo */
.hero .btn-ghost {
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.hero .btn-ghost:hover {
  border-color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.1);
  color: var(--white);
}

/* countdown */
.countdown-wrap { display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.countdown-label { font-size: .75rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.countdown {
  display: flex; gap: .6rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px; padding: .8rem 1.2rem;
  backdrop-filter: blur(12px);
}
.cd-box { display: flex; flex-direction: column; align-items: center; min-width: 56px; }
.cd-box span { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--white); line-height: 1; }
.cd-box em { font-style: normal; font-size: .65rem; color: rgba(255,255,255,.45); letter-spacing: .1em; text-transform: uppercase; margin-top: .15rem; }

.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hero-scroll-hint span {
  display: block; width: 2px; height: 8px;
  background: rgba(255,255,255,.4); border-radius: 2px;
  animation: scrollPulse 1.6s infinite;
}
.hero-scroll-hint span:nth-child(2) { animation-delay: .2s; }
.hero-scroll-hint span:nth-child(3) { animation-delay: .4s; }
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  border-top: none;
  border-bottom: none;
  padding: 2.2rem 1.5rem;
}
.trust-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem; text-align: center;
}
.t-num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: #93c5fd; }
.t-lbl { display: block; font-size: .72rem; color: rgba(255,255,255,.5); margin-top: .2rem; text-transform: uppercase; letter-spacing: .08em; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feat {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.feat:hover {
  border-color: rgba(23,86,184,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feat-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.feat-icon-img { font-size: 0; }
.feat-icon-img img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 1rem; border-radius: 8px; }
.feat h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.feat p  { font-size: .88rem; color: var(--gray); line-height: 1.7; }

/* ── BARTEK ── */
.bartek-section { background: var(--bg2); }
.bartek-grid {
  display: grid; grid-template-columns: 420px 1fr;
  gap: 5rem; align-items: center;
}
.bartek-img-wrap { position: relative; }
.bartek-img {
  width: 100%; aspect-ratio: 3/4; min-height: 420px;
  border-radius: var(--radius);
  background: url('/img/bartek.jpg?v=2') center top/cover no-repeat;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.bartek-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--blue);
  border-radius: 50%;
  width: 110px; height: 110px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(23,86,184,.45);
  border: 3px solid var(--white);
}
.bi-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--white); line-height: 1; }
.bi-lbl { font-size: .6rem; color: rgba(255,255,255,.85); letter-spacing: .12em; }

.bartek-text h2 { margin-bottom: .8rem; }
.bartek-text p {
  color: var(--gray); margin-bottom: 1rem; font-size: .95rem;
}
.bartek-text p:nth-child(4) {
  font-style: italic; color: var(--navy);
  border-left: 3px solid var(--blue-l); padding-left: 1rem;
  font-size: 1rem; background: rgba(23,86,184,.05);
  border-radius: 0 8px 8px 0; padding: .8rem 1rem;
}
.bartek-brands { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.5rem; margin-bottom: .5rem; }
.brand-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: .72rem; font-weight: 600;
  padding: .35rem .85rem; border-radius: 50px;
  letter-spacing: .05em; text-transform: uppercase;
  box-shadow: var(--shadow);
}

/* ── CARV ── */
.carv-section { background: var(--bg3); }
.carv-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 5rem; align-items: center;
}
.carv-text h2 { margin-bottom: .8rem; }
.carv-text .section-lead { max-width: 520px; margin-bottom: 1.5rem; }
.carv-list { list-style: none; margin-bottom: 2rem; }
.carv-list li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--gray);
}
.carv-list li:last-child { border-bottom: none; }
.cl-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.carv-value {
  display: flex; align-items: center; gap: 1rem;
  background: var(--ice);
  border: 1px solid var(--ice2);
  border-radius: 12px; padding: 1rem 1.4rem;
}
.cv-label { font-size: .75rem; color: var(--gray); text-transform: uppercase; letter-spacing: .1em; }
.cv-price { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--gray); text-decoration: line-through; }
.cv-free  { font-size: .9rem; font-weight: 700; color: var(--blue); }

.carv-visual { display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
.carv-device-img {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius);
  background: url('/img/carv.jpg') center/cover no-repeat;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
}
.carv-stat-pills { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.csp {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-size: .75rem; font-weight: 600;
  padding: .4rem .9rem; border-radius: 50px;
  box-shadow: var(--shadow);
}

/* ── CAMPS ── */
.camps-section { background: var(--bg2); }
.camps-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.camps-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Spots bar */
.spots-bar {
  display: flex; gap: 5px; margin-bottom: 1.2rem;
}
.spot {
  width: 28px; height: 8px; border-radius: 4px;
  flex: 1;
}
.spot.taken  { background: #ef4444; }
.spot.avail  { background: #22c55e; }

/* Urgent badge */
.camp-spots-urgent {
  color: #dc2626 !important;
  background: rgba(220,38,38,.1) !important;
  border-color: rgba(220,38,38,.3) !important;
}

/* Sidebar urgency tag */
.cs-urgent {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: #dc2626;
  background: rgba(220,38,38,.1);
  border: 1px solid rgba(220,38,38,.25);
  padding: .1rem .45rem;
  border-radius: 50px;
  vertical-align: middle;
}
.camp-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex; flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.camp-card:hover { border-color: rgba(23,86,184,.35); box-shadow: var(--shadow-lg); }
.camp-featured {
  border-color: rgba(23,86,184,.4);
  background: linear-gradient(145deg, #fff 0%, #eef5ff 100%);
  box-shadow: 0 8px 32px rgba(23,86,184,.15);
}
.camp-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.camp-num { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--blue); }
.camp-spots {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: #d97706;
  background: rgba(217,119,6,.08);
  border: 1px solid rgba(217,119,6,.25);
  padding: .3rem .7rem; border-radius: 50px;
}
.camp-dates {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: .5rem;
}
.camp-date { text-align: center; }
.cd-day   { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; color: var(--navy); line-height: 1; }
.cd-month { display: block; font-size: .75rem; color: var(--gray); text-transform: uppercase; letter-spacing: .1em; }
.camp-arrow { font-size: 1.5rem; color: var(--blue-l); flex: 1; text-align: center; }
.camp-duration { font-size: .8rem; color: var(--gray); margin-bottom: 1.5rem; }
.camp-includes { list-style: none; flex: 1; margin-bottom: 2rem; }
.camp-includes li {
  font-size: .88rem; color: var(--gray);
  padding: .45rem 0;
  border-bottom: 1px solid var(--border);
}
.camp-includes li::before { content: "✓ "; color: var(--blue); font-weight: 700; }
.camp-includes li:last-child { border-bottom: none; }
.camp-price {
  display: flex; flex-direction: column; gap: .1rem;
  margin-bottom: 1.2rem;
}
.price-main { display: flex; align-items: baseline; gap: 0; }
.price-amount {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem;
  color: var(--navy); line-height: 1;
}
.price-room-tag { display: none; }
.price-cur      { font-size: .9rem; color: var(--gray); font-weight: 600; align-self: flex-end; padding-bottom: .35rem; }
.price-alt {
  display: flex; align-items: center; gap: .45rem;
}
.price-alt-amount {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem;
  color: #8a9ab5; line-height: 1;
}
.price-alt-label {
  font-size: .78rem; font-weight: 600; color: #8a9ab5;
}
.camps-note { font-size: .78rem; color: var(--gray); margin-top: 1.5rem; text-align: center; }

/* ── GALLERY TEASER ── */
.gallery-teaser-section { background: var(--navy); }

.gallery-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.gallery-teaser-previews {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 180px 180px;
  gap: 8px;
  border-radius: 16px;
  overflow: hidden;
}
.gallery-teaser-previews img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
  filter: brightness(.88);
}
.gallery-teaser-previews img:first-child {
  grid-row: span 2;
}
.gallery-teaser-previews:hover img { filter: brightness(1); }

.gallery-teaser-text .section-eyebrow { color: #7ec8f7; }
.gallery-teaser-text h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem;
  color: #fff; line-height: 1.1; margin-bottom: .8rem;
}
.gallery-teaser-text p {
  color: rgba(255,255,255,.72); font-size: .98rem;
  line-height: 1.65; margin-bottom: 1.2rem;
}
.gallery-teaser-stats {
  display: flex; gap: 1.2rem; margin-bottom: 1.8rem;
}
.gallery-teaser-stats span {
  font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08);
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
}
.btn-gallery {
  display: inline-block;
  background: var(--blue); color: #fff;
  font-size: .95rem; font-weight: 700;
  padding: .85rem 2rem; border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 16px rgba(30,136,229,.4);
}
.btn-gallery:hover { background: #1565c0; transform: translateY(-2px); }

@media (max-width: 768px) {
  .gallery-teaser { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-teaser-previews { grid-template-rows: 140px 140px; }
}

/* ── LOCATION ── */
.location-section { background: var(--bg3); }
.location-grid {
  display: grid; grid-template-columns: 1fr 480px; gap: 4rem; align-items: center;
}
.location-text h2 { margin-bottom: .8rem; }
.location-text p { color: var(--gray); margin-bottom: 1.2rem; font-size: .95rem; }
.loc-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem;
}
.loc-fact {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
}
.lf-n { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: var(--blue); }
.lf-l { display: block; font-size: .75rem; color: var(--gray); margin-top: .15rem; }
.location-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: .8rem;
}
.loc-img {
  border-radius: 14px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.lb-trigger {
  cursor: zoom-in;
  transition: transform .25s, box-shadow .25s;
}
.lb-trigger::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: rgba(10,25,47,.35);
  opacity: 0;
  transition: opacity .25s;
  border-radius: 14px;
}
.lb-trigger:hover { transform: scale(1.02); box-shadow: 0 16px 48px rgba(10,25,47,.22); }
.lb-trigger:hover::after { opacity: 1; }

.loc-img-1 { grid-column: 1 / -1; grid-row: 1; }
.loc-img-2 {}
.loc-img-3 {}

/* ── GALLERY ── */
.gallery-section { background: var(--bg2); padding: 5rem 0; }
.gallery-header { text-align: center; margin-bottom: 3rem; padding: 0 1.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: .6rem;
  padding: 0 .6rem;
}
.gal-item {
  border-radius: 10px;
  background-size: cover; background-position: center;
  overflow: hidden;
  transition: transform var(--transition), filter var(--transition);
  cursor: zoom-in;
  box-shadow: var(--shadow);
  position: relative;
}
.gal-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(10,25,47,.3);
  opacity: 0;
  transition: opacity .22s;
}
.gal-item:hover { transform: scale(1.03); filter: brightness(1.05); }
.gal-item:hover::after { opacity: 1; }
.gi-tall  { grid-row: span 2; }
.gi-wide  { grid-column: span 2; }

.g1 { background-image: url('/img/g1.jpg?v=4'); }
.g2 { background-image: url('/img/g2.jpg?v=4'); }
.g3 { background-image: url('/img/g3.jpg?v=4'); }
.g4 { background-image: url('/img/g4.jpg?v=4'); }
.g5 { background-image: url('/img/g5.jpg?v=4'); }
.g6 { background-image: url('/img/g6.jpg?v=4'); }
.g7 { background-image: url('/img/g7.jpg?v=4'); }
.g8 { background-image: url('/img/g8.jpg?v=4'); }

/* ── VIDEO ── */
.video-section { background: var(--bg3); text-align: center; }
.video-section h2 { color: var(--navy); }
.video-section .section-lead { margin: 0 auto 2.5rem; }
.video-wrap {
  position: relative; width: 100%; max-width: 840px; margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.video-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── CONTACT ── */
.section-contact { background: var(--bg2); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start;
}
.contact-form {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.fg { display: flex; flex-direction: column; gap: .4rem; }
.fg.full { margin-bottom: 1.2rem; }
.fg label { font-size: .75rem; font-weight: 700; color: var(--gray); letter-spacing: .08em; text-transform: uppercase; }
.fg input, .fg select, .fg textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .7rem 1rem;
  color: var(--text);
  font-family: inherit; font-size: .9rem;
  outline: none;
  transition: border-color var(--transition);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue-l); }
.fg select option { background: var(--bg3); color: var(--text); }
.fg textarea { resize: vertical; }
.btn-submit {
  width: 100%; padding: .9rem;
  background: var(--blue); color: var(--white);
  border: none; border-radius: 50px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: .5rem;
  box-shadow: 0 4px 18px rgba(23,86,184,.35);
}
.btn-submit:hover { background: #1a6bdb; transform: translateY(-2px); box-shadow: var(--glow); }
.btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.form-success { color: #16a34a; font-size: .9rem; font-weight: 600; margin-top: .8rem; }
.form-error   { color: #dc2626; font-size: .85rem; margin-top: .8rem; }

.contact-sidebar { display: flex; flex-direction: column; gap: 1rem; }
.cs-block {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.2rem;
  box-shadow: var(--shadow);
}
.cs-block h4 { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin-bottom: .6rem; font-weight: 700; }
.cs-block p  { font-size: .85rem; color: var(--gray); margin-bottom: .25rem; }
.cs-block a  { color: var(--gray); text-decoration: none; }
.cs-block a:hover { color: var(--blue); }
.cs-price { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem !important; color: var(--navy) !important; }
.cs-social { display: flex; gap: .5rem; }
.ss-btn {
  flex: 1; text-align: center;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: .6rem;
  color: var(--gray); font-size: .8rem;
  text-decoration: none; font-weight: 600;
  transition: border-color var(--transition), color var(--transition);
}
.ss-btn:hover { border-color: var(--blue); color: var(--blue); }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 3.5rem 0 0; }
.footer-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem;
}
.footer-tagline { color: rgba(255,255,255,.45); font-size: .85rem; margin-top: .5rem; }
.footer-logo { color: var(--white); font-size: 1.1rem; font-weight: 900; }
.footer-links { display: flex; flex-direction: column; gap: .7rem; padding-top: .2rem; }
.footer-links a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,.5); font-size: .85rem; margin-bottom: .4rem; }
.footer-contact a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-contact a:hover { color: #93c5fd; }
.footer-social { display: flex; gap: 1rem; margin-top: .8rem; }
.footer-social a { color: rgba(255,255,255,.3); font-size: .8rem; text-decoration: none; transition: color var(--transition); }
.footer-social a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1180px; margin: 0 auto; padding: 1.2rem 1.5rem;
  font-size: .75rem; color: rgba(255,255,255,.25);
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.25); text-decoration: none; }

/* ── RESTAURANTS ── */
.rest-section {
  margin-top: 2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
}
.rest-title {
  font-size: .82rem; font-weight: 700;
  color: var(--blue); margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: .07em;
}
.rest-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.rest-cat-label {
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--gray); margin-bottom: .5rem;
  border-bottom: 1px solid var(--border); padding-bottom: .3rem;
}
.rest-list { list-style: none; }
.rest-list li {
  font-size: .82rem; color: var(--gray);
  padding: .3rem 0;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.rest-list li:last-child { border-bottom: none; }
.rest-list li strong { color: var(--navy); }
@media (max-width: 768px) {
  .rest-grid { grid-template-columns: 1fr; }
}

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s, transform .6s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .bartek-grid, .carv-grid, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .bartek-img { aspect-ratio: 4/3; max-width: 500px; margin: 0 auto; }
  .bartek-badge { right: .5rem; }
  .gallery-grid { grid-template-columns: repeat(3,1fr); grid-template-rows: auto; }
  .gi-tall { grid-row: span 1; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
  .camps-grid-3 { grid-template-columns: 1fr 1fr; }
  .camps-grid-3 .camp-card:last-child { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; width: 100%; }
}
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .nav-hamburger { display: block; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .camps-grid, .camps-grid-3, .contact-wrap, .footer-inner { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gi-wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .loc-facts { grid-template-columns: 1fr 1fr; }
  .location-imgs { grid-template-columns: 1fr; grid-template-rows: auto; }
  .loc-img-1 { grid-column: 1; height: 220px; }
  .loc-img-2, .loc-img-3 { height: 180px; }
}
/* ── PISTE MAP BUTTON ── */
.btn-map {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.6rem;
  padding: .75rem 1.5rem;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(10,25,47,.18);
}
.btn-map:hover { background: var(--accent); transform: translateY(-2px); }

/* ── PISTE MAP MODAL ── */
.pm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,10,20,.88);
  backdrop-filter: blur(6px);
  z-index: 9600;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: fadeIn .2s ease;
}
.pm-overlay.open { display: flex; }

.pm-dialog {
  background: #1a2540;
  border-radius: 16px;
  width: 100%;
  max-width: 960px;
  height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 100px rgba(0,0,0,.6);
  animation: slideUp .25s ease;
  overflow: hidden;
}

.pm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.4rem;
  background: #0f1a2e;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: .95rem;
  flex-shrink: 0;
}
.pm-actions { display: flex; align-items: center; gap: .8rem; }
.pm-download {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: .88rem;
  border: 1.5px solid var(--accent);
  padding: .3rem .8rem;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.pm-download:hover { background: var(--accent); color: #fff; }
.pm-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.pm-close:hover { background: rgba(255,255,255,.22); }

.pm-body {
  flex: 1;
  overflow: hidden;
}
.pm-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

@media (max-width: 600px) {
  .pm-dialog { height: 94vh; border-radius: 12px; }
  .pm-header  { padding: .75rem 1rem; font-size: .85rem; }
}

/* ── LIGHTBOX ── */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,10,20,.92);
  backdrop-filter: blur(8px);
  z-index: 9500;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn .2s ease;
}
.lb-overlay.open { display: flex; }

.lb-close {
  position: fixed;
  top: 1.2rem; right: 1.4rem;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.4rem;
  width: 42px; height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 9501;
}
.lb-close:hover { background: rgba(255,255,255,.25); }

.lb-img-wrap {
  max-width: 92vw;
  max-height: 88vh;
  animation: lbZoom .28s cubic-bezier(.22,.61,.36,1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0,0,0,.7);
}
@keyframes lbZoom {
  from { transform: scale(.6); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.lb-img-wrap img {
  display: block;
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:last-child { grid-column: span 2; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gi-wide, .gi-tall { grid-column: span 1; grid-row: span 1; }
  .countdown { gap: .3rem; padding: .6rem .8rem; }
  .cd-box { min-width: 44px; }
}

/* ── CARV LINK ── */
.carv-link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--accent);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  transition: opacity .2s;
}
.carv-link:hover { opacity: .75; }

/* ── MODAL CARDS (clickable) ── */
.modal-card {
  cursor: pointer;
  position: relative;
  transition: transform .2s, box-shadow .25s;
}
.modal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(15,76,129,.15);
}
.card-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ── CAMP DETAILS BUTTON ── */
.btn-details {
  display: block;
  width: 100%;
  padding: .7rem 1rem;
  margin-bottom: .6rem;
  background: transparent;
  border: 2px solid var(--accent);
  border-radius: 10px;
  color: var(--accent);
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: background .2s, color .2s;
  text-align: center;
}
.btn-details:hover {
  background: var(--accent);
  color: #fff;
}
.btn-details.full { width: 100%; }

/* ── MODAL OVERLAY ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,25,47,.65);
  backdrop-filter: blur(6px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn .2s ease;
}
.modal-overlay.open { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-dialog {
  background: #fff;
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 2.4rem 2.4rem 2rem;
  position: relative;
  box-shadow: 0 24px 80px rgba(10,25,47,.35);
  animation: slideUp .25s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: var(--bg2);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.modal-close:hover { background: #dde4f0; }

.modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-right: 2rem;
}
.modal-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
}
.modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.2;
}

.modal-body {
  color: var(--text);
  font-size: .97rem;
  line-height: 1.7;
}
.modal-body p   { margin-bottom: 1rem; }
.modal-body h4  { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 1.2rem 0 .6rem; }
.modal-body ul  { padding-left: 1.2rem; margin-bottom: 1rem; }
.modal-body li  { margin-bottom: .4rem; }
.modal-body em  { color: var(--accent); font-style: italic; }
.modal-body strong { color: var(--navy); }

.modal-camp-dates {
  background: var(--accent);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.modal-price {
  background: var(--bg2);
  padding: .8rem 1rem;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 1.2rem !important;
}

.modal-footer {
  margin-top: 1.6rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--bg2);
  text-align: center;
}
.modal-footer .btn-primary {
  display: inline-block;
  text-decoration: none;
}

@media (max-width: 600px) {
  .modal-dialog { padding: 1.6rem 1.4rem 1.4rem; }
  .modal-title  { font-size: 1.2rem; }
}
