@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Josefin+Sans:wght@300;400;500&family=Pinyon+Script&display=swap');

/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --cream: #FAF7F2;
  --warm-white: #FFFFFF;
  --stone: #8A7B6E;
  --olive: #3D3630;
  --charcoal: #1E1B18;
  --gold-muted: #8A6F4E;
  --blush: #EDE4DB;
  --transition-overlay-color: #FAF7F2;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02) sepia(0.05);
  display: block;
  max-width: 100%;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--charcoal);
  line-height: 1.15;
}

p { color: var(--olive); }

a { text-decoration: none; }

/* =============================================
   TRANSITION OVERLAY
============================================= */
.transition-overlay {
  position: fixed;
  inset: 0;
  background: var(--transition-overlay-color);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
}

/* =============================================
   NAVIGATION
============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.6rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(30,27,24,0.07);
  padding: 1rem 3rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-muted);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-muted); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--charcoal);
  transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu ul li { margin: 1.5rem 0; overflow: hidden; }
.mobile-menu ul a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--charcoal);
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.mobile-menu ul a:hover { color: var(--gold-muted); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--charcoal);
}

/* =============================================
   BUTTONS
============================================= */
.btn-outline {
  display: inline-block;
  border: 1px solid var(--gold-muted);
  color: var(--gold-muted);
  border-radius: 999px;
  padding: 0.85rem 2.2rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}
.btn-outline:hover { background: var(--gold-muted); color: white; }

.btn-filled {
  display: inline-block;
  background: var(--gold-muted);
  color: white;
  border: 1px solid var(--gold-muted);
  border-radius: 999px;
  padding: 1rem 3rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-filled:hover { background: var(--charcoal); border-color: var(--charcoal); }

/* =============================================
   TYPOGRAPHY HELPERS
============================================= */
.caption {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
}

.thin-line {
  width: 3rem; height: 1px;
  background: var(--stone);
  margin: 1.5rem auto;
}

.script-font { font-family: 'Pinyon Script', cursive; }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--cream);
  border-top: 1px solid rgba(138,123,110,0.25);
  padding: 4rem 3rem 2rem;
  text-align: center;
}
footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  display: block;
  margin-bottom: 2rem;
}
footer .footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
footer .footer-nav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  transition: color 0.3s ease;
}
footer .footer-nav a:hover { color: var(--gold-muted); }

.social-icons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.social-icons a {
  color: var(--stone);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}
.social-icons a:hover { color: var(--gold-muted); }

.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  z-index: 1000;
}
.floating-contact a {
  color: var(--cream);
  background: var(--warm-white);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(138,111,78,0.35);
}
.floating-contact a:hover { 
  background: var(--charcoal);
  box-shadow: 0 6px 20px rgba(30,27,24,0.4);
  transform: translateY(-3px);
}

.contact-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.contact-icons a {
  color: var(--stone);
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-icons a:hover { color: var(--gold-muted); }

.copyright {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--stone);
  letter-spacing: 0.1em;
}

/* =============================================
   SCROLL ANIMATIONS
============================================= */
.reveal-section {
  opacity: 0;
  transform: translateY(60px);
}

/* =============================================
   HERO
============================================= */
.hero-full {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.hero-full img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 55%);
}
.hero-content {
  position: absolute;
  bottom: 15%; left: 0; right: 0;
  text-align: center;
  color: white;
  padding: 0 2rem;
}
.hero-banner {
  height: 50vh;
  overflow: hidden;
  position: relative;
}
.hero-banner img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   SCROLL INDICATOR
============================================= */
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
}
.scroll-line {
  width: 1px; height: 60px;
  background: rgba(255,255,255,0.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.85);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* =============================================
   SECTION SPACING
============================================= */
.section-pad { padding: 6rem 1.5rem; }
.section-pad-lg { padding: 8rem 1.5rem; }

@media (min-width: 768px) {
  .section-pad { padding: 8rem 3rem; }
  .section-pad-lg { padding: 10rem 3rem; }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container { padding: 0 3rem; }
}

/* =============================================
   ALTERNATING ROWS
============================================= */
.alt-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .alt-row { grid-template-columns: 1fr 1fr; padding: 5rem 3rem; gap: 5rem; }
  .alt-row.reverse { direction: rtl; }
  .alt-row.reverse > * { direction: ltr; }
}

/* =============================================
   GALLERY
============================================= */
.gallery-grid {
  columns: 2;
  column-gap: 1rem;
}
@media (min-width: 768px) { .gallery-grid { columns: 3; column-gap: 1.2rem; } }
@media (min-width: 1024px) { .gallery-grid { columns: 4; column-gap: 1.5rem; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 2px;
  cursor: zoom-in;
  position: relative;
}
.gallery-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { background: rgba(0,0,0,0.08); }

/* =============================================
   PACKAGE CARDS
============================================= */
.package-card {
  background: white;
  border-radius: 2px;
  overflow: hidden;
}
.package-card-body { padding: 2rem; }
.package-card-body ul { list-style: none; margin: 1rem 0; }
.package-card-body ul li {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--olive);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(138,123,110,0.15);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.package-card-body ul li::before {
  content: '—';
  color: var(--gold-muted);
  flex-shrink: 0;
}

/* =============================================
   FILTER PILLS
============================================= */
.filter-pills {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-pill {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--olive);
  cursor: pointer;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  background: none;
  border-top: none; border-left: none; border-right: none;
}
.filter-pill:hover,
.filter-pill.active {
  color: var(--charcoal);
  border-bottom-color: var(--gold-muted);
}

/* =============================================
   QUOTE / CTA BANDS
============================================= */
.quote-mark {
  font-family: 'Pinyon Script', cursive;
  font-size: 5rem;
  color: rgba(138,123,110,0.35);
  line-height: 0.5;
  display: block;
  margin-bottom: 1rem;
}
.cta-band {
  background: var(--blush);
  padding: 5rem 1.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--charcoal); }

/* =============================================
   CONTACT FORM
============================================= */
.form-group {
  border-bottom: 1px solid rgba(138,123,110,0.35);
  padding-bottom: 0.75rem;
  transition: border-color 0.3s ease;
}
.form-group:focus-within { border-color: var(--gold-muted); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none; outline: none;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--charcoal);
  padding: 0.5rem 0;
  letter-spacing: 0.05em;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--stone);
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.form-group select {
  cursor: pointer;
  color: var(--stone);
  font-size: 0.78rem;
  text-transform: uppercase;
  -webkit-appearance: none;
}
.form-group select option { color: var(--charcoal); }

/* =============================================
   STATS
============================================= */
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
}

/* =============================================
   GEAR / FACT CARDS
============================================= */
.gear-item { text-align: center; flex: 1; min-width: 80px; }
.gear-item img {
  width: 70px; height: 70px;
  object-fit: contain;
  border-radius: 4px;
  filter: none;
  margin: 0 auto;
}
.fact-card { text-align: center; padding: 2.5rem 1.5rem; background: var(--warm-white); border-radius: 2px; }

/* =============================================
   INSTAGRAM STRIP
============================================= */
.insta-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  min-height: 280px;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.05); }
.insta-item .overlay {
  position: absolute; inset: 0;
  background: rgba(30,27,24,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s ease;
}
.insta-item:hover .overlay { opacity: 1; }

/* Desktop: equal width for all gallery items */
@media (min-width: 768px) {
  .insta-item { flex: 1; }
}

/* =============================================
   CONTACT INFO
============================================= */
.contact-info-item { text-align: center; padding: 2rem; }
.contact-info-item .icon {
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--stone);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold-muted);
}

/* =============================================
   MAP / LANDSCAPE
============================================= */
.map-section {
  height: 40vh;
  position: relative;
  overflow: hidden;
}
.map-section img { width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   LEAF DIVIDER
============================================= */
.leaf-divider {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0;
  opacity: 0.5;
}

/* =============================================
   SWIPER
============================================= */
.swiper-slide { width: auto !important; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 767px) {
  nav { padding: 1.25rem 1.5rem; }
  nav.scrolled { padding: 0.875rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  footer .footer-nav { gap: 1rem; }
  
  .floating-contact {
    bottom: 1rem;
    right: 1rem;
    gap: 0.75rem;
  }
  .floating-contact a {
    width: 2.4rem;
    height: 2.4rem;
  }
  
  .instagram-strip {
    padding: 2rem 1rem !important;
  }
  .instagram-strip .insta-gallery {
    gap: 0.75rem !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
  }
  .instagram-strip .insta-item {
    flex: 1 1 calc(50% - 0.375rem) !important;
    height: 200px !important;
  }
  
  .facts-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}
