/* ============================================
   CancunDestinations.com — Design System
   ============================================ */

:root {
  /* Sand-to-Ocean Palette */
  --sand-50:  #FDF9F0;
  --sand-100: #F5E6C8;
  --sand-200: #EDD9A8;
  --sand-300: #D4B87A;
  --sand-400: #B89254;
  --ocean-50:  #E8F8FB;
  --ocean-100: #B8EBF2;
  --ocean-200: #7FDAE4;
  --ocean-300: #5ED3E0;
  --ocean-400: #2BB5C8;
  --ocean-500: #0891A5;
  --ocean-600: #055E71;
  --ocean-900: #032C35;

  /* Neutrals */
  --ink:      #0F1E24;
  --charcoal: #2D3B40;
  --slate:    #5D6B70;
  --mist:     #9BA5A8;
  --pearl:    #F7F3ED;
  --white:    #FFFFFF;

  /* Semantic */
  --gold:      #D4A24C;
  --coral:     #F07B5C;
  --leaf:      #6FB77F;

  /* Gradients */
  --grad-hero:   linear-gradient(135deg, rgba(8,145,165,0.85) 0%, rgba(94,211,224,0.55) 50%, rgba(245,230,200,0.75) 100%);
  --grad-sand:   linear-gradient(135deg, var(--sand-50) 0%, var(--sand-100) 100%);
  --grad-ocean:  linear-gradient(135deg, var(--ocean-300) 0%, var(--ocean-500) 100%);
  --grad-sunset: linear-gradient(135deg, #F5E6C8 0%, #F4B589 45%, #5ED3E0 100%);
  --grad-card:   linear-gradient(180deg, var(--white) 0%, var(--sand-50) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 30, 36, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 30, 36, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 30, 36, 0.12);
  --shadow-xl: 0 30px 80px rgba(15, 30, 36, 0.18);
  --shadow-ocean: 0 20px 50px rgba(8, 145, 165, 0.25);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 999px;

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================
   Reset
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
h1 { font-size: clamp(2.75rem, 6vw, 5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.125rem); }
h4 { font-size: 1.25rem; font-weight: 600; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ocean-500);
  margin-bottom: var(--space-sm);
  display: inline-block;
}
.section-title { margin-bottom: var(--space-sm); }
.section-subtitle { color: var(--slate); font-size: 1.125rem; max-width: 640px; margin: 0 auto; }
.text-center { text-align: center; }

/* ============================================
   Layout
   ============================================ */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md); }
section { padding: var(--space-2xl) 0; }
.section-header { text-align: center; margin-bottom: var(--space-xl); }

/* ============================================
   Navigation
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(15, 30, 36, 0.06);
  transition: all 0.3s var(--ease);
}
.navbar.scrolled { background: rgba(255, 255, 255, 0.92); box-shadow: var(--shadow-sm); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
  max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 500;
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--grad-ocean);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-ocean);
}
.nav-links { display: flex; gap: var(--space-lg); list-style: none; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: var(--charcoal);
  position: relative; padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad-ocean);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ocean-500); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 0.7rem 1.5rem;
  background: var(--ink); color: var(--white);
  border-radius: var(--r-full);
  font-size: 0.9rem; font-weight: 500;
  transition: all 0.3s var(--ease);
}
.nav-cta:hover { background: var(--ocean-500); transform: translateY(-2px); box-shadow: var(--shadow-ocean); }
.nav-toggle { display: none; font-size: 1.5rem; color: var(--ink); }

/* ============================================
   Buttons
   ============================================ */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.95rem 2rem;
  border-radius: var(--r-full);
  font-size: 0.95rem; font-weight: 500;
  transition: all 0.35s var(--ease);
  cursor: pointer; white-space: nowrap;
}
.btn-primary {
  background: var(--ink); color: var(--white);
}
.btn-primary:hover { background: var(--ocean-500); transform: translateY(-3px); box-shadow: var(--shadow-ocean); }
.btn-secondary {
  background: var(--white); color: var(--ink);
  border: 1.5px solid rgba(15, 30, 36, 0.15);
}
.btn-secondary:hover { border-color: var(--ocean-500); color: var(--ocean-500); transform: translateY(-3px); }
.btn-ghost { color: var(--ink); padding: 0.7rem 1.2rem; }
.btn-ghost:hover { color: var(--ocean-500); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
  background: #083540;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1510097467424-192d713fd8b2?w=2400&q=85');
  background-size: cover; background-position: center;
  opacity: 0.55;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--grad-hero);
  mix-blend-mode: multiply;
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-eyebrow {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--r-full);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem; font-weight: 600;
  margin-bottom: var(--space-md);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  margin-bottom: var(--space-md);
  max-width: 900px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.hero h1 em { font-style: italic; color: var(--sand-100); font-weight: 400; }
.hero-subtext {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  margin-bottom: var(--space-lg);
  font-weight: 300;
}

/* Search Bar */
.search-bar {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border-radius: var(--r-full);
  padding: 6px;
  box-shadow: var(--shadow-xl);
  max-width: 720px;
  margin-top: var(--space-lg);
  border: 1px solid rgba(255,255,255,0.4);
}
.search-field {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border-right: 1px solid rgba(15,30,36,0.08);
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem; font-weight: 600;
  color: var(--ocean-500);
  margin-bottom: 2px;
}
.search-field input, .search-field select {
  width: 100%;
  border: none; outline: none; background: transparent;
  font-family: inherit; font-size: 0.95rem;
  color: var(--ink);
}
.search-btn {
  background: var(--ink);
  color: var(--white);
  padding: 0.95rem 1.7rem;
  border-radius: var(--r-full);
  font-weight: 500;
  display: flex; align-items: center; gap: 0.4rem;
  transition: all 0.3s var(--ease);
}
.search-btn:hover { background: var(--ocean-500); }

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat .num {
  font-family: var(--font-serif);
  font-size: 2.5rem; font-weight: 400;
  color: var(--white);
  line-height: 1;
}
.hero-stat .label {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

/* ============================================
   Category Cards
   ============================================ */
.categories { background: var(--grad-sand); }
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.category-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  box-shadow: var(--shadow-md);
}
.category-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--shadow-xl); }
.category-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.category-card:hover img { transform: scale(1.1); }
.category-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(3,44,53,0.85) 100%);
}
.category-card .info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--space-md);
  z-index: 2;
  color: var(--white);
}
.category-card .info .eyebrow {
  color: var(--ocean-200);
  margin-bottom: 0.3rem;
}
.category-card .info h3 {
  color: var(--white);
  margin-bottom: 0.3rem;
  font-size: 1.6rem;
}
.category-card .info .arrow {
  display: inline-flex; align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s var(--ease);
}
.category-card:hover .info .arrow { opacity: 1; transform: translateX(0); }

/* ============================================
   Listing Cards
   ============================================ */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.listing-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
  display: flex; flex-direction: column;
  border: 1px solid rgba(15,30,36,0.04);
}
.listing-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.listing-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--grad-sunset);
}
.listing-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.listing-card:hover .listing-img img { transform: scale(1.08); }
.listing-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--r-full);
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink);
}
.listing-badge.premium { background: var(--ink); color: var(--sand-100); }
.listing-favorite {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all 0.3s var(--ease);
}
.listing-favorite:hover { transform: scale(1.15); background: var(--coral); color: white; }
.listing-body { padding: var(--space-md); display: flex; flex-direction: column; flex: 1; }
.listing-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 0.6rem;
}
.listing-rating { display: flex; align-items: center; gap: 0.35rem; color: var(--ink); font-weight: 600; }
.listing-rating .star { color: var(--gold); }
.listing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.listing-card p {
  font-size: 0.92rem;
  color: var(--slate);
  margin-bottom: var(--space-sm);
  flex: 1;
}
.listing-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid rgba(15,30,36,0.06);
}
.listing-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
}
.listing-price .from { font-size: 0.72rem; color: var(--slate); text-transform: uppercase; letter-spacing: 0.1em; font-family: var(--font-sans); font-weight: 500; display: block; margin-bottom: -2px; }
.listing-price .unit { font-size: 0.78rem; color: var(--slate); font-family: var(--font-sans); font-weight: 400; }
.listing-link {
  color: var(--ocean-500);
  font-size: 0.88rem; font-weight: 600;
  display: flex; align-items: center; gap: 0.35rem;
  transition: gap 0.3s var(--ease);
}
.listing-card:hover .listing-link { gap: 0.6rem; color: var(--ink); }

/* ============================================
   Why Section
   ============================================ */
.why { background: var(--ink); color: var(--white); }
.why h2 { color: var(--white); }
.why .section-subtitle { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.why-card {
  padding: var(--space-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  transition: all 0.4s var(--ease);
}
.why-card:hover { background: rgba(94,211,224,0.08); border-color: rgba(94,211,224,0.3); transform: translateY(-6px); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--grad-ocean);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}
.why-card h4 { color: var(--white); margin-bottom: 0.5rem; font-family: var(--font-serif); font-weight: 500; font-size: 1.35rem; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.95rem; }

/* ============================================
   Experiences Strip
   ============================================ */
.experiences { background: var(--sand-50); }
.experience-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 240px);
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}
.experience-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}
.experience-card:first-child { grid-row: 1 / 3; }
.experience-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.experience-card:hover img { transform: scale(1.08); }
.experience-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.8));
}
.experience-card .label {
  position: absolute; bottom: var(--space-sm); left: var(--space-sm); right: var(--space-sm);
  z-index: 2; color: white;
}
.experience-card .label .tag {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--ocean-200); margin-bottom: 0.3rem; font-weight: 600;
}
.experience-card .label h4 { color: white; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 500; }

/* ============================================
   Travel Tips
   ============================================ */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}
.tip-card {
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid rgba(15,30,36,0.08);
  border-radius: var(--r-lg);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.tip-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-ocean);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.tip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tip-card:hover::before { transform: scaleX(1); }
.tip-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--ocean-500);
  line-height: 1;
  margin-bottom: var(--space-sm);
}
.tip-card h4 { margin-bottom: 0.5rem; font-family: var(--font-serif); font-weight: 500; font-size: 1.3rem; }
.tip-card p { color: var(--slate); font-size: 0.92rem; }

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
  background: var(--grad-sunset);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1552074284-5e88ef1aef18?w=2000&q=80');
  background-size: cover; background-position: center;
  opacity: 0.15;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: clamp(2.25rem, 5vw, 4rem); margin-bottom: var(--space-sm); }
.cta-content p { font-size: 1.15rem; color: var(--charcoal); max-width: 600px; margin: 0 auto var(--space-lg); }
.cta-buttons { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; }

/* ============================================
   Filters Bar
   ============================================ */
.page-hero {
  padding-top: 160px; padding-bottom: var(--space-xl);
  background: var(--grad-sand);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { margin-bottom: var(--space-sm); font-size: clamp(2.5rem, 5vw, 4.5rem); }
.page-hero p { color: var(--slate); font-size: 1.125rem; max-width: 620px; margin: 0 auto; }

.filters-bar {
  background: var(--white);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-md);
  padding: 8px;
  display: flex;
  gap: 0.5rem;
  max-width: 900px;
  margin: var(--space-lg) auto 0;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 0.7rem 1.4rem;
  border-radius: var(--r-full);
  font-size: 0.88rem; font-weight: 500;
  color: var(--charcoal);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.filter-chip:hover { background: var(--sand-100); }
.filter-chip.active { background: var(--ink); color: white; }

.results-bar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: var(--space-lg);
  padding-top: var(--space-xl);
  flex-wrap: wrap; gap: var(--space-sm);
}
.results-bar .count { color: var(--slate); font-size: 0.95rem; }
.results-bar .count strong { color: var(--ink); font-weight: 600; }
.sort-select {
  padding: 0.6rem 1rem;
  border: 1px solid rgba(15,30,36,0.12);
  border-radius: var(--r-full);
  background: white;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  cursor: pointer;
}

/* ============================================
   Detail Page
   ============================================ */
.detail-hero {
  padding-top: 100px;
  position: relative;
}
.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 6px;
  height: 520px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: var(--space-md);
}
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); cursor: pointer; }
.detail-gallery img:hover { transform: scale(1.04); }
.detail-gallery .main { grid-row: 1 / 3; }
.detail-gallery .side { display: grid; grid-template-rows: 1fr 1fr; gap: 6px; }

.detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}
.detail-info h1 { margin-bottom: 0.5rem; }
.detail-meta {
  display: flex; gap: var(--space-md); flex-wrap: wrap;
  padding-bottom: var(--space-md);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(15,30,36,0.08);
  color: var(--slate); font-size: 0.95rem;
}
.detail-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }
.detail-section { margin-bottom: var(--space-lg); }
.detail-section h3 { margin-bottom: var(--space-sm); font-size: 1.5rem; }
.detail-section p { color: var(--charcoal); line-height: 1.8; font-size: 1.02rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.feature-item {
  padding: 0.9rem 1rem;
  background: var(--sand-50);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--charcoal);
}

.booking-sidebar {
  position: sticky; top: 100px; align-self: start;
  padding: var(--space-lg);
  background: var(--white);
  border: 1px solid rgba(15,30,36,0.08);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}
.booking-price {
  font-family: var(--font-serif);
  font-size: 2.5rem; font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.booking-price .unit { font-size: 1rem; color: var(--slate); font-family: var(--font-sans); font-weight: 400; }
.booking-sidebar .rating { color: var(--slate); margin-bottom: var(--space-md); font-size: 0.92rem; }
.booking-form label {
  display: block;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--slate); font-weight: 600;
  margin-bottom: 0.3rem; margin-top: var(--space-sm);
}
.booking-form input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(15,30,36,0.12);
  border-radius: var(--r-sm);
  font-family: inherit; font-size: 0.95rem;
}
.booking-form .book-btn {
  width: 100%;
  margin-top: var(--space-md);
  padding: 1rem;
  background: var(--ink); color: var(--white);
  border-radius: var(--r-full);
  font-weight: 600; font-size: 1rem;
  transition: all 0.3s var(--ease);
}
.booking-form .book-btn:hover { background: var(--ocean-500); }
.booking-contact {
  margin-top: var(--space-md); padding-top: var(--space-md);
  border-top: 1px solid rgba(15,30,36,0.08);
  font-size: 0.9rem; color: var(--slate);
}
.booking-contact div { margin-bottom: 0.4rem; }

/* ============================================
   Travel Guide
   ============================================ */
.guide-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.guide-sidebar {
  position: sticky; top: 100px;
  padding: var(--space-md) 0;
}
.guide-sidebar .eyebrow { margin-bottom: var(--space-sm); }
.guide-sidebar ul { list-style: none; }
.guide-sidebar li { margin-bottom: 0.6rem; }
.guide-sidebar a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--slate);
  border-left: 2px solid transparent;
  padding-left: var(--space-sm);
  transition: all 0.3s var(--ease);
}
.guide-sidebar a:hover, .guide-sidebar a.active { color: var(--ocean-500); border-color: var(--ocean-500); }
.guide-content h2 { margin-top: var(--space-xl); margin-bottom: var(--space-sm); }
.guide-content h2:first-child { margin-top: 0; }
.guide-content p { color: var(--charcoal); margin-bottom: var(--space-sm); line-height: 1.8; }
.guide-content img { border-radius: var(--r-md); margin: var(--space-md) 0; box-shadow: var(--shadow-md); }
.guide-content .callout {
  padding: var(--space-md);
  background: var(--grad-sand);
  border-left: 3px solid var(--ocean-500);
  border-radius: var(--r-sm);
  margin: var(--space-md) 0;
  font-size: 0.98rem;
  color: var(--charcoal);
}
.guide-content ul { padding-left: var(--space-md); color: var(--charcoal); line-height: 1.9; margin-bottom: var(--space-md); }

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: var(--space-2xl) 0 var(--space-md);
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-sunset);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.footer-brand .nav-logo { color: white; margin-bottom: var(--space-sm); }
.footer-brand p { max-width: 320px; line-height: 1.7; font-size: 0.95rem; }
.footer h4 { color: white; margin-bottom: var(--space-sm); font-family: var(--font-sans); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.92rem; color: rgba(255,255,255,0.6); transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--ocean-300); }
.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--ocean-500); color: white; transform: translateY(-3px); }

/* ============================================
   Animations
   ============================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-stats { flex-wrap: wrap; gap: var(--space-md); }
  .hero-stat .num { font-size: 2rem; }
  .search-bar { flex-direction: column; border-radius: var(--r-lg); padding: var(--space-sm); }
  .search-field { border-right: none; border-bottom: 1px solid rgba(15,30,36,0.08); padding: 0.7rem 0.5rem; width: 100%; }
  .search-btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
  .detail-gallery { grid-template-columns: 1fr; height: auto; }
  .detail-gallery .main { grid-row: auto; aspect-ratio: 4/3; }
  .detail-gallery .side { display: none; }
  .detail-content { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
  .experience-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .experience-card:first-child { grid-row: 1 / 2; grid-column: 1 / 3; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }
}
@media (max-width: 560px) {
  .experience-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 200px); }
  .experience-card:first-child { grid-column: 1; }
  .footer-grid { grid-template-columns: 1fr; }
}
