/* ==========================================================================
   HIMALAYAN — Stylesheet
   Design tokens, layout, components, responsive rules.
   ========================================================================== */

:root {
  /* Color palette */
  --navy: #071A2B;
  --slate: #102A43;
  --white: #F8FAFC;
  --glacier: #4DA3C7;
  --sky: #8ED1FC;
  --forest: #1F5D50;
  --gold: #D6A84F;
  --gray-light: #E8EEF2;

  --text-dark: #10202E;
  --text-muted: #4B5D6B;
  --text-on-dark: #F8FAFC;
  --text-on-dark-muted: #C6D3DC;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container-w: 1240px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 20px 50px -20px rgba(7, 26, 43, 0.35);
  --shadow-card: 0 12px 30px -12px rgba(7, 26, 43, 0.25);
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============ RESET ============ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--text-dark); line-height: 1.15; }
section { position: relative; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 110px 0; background: var(--navy); }
.section-light { background: var(--white); }
.about { background: var(--gray-light); }
.why { background: var(--slate); }
.why h3, .why p { color: var(--text-on-dark); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow-dark { color: var(--forest); }

.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 14px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), #c4923b);
  color: var(--navy);
  box-shadow: 0 12px 30px -10px rgba(214, 168, 79, 0.55);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -10px rgba(214, 168, 79, 0.65); }
.btn-outline {
  border: 1.5px solid rgba(248, 250, 252, 0.55);
  color: var(--white);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--slate); transform: translateY(-3px); }

/* ============ HEADER ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.scrolled {
  height: 74px;
  background: rgba(7, 26, 43, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -14px rgba(0,0,0,0.45);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark { width: 30px; height: 26px; }
.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.main-nav ul { display: flex; gap: 40px; }
.nav-link {
  position: relative;
  color: var(--text-on-dark-muted);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-link:hover, .nav-link.active-link { color: var(--white); }
.nav-link:hover::after, .nav-link.active-link::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 22px; }
.header-cta { padding: 12px 26px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -40px 0 0 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  will-change: transform;
}
.hero-bg.img-fallback {
  background-image: linear-gradient(160deg, #0c2439, #143a52 45%, #1f5d50 100%) !important;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,26,43,0.55) 0%, rgba(7,26,43,0.35) 40%, rgba(7,26,43,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 760px;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-on-dark-muted);
  max-width: 560px;
  margin-bottom: 38px;
}
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--text-on-dark-muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ============ SCROLL REVEAL ============ */
/* IMPORTANT: content is visible by default (opacity:1, no transform).
   The hidden/animated state below ONLY activates once JavaScript has
   confirmed it's running (html.has-js, set synchronously in <head>).
   This means:
   - JS disabled/blocked  -> every section shows immediately, no animation.
   - JS enabled           -> sections fade/slide in as they enter view.
   - JS throws an error   -> harmless, because html.has-js already got
                              added before any other script ran, and each
                              feature in script.js is isolated in its own
                              try/catch, so the reveal observer still runs
                              even if another feature fails. */
[data-reveal] {
  opacity: 1;
  transform: none;
}
html.has-js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
html.has-js [data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ INTRO ============ */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.intro-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.intro-image.img-fallback { background: linear-gradient(160deg, var(--forest), var(--slate)); border-radius: var(--radius-lg); aspect-ratio: 4/5; }
.intro-image.img-fallback img { display: none; }
.intro-copy h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 20px; }
.intro-copy p { color: var(--text-muted); margin-bottom: 34px; max-width: 520px; }

.stat-row { display: flex; gap: 44px; margin-bottom: 38px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-family: var(--font-display); font-size: 2rem; color: var(--forest); font-weight: 600; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); letter-spacing: 0.03em; margin-top: 4px; }

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 90px;
}
.about-copy h2 { font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 20px; }
.about-copy p { color: var(--text-muted); margin-bottom: 18px; max-width: 540px; }
.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}
.about-image.img-fallback { background: linear-gradient(160deg, var(--glacier), var(--navy)); border-radius: var(--radius-lg); aspect-ratio: 3/4; }
.about-image.img-fallback img { display: none; }

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 24px 46px -18px rgba(7,26,43,0.3); }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), #16473d);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
}
.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ============ PLACES ============ */
.places h2, .places .section-sub, .visit h2, .visit .section-sub,
.gallery h2, .testimonials h2, .contact h2, .mountain-map h2 { color: var(--text-dark); }
.places .eyebrow-dark, .visit .eyebrow-dark, .gallery .eyebrow-dark,
.testimonials .eyebrow-dark, .contact .eyebrow-dark, .mountain-map .eyebrow-dark { color: var(--gold); }
.places { background: var(--navy); }
.places .section-head h2, .places .section-sub { color: var(--white); }
.places .section-sub { color: var(--text-on-dark-muted); }

.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 24px;
}
.place-card-lg { grid-column: span 2; grid-row: span 2; }
.place-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: block;
}
.place-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.place-card:hover img { transform: scale(1.08); }
.place-card.img-fallback { background: linear-gradient(160deg, var(--glacier), var(--slate)); }
.place-card.img-fallback img { display: none; }
.place-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,26,43,0) 35%, rgba(7,26,43,0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
}
.place-loc { font-family: var(--font-display); font-size: 1.35rem; margin-bottom: 6px; }
.place-overlay p { font-size: 0.9rem; color: var(--text-on-dark-muted); margin-bottom: 12px; max-width: 90%; }
.place-link {
  font-size: 0.85rem; font-weight: 600; color: var(--gold);
  display: inline-flex; align-items: center; gap: 8px;
  transform: translateY(6px); opacity: 0.85;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.place-card:hover .place-link { transform: translateY(0); opacity: 1; }

/* ============ FEATURED ADVENTURE ============ */
.featured-adventure {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.featured-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: var(--slate);
}
.featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,26,43,0.75), rgba(7,26,43,0.9));
}
.featured-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  color: var(--white);
  padding: 100px 32px;
}
.featured-content h2 { color: var(--white); font-size: clamp(2.2rem, 4vw, 3.2rem); margin-bottom: 20px; }
.featured-content p { color: var(--text-on-dark-muted); font-size: 1.05rem; margin-bottom: 36px; }
.elevation-line { width: 220px; height: 26px; margin: 0 auto 26px; display: block; }

@media (max-width: 768px) {
  .featured-bg { background-attachment: scroll; }
}

/* ============ MOUNTAIN MAP ============ */
.map-wrap {
  position: relative;
  background: linear-gradient(160deg, #eef4f7, var(--gray-light));
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.map-svg { width: 100%; height: auto; display: block; }
.marker-dot { fill: var(--gold); stroke: var(--navy); stroke-width: 2; cursor: pointer; }
.marker-pulse {
  fill: var(--gold);
  opacity: 0.28;
  animation: mapPulse 2.4s infinite;
  transform-origin: center;
}
@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 0.35; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(0.6); opacity: 0; }
}
.map-marker { cursor: pointer; }
.map-tooltip {
  position: absolute;
  min-width: 200px;
  max-width: 240px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
  font-size: 0.88rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  z-index: 5;
}
.map-tooltip.visible { opacity: 1; transform: translateY(0); }
.map-tooltip strong { color: var(--gold); display: block; margin-bottom: 4px; font-family: var(--font-display); font-size: 1rem; }
.map-caption { text-align: center; margin-top: 40px; font-size: clamp(1.4rem, 2.6vw, 2rem); }

/* ============ WHY ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.why-col { text-align: center; padding: 10px; }
.why-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(214, 168, 79, 0.12);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 20px;
}
.why-col h3 { font-size: 1.1rem; margin-bottom: 10px; }
.why-col p { font-size: 0.92rem; color: var(--text-on-dark-muted); }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 18px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
  width: 100%; height: 100%;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.img-fallback { background: linear-gradient(160deg, var(--glacier), var(--forest)); }
.gallery-item.img-fallback img { display: none; }
.gi-1 { grid-column: span 2; grid-row: span 2; }
.gi-4 { grid-row: span 2; }
.gi-6 { grid-column: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(7, 26, 43, 0.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 40px 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 88vw; max-height: 74vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-soft); }
.lightbox-caption { color: var(--text-on-dark-muted); margin-top: 18px; font-size: 0.95rem; text-align: center; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--white);
  font-size: 1.4rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  transition: background 0.3s var(--ease);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.2); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ============ VISIT ============ */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 56px;
}
.visit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  padding: 36px 26px;
  text-align: center;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.visit-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.08); }
.visit-icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(214,168,79,0.15);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin: 0 auto 18px;
}
.visit-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 8px; }
.visit-card p { color: var(--text-on-dark-muted); font-size: 0.92rem; }
.visit-cta { text-align: center; }

/* ============ TESTIMONIALS ============ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 34px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.quote-icon { color: var(--gold); font-size: 1.4rem; opacity: 0.5; margin-bottom: 18px; }
.testimonial-card p { color: var(--text-dark); font-size: 1rem; margin-bottom: 24px; font-style: italic; }
.testimonial-author { font-family: var(--font-display); font-weight: 600; color: var(--forest); }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.contact-copy h2 { color: var(--white); font-size: clamp(2rem, 3.4vw, 2.7rem); margin-bottom: 18px; }
.contact-copy p { color: var(--text-on-dark-muted); margin-bottom: 34px; max-width: 440px; }
.contact-info li {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-on-dark-muted);
  margin-bottom: 16px;
  font-size: 0.98rem;
}
.contact-info i { color: var(--gold); width: 20px; }
.contact-info a:hover { color: var(--white); }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  padding: 42px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; position: relative; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(7,26,43,0.4);
  color: var(--white);
  transition: border 0.3s var(--ease), background 0.3s var(--ease);
}
.form-group select option { color: var(--text-dark); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
  background: rgba(7,26,43,0.6);
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.error-msg {
  display: none;
  color: #e78a8a;
  font-size: 0.78rem;
  margin-top: 6px;
}
.form-group.invalid input, .form-group.invalid textarea { border-color: #e78a8a; }
.form-group.invalid .error-msg { display: block; }

.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(31, 93, 80, 0.25);
  border: 1px solid rgba(31, 93, 80, 0.6);
  color: #bfe3d8;
  font-size: 0.92rem;
}
.form-success.visible { display: flex; }
.form-success i { color: #6fcf97; font-size: 1.2rem; }

/* ============ FOOTER ============ */
.site-footer { background: var(--slate); color: var(--text-on-dark-muted); padding-top: 90px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { margin: 14px 0 22px; font-size: 0.92rem; }
.social-icons { display: flex; gap: 14px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.social-icons a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }
.footer-links h4, .footer-newsletter h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.9rem; transition: color 0.3s var(--ease); }
.footer-links a:hover { color: var(--gold); }
.footer-newsletter p { font-size: 0.88rem; margin-bottom: 18px; }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.05);
  color: var(--white);
}
.newsletter-form button {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.newsletter-form button:hover { transform: scale(1.06); }
.newsletter-success {
  display: none;
  margin-top: 12px;
  font-size: 0.82rem;
  color: #9fd8c4;
}
.newsletter-success.visible { display: block; }

.footer-bottom { padding: 26px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}
.footer-legal a:hover { color: var(--gold); }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  box-shadow: var(--shadow-soft);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1180px) {
  .container { padding: 0 24px; }
  .places-grid { grid-auto-rows: 280px; }
}

@media (max-width: 1024px) {
  .intro-grid, .about-grid, .contact-grid { gap: 44px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .visit-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .main-nav { 
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(7, 26, 43, 0.97);
    backdrop-filter: blur(14px);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s var(--ease);
  }
  .main-nav.open { max-height: 420px; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 10px 32px 26px; }
  .main-nav li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-link { display: block; padding: 16px 0; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  .intro-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .intro-image, .about-image { order: -1; }
  .intro-copy p, .about-copy p { max-width: none; }

  .feature-cards, .testimonial-grid { grid-template-columns: 1fr; }
  .places-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 260px; }
  .place-card-lg { grid-column: span 2; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gi-1 { grid-column: span 2; }
  .gi-6 { grid-column: span 1; }

  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .stat-row { gap: 28px; }
  .why-grid { grid-template-columns: 1fr; }
  .visit-grid { grid-template-columns: 1fr; }
  .places-grid { grid-template-columns: 1fr; grid-auto-rows: 300px; }
  .place-card-lg { grid-column: span 1; grid-row: span 1; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .contact-form { padding: 28px 22px; }
  .map-tooltip { max-width: 180px; font-size: 0.8rem; padding: 12px 14px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 2.2rem; }
  .btn { padding: 14px 26px; font-size: 0.88rem; }
}
