/* L'ORYX AGAFAY — Luxury Desert Camp v2.0 · High-Performance CSS */

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

/* ============ ACCESSIBILITY ============ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: #e2c48e;
  color: #0a0e12;
  padding: 12px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 9999;
  transition: top 0.3s ease;
  text-decoration: none;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Focus visible for keyboard nav */
*:focus-visible {
  outline: 2px solid #e2c48e;
  outline-offset: 3px;
  border-radius: 2px;
}

/* Better focus on buttons/inputs */
button:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 2px solid #e2c48e;
  outline-offset: 4px;
}


:root {
  --bg: #0a0e12;
  --bg-alt: #0d1318;
  --card: #131920;
  --card-hover: #181f27;
  --gold: #e2c48e;
  --gold-light: #f5d49c;
  --gold-dark: #c9a872;
  --text: #d4d4d4;
  --text-muted: #a8aaae;
  --text-soft: #7a7e83;
  --border: rgba(226, 196, 142, 0.12);
  --border-hover: rgba(226, 196, 142, 0.35);
  --gradient-gold: linear-gradient(135deg, #e2c48e 0%, #f5d49c 50%, #c9a872 100%);
  --gradient-hero: linear-gradient(180deg, rgba(10,14,18,0.2) 0%, rgba(10,14,18,0.4) 50%, rgba(10,14,18,0.95) 100%);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 10px 40px rgba(226, 196, 142, 0.25);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html::-webkit-scrollbar { width: 10px; }
html::-webkit-scrollbar-track { background: var(--bg); }
html::-webkit-scrollbar-thumb { background: var(--gold-dark); }
html::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: var(--gold); color: var(--bg); }

body {
  background: var(--bg); color: var(--text);
  font-family: 'Poppins', sans-serif;
  font-weight: 300; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400; color: #fff;
  line-height: 1.1; letter-spacing: -0.02em;
}
h1 em, h2 em {
  font-style: italic;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h3 em, h4 em, .logo em { font-style: italic; color: var(--gold); }
p { line-height: 1.8; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

/* ============ FADE-IN ON SCROLL ============ */
/* Content is ALWAYS visible (robust: works even if JS fails).
   The .visible class triggers a gentle one-time fade for browsers
   where JS runs, but absence of JS never hides anything. */
.fade-in, .section > *, .feature-card, .testimonial, .activities-row {
  opacity: 1;
  transform: none;
}
html.js-anim .fade-in,
html.js-anim .feature-card,
html.js-anim .testimonial,
html.js-anim .activities-row {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
html.js-anim .fade-in.visible,
html.js-anim .feature-card.visible,
html.js-anim .testimonial.visible,
html.js-anim .activities-row.visible {
  opacity: 1; transform: translateY(0);
}
.grid-3 .feature-card.visible:nth-child(1), .grid-3 .testimonial.visible:nth-child(1) { transition-delay: 0s; }
.grid-3 .feature-card.visible:nth-child(2), .grid-3 .testimonial.visible:nth-child(2) { transition-delay: 0.12s; }
.grid-3 .feature-card.visible:nth-child(3), .grid-3 .testimonial.visible:nth-child(3) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-in, .section > * { opacity: 1; transform: none; }
}

/* ============ HEADER ============ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 14, 18, 0.6);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(10, 14, 18, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 40px; gap: 30px;
  transition: padding 0.4s var(--ease);
}
.site-header.scrolled .header-inner { padding: 14px 40px; }

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 30px; color: #fff;
  transition: transform 0.4s var(--ease);
}
.logo .logo-o { font-style: normal; color: var(--gold); }
.logo:hover { transform: scale(1.03); }
.logo em { font-style: italic; color: var(--gold); }

.main-nav { display: flex; gap: 4px; }
.main-nav a {
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 12px 18px;
  position: relative;
  transition: color 0.3s var(--ease);
}
.main-nav a::after {
  content: ''; position: absolute;
  left: 18px; right: 18px; bottom: 4px;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-out);
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.cta-header {
  background: var(--gold); color: var(--bg) !important;
  padding: 13px 28px;
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2.5px;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.cta-header::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.cta-header:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.cta-header:hover::before { opacity: 1; }
.cta-header > * { position: relative; }

.menu-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--gold); margin: 6px 0;
  transition: all 0.3s var(--ease);
}

@media (max-width: 1024px) {
  .header-inner, .site-header.scrolled .header-inner { padding: 14px 22px; }
  .main-nav {
    position: fixed; top: 0; right: -100%; bottom: 0;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--border-hover);
    flex-direction: column; gap: 0;
    padding: 90px 28px 30px;
    transition: right 0.4s var(--ease-out);
    overflow-y: auto;
    z-index: 100;
  }
  .main-nav.open { right: 0; transform: none; }
  .main-nav a { padding: 22px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
  .main-nav a::after { display: none; }
  .cta-header { display: none; }
  .menu-toggle { display: block; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ============ HERO · Cinematic Ken Burns ============ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  animation: kenburns 20s ease-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.15) translate(-2%, -1%); }
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-hero);
}
.hero-content { position: relative; z-index: 1; }
.hero .eyebrow {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 28px;
  opacity: 0;
  animation: slideUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero h1 {
  font-size: clamp(48px, 9vw, 110px);
  color: #fff;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: slideUp 1s var(--ease-out) 0.4s forwards;
}
.hero p.lead {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px; margin-bottom: 42px;
  line-height: 1.7;
  opacity: 0;
  animation: slideUp 1s var(--ease-out) 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 18px; flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 1s var(--ease-out) 0.8s forwards;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero::after {
  content: ''; position: absolute;
  bottom: 30px; left: 50%;
  width: 1px; height: 50px;
  background: linear-gradient(180deg, transparent, var(--gold));
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateX(-50%) scaleY(0.5); opacity: 0.5; }
  50% { transform: translateX(-50%) scaleY(1); opacity: 1; }
}
.hero.secondary { min-height: 60vh; padding: 150px 0 80px; }
.hero.secondary::after { display: none; }
.hero.secondary h1 { font-size: clamp(40px, 6vw, 72px); }

/* ============ BUTTONS · Premium with shine ============ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 2.5px;
  border: 1px solid transparent; border-radius: 2px;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
  z-index: 1;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn:hover::before { transform: scaleX(1); transform-origin: left; }

.btn-primary {
  background: var(--gold); color: var(--bg);
  box-shadow: 0 4px 20px rgba(226, 196, 142, 0.2);
}
.btn-primary:hover {
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-ghost {
  background: transparent; color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}
.btn-ghost::before { background: rgba(255, 255, 255, 0.1); }
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
}
.btn-gold-outline {
  background: transparent; color: var(--gold);
  border-color: var(--gold);
}
.btn-gold-outline:hover {
  color: var(--bg);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.btn-lg { padding: 20px 42px; font-size: 13px; }

/* ============ SECTIONS ============ */
.section { padding: 120px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-darker { background: #060a0d; }

.section-header { text-align: center; margin: 0 auto 80px; max-width: 720px; }
.section-header.left { text-align: left; margin-left: 0; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold);
}
.section-header h2 {
  font-size: clamp(36px, 5.5vw, 60px);
  margin-bottom: 20px;
}
.section-header p {
  color: var(--text-muted);
  font-size: 17px; line-height: 1.75;
}

/* ============ STATS ============ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; position: relative; padding: 0 20px; }
.stat:not(:last-child)::after {
  content: ''; position: absolute;
  right: -15px; top: 30%; bottom: 30%;
  width: 1px; background: var(--border);
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.stat-label {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ============ FEATURE CARDS · Premium ============ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(440px, 100%), 1fr));
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; gap: 40px; } }

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 48px 38px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(226, 196, 142, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.feature-card:hover {
  background: var(--card-hover);
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover::after { opacity: 1; }

.feature-card .num {
  font-family: 'DM Serif Display', serif;
  font-size: 56px;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  font-style: italic;
  display: block;
  transition: color 0.4s var(--ease);
}
.feature-card:hover .num { color: var(--gold); }
.feature-card .icon {
  font-size: 44px;
  margin-bottom: 24px;
  display: block;
  transition: transform 0.4s var(--ease-bounce);
}
.feature-card:hover .icon { transform: scale(1.15) rotate(-5deg); }
.feature-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #fff;
  transition: color 0.3s var(--ease);
}
.feature-card:hover h3 { color: var(--gold-light); }
.feature-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ============ ACTIVITIES TABLE ============ */
.activities-table {
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.activities-table::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
}
.activities-row {
  display: grid;
  grid-template-columns: 70px 1fr 160px 170px;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}
.activities-row:last-child { border-bottom: 0; }
.activities-row:not(.header):hover {
  background: linear-gradient(90deg, rgba(226, 196, 142, 0.04), transparent);
  padding-left: 44px;
}
.activities-row.header {
  background: rgba(226, 196, 142, 0.06);
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding: 18px 36px;
}
.activities-row.header > div { color: var(--gold); }
.act-icon {
  font-size: 34px;
  text-align: center;
  transition: transform 0.4s var(--ease-bounce);
}
.activities-row:not(.header):hover .act-icon { transform: scale(1.2) rotate(-8deg); }

/* Real photo thumbnails (replaces emoji icons) */
.act-icon-img {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(226, 196, 142, 0.25);
  transition: transform 0.4s var(--ease-bounce), box-shadow 0.4s var(--ease);
  flex-shrink: 0;
}
.act-icon-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.activities-row:not(.header):hover .act-icon-img {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(226, 196, 142, 0.4);
}
.activities-row:not(.header):hover .act-icon-img img {
  transform: scale(1.15);
}
@media (max-width: 768px) {
  .act-icon-img { width: 52px; height: 52px; }
}
.act-name {
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  color: #fff;
}
.act-name small {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 300;
}
.act-price {
  color: var(--gold);
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
}
.act-cta a { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; }

/* ====== Featured row (Day Pass best-seller) ====== */
.activities-row-featured {
  background: linear-gradient(90deg, rgba(226, 196, 142, 0.10), rgba(226, 196, 142, 0.04));
  border-left: 3px solid var(--gold);
  position: relative;
}
.activities-row-featured:hover {
  background: linear-gradient(90deg, rgba(226, 196, 142, 0.16), rgba(226, 196, 142, 0.06)) !important;
}
.activities-row-featured .act-name {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.act-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gradient-gold);
  color: var(--bg);
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 30px;
  white-space: nowrap;
  animation: badgePulse 2.5s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226, 196, 142, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(226, 196, 142, 0); }
}
.act-price-muted {
  color: var(--text-soft) !important;
  font-size: 18px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 300;
}
.activities-row-featured .act-name small {
  width: 100%;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .activities-row-featured .act-name { flex-direction: column; align-items: flex-start; gap: 6px; }
  .act-badge { align-self: flex-start; }
}

@media (max-width: 768px) {
  .activities-row {
    grid-template-columns: 60px 1fr;
    grid-template-areas: "icon name" "icon prices" "cta cta";
    padding: 22px 20px;
    gap: 14px;
  }
  .activities-row:not(.header):hover { padding-left: 20px; }
  .activities-row.header { display: none; }
  .act-icon { grid-area: icon; align-self: start; padding-top: 4px; }
  .act-name { grid-area: name; }
  .act-prices {
    grid-area: prices;
    display: flex; gap: 16px; align-items: baseline;
    font-size: 15px;
  }
  .act-prices span:first-of-type { color: var(--text-muted); font-size: 10px; text-transform: uppercase; letter-spacing: 2px; }
  .act-cta { grid-area: cta; margin-top: 10px; }
  .act-cta a { width: 100%; justify-content: center; }
}

/* ============ TESTIMONIALS ============ */
.testimonial {
  background: var(--card);
  border-left: 3px solid var(--gold);
  padding: 44px 36px;
  position: relative;
  transition: all 0.4s var(--ease);
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px; left: 24px;
  font-family: 'DM Serif Display', serif;
  font-size: 100px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}
.testimonial:hover {
  background: var(--card-hover);
  transform: translateX(6px);
  box-shadow: -3px 10px 30px rgba(0, 0, 0, 0.4);
}
.testimonial .stars {
  color: var(--gold);
  font-size: 17px;
  margin-bottom: 18px;
  letter-spacing: 4px;
}
.testimonial blockquote {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  font-style: italic;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
.testimonial cite {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-style: normal;
  font-family: 'Poppins', sans-serif;
}

/* ============ CTA BAND · Parallax ============ */
.cta-band {
  position: relative;
  padding: 160px 0;
  background-image: url('../images/entrance-sunset.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta-band { background-attachment: scroll; padding: 100px 0; }
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,18,0.8) 0%, rgba(10,14,18,0.6) 50%, rgba(10,14,18,0.85) 100%);
}
.cta-band .container { position: relative; }
.cta-band h2 {
  font-size: clamp(40px, 6vw, 68px);
  margin-bottom: 28px;
}
.cta-band p {
  max-width: 620px;
  margin: 0 auto 44px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

/* ============ RESERVATION FORM · Luxury ============ */
.reservation-section {
  padding: 120px 0;
  background: var(--bg-alt);
  position: relative;
}
.reservation-section::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 100px; height: 1px;
  background: var(--gradient-gold);
}
.reservation-wrap {
  max-width: 940px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 60px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.reservation-wrap::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
}
@media (max-width: 768px) {
  .reservation-wrap { padding: 36px 24px; }
  .reservation-section { padding: 80px 0; }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { position: relative; }
.form-group label {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 10px;
  transition: color 0.3s var(--ease);
}
.form-group:focus-within label { color: var(--gold); }
.form-group .required { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(226, 196, 142, 0.18);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  padding: 16px 18px;
  transition: all 0.3s var(--ease);
  border-radius: 2px;
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(226, 196, 142, 0.35);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(226, 196, 142, 0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.6; }

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e2c48e' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

/* Date picker — custom WHITE calendar icon (works everywhere) */
input[type="date"] {
  color-scheme: dark;
  color: #ffffff !important;
  /* hide the native icon */
  position: relative;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  /* Hide native icon completely and replace with custom one */
  background: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  opacity: 0.85;
  filter: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
  transform: scale(1.15);
}
/* Firefox: show a custom icon */
@-moz-document url-prefix() {
  input[type="date"] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px 20px;
    padding-right: 44px;
  }
}

.activities-picker {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 10px;
}
.activity-check {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(226, 196, 142, 0.12);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.activity-check::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(226, 196, 142, 0.06));
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease);
}
.activity-check:hover {
  border-color: rgba(226, 196, 142, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.activity-check:hover::before { transform: translateX(0); }
.activity-check input {
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  position: relative; z-index: 1;
}
.activity-check span {
  flex: 1;
  font-size: 14px;
  color: var(--text);
  position: relative; z-index: 1;
  transition: color 0.3s var(--ease);
}
.activity-check span small {
  display: block;
  color: var(--gold);
  font-size: 12px;
  margin-top: 3px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
}
.activity-check input:checked + span { color: #fff; }
.activity-check:has(input:checked) {
  border-color: var(--gold);
  background: rgba(226, 196, 142, 0.08);
}

.form-checkbox {
  display: flex !important; align-items: flex-start; gap: 14px;
  text-transform: none !important;
  letter-spacing: normal !important;
  font-size: 14px !important;
  color: var(--text) !important;
  cursor: pointer;
  padding: 10px 0;
}
.form-checkbox input {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}

/* Price calculator */
.oryx-price-display {
  margin: 36px 0;
  padding: 32px 36px;
  background: linear-gradient(135deg, rgba(226, 196, 142, 0.08), rgba(226, 196, 142, 0.03));
  border: 1px solid rgba(226, 196, 142, 0.35);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}
.oryx-price-display::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
}
.oryx-price-display .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--text-muted);
  font-size: 15px;
}
.oryx-price-display .price-row.price-total {
  margin-top: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(226, 196, 142, 0.3);
  font-size: 17px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.oryx-price-display .price-total-value {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'DM Serif Display', serif;
  font-size: 32px;
  letter-spacing: 0;
  text-transform: none;
}
.oryx-price-display .price-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(226, 196, 142, 0.15);
  font-size: 12px;
  color: var(--text-soft);
  font-style: italic;
  text-align: center;
}

.oryx-form-message {
  margin-top: 22px;
  padding: 16px 22px;
  font-size: 14px;
  text-align: center;
  border-radius: 2px;
}
.oryx-form-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
button[type="submit"]:disabled::after {
  content: '';
  display: inline-block;
  margin-left: 12px;
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Images */
.section-alt .grid-2 img {
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
  box-shadow: var(--shadow-md);
}
.section-alt .grid-2 img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* ============ FOOTER ============ */
.site-footer {
  background: #060a0d;
  border-top: 1px solid var(--border);
  padding: 100px 0 0;
  position: relative;
}
.site-footer::before {
  content: ''; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 1px;
  background: var(--gradient-gold);
}
.footer-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 0 32px 70px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
.footer-brand h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.footer-tagline {
  color: var(--text-soft);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 420px;
}
.footer-social {
  display: flex; gap: 12px;
  margin-top: 28px;
}
.footer-social a {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(226, 196, 142, 0.35);
  border-radius: 50%;
  font-size: 12px;
  font-family: 'DM Serif Display', serif;
  color: var(--gold);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--bg);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.site-footer h4 {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 22px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  position: relative;
  padding-bottom: 12px;
}
.site-footer h4::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 1px;
  background: var(--gold);
}
.site-footer ul { list-style: none; }
.site-footer li { padding: 7px 0; }
.site-footer li, .site-footer li a {
  color: var(--text-muted);
  font-size: 14px;
  transition: all 0.3s var(--ease);
}
.site-footer li a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-bottom {
  text-align: center;
  padding: 30px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-size: 12px;
  letter-spacing: 1px;
}

/* ============ FAB ============ */
.oryx-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  background: var(--gold);
  color: var(--bg) !important;
  padding: 18px 32px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease);
  animation: fabEntrance 0.6s var(--ease-bounce) 1s both;
}
@keyframes fabEntrance {
  from { opacity: 0; transform: translateY(20px) scale(0.8); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.oryx-fab:hover {
  background: var(--gold-light);
  color: var(--bg) !important;
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  padding: 18px 36px;
}
.fab-pulse {
  width: 9px; height: 9px;
  background: var(--bg);
  border-radius: 50%;
  animation: fabPulse 2s ease-in-out infinite;
}
@keyframes fabPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}
@media (max-width: 600px) {
  .oryx-fab { bottom: 18px; right: 18px; padding: 14px 24px; font-size: 11px; }
}

/* ============ MERCI PAGE ============ */
.merci-hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 24px;
  position: relative;
  background-image: url('../images/entrance-sunset.jpg');
  background-size: cover; background-position: center;
  text-align: center;
}
.merci-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(10, 14, 18, 0.9);
}
.merci-content {
  position: relative;
  max-width: 640px;
  animation: fadeUp 1s var(--ease-out);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.merci-icon {
  width: 100px; height: 100px;
  margin: 0 auto 40px;
  border-radius: 50%;
  background: rgba(226, 196, 142, 0.1);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  animation: pulseRing 2.5s var(--ease) infinite;
}
@keyframes pulseRing {
  0%, 100% { box-shadow: 0 0 0 0 rgba(226, 196, 142, 0.6); }
  50% { box-shadow: 0 0 0 24px rgba(226, 196, 142, 0); }
}
.merci-icon svg {
  width: 44px; height: 44px;
  stroke: var(--gold);
}
.merci-eyebrow {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 26px;
}
.merci-hero h1 {
  font-size: clamp(40px, 7vw, 70px);
  margin-bottom: 28px;
}
.merci-hero p.lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.merci-summary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hover);
  padding: 32px 38px;
  margin: 0 auto 44px;
  text-align: left;
  max-width: 480px;
  border-radius: 2px;
  position: relative;
}
.merci-summary::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
}
.merci-summary h3 {
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
}
.merci-summary .row {
  display: flex; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(226, 196, 142, 0.1);
  color: var(--text-muted);
  font-size: 14px;
}
.merci-summary .row:last-child { border-bottom: 0; }
.merci-summary .row strong { color: #fff; font-weight: 400; }
.merci-summary .row.total {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--gold);
}
.merci-summary .row.total strong {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
}
.merci-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}
.merci-contact {
  margin-top: 48px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 2;
}
.merci-contact a { color: var(--gold); }

/* ============ UTILITIES ============ */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-30 { margin-top: 30px; }
.mt-50 { margin-top: 50px; }

@media print {
  .site-header, .oryx-fab, .cta-band, .site-footer { display: none; }
  body { background: white; color: black; }
}

/* ============================================================
   PHOTO FEATURE CARDS (replaces emoji feature cards)
   ============================================================ */
.feature-cards-photo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature-card-photo {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.feature-card-photo::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease-out);
  z-index: 2;
}
.feature-card-photo:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}
.feature-card-photo:hover::before { transform: scaleX(1); }

.fcp-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease-out);
}
.feature-card-photo:hover .fcp-image {
  transform: scale(1.06);
}

.fcp-content {
  padding: 28px 26px 30px;
}
.fcp-content h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}
.fcp-content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

/* ============================================================
   GALLERY MOSAIC (homepage)
   ============================================================ */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 4px;
  padding: 0;
  max-width: 100%;
  margin-top: 40px;
}
.gm-item {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s var(--ease-out);
}
.gm-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,14,18,0.7) 100%);
  transition: opacity 0.4s var(--ease);
}
.gm-item:hover::after {
  background: linear-gradient(180deg, rgba(10,14,18,0.2) 0%, rgba(10,14,18,0.85) 100%);
}
.gm-item::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(226, 196, 142, 0);
  transition: background 0.4s var(--ease);
}
.gm-item:hover::before {
  background: rgba(226, 196, 142, 0.05);
}
.gm-label {
  position: absolute;
  bottom: 18px; left: 22px;
  color: #fff;
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  transition: transform 0.4s var(--ease);
}
.gm-item:hover .gm-label {
  transform: translateY(-4px);
  color: var(--gold-light);
}
.gm-tall {
  grid-row: span 2;
}
.gm-wide {
  grid-column: span 2;
}

/* ============================================================
   ULTIMATE MOBILE RESPONSIVE LAYER (mobile-first overrides)
   Targets: 320px, 375px, 414px, 768px, 1024px
   ============================================================ */

/* Tablet & smaller — 1024px breakpoint */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }

  /* Hero */
  .hero h1, .dp-hero h1 { font-size: clamp(38px, 8vw, 64px); line-height: 1.05; }
  .hero .lead, .dp-lead { font-size: 16px; }

  /* Stats bar — wraps */
  .stats-bar {
    flex-wrap: wrap;
    padding: 30px 20px;
  }
  .stats-bar .stat { flex: 1 1 45%; min-width: 140px; }

  /* Activities table → cards on tablet */
  .activities-row {
    grid-template-columns: 60px 1fr;
    grid-template-areas:
      "icon name"
      "icon name"
      "prices prices"
      "cta cta";
    gap: 14px;
    padding: 22px 20px;
  }
  .activities-row.header { display: none; }
  .activities-row .act-icon,
  .activities-row .act-icon-img { grid-area: icon; align-self: center; }
  .activities-row .act-name { grid-area: name; }
  .activities-row .act-price:nth-of-type(2),
  .activities-row .act-price:nth-of-type(3) { grid-area: prices; display: inline-block; margin-right: 18px; }
  .activities-row .act-cta { grid-area: cta; margin-top: 4px; }

  /* Gallery mosaic */
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px 220px;
  }
  .gm-tall { grid-row: span 1; }
  .gm-wide { grid-column: span 2; }
}

/* Mobile — 768px breakpoint (the BIG one) */
@media (max-width: 768px) {
  body { font-size: 15px; }

  /* Header */
  .site-header {
    padding: 14px 0;
  }
  .header-inner { padding: 0 18px; }
  .logo { font-size: 25px; }
  .cta-header { display: none; }

  /* Mobile menu — slide-in style */
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--bg);
    border-left: 1px solid var(--border-hover);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px 30px;
    gap: 0;
    transition: right 0.4s var(--ease-out);
    z-index: 100;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    font-size: 16px;
  }
  .main-nav a:last-child { border-bottom: 0; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 36px; height: 36px;
    align-items: center; justify-content: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 200;
  }
  .menu-toggle span {
    width: 24px; height: 2px;
    background: var(--gold);
    transition: all 0.3s var(--ease);
    transform-origin: center;
  }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* HERO — full bleed */
  .hero { min-height: 88vh; padding: 100px 0 60px; }
  .hero h1 {
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.05;
  }
  .hero .lead { font-size: 15px; line-height: 1.7; }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn { width: 100%; padding: 16px 24px; }

  /* Sections */
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(28px, 7vw, 36px); }
  .section-header p { font-size: 15px; }

  /* Grids → 1 column */
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 24px; }

  /* Feature cards */
  .feature-cards-photo { grid-template-columns: 1fr; gap: 18px; }
  .fcp-image { aspect-ratio: 16 / 9; }
  .fcp-content { padding: 22px 22px 26px; }

  /* Gallery mosaic on mobile — single column scroll */
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 200px);
    gap: 3px;
  }
  .gm-tall, .gm-wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .gm-label { font-size: 16px; bottom: 14px; left: 18px; }

  /* Stats bar */
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 24px 16px;
    gap: 16px;
  }
  .stat-number { font-size: 32px; }
  .stat-label { font-size: 11px; }

  /* Activities table on mobile — cleaner card layout */
  .activities-table { border-radius: 0; margin: 0 -24px; }
  .activities-row {
    padding: 20px 18px;
    grid-template-columns: 56px 1fr;
    gap: 12px;
  }
  .act-icon-img { width: 50px; height: 50px; }
  .act-name { font-size: 16px; }
  .act-name small { font-size: 12px; display: block; margin-top: 4px; opacity: 0.7; }
  .act-price { font-size: 15px; }
  .act-price-muted { font-size: 14px !important; }
  .act-badge { font-size: 9px; padding: 3px 8px; }
  .act-cta a { width: 100%; text-align: center; }
  .activities-row-featured { border-left-width: 3px; }

  /* Testimonials */
  .testimonial { padding: 28px 24px; }
  .testimonial blockquote { font-size: 15px; }

  /* CTA band */
  .cta-band { padding: 70px 0; }
  .cta-band h2 { font-size: clamp(28px, 8vw, 38px); }
  .cta-band p { font-size: 15px; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
  .footer-social { justify-content: center; }

  /* Buttons */
  .btn { padding: 14px 22px; font-size: 12px; }
  .btn-lg { padding: 16px 28px; font-size: 13px; }

  /* DAY PASS hero — stack form below text */
  .dp-hero { min-height: auto; padding: 100px 0 50px; }
  .dp-hero-content { grid-template-columns: 1fr; gap: 30px; }
  .dp-hero h1 { font-size: clamp(36px, 9vw, 52px); }
  .dp-lead { font-size: 15px; }
  .dp-price-tag { padding: 16px 22px; }
  .dp-price-main { font-size: 38px; }
  .dp-hero-cta { flex-direction: column; gap: 10px; }
  .dp-hero-cta .btn { width: 100%; }
  .dp-trust-mini { gap: 16px; font-size: 12px; }
  .dp-trust-mini .dp-trust-item { font-size: 12px; }

  /* DAY PASS quickform — mobile optimization */
  .dp-quickform { padding: 26px 22px; }
  .dp-quickform h3 { font-size: 22px; }
  .dp-form-row input { padding: 14px 12px; font-size: 16px; /* prevents iOS zoom */ }
  .dp-counter { gap: 10px; }
  .dp-counter-label { font-size: 13px; }

  /* Counter buttons — 44px+ touch targets for iOS */
  .qty-btn {
    min-width: 44px;
    min-height: 44px;
    font-size: 20px;
  }
  .qty-control input {
    min-width: 44px;
    min-height: 44px;
    font-size: 16px;
  }

  /* DAY PASS features grid */
  .dp-features-grid { grid-template-columns: 1fr; gap: 16px; }
  .dp-feature { padding: 28px 22px; }
  .dp-feature h3 { font-size: 19px; }

  /* DAY PASS gallery */
  .dp-gallery { grid-template-columns: 1fr; gap: 3px; }
  .dp-gallery-main img { height: 280px; }
  .dp-gallery-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3px;
  }
  .dp-gallery-grid img { height: 110px; }

  /* DAY PASS pricing */
  .dp-pricing-grid { grid-template-columns: 1fr; gap: 20px; }
  .dp-price-card { padding: 32px 24px; }
  .dp-price-featured { transform: none; }
  .dp-price-featured:hover { transform: translateY(-4px); }
  .dp-price-currency { font-size: 44px; }

  /* DAY PASS testimonials */
  .dp-testimonials-grid { grid-template-columns: 1fr; gap: 18px; }
  .dp-testimonial { padding: 28px 24px; }
  .dp-testimonial blockquote { font-size: 15px; }

  /* DAY PASS why */
  .dp-why-grid { grid-template-columns: 1fr; gap: 18px; }
  .dp-why-item { padding: 28px 24px; }
  .dp-why-num { font-size: 44px; }
  .dp-why-item h3 { font-size: 19px; }

  /* DAY PASS FAQ */
  .dp-faq-item summary { padding: 18px 22px; font-size: 14px; gap: 12px; }
  .dp-faq-body { padding: 0 22px 22px; font-size: 14px; }

  /* DAY PASS final CTA */
  .dp-final-cta { padding: 80px 0; }
  .dp-final-cta h2 { font-size: clamp(28px, 8vw, 40px); }
  .dp-final-actions { flex-direction: column; gap: 10px; }
  .dp-final-actions .btn { width: 100%; }

  /* WhatsApp sticky — smaller on mobile, no tooltip */
  .whatsapp-sticky { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-sticky svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none; }

  /* Activity cards (activites.html) */
  .activities-cards-grid { grid-template-columns: 1fr; gap: 20px; }
  .activity-card { aspect-ratio: auto; }
  .activity-image { aspect-ratio: 16 / 10; }

  /* Modal */
  .modal-content { max-width: 100%; border-radius: 0; }
  .modal-hero { height: 220px; }
  .modal-hero-overlay { padding: 24px 20px; }
  .modal-body { padding: 24px 20px; }
  .modal-grid { grid-template-columns: 1fr; gap: 28px; }
  .modal-right { position: static; }

  /* Cart panel full screen on mobile */
  .cart-panel { width: 100vw; max-width: 100vw; }
  .cart-total-value { font-size: 24px; }

  /* Checkout */
  .checkout-content { padding: 28px 20px; margin: 0; max-width: 100%; min-height: 100vh; }
  .checkout-content h2 { font-size: 24px; }
  .form-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* Small phones — 414px and below */
@media (max-width: 414px) {
  .container { padding: 0 18px; }

  .hero { min-height: 92vh; padding: 90px 0 50px; }
  .hero h1 { font-size: clamp(30px, 10vw, 42px); }
  .stats-bar { grid-template-columns: 1fr 1fr; }

  /* Activities row — stack everything */
  .activities-row {
    grid-template-columns: 50px 1fr;
    padding: 18px 16px;
  }
  .act-icon-img { width: 44px; height: 44px; }
  .activities-row-featured .act-name { flex-direction: column; align-items: flex-start; gap: 8px; }

  .dp-hero h1 { font-size: clamp(30px, 10vw, 44px); }
  .dp-price-main { font-size: 34px; }
  .dp-quickform { padding: 22px 18px; }

  .gm-label { font-size: 14px; }
}

/* Extra small — 360px and below */
@media (max-width: 360px) {
  .hero h1, .dp-hero h1 { font-size: 28px; }
  .section-header h2 { font-size: 26px; }
  .btn-lg { padding: 14px 22px; font-size: 12px; }
}

/* Landscape orientation tweaks */
@media (max-width: 900px) and (orientation: landscape) {
  .hero, .dp-hero { min-height: 100vh; }
  .main-nav { padding-top: 60px; }
}

/* High-DPI / retina */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-bg, .dp-hero-bg, .dp-final-cta-bg, .gm-item, .fcp-image {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* Touch device improvements */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover transforms that feel weird on touch */
  .feature-card-photo:hover,
  .activity-card:hover,
  .dp-feature:hover,
  .dp-price-card:hover { transform: none; }

  /* Ensure all clickable elements have enough touch area */
  a, button, .btn { min-height: 44px; }

  /* Larger tap targets */
  .main-nav a { padding: 18px 0; }
}

/* Prevent iOS form zoom on focus */
@media screen and (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="date"],
  input[type="number"],
  select, textarea {
    font-size: 16px !important;
  }
}

/* ============================================================
   FINAL MOBILE POLISH LAYER — Production-ready
   Fixes all remaining edge cases for true 100% mobile readiness
   ============================================================ */

/* Global mobile hygiene */
html { -webkit-text-size-adjust: 100%; }
body { overflow-x: hidden; min-width: 320px; }
img, video, picture, svg { max-width: 100%; height: auto; }
.container { width: 100%; }

/* Prevent any horizontal scroll anywhere on mobile */
@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; max-width: 100vw; }
  * { max-width: 100vw; }
  .container, .container-narrow {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Header - fix logo not overlapping menu */
  .site-header { padding: 12px 0; }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  .logo {
    font-size: 20px;
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Hero - more compact on phones */
  .hero, .dp-hero {
    min-height: auto;
    padding: 90px 0 50px;
  }
  .hero-content, .dp-hero-content {
    text-align: left;
    padding-top: 0;
  }
  .hero h1, .dp-hero h1 {
    font-size: clamp(32px, 9vw, 46px) !important;
    line-height: 1.08 !important;
    margin-bottom: 18px;
    word-wrap: break-word;
    hyphens: auto;
  }
  .hero .lead, .dp-lead {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 100%;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  /* Hero buttons - stack and full-width */
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 15px 20px;
    font-size: 12px;
  }

  /* Day Pass hero CTA - stack */
  .dp-hero-cta {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .dp-hero-cta .btn { width: 100%; justify-content: center; }

  /* Day Pass quickform - fully optimized */
  .dp-quickform {
    padding: 24px 20px;
    margin: 0 -4px;
  }
  .dp-quickform h3 {
    font-size: 20px;
    line-height: 1.2;
  }
  .dp-quickform-badge { font-size: 9px; padding: 4px 10px; }
  .dp-form-row label {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .dp-form-row input {
    padding: 13px 12px;
    font-size: 16px;
    width: 100%;
  }
  .dp-counters {
    padding: 14px 0;
    gap: 10px;
  }
  .dp-counter {
    gap: 8px;
    align-items: center;
  }
  .dp-counter > div:first-child { flex: 1; min-width: 0; }
  .dp-counter-label {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .dp-counter-price { font-size: 11px; }

  /* Day Pass live total */
  .dp-live-total {
    padding: 14px 0;
    margin-bottom: 16px;
  }
  .dp-live-total > span:first-child {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  .dp-total-value { font-size: 24px; }

  /* Day Pass form note */
  .dp-form-note {
    font-size: 11px;
    line-height: 1.5;
    margin-top: 14px;
    padding-top: 12px;
  }

  /* Trust mini on hero */
  .dp-trust-mini {
    gap: 12px;
    flex-wrap: wrap;
  }
  .dp-trust-item {
    font-size: 11px;
    flex: 1 1 auto;
    min-width: calc(50% - 6px);
  }

  /* Price tag on hero */
  .dp-price-tag {
    padding: 14px 18px;
    margin-bottom: 22px;
  }
  .dp-price-label { font-size: 10px; }
  .dp-price-main { font-size: 32px; line-height: 1; }
  .dp-price-main small { font-size: 13px; }
  .dp-price-note { font-size: 11px; }

  /* Trust bar (4 stats below hero) */
  .dp-trust-bar { padding: 30px 0; }
  .dp-trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .dp-trust-stat:not(:last-child)::after { display: none; }
  .dp-trust-num { font-size: 28px; }
  .dp-trust-num span { font-size: 14px; }
  .dp-trust-lbl { font-size: 10px; letter-spacing: 1.5px; }

  /* Section paddings */
  .section { padding: 50px 0; }
  .section-header {
    margin-bottom: 32px;
    padding: 0 4px;
  }
  .section-header h2 {
    font-size: clamp(24px, 7.5vw, 32px);
    line-height: 1.15;
  }
  .section-header p {
    font-size: 14px;
    line-height: 1.65;
  }

  /* Stats bar - 2x2 grid */
  .stats-bar {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 16px 12px;
    padding: 24px 16px;
    text-align: center;
  }
  .stats-bar .stat { padding: 8px 4px; }
  .stat-number {
    font-size: 28px !important;
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 10px;
    letter-spacing: 1.2px;
    line-height: 1.3;
  }

  /* Feature cards photos */
  .feature-cards-photo {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .fcp-image { aspect-ratio: 16 / 10; }
  .fcp-content { padding: 20px; }
  .fcp-content h3 { font-size: 19px; margin-bottom: 10px; }
  .fcp-content p { font-size: 13px; line-height: 1.65; }

  /* Pool block grid */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .grid-2 img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
  }

  /* Gallery mosaic */
  .gallery-mosaic {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 200px);
    gap: 3px;
    padding: 0 20px;
    margin-top: 24px;
  }
  .gm-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gm-label {
    font-size: 14px;
    bottom: 12px;
    left: 16px;
  }

  /* Activities table - card layout */
  .activities-table {
    margin: 0;
    border-radius: 0;
  }
  .activities-row {
    display: grid !important;
    grid-template-columns: 50px 1fr !important;
    grid-template-areas:
      "icon name"
      "prices prices"
      "cta cta" !important;
    gap: 12px !important;
    padding: 18px 16px !important;
    align-items: center;
  }
  .activities-row.header { display: none !important; }
  .activities-row .act-icon,
  .activities-row .act-icon-img { grid-area: icon; }
  .act-icon-img { width: 48px !important; height: 48px !important; }
  .activities-row .act-name { grid-area: name; min-width: 0; overflow: hidden; }
  .act-name {
    font-size: 15px !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .act-name small {
    display: block;
    font-size: 11px;
    margin-top: 3px;
    opacity: 0.7;
    white-space: normal;
    line-height: 1.4;
  }
  .activities-row > div:nth-child(3),
  .activities-row > div:nth-child(4) {
    grid-area: prices;
    display: inline-block;
    margin-right: 14px;
    font-size: 13px;
  }
  .activities-row > div:nth-child(3) {
    grid-area: prices;
  }
  .activities-row .act-cta {
    grid-area: cta;
    width: 100%;
  }
  .activities-row .act-cta a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px 14px;
    font-size: 11px;
  }
  .act-badge {
    font-size: 9px;
    padding: 3px 7px;
    letter-spacing: 1px;
    margin-left: 6px;
  }
  .activities-row-featured .act-name {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }

  /* Activity cards on activites.html */
  .activities-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .activity-card { width: 100%; }
  .activity-image { aspect-ratio: 4 / 3; }
  .activity-info {
    padding: 22px 20px 24px;
  }
  .activity-info h3 { font-size: 24px; }
  .activity-tagline { font-size: 11px; letter-spacing: 1.5px; }
  .activity-price-range { font-size: 20px; margin-bottom: 18px; }
  .activity-cta { padding: 12px 20px; font-size: 10px; }

  /* Modal - full screen on mobile */
  .modal-content {
    max-width: 100vw;
    width: 100vw;
    border-radius: 0;
    height: 100vh;
  }
  .modal-hero { height: 200px; }
  .modal-hero-overlay { padding: 20px 18px; }
  .modal-content h2 { font-size: 28px; line-height: 1.1; }
  .modal-price-range { font-size: 20px; }
  .modal-eyebrow { font-size: 10px; letter-spacing: 2.5px; }
  .modal-body { padding: 24px 18px; }
  .modal-grid { grid-template-columns: 1fr; gap: 24px; }
  .modal-description { font-size: 15px; }
  .modal-section h3 { font-size: 11px; letter-spacing: 2.5px; }
  .modal-right { position: static; }
  .booking-card { padding: 24px 20px; }
  .variant-row {
    padding: 14px 16px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .variant-info { flex: 1 1 60%; }
  .variant-label { font-size: 13px; }
  .variant-price { font-size: 15px; }

  /* Day Pass features grid */
  .dp-features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .dp-feature { padding: 24px 20px; }
  .dp-feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
  }
  .dp-feature h3 { font-size: 18px; margin-bottom: 10px; }
  .dp-feature p { font-size: 13px; line-height: 1.65; }

  /* Day Pass gallery */
  .dp-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .dp-gallery-main img { height: 260px; }
  .dp-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    gap: 3px;
  }
  .dp-gallery-grid img { height: 100px; }

  /* Day Pass pricing - 1 column */
  .dp-pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .dp-price-card { padding: 28px 22px; }
  .dp-price-featured {
    transform: none !important;
  }
  .dp-price-card h3 { font-size: 22px; }
  .dp-price-card-header p { font-size: 11px; }
  .dp-price-currency { font-size: 40px; }
  .dp-price-features li { font-size: 13px; padding: 8px 0 8px 22px; }
  .dp-price-badge { font-size: 9px; padding: 4px 14px; }

  /* Testimonials */
  .dp-testimonials-grid, .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dp-testimonial, .testimonial { padding: 26px 22px; }
  .dp-testimonial blockquote, .testimonial blockquote {
    font-size: 14px;
    line-height: 1.6;
  }
  .dp-testimonial-stars, .stars { font-size: 14px; }
  .dp-testimonial cite strong { font-size: 12px; }
  .dp-testimonial cite span { font-size: 11px; }

  /* Why us */
  .dp-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dp-why-item { padding: 26px 22px; }
  .dp-why-num { font-size: 40px; margin-bottom: 14px; }
  .dp-why-item h3 { font-size: 18px; }
  .dp-why-item p { font-size: 13px; }

  /* FAQ */
  .dp-faq { gap: 8px; }
  .dp-faq-item summary {
    padding: 16px 18px;
    font-size: 14px;
    gap: 10px;
  }
  .dp-faq-item summary::after { font-size: 20px; }
  .dp-faq-body {
    padding: 0 18px 18px;
    font-size: 13px;
    line-height: 1.7;
  }

  /* Final CTA */
  .dp-final-cta { padding: 70px 0; }
  .dp-final-cta-bg { background-attachment: scroll !important; }
  .dp-final-cta h2 { font-size: clamp(24px, 7.5vw, 34px); line-height: 1.15; }
  .dp-final-cta p { font-size: 14px; margin-bottom: 30px; }
  .dp-final-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .dp-final-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* CTA band */
  .cta-band { padding: 60px 0; }
  .cta-band h2 { font-size: clamp(24px, 7vw, 34px); }
  .cta-band p { font-size: 14px; margin-bottom: 28px; }
  .cta-band .btn { width: 100%; max-width: 320px; }

  /* Footer - clean 1 column */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
    text-align: center;
    padding: 50px 0 30px;
  }
  .footer-brand h3 { font-size: 26px; justify-content: center; }
  .footer-tagline { justify-content: center; }
  .footer-social {
    justify-content: center;
    gap: 12px;
  }
  .footer-social a {
    width: 38px; height: 38px;
    font-size: 11px;
  }
  .site-footer h4 { font-size: 12px; }
  .site-footer ul li { font-size: 13px; }
  .footer-bottom {
    font-size: 11px;
    padding: 16px 20px;
    text-align: center;
  }

  /* Buttons - mobile sizes */
  .btn { padding: 13px 22px; font-size: 11px; letter-spacing: 1.8px; }
  .btn-lg { padding: 15px 28px; font-size: 12px; }

  /* WhatsApp sticky */
  .whatsapp-sticky {
    width: 52px !important;
    height: 52px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
  .whatsapp-sticky svg { width: 26px; height: 26px; }
  .whatsapp-tooltip { display: none !important; }

  /* Cart panel - full screen */
  .cart-panel {
    width: 100vw !important;
    max-width: 100vw !important;
  }
  .cart-header { padding: 18px 20px; }
  .cart-header h3 { font-size: 20px; }
  .cart-body { padding: 18px 20px; }
  .cart-footer { padding: 18px 20px; }
  .cart-total-value { font-size: 22px; }
  .cart-item-title { font-size: 14px; }
  .cart-item-variant { font-size: 12px; }
  .cart-item-price { font-size: 16px; }

  /* Checkout modal */
  .checkout-content {
    padding: 24px 18px;
    margin: 0;
    width: 100vw;
    max-width: 100vw;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  .checkout-content h2 { font-size: 22px; line-height: 1.2; }
  .checkout-intro { font-size: 13px; margin-bottom: 22px; }
  #checkout-summary {
    padding: 18px 20px;
    margin-bottom: 24px;
  }
  #checkout-summary h4 { font-size: 11px; }
  .summary-line { font-size: 13px; padding: 6px 0; }
  .summary-total span:last-child { font-size: 20px; }
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .form-group label { font-size: 11px; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 13px 12px;
    font-size: 16px !important;
  }

  /* Modal close button bigger touch target */
  .modal-close {
    width: 40px !important;
    height: 40px !important;
    top: 16px !important;
    right: 16px !important;
  }

  /* Scroll arrow - hide on mobile (saves space) */
  .dp-scroll-down { display: none !important; }

  /* Hero badges - smaller */
  .dp-eyebrow {
    font-size: 10px;
    padding: 6px 12px;
    letter-spacing: 2px;
    margin-bottom: 18px;
  }

  /* Cart button in header - smaller */
  .cart-btn {
    padding: 8px 12px;
    font-size: 11px;
  }
  .cart-count {
    min-width: 18px;
    height: 18px;
    font-size: 10px;
  }
}

/* Extra small phones (iPhone SE, small Android) */
@media (max-width: 380px) {
  .container { padding: 0 16px !important; }
  .hero h1, .dp-hero h1 { font-size: 28px !important; }
  .section-header h2 { font-size: 24px; }
  .dp-quickform { padding: 20px 16px; }
  .stats-bar { gap: 12px 8px; padding: 20px 12px; }
  .stat-number { font-size: 24px !important; }
  .activities-row {
    grid-template-columns: 44px 1fr !important;
    padding: 16px 14px !important;
  }
  .act-icon-img { width: 42px !important; height: 42px !important; }
  .footer-grid { padding: 40px 0 24px; }
}

/* Tablet portrait fix */
@media (min-width: 600px) and (max-width: 900px) {
  .grid-3, .dp-features-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .dp-pricing-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
  }
  .dp-price-card { padding: 26px 18px; }
  .dp-price-currency { font-size: 36px; }
}

/* Fix iOS safe-area for notched phones */
@supports (padding: max(0px)) {
  .site-header {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
  .whatsapp-sticky {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
  }
  .footer-bottom {
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }
}

/* Smooth scroll for anchor jumps (e.g., #reserver) */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* Tap highlight clean */
* { -webkit-tap-highlight-color: rgba(226, 196, 142, 0.15); }

/* Better mobile scrollbars */
@media (max-width: 768px) {
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-thumb { background: var(--gold-dark); }
}

/* ============================================================
   MENU MOBILE — Style doré Agafay (override final)
   Fond sombre dégradé vers or foncé, liens dorés élégants.
   ============================================================ */
@media (max-width: 1024px) {
  .main-nav {
    /* Dégradé sombre → or foncé façon désert d'Agafay */
    background: linear-gradient(160deg, #0a0e12 0%, #15110a 55%, #1c1608 100%) !important;
    border-left: 1px solid var(--gold-dark) !important;
    box-shadow: -20px 0 50px rgba(0,0,0,0.6) !important;
    padding: 100px 30px 40px !important;
  }
  /* Liens du menu : dorés, espacés, séparateurs subtils */
  .main-nav a {
    color: var(--gold-light) !important;
    font-family: 'DM Serif Display', serif !important;
    font-size: 20px !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid rgba(226, 196, 142, 0.18) !important;
    transition: color 0.25s ease, padding-left 0.25s ease !important;
  }
  .main-nav a:hover,
  .main-nav a:active,
  .main-nav a.active {
    color: #ffffff !important;
    padding-left: 10px !important;
  }
  .main-nav a:last-child { border-bottom: 0 !important; }

  /* Bouton hamburger en doré */
  .menu-toggle span {
    background: var(--gold) !important;
  }
}

/* ============================================================
   FIX — Bouton menu (hamburger) toujours visible sur mobile
   ============================================================ */
@media (max-width: 1024px) {
  /* Le header garde logo à gauche, bouton à droite, rien coupé */
  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
  }
  /* Le logo ne doit pas pousser le bouton hors écran */
  .logo {
    flex: 0 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
  }
  /* Bouton hamburger : visible, à droite, au-dessus de tout */
  .menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 44px !important;
    height: 44px !important;
    flex-shrink: 0 !important;
    background: transparent !important;
    border: 0 !important;
    padding: 8px !important;
    margin-left: 12px !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1200 !important;
  }
  .menu-toggle span {
    display: block !important;
    width: 26px !important;
    height: 2.5px !important;
    border-radius: 2px !important;
    background: var(--gold-light) !important;
    transition: all 0.3s ease !important;
  }
  /* Quand le menu est ouvert : croix (X) */
  .menu-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg) !important; }
  .menu-toggle.active span:nth-child(2) { opacity: 0 !important; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg) !important; }
}

/* ============================================================
   FIX FINAL — Bouton hamburger TRÈS visible sur mobile
   Fond doré plein + barres sombres = visible sur toute image.
   ============================================================ */
@media (max-width: 1024px) {
  .menu-toggle {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0 !important;
    /* Fond doré plein pour ressortir sur n'importe quel arrière-plan */
    background: var(--gold) !important;
    border: none !important;
    border-radius: 13px !important;
    padding: 0 !important;
    margin-left: 12px !important;
    box-shadow: 0 4px 14px rgba(0,0,0,0.35) !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 1300 !important;
  }
  .menu-toggle span {
    display: block !important;
    width: 26px !important;
    height: 3.5px !important;
    border-radius: 3px !important;
    /* Barres noires sur le fond doré = contraste maximal */
    background: #000000 !important;
    margin: 0 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
  }
  .menu-toggle.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg) !important; }
  .menu-toggle.active span:nth-child(2) { opacity: 0 !important; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg) !important; }
}

/* ============================================================
   BOUTON WHATSAPP FLOTTANT (CRO — canal de réservation n°1)
   ============================================================ */
.wa-fab {
  position: fixed;
  left: 22px;
  bottom: 24px;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wa-pulse 2.5s infinite;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(37, 211, 102, 0.6); }
.wa-fab svg { width: 32px; height: 32px; fill: #fff; }
@keyframes wa-pulse {
  0% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 768px) {
  .wa-fab { width: 54px; height: 54px; left: 16px; bottom: 18px; }
  .wa-fab svg { width: 28px; height: 28px; }
}

/* ============================================================
   BARRE DE CONFIANCE HERO (CRO — preuve sociale)
   ============================================================ */
.hero-trust {
  display: flex; align-items: center; gap: 10px;
  margin-top: 26px; flex-wrap: wrap;
}
.hero-trust .ht-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.hero-trust .ht-text { color: var(--text-soft); font-size: 14px; }
.hero-trust .ht-text strong { color: var(--gold-light); font-weight: 600; }
@media (max-width: 768px) {
  .hero-trust { justify-content: center; margin-top: 20px; }
  .hero-trust .ht-text { font-size: 12.5px; }
}

/* ============================================================
   RESPONSIVE — Page Le Camp (sections image/texte + galerie)
   ============================================================ */
@media (max-width: 768px) {
  html, body { overflow-x: hidden; }
  .grid-2 { display: flex; flex-direction: column; gap: 28px; }
  .grid-2 > div:has(img) { order: -1; }
  .grid-2 img {
    width: 100%; height: auto;
    max-height: 300px; object-fit: cover;
    border-radius: 12px; display: block;
  }
  .grid-2 h2 { font-size: 28px; line-height: 1.2; }
  .grid-2 p { font-size: 15px; }
  .gallery-mosaic {
    grid-template-columns: 1fr !important;
    grid-template-rows: none !important;
    gap: 12px !important;
    padding: 0 18px;
  }
  .gallery-mosaic .gm-item {
    grid-row: auto !important;
    grid-column: auto !important;
    height: 240px !important;
    border-radius: 12px;
  }
  .gm-label { font-size: 14px; }
}
@media (max-width: 400px) {
  .grid-2 h2 { font-size: 24px; }
  .hero.secondary h1 { font-size: 32px; }
}

/* ============================================================
   PHOTOS PLEIN ÉCRAN sur mobile — Page Le Camp
   Les images des sections image/texte débordent du container
   pour aller bord à bord, le texte garde ses marges.
   ============================================================ */
@media (max-width: 768px) {
  /* L'image (div parent direct contenant un img) passe pleine largeur */
  .grid-2 > div:has(> img) {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }
  .grid-2 > div > img {
    width: 100% !important;
    max-height: 320px !important;
    object-fit: cover !important;
    border-radius: 0 !important;   /* bord à bord = pas d'arrondi */
    display: block;
  }
  /* Le texte garde une marge confortable */
  .grid-2 > div:not(:has(img)) {
    padding-left: 18px;
    padding-right: 18px;
  }

  /* Galerie aussi en plein écran (bord à bord) */
  .gallery-mosaic {
    padding: 0 !important;
    gap: 4px !important;
  }
  .gallery-mosaic .gm-item { border-radius: 0 !important; }
}

/* ============================================================
   PRIX DES ACTIVITÉS — lisibilité mobile (accueil)
   Un seul tarif par activité, affiché clairement.
   ============================================================ */
@media (max-width: 768px) {
  .activities-row .act-price:nth-of-type(2),
  .activities-row .act-price:nth-of-type(3) {
    grid-area: prices;
    display: inline-block;
    font-size: 19px !important;
    color: var(--gold) !important;
    font-family: 'DM Serif Display', serif;
    margin: 0 !important;
    white-space: nowrap;
  }
  .activities-row .act-price-muted {
    grid-area: prices;
    color: var(--text-muted) !important;
    font-size: 15px !important;
  }
}

/* ============================================================
   PRIX — page Activités (cartes) lisibilité mobile
   ============================================================ */
@media (max-width: 768px) {
  .activity-price-range {
    font-size: 22px !important;
    color: var(--gold) !important;
    font-family: 'DM Serif Display', serif;
    margin: 8px 0 16px !important;
    display: block;
    white-space: nowrap;
    letter-spacing: 0.5px;
  }
}




/* ============================================================
   CARTE GOOGLE MAPS — centrée, robuste (page Contact)
   Desktop : carte + panneau côte à côte, centrés dans la page.
   Mobile  : empilés, bord à bord.
   ============================================================ */
.map-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
  width: 100%;
}
.map-frame-box {
  flex: 1 1 520px;
  min-width: 300px;
  height: 440px;
  border: 1px solid var(--gold-dark);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.map-frame-box iframe {
  filter: grayscale(0.2) contrast(1.05);
}
.map-card {
  flex: 0 1 360px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, rgba(19,25,32,0.98) 0%, rgba(28,22,8,0.98) 100%);
  border: 1px solid var(--gold-dark);
  border-radius: 16px;
  padding: 40px 34px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.map-card-eyebrow {
  color: var(--gold);
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 6px;
}
.map-card-title {
  font-family: 'DM Serif Display', serif;
  color: var(--gold-light);
  font-size: 32px; margin: 0 0 24px; line-height: 1.1;
}
.map-card-info { list-style: none; margin: 0 0 28px; padding: 0; }
.map-card-info li {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-soft); font-size: 14.5px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(226,196,142,0.14);
}
.map-card-info li:last-child { border-bottom: 0; }
.map-card-info .mci-ico { color: var(--gold); font-size: 14px; width: 16px; text-align: center; }
.map-card-btn {
  display: block; width: 100%; text-align: center;
  background: var(--gold); color: var(--bg);
  font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 500;
  padding: 15px 20px; border-radius: 40px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.map-card-btn:hover {
  color: var(--bg); transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(226,196,142,0.4);
}

/* ===== Tablette : empilés, centrés ===== */
@media (max-width: 900px) {
  .map-grid { flex-direction: column; gap: 0; max-width: 600px; padding: 0 18px; }
  .map-frame-box {
    flex: none; width: 100%; height: 360px;
    border-radius: 16px 16px 0 0; border-bottom: 0;
  }
  .map-card { flex: none; width: 100%; border-radius: 0 0 16px 16px; }
}

/* ===== Mobile : bord à bord ===== */
@media (max-width: 768px) {
  .map-grid { padding: 0; margin-top: 28px; }
  .map-frame-box { height: 300px; border-radius: 0; border-left: 0; border-right: 0; }
  .map-card { border-radius: 0; border-left: 0; border-right: 0; padding: 28px 22px; }
  .map-card-title { font-size: 26px; }
}

/* ============================================================
   CARTES ACTIVITÉS (style Day Pass) — accueil
   ============================================================ */
.activity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 24px;
  margin-top: 20px;
}
.activity-pass-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.activity-pass-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
}
.activity-pass-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold-dark), 0 18px 44px rgba(0,0,0,0.4);
}
.apc-img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}
.apc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.activity-pass-card:hover .apc-img img { transform: scale(1.06); }
.apc-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--bg);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.apc-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.apc-name {
  font-family: 'DM Serif Display', serif;
  color: var(--gold-light);
  font-size: 22px;
  margin: 0 0 8px;
}
.apc-desc {
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}
.apc-price {
  font-family: 'DM Serif Display', serif;
  color: var(--gold);
  font-size: 30px;
  margin-bottom: 18px;
  line-height: 1;
}
.apc-price span {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}
.apc-btn {
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .activity-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .apc-img { height: 130px; }
  .apc-body { padding: 16px 16px 18px; }
  .apc-name { font-size: 18px; }
  .apc-desc { font-size: 12px; margin-bottom: 12px; }
  .apc-price { font-size: 24px; margin-bottom: 14px; }
}

/* Cartes activités cliquables — curseur main + image cliquable */
.activity-pass-card.is-clickable { cursor: pointer; }
.activity-pass-card.is-clickable .apc-img,
.activity-pass-card.is-clickable .apc-img img { cursor: pointer; }
