:root {
  --gold: #D4A843;
  --gold-light: #E8C96A;
  --terracotta: #C45D3E;
  --terracotta-dark: #9E3A20;
  --sand: #F5E6C8;
  --sand-light: #FBF4E8;
  --ocean: #1B6B5A;
  --ocean-deep: #0E3F33;
  --night: #1A1410;
  --night-soft: #2A2218;
  --cream: #FFF8ED;
  --white: #FFFFFF;
  --star: #F0C040;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--night);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
  background: transparent;
}
nav.scrolled {
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
nav.nav-solid {
  background: rgba(26, 20, 16, 0.97);
  backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-logo span { color: var(--cream); font-weight: 400; font-style: italic; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  color: var(--cream); text-decoration: none; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase;
  opacity: 0.7; transition: opacity 0.3s;
}
.nav-links a:hover { opacity: 1; }
.nav-links a.active { opacity: 1 !important; }
.nav-cta {
  background: var(--gold) !important; color: var(--night) !important;
  padding: 0.6rem 1.4rem !important; border-radius: 100px;
  font-weight: 600 !important; opacity: 1 !important;
  transition: transform 0.3s, box-shadow 0.3s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,168,67,0.4); }
.nav-menu-btn {
  display: none; background: none; border: none; cursor: pointer;
  width: 30px; height: 20px; position: relative; z-index: 101;
}
.nav-menu-btn span {
  display: block; width: 100%; height: 2px; background: var(--cream);
  position: absolute; left: 0; transition: all 0.3s;
}
.nav-menu-btn span:nth-child(1) { top: 0; }
.nav-menu-btn span:nth-child(2) { top: 9px; }
.nav-menu-btn span:nth-child(3) { top: 18px; }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(135deg, rgba(26,20,16,0.85) 0%, rgba(14,63,51,0.7) 50%, rgba(196,93,62,0.6) 100%),
    url('https://images.unsplash.com/photo-1528277342758-f1d7613953a2?w=1600&q=80') center/cover;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 2rem; will-change: transform, opacity; }
.hero-badge {
  display: inline-block; background: rgba(212,168,67,0.2);
  border: 1px solid rgba(212,168,67,0.4); border-radius: 100px;
  padding: 0.5rem 1.5rem; font-size: 0.8rem; font-weight: 600;
  color: var(--gold-light); letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 2rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem); font-weight: 900;
  color: var(--cream); line-height: 0.95;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic; color: var(--gold);
  display: block; font-size: 0.55em;
  font-weight: 400; margin-top: 0.3em;
}
.hero-sub {
  font-size: 1.2rem; color: rgba(245,230,200,0.75);
  max-width: 550px; margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--night);
  padding: 1rem 2.2rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(212,168,67,0.35); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--cream);
  padding: 1rem 2.2rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(245,230,200,0.3);
  transition: all 0.3s; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--cream); background: rgba(255,255,255,0.05); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: float 3s ease-in-out infinite;
}
.hero-scroll svg { width: 24px; height: 24px; stroke: var(--gold); opacity: 0.6; }
@keyframes float { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* ─── MARQUEE ─── */
.marquee {
  background: var(--night); padding: 1rem 0; overflow: hidden;
  border-top: 1px solid rgba(212,168,67,0.2);
  border-bottom: 1px solid rgba(212,168,67,0.2);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem; color: var(--gold); opacity: 0.6;
  white-space: nowrap; padding: 0 2rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.marquee-track span::before {
  content: '\25C6'; margin-right: 2rem; font-size: 0.5rem; vertical-align: middle;
}
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── SECTIONS ─── */
section { padding: 7rem 2rem; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 1.5rem;
}

/* ─── ABOUT ─── */
.about { background: var(--cream); }
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-images { position: relative; height: 500px; }
.about-img {
  position: absolute; border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,20,16,0.15);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-1 { top: 0; left: 0; width: 65%; height: 60%; z-index: 2; }
.about-img-2 { bottom: 0; right: 0; width: 60%; height: 55%; z-index: 1; }
.about-img-accent {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 120px; height: 120px; background: var(--gold);
  border-radius: 50%; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 1rem; color: var(--night); text-align: center;
  line-height: 1.2; box-shadow: 0 10px 30px rgba(212,168,67,0.4);
}
.about-text p {
  font-size: 1.1rem; line-height: 1.8; color: var(--night-soft);
  margin-bottom: 1.5rem;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem; padding-top: 2.5rem;
  border-top: 1px solid rgba(26,20,16,0.1);
}
.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--terracotta);
  display: inline-block;
}
.about-stat-label { font-size: 0.8rem; color: var(--night-soft); margin-top: 0.3rem; }

/* ─── FEATURES ─── */
.features { background: var(--night); color: var(--cream); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features .section-label { color: var(--gold); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px; padding: 2.5rem 2rem;
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--gold), var(--terracotta));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.feature-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px; margin-bottom: 1.2rem; display: flex;
  align-items: center; justify-content: center;
  background: rgba(212,168,67,0.08); border-radius: 14px;
  border: 1px solid rgba(212,168,67,0.12);
}
.feature-icon svg {
  width: 28px; height: 28px; stroke: var(--gold); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700; margin-bottom: 0.8rem;
}
.feature-card p { font-size: 0.92rem; line-height: 1.7; opacity: 0.65; }

/* ─── LOCATIONS ─── */
.locations { background: var(--sand-light); }
.locations-inner { max-width: 1200px; margin: 0 auto; }
.locations-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.location-card {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 420px; cursor: pointer; group: true;
}
.location-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.location-card:hover img { transform: scale(1.08); }
.location-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.9) 0%, rgba(26,20,16,0.1) 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; transition: all 0.4s;
}
.location-card:hover .location-overlay {
  background: linear-gradient(to top, rgba(14,63,51,0.95) 0%, rgba(14,63,51,0.3) 60%);
}
.location-flag { font-size: 1.5rem; margin-bottom: 0.5rem; }
.location-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--cream);
}
.location-card .location-country {
  font-size: 0.8rem; color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 600; margin-top: 0.3rem;
}
.location-desc {
  font-size: 0.88rem; color: rgba(245,230,200,0.7); line-height: 1.6;
  margin-top: 0.8rem; max-height: 0; overflow: hidden; transition: max-height 0.4s;
}
.location-card:hover .location-desc { max-height: 100px; }

/* ─── LOCATION CARD SHINE ─── */
.location-card::after {
  content: ''; position: absolute; inset: 0; z-index: 5;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 45%, transparent 50%);
  transform: translateX(-100%); transition: transform 0.6s;
  pointer-events: none;
}
.location-card:hover::after { transform: translateX(100%); }

/* ─── REVIEWS ─── */
.reviews { background: var(--cream); position: relative; overflow: hidden; }
.reviews::before {
  content: '\201C'; position: absolute; top: -80px; right: 5%;
  font-family: 'Playfair Display', serif; font-size: 40rem;
  color: var(--terracotta); opacity: 0.03; pointer-events: none; line-height: 1;
}
.reviews-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.review-card {
  background: var(--white); border-radius: 20px;
  padding: 2.5rem; position: relative;
  box-shadow: 0 4px 20px rgba(26,20,16,0.04);
  border: 1px solid rgba(26,20,16,0.05);
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(26,20,16,0.1), 0 0 0 1px rgba(212,168,67,0.1);
}
.review-stars { color: var(--star); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1.2rem; }
.review-text {
  font-size: 1.05rem; line-height: 1.8; color: var(--night-soft);
  font-style: italic; margin-bottom: 1.5rem;
}
.review-author { display: flex; align-items: center; gap: 1rem; }
.review-avatar {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  object-position: center 20%;
  border: 3px solid var(--sand);
}
.review-name {
  font-weight: 700; font-size: 0.95rem;
}
.review-location { font-size: 0.8rem; color: var(--terracotta); }
.review-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(212,168,67,0.1); color: var(--gold);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem; border-radius: 100px; text-transform: uppercase;
}

/* ─── BOOKING ─── */
.booking { background: var(--ocean-deep); color: var(--cream); position: relative; overflow: hidden; }
.booking::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,67,0.08) 0%, transparent 60%);
}
.booking-inner {
  max-width: 800px; margin: 0 auto; position: relative; z-index: 2;
  text-align: center;
}
.booking .section-label { color: var(--gold); }
.booking .section-title { color: var(--cream); }
.booking-sub {
  font-size: 1.1rem; opacity: 0.6; max-width: 500px;
  margin: 0 auto 3rem; line-height: 1.7;
}
.booking-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px; padding: 3rem;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 0.78rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; opacity: 0.5;
}
.form-group input, .form-group select, .form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 0.9rem 1.2rem;
  font-family: 'DM Sans', sans-serif; font-size: 1rem;
  color: var(--cream); outline: none; transition: border-color 0.3s;
  width: 100%;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(245,230,200,0.25); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option { background: var(--night); color: var(--cream); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-submit {
  margin-top: 2rem; width: 100%;
  background: var(--gold); color: var(--night);
  padding: 1.1rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700;
  border: none; cursor: pointer; transition: all 0.3s;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,67,0.3); }

/* ─── FOOTER ─── */
footer {
  background: var(--night); color: var(--cream);
  text-align: center; padding: 3rem 2rem;
  border-top: 1px solid rgba(212,168,67,0.1);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 900; color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-tagline { opacity: 0.4; font-size: 0.9rem; margin-bottom: 1.5rem; font-style: italic; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
.footer-links a { color: var(--cream); opacity: 0.4; text-decoration: none; font-size: 0.85rem; transition: opacity 0.3s; }
.footer-links a:hover { opacity: 1; }
.footer-copy { opacity: 0.25; font-size: 0.75rem; }

/* ─── DESTINATION SCROLL TEXT ─── */
.dest-scroll-banner {
  background: var(--night); padding: 4rem 0; overflow: hidden; position: relative;
}
.dest-scroll-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 12vw, 10rem); font-weight: 900;
  color: transparent; -webkit-text-stroke: 1px rgba(212,168,67,0.3);
  white-space: nowrap; display: flex; gap: 0.5em;
  animation: destScroll 20s linear infinite;
  will-change: transform;
}
.dest-scroll-text span { display: inline-block; }
.dest-scroll-text .filled { color: var(--gold); -webkit-text-stroke: none; opacity: 0.15; }
@keyframes destScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ─── ACTIVITIES ─── */
.activities { background: var(--cream); position: relative; overflow: hidden; }
.activities-inner { max-width: 1200px; margin: 0 auto; }
.activities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.activity-card {
  position: relative; border-radius: 20px; overflow: hidden;
  height: 350px; cursor: default;
  border: 1px solid rgba(26,20,16,0.06);
}
.activity-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.activity-card:hover img { transform: scale(1.06); }
.activity-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.85) 0%, rgba(26,20,16,0) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem; transition: all 0.4s;
}
.activity-card:hover .activity-overlay {
  background: linear-gradient(to top, rgba(14,63,51,0.9) 0%, rgba(14,63,51,0.15) 65%);
}
.activity-icon {
  width: 48px; height: 48px; margin-bottom: 0.8rem;
  background: rgba(212,168,67,0.15); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(10px); border: 1px solid rgba(212,168,67,0.2);
}
.activity-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.activity-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--cream);
}
.activity-card p {
  font-size: 0.85rem; color: rgba(245,230,200,0.65); line-height: 1.6;
  margin-top: 0.4rem; max-height: 0; overflow: hidden; transition: max-height 0.5s;
}
.activity-card:hover p { max-height: 80px; }

/* ─── PAGE HERO (Inner pages) ─── */
.page-hero {
  background: var(--night); padding: 10rem 2rem 5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(212,168,67,0.06) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900; color: var(--cream); line-height: 1.05; margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.15rem; color: rgba(245,230,200,0.5); line-height: 1.7; max-width: 500px; margin: 0 auto;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0; transform: translateY(60px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.85); transition: opacity 1s cubic-bezier(0.22,1,0.36,1), transform 1s cubic-bezier(0.22,1,0.36,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }
.reveal-delay-5 { transition-delay: 0.75s; }

/* ─── SMOOTH PAGE LOAD ─── */
body { animation: pageLoad 0.8s ease-out; }
@keyframes pageLoad { 0% { opacity: 0; } 100% { opacity: 1; } }

/* ─── HORIZONTAL SNAP SCROLL (MOBILE LOCATIONS) ─── */
@media (max-width: 600px) {
  .locations-grid {
    display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 1rem; padding: 0 1.2rem 1.5rem; margin: 3rem -1.2rem 0;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .locations-grid::-webkit-scrollbar { display: none; }
  .locations-grid .location-card {
    flex: 0 0 78vw; scroll-snap-align: start; height: 400px;
  }
  .locations-grid::after {
    content: ''; flex: 0 0 1.2rem;
  }
}

/* ─── REVIEW CAROUSEL (MOBILE) ─── */
@media (max-width: 600px) {
  .reviews-grid {
    display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 1rem; padding: 0 1.2rem 1.5rem; margin: 3rem -1.2rem 0;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .reviews-grid .review-card {
    flex: 0 0 82vw; scroll-snap-align: start;
  }
  .reviews-grid::after {
    content: ''; flex: 0 0 1.2rem;
  }
}

/* ─── ACTIVITIES MOBILE ─── */
@media (max-width: 600px) {
  .activities-grid {
    display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 1rem; padding: 0 1.2rem 1.5rem; margin: 3rem -1.2rem 0;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .activities-grid::-webkit-scrollbar { display: none; }
  .activities-grid .activity-card {
    flex: 0 0 78vw; scroll-snap-align: start; height: 320px;
  }
  .activities-grid::after {
    content: ''; flex: 0 0 1.2rem;
  }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.7rem 1.5rem; }
  nav.nav-solid { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(26,20,16,0.97);
    justify-content: center; align-items: center;
    gap: 2rem; z-index: 100;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-images { height: 350px; }
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
}
@media (max-width: 600px) {
  section { padding: 5rem 1.2rem; }
  .locations-grid { grid-template-columns: 1fr; }
  .location-card { height: 320px; }
  .about-images { height: 280px; }
  .about-stats { grid-template-columns: 1fr; gap: 1rem; text-align: center; }
  .booking-form { padding: 2rem 1.5rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}
