/*
Theme Name: Allocentric Theme
Theme URI: https://allocentrictours.com
Author: Sector01
Author URI: https://allocentrictours.com
Description: Allocentric Tours & Safaris - Unleash the Explorer in You
Version: 1.1
License: GNU General Public License v2 or later
Tags: tourism, safari, travel, custom
*/

/* ============================================
   GOOGLE FONTS
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,700;0,9..144,900;1,9..144,300;1,9..144,400;1,9..144,700;1,9..144,900&family=Sora:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
============================================ */
:root {
  --cream:        #f2faf2;
  --cream-dark:   #e8f5e8;
  --gold:         #c8860a;
  --gold-light:   #f0a500;
  --gold-dark:    #a06808;
  --green:        #3AA335;
  --dark:         #1a1a1a;
  --text:         #3d3d3d;
  --text-light:   #6b6b6b;
  --white:        #ffffff;
  --border:       #d4ebd4;

  --font-display: 'Fraunces', serif;
  --font-body:    'Sora', sans-serif;

  --section-pad:  120px;
  --container:    1320px;
  --radius:       8px;

  --nav-height-desktop: 140px;
  --nav-height-mobile:  80px;

  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:       200ms;
  --t-mid:        350ms;
  --t-slow:       700ms;

  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 56px rgba(0,0,0,0.14);
}

/* ============================================
   RESET AND BASE
============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--t-fast) var(--ease);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================
   PRELOADER
============================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 16px;
  animation: preloader-logo-in 0.8s var(--ease-out) forwards;
  opacity: 0;
}

@keyframes preloader-logo-in {
  from { opacity: 0; transform: translateY(12px) scale(0.9); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.preloader-wordmark {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -1px;
}

.preloader-wordmark em {
  font-style: italic;
  color: var(--green);
}

.preloader-line {
  width: 160px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.preloader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--green);
  animation: preload-line 1.6s var(--ease) forwards;
}

@keyframes preload-line {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-out);
  border: 1.5px solid transparent;
  white-space: nowrap;
  will-change: transform;
}

.btn:hover { transform: translateY(-3px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200,134,10,0.25);
}

.btn-gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 32px rgba(200,134,10,0.4);
}

.btn-white {
  background: var(--white);
  color: var(--gold);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border-color: #25d366;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25);
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  position: relative;
  padding-bottom: 2px;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease-out);
}

.text-link:hover { color: var(--gold); }
.text-link:hover::after { transform: scaleX(1); }

.text-link-white { color: var(--white); }
.text-link-white::after { background: var(--white); }
.text-link-white:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   SCROLL ANIMATIONS
============================================ */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

[data-animate="from-left"]  { transform: translateX(-32px); opacity: 0; }
[data-animate="from-right"] { transform: translateX(32px);  opacity: 0; }
[data-animate="scale-in"]   { transform: scale(0.95);       opacity: 0; }
[data-animate="fade-up"]    { transform: translateY(20px);  opacity: 0; }

[data-animate].animated {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* ============================================
   HEADER AND NAV
============================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all var(--t-mid) var(--ease);
}

#main-nav {
  padding: 0;
  transition: all var(--t-mid) var(--ease);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height-desktop);
  padding: 0 120px;
  transition: all var(--t-mid) var(--ease);
}

.nav-transparent .nav-inner {
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav-transparent .logo-main { color: var(--white); }
.nav-transparent .logo-sub  { color: rgba(255,255,255,0.7); }
.nav-transparent .nav-link  { color: rgba(255,255,255,0.9); }
.nav-transparent .nav-wa    { color: var(--white); border-color: rgba(255,255,255,0.4); }
.nav-transparent .hamburger span { background: var(--white); }

.nav-scrolled .nav-inner {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(212,235,212,0.5);
  box-shadow: var(--shadow);
}

.nav-scrolled .logo-main { color: var(--dark); }
.nav-scrolled .logo-sub  { color: var(--gold); }
.nav-scrolled .nav-link  { color: var(--text); }
.nav-scrolled .nav-wa    { color: var(--dark); border-color: var(--border); }
.nav-scrolled .hamburger span { background: var(--dark); }

.site-logo {
  display: flex;
  align-items: center;
  margin: -10px 0;
}

.site-logo img {
  height: 108px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }

.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  transition: color var(--t-mid) var(--ease);
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color var(--t-mid) var(--ease);
}

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 8px 14px;
  border-radius: 6px;
  position: relative;
  transition: all var(--t-fast) var(--ease);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease-out);
}

.nav-link:hover { color: var(--gold) !important; }
.nav-link:hover::after { transform: scaleX(1); }

.nav-wa {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid;
  transition: all var(--t-mid) var(--ease-out);
  letter-spacing: 0.3px;
}

.nav-wa:hover {
  background: var(--gold);
  color: var(--white) !important;
  border-color: var(--gold) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  border-radius: 2px;
  transition: all var(--t-mid) var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================
   MOBILE OVERLAY MENU
============================================ */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-mid) var(--ease), visibility var(--t-mid) var(--ease);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(200,134,10,0.18) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(58,163,53,0.10) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* === TOP BAR === */
.mobile-overlay-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-overlay-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-overlay-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.mobile-overlay-logo span {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.5px;
}

.mobile-overlay .close-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  transition: all var(--t-fast) var(--ease);
  padding: 0;
  position: static;
  top: auto;
  right: auto;
  font-size: 0;
}

.mobile-overlay .close-btn svg {
  width: 20px;
  height: 20px;
}

.mobile-overlay .close-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: rotate(90deg);
}

/* === NAV LINKS === */
.mobile-nav-links {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  padding: 32px 24px;
  flex: 1;
  justify-content: center;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 8px;
  font-family: var(--font-display);
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 500ms var(--ease-out),
    transform 500ms var(--ease-out),
    color var(--t-fast) var(--ease),
    padding-left var(--t-fast) var(--ease);
  position: relative;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-overlay.open .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  min-width: 28px;
  opacity: 0.65;
  transition: opacity var(--t-fast) var(--ease);
}

.mobile-nav-text {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  transition: color var(--t-fast) var(--ease);
}

.mobile-nav-link:hover,
.mobile-nav-link:active,
.mobile-nav-link:focus {
  color: var(--gold);
  padding-left: 20px;
  outline: none;
}

.mobile-nav-link:hover .mobile-nav-num,
.mobile-nav-link:active .mobile-nav-num,
.mobile-nav-link:focus .mobile-nav-num {
  opacity: 1;
}

.mobile-nav-link:hover .mobile-nav-text,
.mobile-nav-link:active .mobile-nav-text,
.mobile-nav-link:focus .mobile-nav-text {
  color: var(--gold);
}

/* === BOTTOM CTA AREA === */
.mobile-overlay-bottom {
  position: relative;
  z-index: 2;
  padding: 24px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
  transition-delay: 0.4s;
}

.mobile-overlay.open .mobile-overlay-bottom {
  opacity: 1;
  transform: translateY(0);
}

.mobile-wa-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  transition: all var(--t-mid) var(--ease-out);
  text-decoration: none;
}

.mobile-wa-cta svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
  flex-shrink: 0;
}

.mobile-wa-cta:hover,
.mobile-wa-cta:active {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.4);
  color: var(--white);
}

.mobile-contact-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

.mobile-contact-strip a {
  color: rgba(255,255,255,0.85);
  transition: color var(--t-fast) var(--ease);
  text-decoration: none;
  letter-spacing: 0.3px;
}

.mobile-contact-strip a:hover,
.mobile-contact-strip a:active {
  color: var(--gold);
}

.mobile-contact-strip span {
  color: rgba(255,255,255,0.25);
}

.mobile-tagline {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}

.mobile-tagline em {
  font-style: italic;
  color: var(--gold);
  opacity: 0.85;
}

/* === EXTRA SMALL DEVICES === */
@media (max-width: 380px) {
  .mobile-overlay-top { padding: 16px 18px; }
  .mobile-overlay-logo img { height: 40px; }
  .mobile-overlay-logo span { font-size: 1rem; }
  .mobile-nav-links { padding: 24px 18px; }
  .mobile-nav-text { font-size: 1.6rem; }
  .mobile-overlay-bottom { padding: 20px 18px 26px; }
  .mobile-wa-cta { padding: 14px 24px; font-size: 0.88rem; }
  .mobile-contact-strip { font-size: 0.76rem; gap: 8px; }
}

.mobile-overlay .mobile-wa {
  margin-top: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--t-mid) var(--ease-out);
  transition-delay: 0.4s;
}

.mobile-overlay.open .mobile-wa { opacity: 1; transform: translateY(0); }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.8s var(--ease);
  will-change: opacity;
}

.hero-slide.active { opacity: 1; }

.hero-slide img,
.hero-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide img {
  animation: kenburns 10s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  will-change: transform;
}

@keyframes kenburns {
  0%   { transform: scale(1.12) translate(0px, 0px); }
  25%  { transform: scale(1.08) translate(-8px, -4px); }
  75%  { transform: scale(1.04) translate(6px, 3px); }
  100% { transform: scale(1.0) translate(0px, 0px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 30%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  opacity: 0;
  animation: hero-fade-up 0.8s 0.4s var(--ease-out) forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 32px;
  opacity: 0;
  animation: hero-fade-up 0.8s 0.6s var(--ease-out) forwards;
}

.hero-headline .gold-dot { color: var(--gold); }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  opacity: 0;
  animation: hero-fade-up 0.8s 0.9s var(--ease-out) forwards;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-hint {
  position: absolute;
  right: 48px;
  bottom: 40%;
  transform: rotate(90deg);
  transform-origin: right center;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  z-index: 2;
}

.hero-bar {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
}

.hero-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bar-item {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0 32px;
  position: relative;
}

.hero-bar-item::after {
  content: '·';
  position: absolute;
  right: 0;
  color: var(--gold);
  font-size: 1rem;
}

.hero-bar-item:last-child::after { display: none; }

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   INQUIRY SECTION
============================================ */
.inquiry-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.inquiry-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,134,10,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.inquiry-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.inquiry-left { padding-right: 40px; }

.inquiry-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.inquiry-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.inquiry-heading em { font-style: italic; color: var(--gold); }

.inquiry-body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 40px;
  max-width: 420px;
}

.inquiry-stats {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
}

.inquiry-stat {
  padding: 0 28px;
  border-right: 1px solid var(--gold);
}

.inquiry-stat:first-child { padding-left: 0; }
.inquiry-stat:last-child { border-right: none; }

.inquiry-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.inquiry-stat span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.inquiry-right {
  position: relative;
  padding: 48px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  z-index: 1;
}

.inquiry-right::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), rgba(200,134,10,0.2), var(--gold));
  background-size: 300% 300%;
  z-index: -1;
  opacity: 0.5;
  animation: border-glow 4s ease-in-out infinite;
}

@keyframes border-glow {
  0%, 100% { opacity: 0.3; background-position: 0% 50%; }
  50%      { opacity: 0.7; background-position: 100% 50%; }
}

.inquiry-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  display: inline-block;
}

.inquiry-form-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin-top: 10px;
  margin-bottom: 24px;
}

.form-field { margin-bottom: 24px; }

.form-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200,134,10,0.25);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--dark);
  transition: border-color var(--t-fast) var(--ease);
  outline: none;
  border-radius: 0;
  appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-light);
  font-weight: 300;
}

.form-field select { cursor: pointer; color: var(--text); }
.form-field textarea { resize: none; line-height: 1.6; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-submit {
  width: 100%;
  margin-top: 16px;
  padding: 18px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-mid) var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,134,10,0.3);
}

.form-hint {
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
}

/* ============================================
   DESTINATIONS
============================================ */
.destinations-section {
  padding: 0;
  background: var(--dark);
}

.destinations-heading {
  padding: 100px 80px 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.destinations-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  margin-top: 12px;
}

.destinations-heading h2 em {
  font-style: italic;
  color: var(--gold);
}

.destinations-heading p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 340px;
  text-align: right;
  padding-bottom: 8px;
}

.destination-block {
  position: relative;
  min-height: 100vh;
  cursor: pointer;
  background: var(--dark);
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.destination-block img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
  z-index: 0;
}

.destination-block:hover img { transform: scale(1.04); }

.destination-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 1;
}

.destination-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  max-width: 760px;
  width: 100%;
}

.destination-flag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.destination-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.destination-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 480px;
}

.dest-page-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.dest-page-highlights span {
  background: rgba(200,134,10,0.2);
  border: 1px solid rgba(200,134,10,0.4);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
}

.dest-tour-links { margin-bottom: 20px; }

.dest-tour-links h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.dest-tour-links a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.dest-tour-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.dest-coming-soon {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

.destination-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  margin-top: 8px;
  transition: color 0.2s ease;
  width: fit-content;
}

.destination-link:hover { color: var(--gold); }

.dest-page-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  text-align: center;
}

.dest-page-hero .inquiry-label { margin-bottom: 12px; }

.dest-page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.dest-page-hero h1 em { font-style: italic; color: var(--gold); }

.dest-page-hero p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

/* ============================================
   EXPERIENCES
============================================ */
.experiences-section {
  padding: var(--section-pad) 0;
  background: var(--cream-dark);
  position: relative;
}

.experiences-top {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 40px;
}

.experiences-top h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 16px;
}

.experiences-top h2 em { font-style: italic; color: var(--gold); }

.experiences-top p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.8;
}

.experience-list { padding: 0 40px; }

.experience-row {
  display: grid;
  grid-template-columns: 80px 1fr auto 200px;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  position: relative;
}

.experience-row::before {
  content: '';
  position: absolute;
  left: -40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t-mid) var(--ease-out);
}

.experience-row:hover::before { transform: scaleY(1); }
.experience-row:hover { background: rgba(200,134,10,0.03); padding-left: 16px; }

.exp-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  transition: opacity var(--t-fast) var(--ease);
}

.experience-row:hover .exp-number { opacity: 0.5; }

.exp-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  transition: color var(--t-fast) var(--ease);
}

.experience-row:hover .exp-name { color: var(--gold); }

.exp-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
}

.exp-wa {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all var(--t-mid) var(--ease-out);
  white-space: nowrap;
}

.experience-row:hover .exp-wa { opacity: 1; transform: translateX(0); }

.exp-image {
  width: 200px;
  height: 130px;
  border-radius: var(--radius);
  overflow: hidden;
}

.exp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.experience-row:hover .exp-image img { transform: scale(1.06); }

/* ============================================
   TOURS
============================================ */
.tours-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.tours-header {
  padding: 0 40px;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.tours-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
}

.tours-header p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.tours-filters {
  display: flex;
  gap: 0;
  padding: 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.tours-filter-btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: none;
  border: none;
  padding: 12px 24px 14px;
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  position: relative;
}

.tours-filter-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 24px;
  right: 24px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t-mid) var(--ease-out);
}

.tours-filter-btn:hover { color: rgba(255,255,255,0.8); }
.tours-filter-btn.active { color: var(--white); }
.tours-filter-btn.active::after { transform: scaleX(1); }

.tours-list { padding: 0 40px; }

.tour-row {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  border-left: 3px solid transparent;
}

.tour-row:hover {
  border-left-color: var(--gold);
  padding-left: 16px;
  background: rgba(255,255,255,0.02);
}

.tour-dest {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  min-width: 100px;
}

.tour-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  transition: color var(--t-fast) var(--ease);
}

.tour-name-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tour-desc-preview {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  line-height: 1.5;
  max-width: 500px;
}

.tour-row:hover .tour-name { color: var(--gold); }

.tour-duration {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.tour-inquire {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--t-fast) var(--ease);
  white-space: nowrap;
}

.tour-row:hover .tour-inquire { color: var(--gold); transform: translateX(4px); }

/* ============================================
   TOUR MODAL
============================================ */
.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-mid) var(--ease);
}

.tour-modal.open { opacity: 1; visibility: visible; }

.tour-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.tour-modal-box {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  transform: translateY(24px) scale(0.96);
  transition: all var(--t-mid) var(--ease-out);
  z-index: 1;
}

.tour-modal.open .tour-modal-box { transform: translateY(0) scale(1); }

.tour-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--cream);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all var(--t-fast) var(--ease);
}

.tour-modal-close:hover { background: var(--dark); color: var(--white); }

.tour-modal-type {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.tour-modal-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.tour-modal-duration {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.tour-modal-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.tour-modal-prices {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
}

.tour-modal-prices h5 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.tour-modal-prices .price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.tour-modal-prices .price-item:last-child { border-bottom: none; }
.tour-modal-prices .price-label { color: var(--text-light); font-weight: 400; }
.tour-modal-prices .price-value { color: var(--dark); font-weight: 600; }

.tour-modal-actions { text-align: center; }

.tour-modal-actions .btn {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 18px;
}

.tour-modal-hint {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.6;
}

/* ============================================
   GALLERY
============================================ */
.gallery-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.gallery-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 0 40px;
}

.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}

.gallery-header p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  font-style: italic;
}

.gallery-grid {
  columns: 3;
  column-gap: 8px;
  padding: 0 40px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
  padding: 32px 16px 14px;
  transform: translateY(100%);
  transition: transform var(--t-mid) var(--ease-out);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-caption p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.9);
}

.gallery-load-more { text-align: center; margin-top: 48px; }

.gallery-page-hero {
  padding: 160px 40px 80px;
  background: var(--dark);
  text-align: center;
}

.gallery-page-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.gallery-page-hero-inner h1 em { font-style: italic; color: var(--gold); }

.gallery-page-hero-inner p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.gallery-page-section {
  padding: 60px 40px;
  background: var(--dark);
  min-height: 60vh;
}

.gallery-page-grid { columns: 3; column-gap: 6px; }

.gallery-page-item {
  break-inside: avoid;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-page-img-wrap { position: relative; overflow: hidden; }

.gallery-page-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.gallery-page-item:hover img { transform: scale(1.05); }

.gallery-page-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  transition: background 0.4s var(--ease);
}

.gallery-page-item:hover .gallery-page-overlay { background: rgba(0,0,0,0.55); }

.gallery-page-overlay-inner {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s var(--ease-out);
  width: 100%;
}

.gallery-page-item:hover .gallery-page-overlay-inner { opacity: 1; transform: translateY(0); }

.gallery-page-caption {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--white);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.5;
}

.gallery-page-view {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.gallery-empty-state {
  text-align: center;
  padding: 80px 40px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 2;
}

/* ============================================
   STORY / ABOUT SNIPPET
============================================ */
.story-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content { padding-right: 40px; }

.story-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.story-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.story-heading em { font-style: italic; color: var(--gold); }

.story-body {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 36px;
}

.story-stats { display: flex; gap: 32px; margin-bottom: 36px; }

.story-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.story-stat span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}

.story-image-wrap {
  position: relative;
  transform: rotate(-1deg);
}

.story-image-wrap img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.story-image-badge {
  position: absolute;
  bottom: 32px;
  left: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.badge-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.3;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.testimonials-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  text-align: center;
  margin-bottom: 72px;
  padding: 0 40px;
  line-height: 1.1;
}

.testimonials-headline em { font-style: italic; color: var(--gold); }

.testimonial-list { padding: 0 80px; }

.testimonial-item {
  padding: 48px 0;
  border-bottom: 1px solid rgba(200,134,10,0.2);
  text-align: center;
}

.testimonial-item:first-child { border-top: 1px solid rgba(200,134,10,0.2); }

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0.5;
  display: block;
  margin-bottom: 24px;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-type {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  display: block;
}

.live-reviews-section {
  padding: 60px 0;
  border-top: 1px solid rgba(200,134,10,0.2);
  margin-top: 20px;
}

.live-reviews-header {
  text-align: center;
  margin-bottom: 48px;
}

.live-reviews-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.live-reviews-header p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.live-reviews-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: start;
}

.live-reviews-display h4,
.live-reviews-form h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 24px;
}

.allocentric-reviews .glsr-review {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  margin-bottom: 16px !important;
}

.allocentric-reviews .glsr-review-rating .glsr-star-full { color: var(--gold) !important; }
.allocentric-reviews .glsr-review-title { color: var(--white) !important; font-family: var(--font-display) !important; }
.allocentric-reviews .glsr-review-content { color: rgba(255,255,255,0.7) !important; font-family: var(--font-body) !important; font-style: italic !important; }
.allocentric-reviews .glsr-review-author { color: var(--gold) !important; font-family: var(--font-body) !important; font-size: 0.78rem !important; font-weight: 600 !important; letter-spacing: 1px !important; text-transform: uppercase !important; }

.allocentric-review-form .glsr-field input,
.allocentric-review-form .glsr-field textarea,
.allocentric-review-form .glsr-field select {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  padding: 12px 16px !important;
}

.allocentric-review-form .glsr-field label {
  color: rgba(255,255,255,0.6) !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
}

.allocentric-review-form .glsr-submit-button {
  background: var(--gold) !important;
  border: none !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  padding: 14px 32px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  width: 100% !important;
}

.allocentric-review-form .glsr-submit-button:hover { background: var(--gold-dark) !important; }
.allocentric-review-form .glsr-star-rating .glsr-star { color: var(--gold) !important; font-size: 1.5rem !important; }

.trustpilot-bar {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 40px;
}

.trustpilot-bar p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
}

.trustpilot-bar .stars {
  color: var(--gold);
  font-size: 1rem;
}

/* ============================================
   JOURNAL
============================================ */
.journal-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.journal-header {
  padding: 0 40px;
  margin-bottom: 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.journal-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
}

.journal-header p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 6px;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
  padding: 0 40px;
}

.journal-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--cream-dark);
}

.journal-card:first-child { grid-row: span 2; }

.journal-card-img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
  display: block;
}

.journal-card:first-child .journal-card-img { min-height: 560px; }
.journal-card:hover .journal-card-img { transform: scale(1.04); }

.journal-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.journal-card-cat {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.journal-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.journal-card:first-child .journal-card-title { font-size: 1.4rem; }

.journal-read {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--t-fast) var(--ease);
}

.journal-card:hover .journal-read { color: var(--gold); }
.journal-footer { text-align: center; margin-top: 48px; padding: 0 40px; }

/* ============================================
   CTA
============================================ */
.cta-section {
  padding: var(--section-pad) 0;
  background: var(--gold);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content { position: relative; z-index: 1; }

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.cta-heading em { font-style: italic; }

.cta-sub {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-contact-info {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
}

/* ============================================
   PARTNERSHIPS
============================================ */
.partnerships-section {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partnerships-header {
  text-align: center;
  margin-bottom: 48px;
}

.partnerships-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.partnerships-header p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
}

.partners-scroll-wrap {
  overflow: hidden;
  position: relative;
  padding: 16px 0;
}

.partners-scroll-wrap::before,
.partners-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.partners-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.partners-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.partners-scroll-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: partners-scroll 28s linear infinite;
}

.partners-scroll-track:hover { animation-play-state: paused; }

@keyframes partners-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-logo-item img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform var(--t-mid) var(--ease-out);
}

.partner-logo-item img:hover { transform: scale(1.08); }

.partner-badge {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 10px 24px;
  border: 2px solid;
  border-radius: 50px;
  white-space: nowrap;
  transition: transform var(--t-mid) var(--ease-out);
}

.partner-badge:hover { transform: scale(1.05); }

/* ============================================
   FOOTER
============================================ */
#site-footer {
  background: var(--dark);
  padding: 96px 0 32px;
  position: relative;
  overflow: hidden;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 56px;
}

.footer-top-grid {
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast) var(--ease);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-col ul li:not(:has(a)) {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
}

.footer-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.footer-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-cta-primary,
.footer-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all var(--t-mid) var(--ease-out);
}

.footer-cta-primary {
  background: var(--gold);
  color: var(--white);
}

.footer-cta-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200,134,10,0.3);
}

.footer-cta-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.footer-cta-secondary:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-2px);
}

.footer-socials { display: flex; gap: 12px; }

.footer-social {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--t-mid) var(--ease-out);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-social:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-wordmark-wrap {
  text-align: center;
  padding: 60px 0 32px;
  position: relative;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  margin-right: calc(-1 * (100vw - 100%) / 2);
  width: 100vw;
  max-width: 100vw;
  overflow: hidden;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15vw;
  color: var(--green);
  line-height: 0.85;
  letter-spacing: -0.05em;
  white-space: nowrap;
  user-select: none;
  text-align: center;
  width: 100%;
  display: block;
}

.footer-wordmark-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  color: var(--green);
  letter-spacing: 0.02em;
  margin-top: -8px;
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  letter-spacing: 0.5px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-bottom-left {
  display: flex;
  gap: 6px;
  justify-content: flex-start;
}

.footer-pill {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.04);
  padding: 6px 14px;
  border-radius: 50px;
  transition: all var(--t-fast) var(--ease);
}

.footer-pill:hover { background: var(--gold); color: var(--white); }

.footer-bottom-center p {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 300;
  color: rgba(255,255,255,0.35);
  text-align: center;
  white-space: nowrap;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
}

.footer-credit-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.footer-credit-link {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  padding: 6px 14px;
  border-radius: 50px;
  transition: all var(--t-fast) var(--ease);
}

.footer-credit-link:hover { background: var(--gold); color: var(--white); }

.footer-top .container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  text-align: center;
}

.contact-hero-inner h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.contact-hero-inner h1 em { font-style: italic; color: var(--gold); }

.contact-hero-inner p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.8;
}

.contact-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-block:last-child { border-bottom: none; }

.contact-info-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.contact-info-block h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.contact-info-block p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

.contact-info-block a { color: var(--gold); font-weight: 500; }
.contact-info-block a:hover { color: var(--gold-dark); }

.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* ============================================
   ABOUT PAGE
============================================ */
.about-hero {
  padding: 160px 0 80px;
  background: var(--dark);
  text-align: center;
}

.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 12px;
}

.about-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
  font-style: italic;
}

.about-hero p {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  font-style: italic;
}

.about-story-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story-image { position: relative; }

.about-story-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.about-img-badge span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 4px;
}

.about-img-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.about-mv-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 32px;
}

.about-mv-item-inline {
  background: rgba(58,163,53,0.06);
  border: 1px solid rgba(58,163,53,0.15);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 20px;
}

.about-mv-item-inline strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.about-mv-item-inline p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

.about-why-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.section-header-about {
  text-align: center;
  margin-bottom: 64px;
}

.section-header-about h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
}

.section-header-about h2 em { font-style: italic; color: var(--gold); }

.about-why-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gold);
  margin-top: 8px;
  font-style: italic;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.about-why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: background var(--t-mid) var(--ease);
}

.about-why-item:nth-child(even) { border-right: none; }
.about-why-item:nth-last-child(-n+2) { border-bottom: none; }
.about-why-item:hover { background: rgba(58,163,53,0.04); }

.why-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity var(--t-mid) var(--ease);
}

.about-why-item:hover .why-number { opacity: 0.6; }

.about-why-item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.about-why-item p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

.about-stats-section {
  padding: 80px 0;
  background: var(--gold);
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.about-stat .stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}

.about-stat .stat-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

.about-tagline {
  text-align: center;
  margin-top: 48px;
  padding: 32px;
  border-top: 1px solid var(--border);
}

.about-tagline h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 2px;
}

.about-cta-section {
  padding: var(--section-pad) 0;
  background: var(--dark);
  text-align: center;
}

.about-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.about-cta-inner h2 em { font-style: italic; color: var(--gold); }

.about-cta-inner p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}

.about-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-contact-details {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 2;
}

.about-contact-details a { color: var(--gold); }

/* ============================================
   TOUR DETAIL PAGES
============================================ */
.tour-hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.tour-hero-content {
  position: relative;
  z-index: 2;
}

.tour-back-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
  transition: color var(--t-fast) var(--ease);
}

.tour-back-link:hover { color: var(--gold); }

.tour-hero-tag {
  display: inline-block;
  background: rgba(200,134,10,0.25);
  border: 1px solid rgba(200,134,10,0.5);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  width: fit-content;
}

.tour-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.tour-hero-content h1 em { font-style: italic; color: var(--gold); }

.tour-hero-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.tour-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tour-hero-meta span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
}

.tour-pricing-bar {
  background: var(--dark);
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.tour-pricing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.tour-pricing-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.tour-price-item {
  text-align: center;
  padding: 20px 28px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  min-width: 160px;
}

.tour-price-item.featured {
  border-color: var(--gold);
  background: rgba(200,134,10,0.08);
}

.price-season {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.price-note {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}

.tour-pricing-cta { text-align: center; }

.price-note-small {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

.tour-pax-table-section {
  padding: 60px 0;
  background: var(--cream);
}

.tour-section-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

.tour-pax-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin: 28px 0 12px;
}

.tour-validity-note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 20px;
}

.tour-pax-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.tour-pax-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.tour-pax-table th {
  background: var(--dark);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tour-pax-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  background: var(--white);
}

.tour-pax-table .peak-row td {
  background: rgba(200,134,10,0.06);
  font-weight: 500;
}

.tour-pax-table tr:last-child td { border-bottom: none; }

.tour-pax-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-light);
  font-style: italic;
}

.tour-other-camps { margin-top: 32px; }

.tour-other-camps h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.tour-camp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tour-camp-links a {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all var(--t-fast) var(--ease);
}

.tour-camp-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.tour-itinerary-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.tour-detail-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.tour-day-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.tour-day-block:last-child { border-bottom: none; }

.tour-day-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.tour-day-num {
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}

.tour-day-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
}

.tour-day-content p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 12px;
}

.tour-day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tour-day-meta span {
  background: var(--cream);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 50px;
}

.tour-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tour-sidebar-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}

.tour-sidebar-card.excluded {
  background: rgba(220,50,50,0.03);
  border-color: rgba(220,50,50,0.15);
}

.tour-sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.tour-included-list,
.tour-excluded-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tour-included-list li,
.tour-excluded-list li {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.5;
}

.tour-sidebar-book {
  background: var(--dark);
  border-radius: 16px;
  padding: 24px;
}

.tour-sidebar-book h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.tour-sidebar-book p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 20px;
}

.tour-sidebar-book .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  margin-bottom: 12px;
}

.tour-email-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px;
  transition: all var(--t-fast) var(--ease);
  text-align: center;
}

.tour-email-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200,134,10,0.08);
}

.tour-related-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.tour-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tour-related-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--t-mid) var(--ease-out);
  display: block;
}

.tour-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tour-related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.tour-related-info { padding: 16px; }

.tour-related-info span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.tour-related-info h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

/* ============================================
   LEGAL PAGES
============================================ */
#legal-page { background: var(--cream); }

.legal-hero {
  padding: 180px 0 60px;
  background: var(--dark);
  text-align: center;
}

.legal-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.legal-updated {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.legal-content { padding: 80px 0 120px; }

.legal-container { max-width: 820px; }

.legal-container h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 16px;
  line-height: 1.3;
}

.legal-container h2:first-child { margin-top: 0; }

.legal-container p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
}

.legal-container ul {
  margin: 16px 0 24px;
  padding-left: 24px;
  list-style: disc;
}

.legal-container ul li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 10px;
}

.legal-container strong {
  font-weight: 600;
  color: var(--dark);
}

/* ============================================
   WHATSAPP FLOAT BUTTON
============================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: auto;
  height: auto;
}

.wa-float a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--t-mid) var(--ease-out);
  position: relative;
}

.wa-float a::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.25);
  animation: wa-pulse 2.5s ease-out infinite;
}

.wa-float a:hover { transform: scale(1.1); }

.wa-float svg {
  width: 26px;
  height: 26px;
  fill: white;
  position: relative;
  z-index: 1;
  display: block;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ============================================
   RESPONSIVE - TABLET (1100px and below)
============================================ */
@media (max-width: 1100px) {
  .experience-row { grid-template-columns: 60px 1fr auto; }
  .exp-image { display: none; }
  .tour-detail-inner { grid-template-columns: 1fr; }
  .tour-sidebar { position: static; }

  .footer-top-grid { grid-template-columns: 1fr; gap: 56px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-wordmark { font-size: clamp(3rem, 18vw, 10rem); }
}

/* ============================================
   RESPONSIVE - MOBILE (900px and below)
   This is the main mobile breakpoint.
   Navbar becomes 80px tall, fixed at top.
   Any page that does NOT start with a full-height
   hero needs to clear that 80px so content
   isn't clipped under the navbar.
============================================ */
@media (max-width: 900px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 24px; }

  /* === NAV === */
  .nav-links,
  .nav-wa { display: none; }
  .hamburger { display: flex; }

  .nav-inner {
    height: var(--nav-height-mobile);
    padding: 0 24px;
  }

  .site-logo img { height: 56px; }

  /*
    Any first <section> inside <main> that is NOT a full-height
    hero gets padded down so it clears the fixed mobile navbar.
    Heroes (hero, tour-hero, dest-page-hero, gallery-page-hero,
    contact-hero, about-hero, legal-hero) already include their
    own padding-top of 140-180px so they're excluded here.
  */
  main > section:first-child:not(.hero):not(.tour-hero):not(.dest-page-hero):not(.gallery-page-hero):not(.contact-hero):not(.about-hero):not(.legal-hero) {
    padding-top: calc(var(--nav-height-mobile) + 24px);
  }

  /* === HERO === */
  .hero-content { padding: 0 24px 72px; }
  .hero-scroll-hint { display: none; }
  .hero-bar-inner { flex-wrap: wrap; gap: 8px; justify-content: center; }
  .hero-bar-item { padding: 4px 16px; font-size: 0.65rem; }
  .hero-bar-item::after { display: none; }

  /* === INQUIRY === */
  .inquiry-inner { grid-template-columns: 1fr; gap: 48px; }
  .inquiry-left { padding-right: 0; }
  .form-row { grid-template-columns: 1fr; }

  /* === DESTINATIONS === */
  .destinations-heading {
    padding: 72px 24px 56px;
    flex-direction: column;
  }
  .destinations-heading p {
    text-align: left;
    max-width: 100%;
  }
  .destination-block { min-height: 60vh; }
  .destination-content { padding: 60px 32px; max-width: 100%; }

  /* === EXPERIENCES === */
  .experience-row { grid-template-columns: 48px 1fr; gap: 16px; min-height: 64px; }
  .exp-wa { display: none; }
  .exp-image { display: none; }
  .experience-list { padding: 0 24px; }
  .experiences-top { padding: 0 24px; }

  /* === TOURS === */
  .tours-header {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
  }
  .tours-filters {
    padding: 0 24px;
    overflow-x: auto;
    padding-bottom: 8px;
    flex-wrap: nowrap;
  }
  .tours-filters::-webkit-scrollbar { display: none; }
  .tours-list { padding: 0 24px; }
  .tour-row { grid-template-columns: auto 1fr auto; min-height: 64px; }
  .tour-inquire { display: none; }

  /* === GALLERY === */
  .gallery-grid { columns: 2; padding: 0 24px; }
  .gallery-header { padding: 0 24px; }

  /* === STORY === */
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .story-content { padding-right: 0; }
  .story-image-wrap { transform: none; }
  .story-image-wrap img { height: 360px; }

  /* === TESTIMONIALS === */
  .testimonial-list { padding: 0 24px; }
  .testimonials-headline { padding: 0 24px; }
  .live-reviews-grid { grid-template-columns: 1fr; gap: 32px; }

  /* === JOURNAL === */
  .journal-header {
    padding: 0 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .journal-grid { grid-template-columns: 1fr; padding: 0 24px; }
  .journal-card:first-child { grid-row: span 1; }
  .journal-card-img { min-height: 240px; }
  .journal-footer { padding: 0 24px; }

  /* === CONTACT === */
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 32px 24px; }
  .contact-hero { padding: 140px 24px 60px; }

  /* === ABOUT === */
  .about-hero { padding: 140px 24px 60px; }
  .about-story-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story-image img { height: 300px; }
  .about-mv-inline { grid-template-columns: 1fr; gap: 12px; }
  .about-why-grid { grid-template-columns: 1fr; }
  .about-why-item { border-right: none; }
  .about-why-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .about-why-item:last-child { border-bottom: none; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-img-badge { left: 0; bottom: 16px; }

  /* === TOUR DETAIL === */
  .tour-hero { height: 60vh; padding-bottom: 40px; }
  .tour-hero-content h1 { font-size: 2.2rem; }
  .tour-pricing-inner { flex-direction: column; }
  .tour-pricing-grid { justify-content: center; }
  .tour-price-item { min-width: 120px; padding: 14px 16px; }
  .tour-related-grid { grid-template-columns: 1fr; }

  /* === GALLERY PAGE === */
  .gallery-page-section { padding: 40px 24px; }
  .gallery-page-grid { columns: 2; }
  .gallery-page-overlay { background: rgba(0,0,0,0.4); }
  .gallery-page-overlay-inner { opacity: 1; transform: translateY(0); }

  /* === DESTINATIONS PAGE === */
  .dest-page-hero { padding: 140px 24px 60px; }

  /* === LEGAL PAGES === */
  .legal-hero { padding: 140px 24px 48px; }
  .legal-content { padding: 56px 0 80px; }

  /* === PARTNERS === */
  .partnerships-logos { gap: 28px; }
  .partner-logo img { height: 44px; }
  .partners-scroll-wrap::before,
  .partners-scroll-wrap::after { width: 60px; }

  /* === FOOTER === */
  #site-footer { padding: 64px 0 24px; }
  .footer-inner { padding: 0 24px; }
  .footer-top .container { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-action-bar { flex-direction: column; align-items: stretch; gap: 20px; }
  .footer-ctas { flex-direction: column; width: 100%; }
  .footer-cta-primary,
  .footer-cta-secondary { justify-content: center; }
  .footer-socials { justify-content: center; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer-bottom-left,
  .footer-bottom-right { justify-content: center; }

  /* === ACCESSIBILITY === */
  .btn { min-height: 44px; }
  input, select, textarea { font-size: 16px; }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (640px and below)
============================================ */
@media (max-width: 640px) {
  :root { --section-pad: 64px; }

  .hero-headline { font-size: clamp(3rem, 13vw, 5rem); letter-spacing: -1px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  .inquiry-stats { flex-direction: column; gap: 16px; }
  .inquiry-stat {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 16px 0;
  }
  .inquiry-stat:last-child { border-bottom: none; }
  .inquiry-right { padding: 28px 20px; }

  .destination-block { min-height: 50vh; }
  .destination-content { padding: 48px 20px; }
  .destination-name { font-size: 2.5rem; }

  .story-stats { flex-wrap: wrap; gap: 20px; }

  .tours-filter-btn { padding: 10px 16px; font-size: 0.7rem; }

  .exp-number { font-size: 2.5rem; }
  .exp-name { font-size: 1.2rem; }

  .cta-heading { font-size: clamp(2rem, 8vw, 3rem); }

  .wa-float { bottom: 20px; right: 20px; }
  .wa-float a { width: 48px; height: 48px; }

  .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .about-stat .stat-number { font-size: 2.5rem; }
  .about-cta-btns { flex-direction: column; align-items: center; }

  .tour-related-grid { grid-template-columns: 1fr; }
  .tour-pax-table-section { padding: 40px 0; }

  .footer-cols { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL (480px and below)
============================================ */
@media (max-width: 480px) {
  .hero-content { padding: 0 20px 60px; }
  .hero-bar-item { font-size: 0.65rem; padding: 0 10px; }

  .destinations-heading { padding: 60px 20px 48px; }
  .destinations-heading h2 { font-size: 2.5rem; }

  .experience-list { padding: 0 16px; }
  .experiences-top { padding: 0 16px; }
  .exp-name { font-size: 1rem; }
  .exp-number { font-size: 2rem; }
  .experience-row { gap: 12px; padding: 18px 0; }

  .tours-header { padding: 0 16px; }
  .tours-filters { padding: 0 16px; }
  .tours-filter-btn { padding: 8px 12px; font-size: 0.7rem; }
  .tours-list { padding: 0 16px; }
  .tour-name { font-size: 0.9rem; }
  .tour-dest { font-size: 0.6rem; min-width: 70px; }
  .tour-duration { display: none; }

  .gallery-grid { columns: 2; column-gap: 4px; padding: 0 16px; }
  .gallery-header { padding: 0 16px; margin-bottom: 32px; }

  .story-image-badge { display: none; }

  .testimonials-headline { font-size: 2rem; padding: 0 20px; }
  .testimonial-list { padding: 0 20px; }
  .testimonial-text { font-size: 1rem; }

  .journal-grid { padding: 0 16px; }
  .journal-header { padding: 0 16px; }

  .partnerships-logos { gap: 16px; padding: 0 20px; }
  .partner-logo img { height: 32px; }

  .cta-section { padding: 72px 20px; }

  .gallery-page-section { padding: 40px 16px; }
  .gallery-page-hero { padding: 140px 24px 60px; }
  .gallery-page-grid { columns: 2; column-gap: 4px; }

  .tour-modal-box { padding: 28px 20px; }
  .tour-modal-name { font-size: 1.1rem; }

  .footer-top .container { grid-template-columns: 1fr; }
}

/* ============================================
   REDUCED MOTION
============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   GLOBAL FONT SCALE — CLIENT REQUEST 2X LARGER
   Single source of truth. Because the theme uses
   rem, em, and clamp() throughout, scaling the
   root font-size cascades to every element.
============================================ */
html {
  font-size: 26px;
}

@media (max-width: 900px) {
  html { font-size: 22px; }
}

@media (max-width: 640px) {
  html { font-size: 19px; }
}

@media (max-width: 480px) {
  html { font-size: 17px; }
}

/* === LAYOUT FIXES FOR LARGER TYPE === */

/* Navbar: was tight at desktop. Reduce horizontal padding so logo + links fit. */
.nav-inner {
  padding: 0 40px;
}

.nav-link {
  padding: 8px 10px;
  font-size: 0.82rem;
}

.site-logo img {
  height: 88px;
}

.nav-wa {
  padding: 8px 14px;
  font-size: 0.72rem;
}

/* Tour rows: name column needs to wrap properly now */
.tour-row {
  gap: 16px;
  padding: 24px 0;
}

.tour-name {
  font-size: 1rem;
  line-height: 1.3;
}

.tour-desc-preview {
  font-size: 0.7rem;
  max-width: 100%;
}

/* Tour pages: hero text overflow guard */
.tour-hero-content h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  word-wrap: break-word;
}

/* Inquiry form: stack labels/inputs more cleanly */
.form-field label {
  font-size: 0.62rem;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-size: 0.85rem;
  padding: 10px 0;
}

/* Footer: prevent wordmark from busting layout */
.footer-wordmark {
  font-size: 13vw;
}

/* Destinations heading on the homepage section: lower clamp ceiling */
.destinations-heading h2 {
  font-size: clamp(2rem, 4.5vw, 4rem);
}

/* Hero headline: lower clamp ceiling so the H doesn't overflow */
.hero-headline {
  font-size: clamp(3rem, 7vw, 6.5rem);
}

@media (max-width: 900px) {
  .nav-inner { padding: 0 16px; }
  .nav-wa, .nav-links { display: none; }
  .site-logo img { height: 52px; }

  .tour-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }
  .tour-dest { min-width: 0; }
  .tour-duration { display: none; }
}

/* ============================================
   DESTINATIONS PAGE — CLIENT REQUEST
   Full-bleed image with ONLY the destination name
   overlaid. All other content sits cleanly below.
============================================ */
#destinations-page .destination-overlay {
  display: none;
}

#destinations-page .destination-block {
  display: block;
  min-height: 0;
  overflow: visible;
  margin-bottom: 0;
}

/* Wrap image in its own visual zone */
#destinations-page .destination-block img {
  position: relative;
  inset: auto;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  object-fit: cover;
  display: block;
}

/* Destination name floats over the image, bottom-left */
#destinations-page .destination-content {
  position: relative;
  z-index: 2;
  display: block;
  background: var(--cream);
  padding: 60px 80px;
  max-width: 100%;
}

/* The name gets lifted UP onto the image */
#destinations-page .destination-name {
  position: absolute;
  bottom: 100%;
  left: 80px;
  margin-bottom: 40px;
  color: var(--white);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.5);
  pointer-events: none;
  z-index: 3;
}

/* Hide the in-cream flag tag since the name is on the image now.
   Keep the description, highlights, and links below in cream. */
#destinations-page .destination-flag {
  color: var(--gold-dark);
  margin-bottom: 16px;
}

#destinations-page .destination-desc {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 720px;
  margin-bottom: 24px;
}

#destinations-page .dest-page-highlights span {
  background: rgba(200,134,10,0.12);
  border-color: rgba(200,134,10,0.35);
  color: var(--gold-dark);
}

#destinations-page .dest-tour-links h4 {
  color: var(--gold-dark);
}

#destinations-page .dest-tour-links a {
  color: var(--text);
  border-bottom-color: var(--border);
}

#destinations-page .dest-tour-links a:hover {
  color: var(--gold);
}

#destinations-page .destination-link {
  color: var(--dark);
  margin-top: 16px;
}

#destinations-page .destination-link:hover {
  color: var(--gold);
}

#destinations-page .dest-coming-soon {
  color: var(--text-light);
}

/* === MOBILE === */
@media (max-width: 900px) {
  #destinations-page .destination-block img {
    height: 50vh;
    min-height: 320px;
  }

  #destinations-page .destination-content {
    padding: 40px 24px;
  }

  #destinations-page .destination-name {
    left: 24px;
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 12vw, 5rem);
    letter-spacing: -1px;
  }
}

@media (max-width: 480px) {
  #destinations-page .destination-block img {
    height: 40vh;
    min-height: 260px;
  }

  #destinations-page .destination-name {
    left: 20px;
    margin-bottom: 20px;
    font-size: clamp(2rem, 14vw, 4rem);
  }
}

/* ============================================
   EXPLORE SAFARIS CTA BANNER
   Sits between hero and inquiry on homepage.
   Replaces the removed sticky mobile bar.
============================================ */
.explore-cta {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.explore-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,134,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.explore-cta::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58,163,53,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.explore-cta-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.explore-cta-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.explore-cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.explore-cta-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.explore-cta-text p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 460px;
}

.explore-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}

.explore-cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 22px 28px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all var(--t-mid) var(--ease-out);
  border: 1.5px solid transparent;
}

.explore-cta-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  transition: transform var(--t-mid) var(--ease-out);
}

.explore-cta-btn span {
  flex: 1;
}

.explore-cta-btn.primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 8px 32px rgba(200,134,10,0.3);
}

.explore-cta-btn.primary svg {
  stroke: var(--white);
}

.explore-cta-btn.primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(200,134,10,0.45);
}

.explore-cta-btn.primary:hover svg {
  transform: translateX(6px);
}

.explore-cta-btn.secondary {
  background: rgba(37,211,102,0.12);
  color: var(--white);
  border-color: rgba(37,211,102,0.3);
}

.explore-cta-btn.secondary svg {
  width: 22px;
  height: 22px;
  fill: #25d366;
}

.explore-cta-btn.secondary:hover {
  background: #25d366;
  border-color: #25d366;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.35);
}

@media (max-width: 900px) {
  .explore-cta {
    padding: 64px 0;
  }
  .explore-cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .explore-cta-text p {
    max-width: 100%;
  }
  .explore-cta-btn {
    padding: 18px 22px;
    font-size: 0.92rem;
  }
}

/* ============================================
   HIDE FLOATING WHATSAPP + STICKY BAR ON MOBILE
   No more floating clutter. CTAs live inline.
============================================ */
@media (max-width: 900px) {
  .wa-float,
  .mobile-action-bar {
    display: none !important;
  }

  body {
    padding-bottom: 0;
  }
}

/* ============================================
   FIX: MOBILE NAVBAR CLIPPING ON TOUR DETAIL PAGES
   The tour-hero is supposed to sit behind the nav,
   but with the larger font scale + tag/title content,
   the top of the hero text gets clipped under the
   fixed 80px navbar.
   
   Solution: push the hero content down on mobile so
   the visible portion of the hero text clears the nav.
============================================ */
@media (max-width: 900px) {
  .tour-hero {
    padding-top: calc(var(--nav-height-mobile) + 32px);
    height: auto;
    min-height: 70vh;
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .tour-hero-content {
    padding-top: 24px;
  }

  /* Also ensure the back-link and tag don't get squeezed */
  .tour-back-link {
    margin-bottom: 20px;
  }

  .tour-hero-tag {
    margin-bottom: 14px;
  }
}