/* =============================================
   Sunscape Tour and Travels — COMPLETE STYLESHEET
   Matches original demo: cream/white bg, dark
   text, gold accents, editorial serif headings
   ============================================= */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Inter:wght@300;400;500;600&family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,300,0,0&display=swap');

/* --- VARIABLES --- */
:root {
  --bg:        #faf9f7;
  --bg2:       #f3f0eb;
  --bg3:       #ede9e2;
  --dark:      #111110;
  --dark2:     #1c1c1a;
  --dark3:     #2a2a27;
  --text:      #1c1c1a;
  --muted:     #6b6760;
  --gold:      #b8955a;
  --gold-dk:   #8f6f38;
  --gold-lt:   #d4aa70;
  --white:     #ffffff;
  --border:    rgba(28,28,26,0.1);
  --border-dk: rgba(28,28,26,0.18);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow:    0 8px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --nav-h:      68px;
  --r:          6px;
  --max:        1280px;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--text); font-family: var(--font-sans); font-size: 15px; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font-family: var(--font-sans); color: inherit; }
input, select, textarea { font-family: var(--font-sans); font-size: 14px; width: 100%; outline: none; }
.material-symbols-outlined { font-family: 'Material Symbols Outlined'; font-style: normal; font-size: 1.1em; line-height: 1; vertical-align: -2px; user-select: none; }

/* --- ANIMATIONS & KEYFRAMES --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleUp {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.reveal {
  opacity: 0;
  animation: fadeUp 0.8s ease both;
}

/* Utility animation classes */
.reveal.in-view { animation: fadeUp 0.8s ease both; }
.slide-left.in-view { animation: slideInLeft 0.8s ease both; }
.slide-right.in-view { animation: slideInRight 0.8s ease both; }
.scale-up.in-view { animation: scaleUp 0.8s ease both; }

/* --- FLOATING SOCIAL BUTTONS --- */
.floating-social {
  position: fixed;
  bottom: 28px;
  right: 18px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.float-btn svg {
  width: 22px;
  height: 22px;
}

.float-btn.whatsapp { background: #25D366; }
.float-btn.whatsapp:hover { transform: scale(1.08); box-shadow: 0 16px 30px rgba(37,211,102,0.35); }

.float-btn.facebook { background: #1877F2; }
.float-btn.facebook:hover { transform: scale(1.08); box-shadow: 0 16px 30px rgba(24,119,242,0.35); }

.float-btn.instagram { background: radial-gradient(circle at 30% 30%, #fdf497 0%, #fdf497 10%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-btn.instagram:hover { transform: scale(1.08); box-shadow: 0 16px 30px rgba(220,39,67,0.35); }

@media (max-width: 480px) {
  .floating-social { bottom: 18px; right: 14px; }
  .float-btn { width: 48px; height: 48px; }
}


/* --- UTILITIES --- */
/* Accessibility helper: visually hide text but keep it available to screen readers */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 5%; }
.section { padding: 80px 0; }
.eyebrow { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; display: block; margin-bottom: 10px; }
.section-title { font-family: var(--font-serif); font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 400; line-height: 1.15; color: var(--dark); background: linear-gradient(135deg, var(--dark) 0%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.5px; }
.section-sub { color: var(--muted); font-size: 0.93rem; margin-top: 10px; max-width: 480px; line-height: 1.7; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; gap: 20px; flex-wrap: wrap; }
.link-cta { display: inline-flex; align-items: center; gap: 5px; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 500; transition: gap .2s; }
.link-cta:hover { gap: 9px; }
.link-cta .material-symbols-outlined { font-size: 1rem; }

/* --- BUTTONS --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 7px; font-family: var(--font-sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--r); cursor: pointer; transition: all .3s cubic-bezier(0.23, 1, 0.320, 1); text-align: center; position: relative; overflow: hidden; }
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.2);
  transition: left 0.4s;
}
.btn:hover::before { left: 100%; }
.btn-primary { background: linear-gradient(135deg, var(--dark) 0%, var(--dark3) 100%); color: var(--white); padding: 13px 28px; border: 1px solid var(--dark); }
.btn-primary:hover { background: linear-gradient(135deg, var(--dark3) 0%, var(--dark) 100%); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%); color: var(--white); padding: 13px 28px; border: 1px solid var(--gold); }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-dk) 0%, var(--gold) 100%); border-color: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184, 149, 90, 0.3); }
.btn-outline { background: transparent; color: var(--dark); padding: 12px 26px; border: 1px solid var(--border-dk); }
.btn-outline:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-outline-gold { background: transparent; color: var(--gold); padding: 12px 26px; border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }
.btn-white { background: var(--white); color: var(--dark); padding: 13px 28px; border: 1px solid var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 0.72rem; }

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(2, 11, 45, 0.95) 0%, rgba(6, 21, 74, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(184, 149, 90, 0.2);
  transition: all .4s cubic-bezier(0.23, 1, 0.320, 1);
  padding: 0 5%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.navbar.scrolled { 
  background: linear-gradient(135deg, rgba(2, 11, 45, 0.98) 0%, rgba(6, 21, 74, 0.98) 100%);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  border-bottom-color: rgba(184, 149, 90, 0.3);
}
.nav-inner { max-width: var(--max); margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 0; }
/* LOGO */
.nav-logo{
  display:flex;
  align-items:center;
  margin-right:auto;
  flex-shrink:0;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: translateY(-2px);
}

.nav-logo img{
  height:100px;
  width:auto;
  display:block;
  object-fit:contain;
  filter: drop-shadow(0 2px 8px rgba(184, 149, 90, 0.3));
  transition: filter 0.3s ease;
}

.nav-logo:hover img {
  filter: drop-shadow(0 4px 12px rgba(184, 149, 90, 0.5));
}

/* Tablet */
@media (max-width: 768px){
  .nav-logo img{
    height:90px;
  }
}

/* Mobile */
@media (max-width: 480px){
  .nav-logo img{
    height:80px;
  }
}
.nav-links { display: flex; align-items: center; gap: 32px; margin: 0 32px; }
.nav-links a { 
  font-size: 0.8rem; 
  font-weight: 500; 
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75); 
  transition: all .3s cubic-bezier(0.23, 1, 0.320, 1);
  white-space: nowrap;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: #ffffff; }
.nav-book { flex-shrink: 0; }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; color:#ffffff; font-size: 1.4rem; }

/* Mobile nav drawer */
.nav-drawer { display: none; }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative; height: 85vh; min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: var(--nav-h);
}

/* Tablet */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    min-height: 550px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .hero {
    height: 60vh;
    min-height: 480px;
  }
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.55) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  padding: 0 20px; max-width: 820px;
  animation: fadeUp .9s ease both;
}
.hero-eyebrow { font-size: 0.7rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 14px; font-weight: 400; }
.hero-title { font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 6rem); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 32px; background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.95) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: fadeUp 1.2s ease-out both; }
.hero-title em { font-style: italic; opacity: 0.95; }

/* Search bar */
.search-wrap { 
  background: rgba(255,255,255,0.97);
  border-radius: 60px; 
  padding: 12px 12px 12px 28px;
  display: flex; 
  align-items: center; 
  gap: 8px; 
  box-shadow: 0 15px 50px rgba(0,0,0,0.2); 
  max-width: 800px; 
  margin: 0 auto; 
  animation: scaleUp 0.8s ease-out 0.4s both; 
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
  border: 2px solid rgba(184, 149, 90, 0.2);
}
.search-wrap:hover { 
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border-color: rgba(184, 149, 90, 0.4);
}
.s-field { 
  flex: 1; 
  text-align: left; 
  padding: 0 12px; 
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.s-field label { 
  display: block; 
  font-size: 0.65rem; 
  letter-spacing: .18em; 
  text-transform: uppercase; 
  color: var(--gold); 
  font-weight: 600; 
  margin-bottom: 4px;
  
}
.s-field input { 
  background: none; 
  border: none; 
  font-size: 0.9rem; 
  color: var(--dark); 
  padding: 0; 
  width: 100%;
  font-weight: 500;
}
.s-field input::placeholder { color: #bbb; }

.s-field select {
  background: black;
  color: #fff;
  border: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 10px 36px 10px 16px;
  border-radius: 50px;
  width: 100%;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  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 d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  outline: none;
  transition: all 0.3s ease;
}
.s-field select:hover,
.s-field select:focus {
  background: linear-gradient(135deg, var(--dark3) 0%, var(--dark) 100%);
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}
.s-field select option { background: #1c1c1a; color: #fff; }
.s-div { display: none; }
.search-wrap .btn { 
  border-radius: 50px; 
  padding: 12px 32px; 
  flex-shrink: 0; 
  gap: 8px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dk) 100%);
  font-weight: 600;
  letter-spacing: 0.1em;
}
.hero-scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.5); animation: bounce 2.2s infinite; font-size: 1.8rem; z-index: 2; }

/* =========================================
   DESTINATIONS GRID
   ========================================= */
.dest-section { background: var(--bg); }
.dest-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; grid-template-rows: 380px; gap: 10px; }
.dest-card { position: relative; overflow: hidden; border-radius: var(--r); display: block; transition: all 0.5s ease; }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.dest-card:hover img { transform: scale(1.12); }
.dest-card--lg { grid-row: span 1; }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.3) 50%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 18px 20px; transition: all 0.3s ease; }
.dest-overlay .tag { font-size: 0.58rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 4px; }
.dest-overlay h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 400; color: #fff; }

/* =========================================
   PACKAGES / TOURS GRID
   ========================================= */
.packages-section { background: var(--bg2); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* STATE FILTER BAR */
.state-tabs { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.state-tab { padding: 10px 22px; border-radius: 999px; border: 1px solid rgba(28,28,26,0.12); font-size: 0.8rem; font-weight: 600; color: var(--muted); background: rgba(255,255,255,0.95); cursor: pointer; transition: all .3s ease; white-space: nowrap; box-shadow: 0 12px 30px rgba(0,0,0,0.04); }
.state-tab:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.state-tab.active { background: linear-gradient(135deg, var(--dark), var(--dark3)); color: #fff; border-color: transparent; box-shadow: 0 15px 40px rgba(0,0,0,0.15); }

.pkg-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all .4s cubic-bezier(0.23, 1, 0.320, 1); display: flex; flex-direction: column; position: relative; }
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(184, 149, 90, 0.1), rgba(184, 149, 90, 0) 80%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.pkg-card:hover { transform: translateY(-12px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.pkg-card:hover::before { opacity: 1; }
.pkg-img { position: relative; height: 210px; overflow: hidden; flex-shrink: 0; }
.pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.pkg-card:hover .pkg-img img { transform: scale(1.06); }
.pkg-badge { position: absolute; top: 12px; left: 12px; font-size: 0.58rem; letter-spacing: .1em; font-weight: 600; padding: 4px 10px; border-radius: 3px; text-transform: uppercase; }
.pkg-badge.luxury  { background: #b8955a; color: #fff; }
.pkg-badge.adventure { background: #3a6b8a; color: #fff; }
.pkg-badge.family  { background: #5a7a5a; color: #fff; }
.pkg-badge.retreat { background: #7a5a7a; color: #fff; }
.pkg-state { position: absolute; top: 12px; right: 12px; background: rgba(0,0,0,.55); backdrop-filter: blur(4px); color: #fff; font-size: 0.62rem; padding: 4px 8px; border-radius: 3px; }
.pkg-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.pkg-meta { display: flex; align-items: center; gap: 14px; font-size: 0.78rem; color: var(--muted); margin-bottom: 8px; }
.pkg-meta span { display: flex; align-items: center; gap: 3px; }
.pkg-body h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; color: var(--dark); margin-bottom: 8px; line-height: 1.3; }
.pkg-body p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.pkg-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--border); margin-top: auto; }
.pkg-price { font-family: var(--font-serif); font-size: 1.25rem; color: var(--dark); }
.pkg-price span { font-size: 0.75rem; color: var(--muted); font-family: var(--font-sans); }
.pkg-pickup { font-size: 0.75rem; color: var(--muted); display: flex; align-items: center; gap: 3px; margin-top: 6px; }
.star-row { color: var(--gold); font-size: 0.82rem; margin-bottom: 6px; }

/* =========================================
   ITINERARY (Detail Page)
   ========================================= */
.itin-wrap { display: flex; flex-direction: column; }
.itin-day { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); position: relative; }
.itin-day:last-child { border-bottom: none; }
.itin-day-num { font-size: 0.62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 500; padding-top: 4px; }
.itin-content h4 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 6px; color: var(--dark); }
.itin-content p { font-size: 0.86rem; color: var(--muted); line-height: 1.7; }
.itin-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.itin-tag { font-size: 0.62rem; letter-spacing: .1em; text-transform: uppercase; padding: 3px 10px; border: 1px solid var(--border-dk); border-radius: 3px; color: var(--muted); }
.itin-collapsed { display: none; }
.btn-expand-itin { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); font-size: 0.75rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; margin-top: 16px; padding: 10px 0; transition: gap .2s; }
.btn-expand-itin:hover { gap: 10px; }

/* =========================================
   TOUR DETAIL LAYOUT
   ========================================= */
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; padding: 60px 5%; max-width: calc(var(--max) + 10%); margin: 0 auto; align-items: start; }
.detail-main > section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
.detail-main > section:last-child { border-bottom: none; }
.detail-section-title { font-family: var(--font-serif); font-size: 1.55rem; font-weight: 400; color: var(--dark); margin-bottom: 18px; }
.gallery-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; height: 180px; border-radius: var(--r); overflow: hidden; margin-top: 20px; }
.gallery-3 img { height: 100%; width: 100%; object-fit: cover; }
.pkg-stats-row { display: flex; gap: 24px; margin: 20px 0; flex-wrap: wrap; }
.pkg-stat { padding: 14px 20px; background: var(--bg2); border-radius: var(--r); text-align: center; min-width: 110px; }
.pkg-stat strong { display: block; font-family: var(--font-serif); font-size: 1.35rem; color: var(--gold); }
.pkg-stat small { font-size: 0.68rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }

/* Booking Sidebar */
.booking-sticky { position: sticky; top: calc(var(--nav-h) + 20px); }
.booking-card { background: var(--white); border: 1px solid var(--border-dk); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); }
.booking-card .price-lbl { font-size: 0.62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.booking-card .price-big { font-family: var(--font-serif); font-size: 2rem; color: var(--dark); margin: 4px 0 6px; }
.booking-card .price-big small { font-size: 0.82rem; color: var(--muted); font-family: var(--font-sans); }
.season-prices { display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.season-badge { padding: 5px 12px; border-radius: 4px; font-size: 0.72rem; font-weight: 500; }
.season-badge.peak { background: #fff3e0; color: #c17900; border: 1px solid #f5c842; }
.season-badge.off { background: #e8f5e9; color: #388e3c; border: 1px solid #81c784; }
.bk-field { margin-bottom: 14px; }
.bk-field label { display: flex; align-items: center; gap: 5px; font-size: 0.68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; font-weight: 500; }
.bk-field input, .bk-field select { background: var(--bg2); border: 1px solid var(--border); color: var(--dark); border-radius: var(--r); padding: 10px 14px; transition: border .2s; }
.bk-field input:focus, .bk-field select:focus { border-color: var(--gold); background: #fff; }
.counter-row { display: flex; align-items: center; gap: 14px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 9px 14px; }
.counter-row button { color: var(--gold); font-size: 1rem; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, color .2s; }
.counter-row button:hover { background: var(--gold); color: #fff; }
.counter-row span#trvCount { font-weight: 500; flex: 1; }
.bk-summary { border-top: 1px solid var(--border); margin: 16px 0; padding-top: 16px; }
.bk-row { display: flex; justify-content: space-between; font-size: 0.84rem; color: var(--muted); margin-bottom: 8px; }
.bk-row.total { color: var(--dark); font-weight: 600; font-size: 0.9rem; border-top: 1px solid var(--border); padding-top: 10px; margin-top: 10px; }
.bk-waived { color: #388e3c; font-size: 0.78rem; }
.bk-note { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 10px; line-height: 1.5; }
.bk-consult { border-top: 1px solid var(--border); padding-top: 16px; margin-top: 16px; }
.bk-consult p { font-size: 0.82rem; color: var(--muted); margin-bottom: 10px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 16px 0; font-size: 0.92rem; font-weight: 500; color: var(--dark); text-align: left; transition: color .2s; }
.faq-q:hover { color: var(--gold); }
.faq-q .material-symbols-outlined { transition: transform .3s; font-size: 1.2rem; flex-shrink: 0; }
.faq-q.open { color: var(--gold); }
.faq-q.open .material-symbols-outlined { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 0 16px; font-size: 0.86rem; color: var(--muted); line-height: 1.7; }

/* Reviews */
.review-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-meta .stars { color: var(--gold); font-size: 1rem; }
.review-meta span { font-size: 0.82rem; color: var(--muted); }
.review-card { display: flex; gap: 16px; background: var(--bg2); border-radius: var(--r); padding: 20px; }
.review-av { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.review-av img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: 0.9rem; margin-bottom: 2px; }
.review-loc { font-size: 0.75rem; color: var(--muted); margin-bottom: 8px; }
.review-text { font-size: 0.86rem; color: var(--muted); font-style: italic; line-height: 1.7; }

/* =========================================
   TOURS / DESTINATIONS LISTING PAGE
   ========================================= */
.tours-page { padding-bottom: 80px; }
.filters-bar { background: rgba(248,244,237,0.96); border: 1px solid rgba(28,28,26,0.08); padding: 14px 5%; position: sticky; top: var(--nav-h); z-index: 100; backdrop-filter: blur(12px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.filters-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.f-field { display: flex; flex-direction: column; gap: 6px; min-width: 180px; flex: 1 1 220px; }
.f-field label { font-size: 0.7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 6px; }
.f-field input, .f-field select { background: #fff; border: 1px solid rgba(28,28,26,0.15); color: var(--dark); border-radius: 16px; padding: 10px 14px; font-size: 0.88rem; transition: all .3s ease; }
.f-field input:hover, .f-field select:hover,
.f-field input:focus, .f-field select:focus { border-color: var(--gold); background: #fff; box-shadow: 0 10px 30px rgba(184,149,90,0.08); }
.f-check-group { display: flex; flex-wrap: wrap; gap: 8px; }
.f-check-group label { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; cursor: pointer; color: var(--muted); margin-bottom: 0; }
.f-check-group input[type="checkbox"] { width: auto; padding: 0; accent-color: var(--gold); }
.btn-clear-f { padding: 10px 20px; font-size: 0.76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); border: 1px solid rgba(28,28,26,0.15); border-radius: 999px; white-space: nowrap; align-self: flex-end; }
.btn-clear-f:hover { color: var(--dark); border-color: var(--dark); }
.listings-wrap { max-width: var(--max); margin: 0 auto; padding: 32px 5% 0; }
.listings-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.listings-top h2 { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 400; }
.listings-top p { font-size: 0.84rem; color: var(--muted); }
.view-sort { display: flex; align-items: center; gap: 8px; }
.view-btn { padding: 8px; color: var(--muted); border-radius: 4px; font-size: 1.2rem; transition: color .2s; }
.view-btn.active, .view-btn:hover { color: var(--gold); }
.sort-sel { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--muted); }
.sort-sel select { width: auto; padding: 7px 12px; background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); color: var(--dark); }
.tour-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tour-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all .4s cubic-bezier(0.23, 1, 0.320, 1); display: block; position: relative; }
.tour-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.tour-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
.tour-card:hover::after { left: 100%; }
.t-img { position: relative; height: 200px; overflow: hidden; }
.t-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tour-card:hover .t-img img { transform: scale(1.06); }
.t-badge { position: absolute; top: 10px; left: 10px; background: var(--gold); color: #fff; font-size: 0.58rem; letter-spacing: .1em; font-weight: 600; padding: 3px 8px; border-radius: 3px; text-transform: uppercase; }
.t-fav { position: absolute; top: 10px; right: 10px; color: rgba(255,255,255,.6); font-size: 1.3rem; cursor: pointer; }
.t-fav:hover { color: #e05c5c; }
.t-body { padding: 16px; }
.t-loc { display: flex; align-items: center; gap: 3px; font-size: 0.76rem; color: var(--muted); margin-bottom: 4px; }
.t-loc .material-symbols-outlined { font-size: 0.9rem; }
.t-rating { font-size: 0.76rem; color: var(--gold); margin-bottom: 8px; }
.t-body h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 6px; color: var(--dark); }
.t-body p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; margin-bottom: 14px; }
.t-footer { display: flex; justify-content: space-between; align-items: center; }
.t-price small { display: block; font-size: 0.6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.t-price strong { font-family: var(--font-serif); font-size: 1.2rem; color: var(--dark); }
.t-price em { font-size: 0.72rem; color: var(--muted); font-style: normal; }

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero { position: relative; height: 50vh; min-height: 360px; display: flex; align-items: flex-end; padding: 0 5% 48px; overflow: hidden; }
.page-hero > img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.72) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: var(--max); width: 100%; }
.page-hero-content .eyebrow { color: rgba(255,255,255,.7); }
.page-hero-content h1 { font-family: var(--font-serif); font-size: clamp(2rem, 5vw, 3.8rem); font-weight: 300; color: #fff; line-height: 1.1; text-shadow: 0 4px 12px rgba(0,0,0,0.3); }
.page-hero-content > p { color: rgba(255,255,255,.65); font-size: 0.85rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 8px; }
.page-hero-content .sub { font-size: 1rem; text-transform: none; letter-spacing: 0; max-width: 520px; }

/* Tablet */
@media (max-width: 768px) {
  .page-hero {
    height: 45vh;
    min-height: 340px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .page-hero {
    height: 55vh;
    min-height: 380px;
  }
}

/* =========================================
   ETHOS / VALUES
   ========================================= */
.ethos-section { background: var(--bg3); }
.ethos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ethos-items { margin-top: 28px; display: flex; flex-direction: column; gap: 22px; }
.ethos-item { display: flex; gap: 14px; align-items: flex-start; }
.ethos-icon { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.ethos-item h4 { font-weight: 600; font-size: 0.9rem; margin-bottom: 4px; }
.ethos-item p { font-size: 0.85rem; color: var(--muted); }
.ethos-imgs { position: relative; height: 480px; }
.ethos-img1 { position: absolute; top: 0; left: 0; width: 78%; height: 72%; object-fit: cover; border-radius: var(--r); }
.ethos-img2 { position: absolute; bottom: 0; right: 0; width: 52%; height: 48%; object-fit: cover; border-radius: var(--r); border: 5px solid var(--bg3); }

/* =========================================
   TRAVEL STORIES
   ========================================= */
.stories-section { background: var(--bg); }
.stories-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 12px; }
.story-card { position: relative; overflow: hidden; border-radius: var(--r); display: block; }
.story-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.story-card:hover img { transform: scale(1.04); }
.s-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; }
.s-tag { font-size: 0.62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 6px; display: block; }
.s-overlay h3 { font-family: var(--font-serif); color: #fff; font-size: 1.3rem; font-weight: 400; margin-bottom: 6px; }
.s-overlay p { font-size: 0.82rem; color: rgba(255,255,255,.68); }
.s-overlay h4 { font-family: var(--font-serif); color: #fff; font-size: 1rem; font-weight: 400; }
.story-side { display: flex; flex-direction: column; gap: 12px; }
.story-card--sm { height: 50%; }

/* =========================================
   NEWSLETTER
   ========================================= */
.newsletter { background: var(--dark2); padding: 72px 5%; text-align: center; }
.newsletter .eyebrow { color: var(--gold-lt); }
.newsletter h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); color: #fff; font-weight: 300; margin-bottom: 10px; }
.newsletter > p { color: rgba(255,255,255,.55); font-size: 0.9rem; margin-bottom: 28px; }
.nl-form { display: flex; max-width: 420px; margin: 0 auto 12px; border-radius: 60px; overflow: hidden; border: 1px solid rgba(255,255,255,.15); }
.nl-form input { background: rgba(255,255,255,.08); border: none; color: #fff; padding: 13px 20px; flex: 1; }
.nl-form input::placeholder { color: rgba(255,255,255,.35); }
.nl-form button { background: var(--gold); color: #fff; padding: 13px 22px; font-size: 0.78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; white-space: nowrap; border: none; cursor: pointer; transition: background .2s; }
.nl-form button:hover { background: var(--gold-dk); }
.nl-note { font-size: 0.62rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); }

/* =========================================
   ABOUT PAGE
   ========================================= */
.philosophy-section { background: var(--bg2); }
.philosophy-wrap { max-width: 960px; margin: 0 auto; }
.quote-block { border-left: 3px solid var(--gold); padding: 20px 28px; margin-bottom: 48px; background: var(--bg3); border-radius: 0 var(--r) var(--r) 0; }
blockquote { font-family: var(--font-serif); font-size: clamp(1rem, 2vw, 1.25rem); font-style: italic; color: var(--muted); line-height: 1.8; }
.pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
.pillar { display: flex; flex-direction: column; gap: 10px; }
.pillar-n { font-size: 0.6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.pillar h3 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 400; }
.pillar p { font-size: 0.86rem; color: var(--muted); }
.sustain-banner { position: relative; height: 380px; overflow: hidden; }
.sustain-banner img { width: 100%; height: 100%; object-fit: cover; }
.sustain-banner .overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); display: flex; align-items: center; justify-content: center; }
.sustain-inner { text-align: center; max-width: 540px; padding: 0 20px; }
.sustain-inner h2 { font-family: var(--font-serif); color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 300; margin-bottom: 12px; }
.sustain-inner p { color: rgba(255,255,255,.65); font-size: 0.9rem; margin-bottom: 24px; }
.team-section { background: var(--bg3); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.team-card { text-align: center; }
.team-av { width: 100%; aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin-bottom: 14px; border: 2px solid var(--border-dk); }
.team-av img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.team-card p { font-size: 0.8rem; color: var(--muted); }

/* =========================================
   CONTACT PAGE
   ========================================= */
.contact-hero-wrap { display: grid; grid-template-columns: 1fr 1fr; min-height: 55vh; margin-top: var(--nav-h); }
.contact-hero-text { padding: 5rem 5%; display: flex; flex-direction: column; justify-content: center; background: var(--bg2); }
.contact-hero-text h1 { font-family: var(--font-serif); font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 300; margin-bottom: 14px; }
.contact-hero-text p { color: var(--muted); max-width: 400px; }
.contact-guide-row { display: flex; align-items: center; gap: 0; margin-top: 24px; }
.contact-guide-row img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid var(--bg); margin-right: -8px; flex-shrink: 0; }
.contact-guide-row span { margin-left: 16px; font-size: 0.78rem; color: var(--muted); }
.contact-hero-img { overflow: hidden; }
.contact-hero-img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.contact-grid-section { padding: 64px 5%; }
.contact-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 340px; gap: 60px; }
.contact-form-wrap h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; margin-bottom: 28px; }
.c-form { display: flex; flex-direction: column; gap: 16px; }
.c-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.c-group { display: flex; flex-direction: column; gap: 6px; }
.c-group label { font-size: 0.68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.c-group input, .c-group select, .c-group textarea { background: var(--bg2); border: 1px solid var(--border); color: var(--dark); border-radius: var(--r); padding: 11px 14px; transition: border .2s, background .2s; }
.c-group input:focus, .c-group select:focus, .c-group textarea:focus { border-color: var(--gold); background: #fff; }
.c-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { display: block; width: 100%; padding: 15px; background: var(--dark); color: #fff; font-size: 0.8rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; border: none; border-radius: var(--r); cursor: pointer; transition: background .2s; }
.btn-submit:hover { background: var(--dark3); }
.form-success { text-align: center; padding: 40px; display: none; }
.form-success .material-symbols-outlined { font-size: 2.8rem; color: var(--gold); }
.form-success h3 { font-family: var(--font-serif); font-size: 1.4rem; margin: 12px 0 8px; }
.form-success p { color: var(--muted); font-size: 0.87rem; }
.contact-side { display: flex; flex-direction: column; gap: 18px; }
.c-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 20px; }
.c-card-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 10px; display: block; }
.c-card h3 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 400; margin-bottom: 6px; }
.c-card p { font-size: 0.83rem; color: var(--muted); margin-bottom: 12px; }
.btn-wa { display: inline-flex; align-items: center; gap: 8px; background: #25D366; color: #fff; padding: 10px 18px; border-radius: var(--r); font-size: 0.78rem; font-weight: 500; transition: opacity .2s; }
.btn-wa:hover { opacity: .85; }
.btn-wa svg { width: 18px; height: 18px; flex-shrink: 0; }
.direct-links { display: flex; flex-direction: column; gap: 8px; }
.d-link { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--muted); transition: color .2s; }
.d-link:hover { color: var(--gold); }
.d-link .material-symbols-outlined { font-size: 1.1rem; }
.basecamp-section { background: var(--bg3); }
.basecamp-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; max-width: 1000px; margin: 0 auto; }
.basecamp-text h2 { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 400; margin-bottom: 12px; }
.basecamp-text > p { color: var(--muted); margin-bottom: 20px; font-size: 0.9rem; }
.address-row { display: flex; gap: 10px; align-items: flex-start; font-size: 0.87rem; margin-bottom: 12px; }
.address-row .material-symbols-outlined { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.status-pill { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--muted); }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4caf50; animation: blink 1.8s infinite; }
.basecamp-map { position: relative; height: 300px; border-radius: var(--r); overflow: hidden; }
.basecamp-map img { width: 100%; height: 100%; object-fit: cover; }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: var(--gold); font-size: 2.2rem; filter: drop-shadow(0 2px 6px rgba(0,0,0,.4)); }
.faq-section { background: var(--bg); }
.faq-wrap { max-width: 720px; }

/* =========================================
   FOOTER
   ========================================= */
.footer { background: var(--dark2); color: rgba(255,255,255,.7); padding: 60px 5% 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.08); max-width: var(--max); margin: 0 auto; }
.footer-logo{
  display:inline-flex;
  align-items:center;
  margin-bottom:12px;
}

.footer-logo img{
  height:100px;
  width:auto;
  display:block;
  object-fit:contain;
}
@media(max-width:768px){

  .footer-logo img{
    height:65px;
  }

}
.footer-about { font-size: 0.84rem; line-height: 1.7; max-width: 280px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: rgba(255,255,255,.45); transition: color .2s; font-size: 1.2rem; }
.footer-social a:hover { color: var(--gold-lt); }
.footer-col h4 { font-size: 0.72rem; letter-spacing: .15em; text-transform: uppercase; color: #fff; margin-bottom: 16px; font-weight: 500; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-bottom { max-width: var(--max); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 18px 0; font-size: 0.76rem; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,.3); margin-left: 18px; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold-lt); }

/* =========================================
   WHATSAPP FLOAT
   ========================================= */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 18px rgba(37,211,102,.45); transition: transform .2s, box-shadow .2s; animation: wa-pulse 2.5s 3s infinite; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.65); animation: none; }
.wa-float svg { width: 30px; height: 30px; }

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-7px); } }
@keyframes wa-pulse { 0%,100% { box-shadow: 0 4px 18px rgba(37,211,102,.45); } 50% { box-shadow: 0 4px 24px rgba(37,211,102,.7), 0 0 0 7px rgba(37,211,102,.1); } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 260px; }
  .dest-card--lg { grid-column: span 2; }
  .pkg-grid { grid-template-columns: repeat(2,1fr); }
  .ethos-grid { grid-template-columns: 1fr; gap: 40px; }
  .ethos-imgs { height: 340px; }
  .stories-grid { height: auto; grid-template-columns: 1fr; }
  .story-card--lg-item { height: 340px; }
  .story-side { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .story-card--sm { height: 220px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .basecamp-grid { grid-template-columns: 1fr; }
  .detail-layout { grid-template-columns: 1fr; }
  .booking-sticky { position: static; }
  .tour-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }
   .hero{
    height:auto;
    min-height:72vh;
    padding-top:90px;
    padding-bottom:40px;
  }
  .nav-links { display: none; }
  .nav-book { display: none; }
  .hamburger { display: flex; }
  .nav-drawer {
    display: block; position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--white); z-index: 800; padding: 32px 5%;
    transform: translateX(100%); transition: transform .3s;
    overflow-y: auto;
  }
  .nav-drawer.open { transform: translateX(0); }
  .nav-drawer a { display: block; font-size: 1.1rem; font-weight: 400; padding: 14px 0; border-bottom: 1px solid var(--border); color: var(--dark); }
  .nav-drawer .btn { display: inline-flex; margin-top: 20px; color: white; padding: 5px;}

  .search-wrap { flex-direction: column; border-radius: 14px; padding: 16px; gap: 10px; }
  .s-div { display: none; }
  .search-wrap .btn { width: 100%; justify-content: center; border-radius: 10px; }
  .s-field { padding: 4px 0; }

  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .dest-card--lg { grid-column: span 2; }
  .dest-card { height: 200px; }

  .pkg-grid { grid-template-columns: 1fr; }
  .story-side { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; height: auto; }
  .tour-grid { grid-template-columns: 1fr; }
  .c-row { grid-template-columns: 1fr; }
  .contact-hero-wrap { grid-template-columns: 1fr; }
  .contact-hero-img { display: none; }
  .pillars { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-3 { grid-template-columns: 1fr 1fr; }
  .gallery-3 img:last-child { display: none; }
  .filters-bar { padding: 10px 5%; }
  .filters-inner { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .f-field { min-width: auto; flex: 0 1 calc(50% - 3px); gap: 2px; }
  .f-field label { font-size: 0.55rem; margin-bottom: 0; }
  .f-field input, .f-field select { padding: 5px 8px; font-size: 0.7rem; }
  .f-check-group { gap: 3px; }
  .f-check-group label { font-size: 0.65rem; gap: 2px; margin-bottom: 0; }
  .f-check-group input[type="checkbox"] { width: 14px; height: 14px; }
  .btn-clear-f { flex: 0 1 auto; padding: 5px 10px; font-size: 0.6rem; }
  .section { padding: 60px 0; }
  .itin-day { grid-template-columns: 70px 1fr; }
}

@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .dest-card--lg, .dest-card { grid-column: span 1 !important; height: 200px; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .pkg-stats-row { gap: 12px; }
  .season-prices { gap: 8px; }
  .filters-bar { padding: 8px 5%; }
  .filters-inner { gap: 4px; }
  .f-field { flex: 0 1 calc(50% - 2px); gap: 1px; }
  .f-field label { font-size: 0.5rem; }
  .f-field input, .f-field select { padding: 4px 6px; font-size: 0.65rem; }
  .f-check-group { gap: 2px; }
  .f-check-group label { font-size: 0.6rem; gap: 2px; }
  .f-check-group input[type="checkbox"] { width: 12px; height: 12px; }
  .btn-clear-f { flex: 0 1 calc(50% - 2px); padding: 4px 8px; font-size: 0.55rem; }
  .pkg-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
}

/* ================================================
   BLOG SHARED STYLES — blog/blog-shared.css
   ================================================ */

.article-wrap { max-width: 820px; margin: 0 auto; padding: 0 5% 80px; }
.article-hero { position: relative; height: 55vh; min-height: 380px; overflow: hidden; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.72) 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 40px 5%; }
.article-hero-overlay h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 300; color: #fff; max-width: 720px; line-height: 1.1; margin-bottom: 12px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: .78rem; color: rgba(255,255,255,.72); }
.article-meta span { display: flex; align-items: center; gap: 4px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .74rem; color: #6b6760; padding: calc(68px + 20px) 5% 0; max-width: 820px; margin: 0 auto; }
.breadcrumb a { color: #b8955a; }
.breadcrumb .material-symbols-outlined { font-size: .85rem; }
.article-body { padding-top: 44px; }
.article-body > p { font-size: .97rem; color: #2e2e2c; line-height: 1.9; margin-bottom: 18px; }
.article-body h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.8rem; font-weight: 400; color: #111110; margin: 44px 0 14px; border-left: 3px solid #b8955a; padding-left: 16px; }
.article-body h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.28rem; font-weight: 400; color: #111110; margin: 30px 0 10px; }
.article-body ul { margin: 10px 0 20px; display: flex; flex-direction: column; gap: 9px; }
.article-body ul li { font-size: .93rem; color: #2e2e2c; padding-left: 20px; position: relative; line-height: 1.75; }
.article-body ul li::before { content: '→'; position: absolute; left: 0; color: #b8955a; }
.photo-grid { display: grid; gap: 10px; margin: 28px 0; border-radius: 8px; overflow: hidden; }
.photo-grid.cols-3 { grid-template-columns: repeat(3, 1fr); height: 220px; }
.photo-grid.cols-2 { grid-template-columns: repeat(2, 1fr); height: 260px; }
.photo-grid.cols-featured { grid-template-columns: 1.6fr 1fr; grid-template-rows: 1fr 1fr; height: 340px; }
.photo-grid.cols-featured .photo-main { grid-row: span 2; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; cursor: zoom-in; }
.photo-grid img:hover { transform: scale(1.04); }
.photo-caption { font-size: .75rem; color: #6b6760; text-align: center; margin-top: -4px; margin-bottom: 20px; font-style: italic; }
.info-box { background: #f3f0eb; border-left: 3px solid #b8955a; border-radius: 0 8px 8px 0; padding: 18px 22px; margin: 28px 0; }
.info-box h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #b8955a; margin-bottom: 10px; font-weight: 600; }
.info-box p, .info-box li { font-size: .87rem; color: #6b6760; line-height: 1.75; }
.info-box ul { margin: 0; }
.info-box li { padding-left: 16px; }
.info-box li::before { content: '•'; color: #b8955a; }
.cta-box { background: #1c1c1a; border-radius: 8px; padding: 30px; text-align: center; margin: 40px 0; }
.cta-box h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; color: #fff; margin-bottom: 8px; font-weight: 300; }
.cta-box p { font-size: .86rem; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.article-nav { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 1px solid rgba(28,28,26,.1); margin-top: 50px; flex-wrap: wrap; gap: 14px; }
.article-nav a { display: flex; align-items: center; gap: 6px; font-size: .76rem; color: #b8955a; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; transition: gap .2s; }
.article-nav a:hover { gap: 10px; }
.blog-listing-hero{
  min-height: 65vh;

  padding: calc(68px + 44px) 5% 44px;

  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;

  text-align:center;

  color:#fff;

  background:
  linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
  url("images/cover 4.webp")
  center/cover no-repeat;
}
.blog-listing-hero h1 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 300; color: white; margin-bottom: 10px; }
.blog-listing-hero p { color: white; max-width: 460px; margin: 0 auto; font-size: .92rem; }

@media (max-width: 768px) {
  .blog-listing-hero {
    min-height: 55vh;
    padding: calc(68px + 32px) 5% 32px;
  }
}

@media (max-width: 480px) {
  .blog-listing-hero {
    min-height: 50vh;
    padding: calc(68px + 24px) 5% 24px;
  }
}
.state-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 56px 5%; max-width: 1280px; margin: 0 auto; }
.state-card { position: relative; height: 290px; border-radius: 8px; overflow: hidden; display: block; }
.state-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.state-card:hover img { transform: scale(1.05); }
.state-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.78) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; }
.state-overlay .eyebrow { color: #d4aa70; margin-bottom: 4px; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; display: block; }
.state-overlay h2 { font-family: 'Cormorant Garamond', Georgia, serif; color: #fff; font-size: 1.5rem; font-weight: 400; margin-bottom: 5px; }
.state-overlay p { font-size: .8rem; color: rgba(255,255,255,.68); }
.state-arrow { position: absolute; top: 14px; right: 14px; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); border-radius: 50%; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: #fff; transition: background .2s; }
.state-card:hover .state-arrow { background: #b8955a; }
.blog-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 0 5% 60px; max-width: 1280px; margin: 0 auto; }
.blog-card-item { background: #fff; border: 1px solid rgba(28,28,26,.1); border-radius: 8px; overflow: hidden; display: block; transition: transform .3s, box-shadow .3s; }
.blog-card-item:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.blog-card-item .card-img { height: 195px; overflow: hidden; }
.blog-card-item .card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card-item:hover .card-img img { transform: scale(1.06); }
.blog-card-item .card-body { padding: 18px; }
.blog-card-item .card-body .eyebrow { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: #b8955a; display: block; margin-bottom: 6px; }
.blog-card-item .card-body h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.15rem; font-weight: 400; color: #111110; margin-bottom: 8px; line-height: 1.3; }
.blog-card-item .card-body p { font-size: .83rem; color: #6b6760; line-height: 1.65; margin-bottom: 14px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; font-size: .75rem; color: #6b6760; }
.card-footer .read-link { color: #b8955a; font-weight: 500; display: flex; align-items: center; gap: 3px; }
.back-btn { display: inline-flex; align-items: center; gap: 6px; color: #b8955a; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; background: none; border: none; cursor: pointer; padding: 32px 5% 0; transition: gap .2s; }
.back-btn:hover { gap: 10px; }
.state-blog-title { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2rem; font-weight: 400; color: #111110; padding: 16px 5% 24px; max-width: 1280px; margin: 0 auto; display: block; }
@media (max-width: 900px) { .state-grid { grid-template-columns: 1fr 1fr; } .blog-cards-grid { grid-template-columns: 1fr 1fr; } .photo-grid.cols-3 { height: auto;} }
@media (max-width: 580px) { .state-grid { grid-template-columns: 1fr; } .blog-cards-grid { grid-template-columns: 1fr; } .photo-grid.cols-featured { grid-template-columns: 1fr; height: auto; } .photo-grid.cols-featured .photo-main { grid-row: span 1; } }
.himachal-hero{
  min-height: 65vh;

  background:
  linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
  url("images/cover pic 3.webp")
  center/cover no-repeat;

  color:#fff;
}

@media (max-width: 768px) {
  .himachal-hero {
    min-height: 55vh;
  }
}

@media (max-width: 480px) {
  .himachal-hero {
    min-height: 50vh;
  }
}
.photo-grid.cols-3 img{
  object-fit: contain;
 
}

.packages-section,
.ethos-section,
.stories-section,
.newsletter,
.footer{
  content-visibility:auto;
  contain-intrinsic-size:1000px;
}


.footer-logo{
  display:flex;
  align-items:center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color:#fff;
}

.footer-logo img{
  height:35px;
  width:auto;
  object-fit:contain;
}

