/* ============================================
   VISIT MUSANZE — style.css (Updated & Integrated)
   ============================================ */

:root {
  --bg:         #0d0f0b;
  --bg-2:       #131510;
  --bg-card:    #1a1d16;
  --bg-card2:   #1e2118;
  --border:     rgba(255,255,255,0.07);
  --border-h:   rgba(201,169,110,0.3);
  --gold:       #c9a96e;
  --gold-lt:    #dfc08a;
  --gold-dim:   rgba(201,169,110,0.12);
  --text:       #e8e4dc;
  --text-muted: #8a8880;
  --white:      #ffffff;
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-serif:   'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'DM Sans', sans-serif;
  --radius:     12px;
  --shadow:     0 8px 40px rgba(0,0,0,0.6);
}

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

/* ── Gradient swatches ─────────────────────── */
.bg-slate  { background: linear-gradient(135deg,#37474f,#546e7a); }
.bg-green  { background: linear-gradient(135deg,#2e7d32,#4caf50); }
.bg-purple { background: linear-gradient(135deg,#6a1b9a,#9c27b0); }
.bg-amber  { background: linear-gradient(135deg,#e65100,#ff9800); }
.bg-pink   { background: linear-gradient(135deg,#880e4f,#e91e63); }
.bg-teal   { background: linear-gradient(135deg,#00695c,#00bcd4); }
.bg-blue   { background: linear-gradient(135deg,#1565c0,#2196f3); }
.bg-brown  { background: linear-gradient(135deg,#4e342e,#795548); }
.bg-lime   { background: linear-gradient(135deg,#558b2f,#8bc34a); }
.bg-indigo { background: linear-gradient(135deg,#283593,#5c6bc0); }
.bg-olive  { background: linear-gradient(135deg,#827717,#d4e157); }
.bg-rust   { background: linear-gradient(135deg,#bf360c,#ff7043); }
.bg-vol1   { background: linear-gradient(140deg,#1b3a2a,#2d6a4f); }
.bg-vol2   { background: linear-gradient(140deg,#2c1654,#5e2a8c); }
.bg-vol3   { background: linear-gradient(140deg,#1a3a4a,#1e6080); }
.bg-vol4   { background: linear-gradient(140deg,#3d1a00,#7a3300); }
.bg-vol5   { background: linear-gradient(140deg,#0f2027,#2c5364); }

/* ── Navbar ────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s, box-shadow .4s;
}
#navbar.scrolled {
  background: rgba(13,15,11,.93);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: 1360px; margin: 0 auto; padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; flex-shrink: 0; }
.logo-text  { color: var(--text); }
.logo-accent{ color: var(--gold); }
.nav-links  { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
.nav-item {
  font-size: .8rem; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(232,228,220,.7); padding: 7px 11px; border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-item:hover, .nav-item.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-cta { background: var(--gold)!important; color: var(--bg)!important; font-weight: 500; margin-left: 6px; }
.nav-cta:hover { background: var(--gold-lt)!important; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 101; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* ── Hero ──────────────────────────────────── */
#hero {
  position: relative; height: 100vh; min-height: 600px;
  overflow: hidden; display: flex; align-items: center; justify-content: center; /* Centered content */
  padding: 0 32px;
}
.hero-video-wrap { position: absolute; inset: -10%; z-index: 0; pointer-events: none; }
.hero-video-wrap iframe { width: 100%; height: 100%; transform: scale(1.1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(13,15,11,.96) 0%, rgba(13,15,11,.45) 55%, rgba(13,15,11,.15) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; text-align: center; }
.hero-eyebrow { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; display: block; }
.hero-title { font-family: var(--ff-display); font-size: clamp(4rem,10vw,9rem); font-weight: 900; line-height: .9; color: var(--white); margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-family: var(--ff-serif); font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 300; font-style: italic; color: rgba(232,228,220,.75); max-width: 600px; margin: 0 auto 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-primary { background: var(--gold); color: var(--bg); font-size: .85rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 13px 26px; border-radius: 4px; transition: background .2s, transform .2s; display: inline-block; }
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-1px); }
.btn-ghost  { background: transparent; color: var(--text); font-size: .85rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 12px 26px; border-radius: 4px; border: 1px solid rgba(232,228,220,.3); transition: border-color .2s, color .2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--text); color: var(--white); }
.hero-scroll-hint { position: absolute; bottom: 40px; right: 40px; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll-hint span { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom,var(--gold),transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ── Page skeleton ─────────────────────────── */
#app-content { min-height: 60vh; background: var(--bg); }
.page-header  { padding: 80px 32px 48px; max-width: 1360px; margin: 0 auto; border-bottom: 1px solid var(--border); margin-bottom: 64px; }
.page-eyebrow { font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-title   { font-family: var(--ff-display); font-size: clamp(2.5rem,5vw,4.5rem); font-weight: 700; line-height: 1; color: var(--white); }
.page-title em{ font-style: italic; color: var(--gold); }
.page-desc    { font-family: var(--ff-serif); font-size: 1.2rem; font-style: italic; color: var(--text-muted); max-width: 600px; margin-top: 14px; font-weight: 300; }
.container    { max-width: 1360px; margin: 0 auto; padding: 0 32px 80px; }
.section-label{ font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; text-align: center; } /* Added center for tiers */
.section-title{ font-family: var(--ff-display); font-size: clamp(1.8rem,3vw,2.8rem); font-weight: 700; color: var(--white); margin-bottom: 36px; line-height: 1.1; text-align: center; }
.section-title em{ font-style: italic; color: var(--gold); }
.info-box     { padding: 28px 32px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); }

/* ── Grids ─────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* ── Cards ─────────────────────────────────── */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .3s, transform .3s, box-shadow .3s; display: flex; flex-direction: column; }
.card:hover { border-color: var(--border-h); transform: translateY(-4px); box-shadow: var(--shadow); }
/* imgBox inside card already has its height via inline style from JS */
.card-body  { padding: 22px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.card-tag   { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.card-title { font-family: var(--ff-display); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 10px; line-height: 1.2; }
.card-text  { font-size: .875rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.card-btn { /* Generic button inside cards */
  display: block; width: 100%; text-align: center;
  margin-top: auto; padding-top: 15px;
  border-top: 1px solid var(--border);
  color: var(--gold); font-size: .78rem; letter-spacing: .08em;
  text-transform: uppercase; font-weight: 500; cursor: pointer;
  transition: color .2s;
}
.card-btn:hover { color: var(--text); border-color: var(--text); }

/* ── Home (Updated for Layout) ──────────────────── */
.home-intro-layout {
  display: grid;
  grid-template-columns: 1fr 340px; /* Text left, Stats right */
  gap: 60px;
  align-items: center;
  padding: 80px 32px;
  max-width: 1360px;
  margin: 0 auto;
}
.home-intro-text { padding-right: 20px; }
.home-intro-text h2 { font-family: var(--ff-display); font-size: clamp(2rem,4vw,3.5rem); font-weight: 700; line-height: 1.1; color: var(--white); margin-bottom: 18px; }
.home-intro-text h2 em { font-style: italic; color: var(--gold); }
.home-intro-text p  { font-family: var(--ff-serif); font-size: 1.1rem; font-style: italic; color: var(--text-muted); font-weight: 300; line-height: 1.8; margin-bottom: 26px; }

.home-stats-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: var(--bg-card);
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-item  { padding: 20px; /* Simplified stats inside grid cells */ text-align: center; border: 1px solid var(--border); border-radius: 8px; background: var(--bg-2); }
.stat-num   { font-family: var(--ff-display); font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--text-muted); margin-top: 4px; }

/* Home Highlights Icons */
.card-icon {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 36px 24px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-card); transition: background .3s;
}
.card-icon:hover { background: var(--bg-card2); }
.card-icon .icon { font-size: 3rem; margin-bottom: 16px; color: var(--gold); }
.card-icon h3 { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.card-icon p  { font-size: .875rem; color: var(--text-muted); }

/* ── Volcano page ──────────────────────────── */
.volcano-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.volcano-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.volcano-card:hover { border-color: var(--border-h); transform: translateY(-5px); box-shadow: var(--shadow); }
/* vc-img-wrap: holds imgBox + badge */
.vc-img-wrap  { position: relative; height: 240px; } /* Fixed height */
.volcano-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(13,15,11,.8); backdrop-filter: blur(8px);
  border: 1px solid var(--border-h); border-radius: 20px;
  padding: 4px 12px; font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
}
.volcano-body  { padding: 20px 22px 22px; }
.volcano-title { font-family: var(--ff-display); font-size: 1.35rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.volcano-meta  { display: flex; gap: 14px; margin-bottom: 10px; font-size: .85rem; color: #888; }
.volcano-text  { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; }
.volcano-cta   { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

/* ── Volcano Modal ─────────────────────────── */

/* Force !important to ensure it overrides any cached or conflicting CSS */
#modal-overlay {
  position: fixed; inset: 0; z-index: 99999 !important; /* Higher z-index */
  background: rgba(0,0,0,.9); /* Darker background to be sure it's visible */
  backdrop-filter: blur(15px);
  display: none; /* Hidden by default */
  align-items: center; justify-content: center; padding: 24px;
}

/* This ensures the modal shows up even if ID selectors fight */
#modal-overlay.open { 
  display: flex !important; 
  visibility: visible !important;
  pointer-events: auto !important;
}

/* Ensure container is visible */
#modal-container {
  background: var(--bg-card2); 
  border: 1px solid var(--gold); /* Gold border to be visible */
  border-radius: 16px; 
  max-width: 820px; width: 100%;
  max-height: 90vh; overflow-y: auto; 
  position: relative;
  z-index: 100000;
  animation: modalIn .3s ease;
}
@keyframes modalIn { 
  from{opacity:0;transform:translateY(20px)} 
  to{opacity:1;transform:translateY(0)} 
}

/* Close button */
#modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 10;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); /* Gold button to be visible */
  color: var(--bg); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  cursor: pointer;
}
#modal-close:hover { background: var(--white); }

/* Inner content wrapper */
#modal-inner {
  /* Fix for content not displaying */
  padding: 0; 
  opacity: 1 !important;
}

.modal-content  { padding: 28px 32px 36px; }
.modal-eyebrow  { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.modal-title    { font-family: var(--ff-display); font-size: 2rem; font-weight: 900; color: var(--white); margin-bottom: 4px; }
.modal-subtitle { font-family: var(--ff-serif); font-style: italic; font-size: 1.05rem; color: var(--text-muted); font-weight: 300; margin-bottom: 20px; }
.modal-stats    { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-bottom: 24px; }
.modal-stat     { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; }
.modal-stat-num { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.modal-stat-label{ font-size: .74rem; color: var(--text-muted); margin-top: 4px; }
.modal-body-text { font-size: .9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.modal-body-text p{ margin-bottom: 12px; }
.modal-activities h4 { font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.activity-pills  { display: flex; flex-wrap: wrap; gap: 8px; }
.activity-pill   { background: var(--gold-dim); border: 1px solid var(--gold); color: var(--gold); font-size: .76rem; padding: 4px 12px; border-radius: 20px; }
.modal-book-btn  { display: inline-block; margin-top: 24px; background: var(--gold); color: var(--bg); font-size: .82rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 12px 26px; border-radius: 4px; transition: background .2s; }
.modal-book-btn:hover { background: var(--gold-lt); }

/* ── Hotels ────────────────────────────────── */
.hotel-tiers   { display: flex; flex-direction: column; gap: 72px; margin-bottom: 80px; }
.tier-label-wrap{ display: flex; align-items: center; gap: 18px; margin-bottom: 24px; }
.tier-line     { flex: 1; height: 1px; background: var(--border); }
.tier-label    { font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.hotel-card    {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.hotel-card:hover { border-color: var(--border-h); transform: translateY(-5px); box-shadow: var(--shadow); }
/* imgBox sets its own height via inline style */
.hotel-body    { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.hotel-stars   { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-bottom: 6px; }
.hotel-name    { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: 4px; line-height: 1.2; }
.hotel-loc     { font-size: .76rem; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 5px; }
.hotel-loc::before { content:'📍'; font-size: .74rem; }
.hotel-desc    { font-size: .84rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; flex: 1; }
.price-tag   { /* Mapping JS .price-tag to existing styles */ color: var(--gold); font-weight: 500; font-size: .85rem; margin-top: auto; }
.hotel-link    { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.hotel-link:hover { gap: 10px; }

/* ── Trip page ─────────────────────────────── */
.trip-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; max-width: 1360px; margin: 0 auto; padding: 0 32px 80px; align-items: start; }
.trip-tips   { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: sticky; top: 96px; }
.trip-tips h3{ font-family: var(--ff-display); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 18px; }
.tip-item    { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.tip-item:last-child { border-bottom: none; }
.tip-icon    { flex-shrink: 0; width: 26px; height: 26px; background: rgba(201,169,110,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; margin-top: 2px; }
.tip-text    { font-size: .875rem; color: var(--text-muted); line-height: 1.6; }

/* ── Gallery ───────────────────────────────── */
.grid-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.gallery-item { position: relative; overflow: hidden; min-height: 220px; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
/* imgBox inside gallery-item: height:100% means it fills the grid cell */
/* The imgBox div has position:relative+overflow:hidden already, img is absolute inside */
.gallery-item > div { height: 100%; min-height: 220px; }
.gallery-item > div img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.gallery-item:hover > div img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(13,15,11,.8) 0%,transparent 60%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 14px; pointer-events: none; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cap { font-size: .8rem; color: var(--text); font-family: var(--ff-serif); font-style: italic; }

/* ── Contact ───────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 1360px; margin: 0 auto; padding: 0 32px 80px; }
.contact-info h2 { font-family: var(--ff-display); font-size: 1.9rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.contact-info > p { font-family: var(--ff-serif); font-size: 1.05rem; font-style: italic; color: var(--text-muted); font-weight: 300; line-height: 1.8; margin-bottom: 28px; }
.contact-detail  { display: flex; align-items: center; gap: 14px; padding: 14px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 12px; transition: border-color .2s; }
.contact-detail:hover { border-color: var(--border-h); }
.cd-icon { width: 38px; height: 38px; background: var(--gold-dim); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-detail h4 { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 2px; }
.contact-detail p  { font-size: .88rem; color: var(--text); }
.contact-form    { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; }
.contact-form h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.form-sub  { font-size: .875rem; color: var(--text-muted); margin-bottom: 24px; }
.form-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group{ margin-bottom: 18px; }
.form-group label { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: 6px; padding: 11px 14px; font-family: var(--ff-sans); font-size: .9rem;
  color: var(--text); outline: none; transition: border-color .2s, background .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: rgba(201,169,110,.05); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,136,128,.5); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--bg-card); }
.btn-submit { width: 100%; background: var(--gold); color: var(--bg); font-family: var(--ff-sans); font-size: .85rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; padding: 13px; border-radius: 4px; margin-top: 6px; transition: background .2s; }
.btn-submit:hover    { background: var(--gold-lt); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-error { color: #e57373; font-size: .82rem; margin-top: 10px; text-align: center; }
.form-success { text-align: center; padding: 40px 20px; }
.si { font-size: 3rem; margin-bottom: 14px; }
.form-success h3 { font-family: var(--ff-display); font-size: 1.5rem; color: var(--white); margin-bottom: 8px; }
.form-success p  { color: var(--text-muted); font-size: .9rem; }

/* ── Advertise ─────────────────────────────── */
.advertise-wrap  { max-width: 800px; margin: 0 auto; padding: 0 32px 80px; text-align: center; }
.advertise-card  { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 56px 44px; }
.advertise-card h2 { font-family: var(--ff-display); font-size: 2.4rem; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.advertise-card > p{ font-family: var(--ff-serif); font-size: 1.1rem; font-style: italic; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; font-weight: 300; }
.advertise-email { display: inline-block; background: var(--gold); color: var(--bg); font-size: .9rem; font-weight: 500; padding: 13px 26px; border-radius: 4px; transition: background .2s; }
.advertise-email:hover { background: var(--gold-lt); }
.advertise-features { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; text-align: left; }
.adv-feat      { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 8px; padding: 18px; }
.adv-feat-icon { font-size: 1.4rem; margin-bottom: 8px; }
.adv-feat h4   { font-size: .88rem; font-weight: 500; color: var(--white); margin-bottom: 4px; }
.adv-feat p    { font-size: .8rem; color: var(--text-muted); line-height: 1.5; }

/* ── Footer ────────────────────────────────── */
#footer { background: var(--bg-2); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1360px; margin: 0 auto; padding: 56px 32px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { font-size: .875rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; margin: 12px 0 18px; }
.footer-socials  { display: flex; gap: 10px; }
.footer-socials a{ width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: border-color .2s, color .2s; }
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4 { font-size: .74rem; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-links a  { display: block; font-size: .875rem; color: var(--text-muted); margin-bottom: 10px; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom   { border-top: 1px solid var(--border); padding: 18px 32px; max-width: 1360px; margin: 0 auto; }
.footer-bottom p { font-size: .8rem; color: var(--text-muted); }
.footer-credits  { margin-top: 4px; font-size: .72rem!important; }

/* ── Responsive ────────────────────────────── */
@media (max-width: 1100px) {
  .grid-3, .volcano-grid, .advertise-features { grid-template-columns: repeat(2,1fr); }
  .highlight-strip { grid-template-columns: 1fr; }
  .highlight-item  { border-right: none; border-bottom: 1px solid var(--border); }
  .highlight-item:last-child { border-bottom: none; }
  .home-intro-layout { grid-template-columns: 1fr; gap: 40px; }
  .trip-layout   { grid-template-columns: 1fr; }
  .trip-tips     { position: static; }
  .contact-layout{ grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .grid-gallery  { grid-template-columns: repeat(2,1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .weather-strip { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; inset: 0;
    background: rgba(13,15,11,.98);
    flex-direction: column; justify-content: center; align-items: center; gap: 4px; z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-item  { font-size: 1.1rem; padding: 12px 24px; }
  .hamburger { display: flex; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .grid-2, .grid-3, .grid-4, .volcano-grid,
  .home-intro-stats, .modal-stats, .form-row,
  .advertise-features, .footer-inner { grid-template-columns: 1fr; }
  .weather-strip { grid-template-columns: repeat(2,1fr); }
  .grid-gallery  { grid-template-columns: 1fr; }
  .hero-title    { font-size: clamp(3rem,12vw,5rem); }
  .hero-scroll-hint { display: none; }
  .page-header   { padding: 60px 20px 32px; }
  .container, .home-highlights, .home-intro,
  .trip-layout, .contact-layout, .advertise-wrap { padding-left: 20px; padding-right: 20px; }
  #modal-container { max-height: 100vh; border-radius: 0; }
  .modal-content { padding: 20px; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}
