/* ============================================================
   BEYOND THE KASBAH — DESIGN SYSTEM
   Private Sahara Journeys · Morocco
   ============================================================ */

/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  --navy:        #2C1F14;
  --navy-dark:   #1A120A;
  --gold:        #C4963A;
  --gold-light:  #E8C88A;
  --gold-pale:   #F5EBD4;
  --ivory:       #FAF7F0;
  --ivory-dark:  #F0E8D8;
  --charcoal:    #2A2218;
  --charcoal-lt: #6B5F52;
  --clay:        #C4714A;
  --sand:        #E8C88A;
  --white:       #FFFFFF;
  --black:       #0A0A0A;

  --section-pad: 120px;
  --max-width:   1280px;
  --nav-height:  88px;

  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --trans-fast:  0.2s ease;
  --trans-base:  0.4s var(--ease-in-out);
  --trans-slow:  0.75s var(--ease-luxury);
}

/* --- RESET & BASE --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Jost', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  background-color: var(--ivory);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
ul { list-style: none; }

/* --- CUSTOM CURSOR (desktop) --- */
.cursor {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.3s ease;
  opacity: 0;
  mix-blend-mode: multiply;
}
.cursor.active { opacity: 1; }
.cursor.hover  { width: 22px; height: 22px; }

.cursor-ring {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease, opacity 0.35s ease;
  opacity: 0;
}
.cursor-ring.active { opacity: 0.5; }
.cursor-ring.hover  { width: 56px; height: 56px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', 'Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h1 { font-size: clamp(44px, 6vw, 72px); }
h2 { font-size: clamp(32px, 4vw, 48px); }
h3 { font-size: clamp(24px, 3vw, 32px); }
h4 { font-size: clamp(20px, 2vw, 24px); }
h5 { font-size: 18px; }

.display-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.display-italic {
  font-style: italic;
  font-weight: 300;
}

.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}

p { margin-bottom: 1.4em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--charcoal-lt);
}

.caption {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal-lt);
}

/* --- GOLD DIVIDER --- */
.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 28px 0;
}
.divider.center { margin: 28px auto; }

/* --- LAYOUT --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

.section { padding: var(--section-pad) 0; }

.section-ivory   { background: var(--ivory); }
.section-white   { background: var(--white); }
.section-navy    { background: var(--navy); color: var(--white); }
.section-dark    { background: var(--navy-dark); color: var(--white); }
.section-charcoal { background: var(--charcoal); color: var(--white); }

.section-navy h1,
.section-navy h2,
.section-navy h3,
.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }
.text-navy   { color: var(--navy) !important; }

/* --- NAVIGATION --- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.45s ease, height 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

#navbar.scrolled {
  height: 70px;
  background: rgba(26, 18, 10, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(196, 150, 58, 0.12);
}

.nav-logo img {
  height: 46px;
  width: auto;
  display: block;
  transition: height 0.35s ease;
}

#navbar.scrolled .nav-logo img { height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links li a {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--trans-fast);
}

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

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

.nav-cta {
  font-size: 10px !important;
  font-weight: 400 !important;
  letter-spacing: 2.5px !important;
  padding: 10px 24px !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: background var(--trans-base), color var(--trans-base) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --- HERO --- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 9s var(--ease-luxury);
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(17, 28, 53, 0.25) 0%,
    rgba(17, 28, 53, 0.5)  45%,
    rgba(17, 28, 53, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 860px;
  padding: 0 40px;
}

.hero-content h1,
.hero-content .display-title {
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0,0,0,0.2);
  margin-bottom: 28px;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- PRESS TRUST BAR --- */
.press-bar {
  padding: 32px 0;
  background: var(--white);
  border-bottom: 1px solid var(--ivory-dark);
}

.press-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.press-label {
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  opacity: 0.6;
  white-space: nowrap;
}

.press-logos {
  display: flex;
  align-items: center;
  gap: 48px;
}

.press-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--charcoal-lt);
  opacity: 0.45;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.press-logo:hover { opacity: 0.7; }

.press-sep {
  width: 1px;
  height: 20px;
  background: var(--ivory-dark);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 44px;
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  transition: color var(--trans-base), background var(--trans-base), border-color var(--trans-base);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-luxury);
  z-index: 0;
}

.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn > * { position: relative; z-index: 1; }
.btn span { position: relative; z-index: 1; }

.btn-gold-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-gold-outline::before { background: var(--gold); }
.btn-gold-outline:hover  { color: var(--navy); }

.btn-gold-solid {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--navy);
}
.btn-gold-solid::before { background: var(--navy-dark); }
.btn-gold-solid:hover   { color: var(--white); border-color: var(--navy-dark); }

.btn-white-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--white);
}
.btn-white-outline::before { background: var(--white); }
.btn-white-outline:hover   { color: var(--navy); }

.btn-navy {
  background: var(--navy);
  border: 1px solid var(--navy);
  color: var(--white);
}
.btn-navy::before { background: var(--gold); }
.btn-navy:hover   { color: var(--navy); border-color: var(--gold); }

.btn-sm { padding: 11px 28px; font-size: 9px; letter-spacing: 3px; }
.btn-lg { padding: 20px 56px; font-size: 11px; }

/* --- JOURNEY CARDS --- */
.journey-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.journey-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.journey-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease-luxury);
}

.journey-card:hover .journey-card-img { transform: scale(1.07); }

.journey-card-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(17,28,53,0.85);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 14px;
}

.journey-card-body {
  padding: 28px 0 40px;
}

.journey-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.journey-card-days {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.journey-card-sep {
  width: 20px;
  height: 1px;
  background: var(--gold-light);
}

.journey-card-from {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--charcoal-lt);
}

.journey-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}

.journey-card-desc {
  font-size: 15px;
  color: var(--charcoal-lt);
  line-height: 1.75;
  margin-bottom: 24px;
}

.journey-card-link {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.journey-card-link::after {
  content: '→';
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.journey-card-link:hover { color: var(--gold); gap: 16px; }
.journey-card-link:hover::after { transform: translateX(4px); }

/* --- EDITORIAL CARDS (full image overlay) --- */
.card-editorial {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
}

.card-editorial img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-luxury);
}

.card-editorial:hover img { transform: scale(1.06); }

.card-editorial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,28,53,0.88) 0%, rgba(17,28,53,0.15) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  color: var(--white);
  transition: background 0.4s ease;
}

.card-editorial:hover .card-editorial-overlay {
  background: linear-gradient(to top, rgba(17,28,53,0.95) 0%, rgba(17,28,53,0.35) 55%);
}

/* --- TESTIMONIALS --- */
.testimonial-section {
  background: var(--navy);
  padding: var(--section-pad) 0;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
}

.testimonial-item {
  background: var(--navy);
  padding: 56px 44px;
  position: relative;
}

.testimonial-item::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 28px; left: 36px;
  line-height: 1;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 32px;
  padding-top: 20px;
}

.testimonial-author {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-origin {
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* --- STATS SECTION --- */
.stats-section {
  padding: 100px 0;
  background: var(--ivory);
  border-top: 1px solid var(--ivory-dark);
  border-bottom: 1px solid var(--ivory-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: var(--ivory-dark);
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 10px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-top: 12px;
  display: block;
}

/* --- PHILOSOPHY / VALUES --- */
.value-item {
  text-align: center;
  padding: 0 16px;
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 28px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
}

/* --- FULL-BLEED IMAGE SECTION --- */
.full-bleed {
  position: relative;
  height: 560px;
  overflow: hidden;
}

.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s var(--ease-luxury);
}

.full-bleed:hover img { transform: scale(1.04); }

.full-bleed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,28,53,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- ITINERARY TIMELINE --- */
.itinerary-timeline {
  position: relative;
  padding-left: 80px;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light), transparent);
}

.timeline-day {
  position: relative;
  margin-bottom: 64px;
}

.timeline-day::before {
  content: '';
  position: absolute;
  left: -57px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--ivory);
}

.timeline-day-label {
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-day-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 20px;
}

.timeline-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.timeline-slot {
  padding: 20px 20px;
  border-left: 2px solid var(--ivory-dark);
}

.timeline-slot-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.timeline-slot-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.7;
}

/* --- PRICING TABLES --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ivory-dark);
}

.pricing-card {
  background: var(--white);
  padding: 56px 44px 48px;
  position: relative;
}

.pricing-card.featured {
  background: var(--navy);
  color: var(--white);
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-price { color: var(--white); }

.pricing-badge {
  position: absolute;
  top: 0; right: 32px;
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 16px;
}

.pricing-tier {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.pricing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}

.pricing-from {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 32px;
}

.pricing-divider {
  width: 100%; height: 1px;
  background: var(--ivory-dark);
  margin: 32px 0;
}

.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.12); }

.pricing-includes {
  margin-bottom: 36px;
}

.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid var(--ivory-dark);
  color: var(--charcoal);
}

.pricing-card.featured .pricing-includes li {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.1);
}

.pricing-includes li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  margin-top: 12px;
  flex-shrink: 0;
}

/* --- GALLERY / MASONRY --- */
.masonry-grid {
  columns: 4;
  column-gap: 12px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-luxury), filter 0.4s ease;
}

.masonry-item:hover img { transform: scale(1.04); filter: brightness(0.88); }

.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,28,53,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.masonry-item:hover .masonry-item-overlay { background: rgba(17,28,53,0.3); }

.masonry-zoom {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.masonry-item:hover .masonry-zoom { opacity: 1; transform: scale(1); }

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10,10,10,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 28px; right: 36px;
  color: rgba(255,255,255,0.7);
  font-size: 28px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}
.lightbox-close:hover { color: var(--white); transform: rotate(90deg); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px;
  transition: color 0.2s ease;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

/* --- FORMS --- */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--charcoal-lt);
  margin-bottom: 10px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-bottom: 1px solid var(--charcoal-lt);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  border-bottom-color: var(--gold);
}

.form-textarea { resize: vertical; min-height: 140px; }

/* --- MODAL --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(10,10,10,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 24px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--ivory);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 56px 52px;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s var(--ease-luxury);
}

.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--charcoal-lt);
  transition: color 0.2s ease, transform 0.2s ease;
}
.modal-close:hover { color: var(--navy); transform: rotate(90deg); }

/* --- BLOG --- */
.blog-post-header {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.blog-post-header h1 { color: var(--white); max-width: 800px; margin: 0 auto 24px; }

.blog-hero-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.blog-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 72px 60px;
}

.blog-body h2 {
  font-size: 32px;
  margin: 52px 0 20px;
}

.blog-body h3 {
  font-size: 22px;
  margin: 36px 0 16px;
}

.blog-body p { font-size: 17px; line-height: 1.85; color: var(--charcoal); }

.blog-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 8px 32px;
  margin: 40px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.5;
}

/* --- FOOTER --- */
#footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 88px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.75;
  max-width: 280px;
  margin-top: 20px;
}

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  letter-spacing: 0.5px;
  opacity: 0.4;
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.2s ease;
}

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

/* --- COOKIE BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: -120px;
  left: 0; right: 0;
  z-index: 9000;
  background: rgba(17,28,53,0.97);
  backdrop-filter: blur(12px);
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: bottom 0.5s var(--ease-luxury);
  border-top: 1px solid rgba(201,168,76,0.2);
}

.cookie-banner.visible { bottom: 0; }

.cookie-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  flex: 1;
}

.cookie-text a { color: var(--gold); text-decoration: none; }

.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* --- STICKY ENQUIRE BUTTON --- */
.sticky-enquire {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 800;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.sticky-enquire.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* --- PAGE HEADER (non-hero pages) --- */
.page-header {
  padding: calc(var(--nav-height) + 88px) 0 88px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header .lead { color: rgba(255,255,255,0.65); max-width: 600px; margin: 0 auto; }

/* --- TEAM CARDS --- */
.team-card { text-align: center; }

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.5s ease;
}

.team-card:hover .team-photo { filter: grayscale(0%); }

.team-info { padding: 24px 16px 0; }

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-role {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* --- SCROLL ANIMATIONS --- */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease-luxury), transform 0.85s var(--ease-luxury);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.visible { opacity: 1; }

.fade-up.delay-1 { transition-delay: 0.12s; }
.fade-up.delay-2 { transition-delay: 0.24s; }
.fade-up.delay-3 { transition-delay: 0.36s; }
.fade-up.delay-4 { transition-delay: 0.48s; }

/* --- CURRENCY TOGGLE --- */
.currency-toggle {
  display: inline-flex;
  border: 1px solid var(--ivory-dark);
  overflow: hidden;
  margin-bottom: 48px;
}

.currency-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--charcoal-lt);
  transition: background 0.25s ease, color 0.25s ease;
}

.currency-btn.active {
  background: var(--navy);
  color: var(--white);
}

/* --- GROUP CALCULATOR --- */
.calculator {
  background: var(--white);
  padding: 52px;
  border: 1px solid var(--ivory-dark);
  max-width: 680px;
  margin: 0 auto;
}

.calculator-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 2px;
  background: var(--ivory-dark);
  outline: none;
  margin: 20px 0 8px;
  cursor: pointer;
}

.calculator-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

/* --- WHATSAPP BUTTON --- */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: background 0.25s ease;
}

.whatsapp-btn:hover { background: #1ebe58; }

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet 1024px */
@media (max-width: 1024px) {
  :root { --section-pad: 88px; }

  .container { padding: 0 40px; }
  #navbar { padding: 0 40px; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  .masonry-grid { columns: 3; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .timeline-slots { grid-template-columns: 1fr; }
}

/* Mobile 768px */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  body { cursor: auto; font-size: 16px; }
  .cursor, .cursor-ring { display: none; }

  .container { padding: 0 24px; }
  #navbar { padding: 0 24px; }

  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80vw; max-width: 340px;
    height: 100vh;
    background: var(--navy-dark);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 40px 40px;
    transition: right 0.45s var(--ease-luxury);
    z-index: 999;
  }

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

  .nav-links li a {
    font-size: 13px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85);
  }

  .nav-cta {
    padding: 12px 24px !important;
    border: 1px solid var(--gold) !important;
  }

  .nav-toggle { display: flex; }

  .hero-content { padding: 0 24px; }

  .grid-2,
  .grid-3,
  .grid-4 { grid-template-columns: 1fr; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }

  .masonry-grid { columns: 2; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-item { padding: 40px 28px; }

  .itinerary-timeline { padding-left: 48px; }
  .itinerary-timeline::before { left: 16px; }
  .timeline-day::before { left: -37px; }

  .blog-body { padding: 48px 24px; }

  .cookie-banner { padding: 20px 24px; flex-direction: column; align-items: flex-start; }

  .press-logos { gap: 24px; flex-wrap: wrap; justify-content: center; }

  .modal { padding: 40px 28px; }

  .calculator { padding: 32px 24px; }
}

/* Small mobile 480px */
@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
  .pricing-card { padding: 40px 28px; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* 1440px wide screens */
@media (min-width: 1440px) {
  :root { --section-pad: 140px; }
  .container { padding: 0 80px; }
  #navbar { padding: 0 80px; }
}

/* ============================================================
   BEYOND THE KASBAH — BRAND COMPONENTS
   ============================================================ */

/* --- STICKY WHATSAPP --- */
.sticky-whatsapp {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 13px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease;
  pointer-events: none;
}
.sticky-whatsapp.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.sticky-whatsapp:hover { background: #1ebe58; }
.sticky-whatsapp svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

/* --- TRUST GRID --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.trust-item {
  padding: 36px 32px;
  border: 1px solid var(--ivory-dark);
  background: var(--white);
}

.trust-item-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 24px;
}

.trust-item-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold); fill: none; stroke-width: 1.4;
}

.trust-item h4 {
  font-size: 19px;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}

.trust-item p {
  font-size: 15px;
  color: var(--charcoal-lt);
  line-height: 1.75;
  margin: 0;
}

/* --- COMFORT CARDS --- */
.comfort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ivory-dark);
}

.comfort-card {
  background: var(--white);
  padding: 48px 36px;
}

.comfort-card.featured {
  background: var(--navy);
}

.comfort-card.featured h3,
.comfort-card.featured h4,
.comfort-card.featured p { color: rgba(255,255,255,0.85); }

.comfort-card.featured .comfort-tag { color: var(--gold); }

.comfort-tag {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.comfort-card h4 { font-size: 24px; margin-bottom: 16px; }

.comfort-card ul { margin-top: 20px; }

.comfort-card ul li {
  font-size: 15px;
  color: var(--charcoal-lt);
  padding: 9px 0;
  border-bottom: 1px solid var(--ivory-dark);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.comfort-card.featured ul li {
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.1);
}

.comfort-card ul li::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
  margin-top: 11px;
  flex-shrink: 0;
}

/* --- HOW IT WORKS STEPS --- */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--ivory-dark);
  align-items: start;
}

.step-item:last-child { border-bottom: none; }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  text-align: right;
}

.step-content h4 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--charcoal);
}

.step-content p {
  font-size: 15px;
  color: var(--charcoal-lt);
  margin: 0;
  line-height: 1.75;
}

/* --- INCLUDE / EXCLUDE LISTS --- */
.include-list, .exclude-list {
  margin: 0;
  padding: 0;
}

.include-list li, .exclude-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ivory-dark);
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.6;
}

.include-list li::before {
  content: '✓';
  color: var(--gold);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
  font-weight: 400;
}

.exclude-list li::before {
  content: '–';
  color: var(--charcoal-lt);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* --- FAQ --- */
.faq-list { margin: 0; padding: 0; }

.faq-item {
  border-bottom: 1px solid var(--ivory-dark);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--charcoal);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-question:hover { color: var(--navy); }

.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--ivory-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--gold);
  transition: transform 0.3s ease;
  font-style: normal;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-bottom: 0;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 16px;
  color: var(--charcoal-lt);
  line-height: 1.8;
  margin: 0;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--gold); }

/* --- JOURNEY META PILLS --- */
.journey-meta-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.journey-meta-pill {
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(201,150,58,0.4);
  color: var(--gold);
  padding: 6px 16px;
}

/* --- PRICE FACTOR LIST --- */
.price-factor-list { margin: 0; padding: 0; }

.price-factor {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--ivory-dark);
}

.price-factor-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}

.price-factor-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold); fill: none; stroke-width: 1.4;
}

.price-factor-content h5 {
  font-size: 16px;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.price-factor-content p {
  font-size: 14px;
  color: var(--charcoal-lt);
  margin: 0;
  line-height: 1.65;
}

/* --- RANGE CARD (pricing estimates) --- */
.range-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  padding: 40px 36px;
}

.range-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.range-card h4 {
  font-size: 22px;
  color: var(--charcoal);
}

.range-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
}

.range-card p {
  font-size: 14px;
  color: var(--charcoal-lt);
  margin: 0;
  line-height: 1.7;
}

/* --- GUIDE CHAPTER --- */
.chapter-wrap {
  padding: 80px 0;
  border-bottom: 1px solid var(--ivory-dark);
}

.chapter-wrap:last-child { border-bottom: none; }

.chapter-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: -40px;
}

.chapter-label {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* --- GUIDE COVER --- */
.guide-cover {
  background: var(--navy);
  color: var(--white);
  padding: 100px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guide-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 88 88'%3E%3Cpath d='M14 76 L14 40 C14 16 44 6 44 6 C44 6 74 16 74 40 L74 76' stroke='%23C4963A' stroke-width='1' fill='none'/%3E%3C/svg%3E") center/200px repeat;
  opacity: 0.04;
}

.guide-cover h1,
.guide-cover h2 { color: var(--white); }

/* --- SECTION CLAY ACCENT --- */
.section-clay { background: var(--clay); color: var(--white); }
.section-clay h1, .section-clay h2, .section-clay h3 { color: var(--white); }

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--navy);
  padding: 80px 60px;
  text-align: center;
}

.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 36px; }

/* --- WHATSAPP BANNER BUTTON --- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: #25D366;
  color: white;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: background 0.25s ease;
}

.btn-whatsapp:hover { background: #1ebe58; }
.btn-whatsapp svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }

/* --- DISCLAIMER TEXT --- */
.disclaimer {
  font-size: 13px;
  color: var(--charcoal-lt);
  font-style: italic;
  line-height: 1.7;
  border-left: 2px solid var(--gold-light);
  padding-left: 20px;
  margin-top: 32px;
}

/* --- TOUR OVERVIEW BOX --- */
.tour-overview {
  background: var(--ivory);
  border: 1px solid var(--ivory-dark);
  padding: 44px;
  margin-bottom: 60px;
}

.tour-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.tour-stat-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.tour-stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--charcoal);
  line-height: 1.3;
}

/* --- GALLERY FILTER --- */
.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.filter-btn {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 9px 22px;
  background: transparent;
  border: 1px solid var(--ivory-dark);
  color: var(--charcoal-lt);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* --- CONTACT FORM GRID --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* --- NOTE BOX --- */
.note-box {
  background: var(--ivory);
  border: 1px solid var(--gold-light);
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
}

.note-box p {
  font-size: 15px;
  color: var(--charcoal-lt);
  margin: 0;
  line-height: 1.75;
}

/* --- REVIEWS PLACEHOLDER --- */
.reviews-placeholder {
  text-align: center;
  padding: 64px;
  border: 1px dashed var(--ivory-dark);
  background: var(--white);
}

.reviews-placeholder p {
  font-size: 16px;
  color: var(--charcoal-lt);
  font-style: italic;
  margin: 0;
}

/* --- ROUTE MAP PLACEHOLDER --- */
.route-visual {
  background: var(--ivory);
  border: 1px solid var(--ivory-dark);
  aspect-ratio: 16/7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
}

/* --- PRINT STYLES (for guide PDF export) --- */
@media print {
  #navbar, .sticky-whatsapp, .cookie-banner { display: none !important; }
  .chapter-wrap { page-break-inside: avoid; }
  body { background: white; }
  .guide-cover { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* --- RESPONSIVE ADDITIONS --- */
@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .comfort-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .tour-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 768px) {
  .trust-grid { grid-template-columns: 1fr; }
  .step-item { grid-template-columns: 52px 1fr; gap: 20px; }
  .step-number { font-size: 44px; }
  .tour-overview-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-whatsapp { bottom: 20px; right: 20px; padding: 12px 18px; font-size: 10px; }
  .sticky-whatsapp .wa-label { display: none; }
  .cta-banner { padding: 64px 24px; }
  .guide-cover { padding: 72px 24px; }
  .tour-overview { padding: 28px 24px; }
  .range-card { padding: 28px 24px; }
}

@media (max-width: 480px) {
  .journey-meta-pills { gap: 8px; }
  .tour-overview-grid { grid-template-columns: 1fr 1fr; }
}
