/* ─── NAVBAR ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 102px;
  transform: translateZ(0);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-emblem {
  width: 112px;
  height: 90px;
  position: relative;
  flex-shrink: 0;
}

.logo-emblem svg { width: 100%; height: 100%; }
.logo-emblem img { width: 100%; height: 100%; object-fit: contain; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal) !important;
  background: var(--gold);
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover { background: var(--gold-light); }

/* ─── MOBILE NAV ─────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  top: 0; right: -300px;
  width: 280px; height: 100%;
  background: var(--green-deep);
  z-index: 200;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.3);
  overflow-y: auto;
}

.mobile-nav.open { right: 0; }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 102px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  flex-shrink: 0;
}

.mobile-nav-brand {
  font-family: 'Lato', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; color: var(--gold); text-transform: uppercase;
}

.mobile-nav-close {
  background: none; border: none; cursor: pointer;
  padding: 8px; color: rgba(255,255,255,0.7);
  transition: color 0.2s; display: flex; align-items: center;
}

.mobile-nav-close:hover { color: var(--gold); }

.mobile-nav-links { list-style: none; padding: 16px 0; flex: 1; }
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }

.mobile-nav-links a {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 18px 24px;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active { color: var(--gold); background: rgba(255,255,255,0.04); }

.mobile-nav-cta-wrap { padding: 24px; flex-shrink: 0; }

.mobile-nav-cta {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--charcoal) !important; background: var(--gold);
  text-decoration: none; padding: 14px 20px; text-align: center;
  transition: background 0.2s;
}

.mobile-nav-cta:hover { background: var(--gold-light); }

.mobile-nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 199; opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-backdrop.open { opacity: 1; pointer-events: auto; }

/* Mobile nav with collapsible sub-menus (destinations, tribes pages) */
.mobile-nav-parent {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  font-family: 'Lato', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.85); background: none; border: none;
  cursor: pointer; padding: 18px 24px; text-align: left; transition: color 0.2s;
}

.mobile-nav-parent:hover,
.mobile-nav-parent.open { color: var(--gold); }

.mobile-nav-chevron { flex-shrink: 0; transition: transform 0.3s ease; }
.mobile-nav-parent.open .mobile-nav-chevron { transform: rotate(180deg); }

.mobile-nav-sub {
  list-style: none; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease; background: rgba(0,0,0,0.18);
}

.mobile-nav-sub.open { max-height: 600px; }
.mobile-nav-sub li { border-bottom: 1px solid rgba(255,255,255,0.04); }
.mobile-nav-sub li:last-child { border-bottom: none; }

.mobile-nav-sub a {
  display: block; font-family: 'Lato', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,0.60); text-decoration: none;
  padding: 13px 24px 13px 40px; transition: color 0.2s, background 0.2s;
}

.mobile-nav-sub a:hover { color: var(--gold); background: rgba(255,255,255,0.03); }

/* ─── PAGE BANNER ────────────────────────────────── */
.page-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  padding-left: 80px;
  margin-top: 102px;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}

.page-banner-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.page-banner-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.page-banner-sub {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-top: 4px;
  text-transform: none;
}

.page-banner-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.55;
  margin-top: 18px;
  font-style: italic;
}

/* ─── CONTACT STRIP ──────────────────────────────── */
.contact-section {
  background: var(--cream-dark);
  padding: 32px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.contact-intro { flex-shrink: 0; }

.contact-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.contact-agent-name {
  font-family: 'Dancing Script', cursive;
  font-size: 34px;
  font-weight: 600;
  color: var(--green-deep);
  display: block;
  line-height: 1.1;
  margin-bottom: 6px;
}

.contact-agent-title {
  font-family: 'Lato', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}

.contact-divider {
  width: 1px;
  height: 90px;
  background: var(--gold);
  opacity: 0.25;
  flex-shrink: 0;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201,168,76,0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.contact-item:hover .contact-item-icon {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

.contact-item-icon svg { width: 16px; height: 16px; }

.contact-item-text {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.contact-item:hover .contact-item-text { color: var(--green-deep); }

/* ─── FOOTER ─────────────────────────────────────── */
.footer-tagline {
  background: var(--green-deep);
  padding: 10px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.footer-tagline p {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

.footer-tagline-icon { flex-shrink: 0; opacity: 0.85; }

.footer-bottom {
  background: var(--green-deep);
  padding: 10px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

.footer-bottom-links { display: flex; align-items: center; gap: 24px; }

.footer-bottom-links a {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ─── FOOTER SOCIAL ICONS ────────────────────────── */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Specificity 0,2,0 overrides .footer-bottom-links a (0,1,1) */
.footer-social-links .footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social-links .footer-social-icon:hover { color: var(--gold); }
.footer-social-links .footer-social-icon svg { width: 15px; height: 15px; display: block; }

.footer-links-sep {
  display: block;
  width: 1px;
  height: 12px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

/* ─── BACK TO TOP ────────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 99;
  width: 44px; height: 44px;
  background: var(--green-deep);
  border: 1px solid rgba(201,168,76,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity 0.3s, background 0.2s;
}

.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--green-mid); }
.back-to-top svg { width: 16px; height: 16px; }

/* ─── SCROLL ANIMATIONS ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-stagger.visible > *:nth-child(1) { opacity:1; transform:translateY(0); transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { opacity:1; transform:translateY(0); transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { opacity:1; transform:translateY(0); transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(4) { opacity:1; transform:translateY(0); transition-delay: 0.3s; }
.reveal-stagger.visible > *:nth-child(5) { opacity:1; transform:translateY(0); transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(6) { opacity:1; transform:translateY(0); transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1100px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 900px) {
  .page-banner { padding: 0 24px 40px; }
  .contact-section { flex-direction: column; align-items: flex-start; padding: 24px; gap: 24px; }
  .contact-divider { width: 60px; height: 1px; }
  .footer-tagline { padding: 16px 20px; gap: 16px; }
  .footer-bottom { padding: 10px 24px; flex-direction: column; gap: 8px; }
}
