/* =========================================================
   BOOK MOROCCO TRIPS — award edition (Website/Three)
   Cream canvas · deep desert-brown · terracotta · majorelle
   Fraunces display serif + Plus Jakarta Sans
   Moroccan horseshoe-arch image frames throughout
   ========================================================= */

:root {
  --cream: #F8F2E7;
  --sand: #EFE3CC;
  --ink: #1F0D05;
  --ink-soft: #3C2A1E;
  --terra: #B23A10; /* darkened from #DC4F1E for WCAG AA (A11Y-01): 4.5:1+ as accent text on cream/sand/white and white-on-terra buttons; large terra display text on dark ink still passes (3.0 large-text) */
  --terra-deep: #A93812;
  --terra-soft: #F9DECF;
  --majorelle: #2B49C4;
  --gold: #C8923B;
  --white: #FFFFFF;
  --muted: #6E5B49; /* darkened from #84715F for WCAG AA (A11Y-01): sub-text now 4.5:1+ on cream/white/sand */
  --border: #E3D5BC;
  --r-lg: 28px;
  --r-md: 18px;
  --arch: 999px 999px 22px 22px;
  --shadow: 0 18px 44px rgba(31, 13, 5, 0.13);
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Plus Jakarta Sans', Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink-soft);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section { padding: 104px 0; }

h1, h2, h3 { font-family: var(--display); font-weight: 600; color: var(--ink); line-height: 1.06; letter-spacing: -0.015em; }
h4, h5 { color: var(--ink); }
h1 em, h2 em { font-style: italic; color: var(--terra); }

.section-title { font-size: clamp(34px, 4.6vw, 58px); margin-bottom: 20px; }
.section-sub { color: var(--muted); max-width: 580px; font-size: 17px; margin-bottom: 56px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 22px;
}
.eyebrow::before { content: "✦"; font-size: 14px; }
.eyebrow.light { color: #FFC9AE; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--terra); color: #fff; border-color: var(--terra-deep); box-shadow: 0 8px 22px rgba(220, 79, 30, 0.35); }
.btn-primary:hover { background: #EC5E2B; }
.btn-light { background: var(--white); color: var(--ink); box-shadow: 0 8px 22px rgba(31,13,5,0.2); }
.btn-outline { border-color: rgba(255,255,255,0.4); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-lg { padding: 18px 38px; font-size: 16px; }
.btn .arr { transition: transform 0.25s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink);
  display: grid; place-items: center;
  transition: transform 0.8s var(--ease);
}
.preloader.done { transform: translateY(-100%); }
.preloader-word {
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 54px);
  font-style: italic;
  color: var(--cream);
  overflow: hidden;
}
.preloader-word span { display: inline-block; animation: plRise 0.9s var(--ease) both; }
.preloader-word span em { color: var(--terra); font-style: italic; }
@keyframes plRise { from { transform: translateY(110%); } to { transform: translateY(0); } }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
}
.navbar.scrolled { background: rgba(31, 13, 5, 0.88); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 6px 30px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; gap: 36px; height: 84px; }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo-text { font-family: var(--display); font-weight: 600; font-size: 19px; color: #fff; line-height: 1.1; }
.nav-logo-text em { color: var(--terra); font-style: italic; }

.nav-links { display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.active { background: rgba(255,255,255,0.12); color: #fff; }
.nav-cta { display: flex; gap: 10px; }

.nav-burger { display: none; margin-left: auto; background: none; border: 0; width: 46px; height: 46px; flex-direction: column; justify-content: center; align-items: center; gap: 6px; cursor: pointer; }
.nav-burger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.25s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; padding: 10px 28px 28px; background: rgba(31,13,5,0.96); backdrop-filter: blur(16px); }
.nav-mobile a { color: #fff; text-decoration: none; font-weight: 600; font-size: 17px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav-mobile a:last-child { border: 0; }
.nav-mobile.open { display: flex; }

/* =========================================================
   PAGE HERO (shared dark band for inner pages)
   ========================================================= */
.page-hero {
  background: var(--ink);
  background-image: radial-gradient(900px 420px at 85% -10%, rgba(220, 79, 30, 0.25), transparent 60%);
  color: #fff;
  padding: 180px 0 110px;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: #fff; font-size: clamp(40px, 6vw, 72px); max-width: 800px; }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin-top: 20px; font-size: 18px; }
.page-hero .pattern { position: absolute; right: -60px; bottom: -60px; width: 340px; opacity: 0.12; pointer-events: none; }

/* =========================================================
   HOME HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--ink);
  background-image: radial-gradient(1200px 560px at 78% -12%, rgba(220, 79, 30, 0.28), transparent 62%), radial-gradient(700px 400px at -10% 110%, rgba(43, 73, 196, 0.18), transparent 60%);
  color: #fff;
  padding: 190px 0 0;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-bottom: 110px; }

.hero h1 { color: #fff; font-size: clamp(44px, 6.2vw, 84px); margin-bottom: 26px; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: inline-block; transform: translateY(110%); animation: lineUp 1s var(--ease) forwards; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.12s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.24s; }
@keyframes lineUp { to { transform: translateY(0); } }

.rotating-word { color: var(--terra); font-style: italic; display: inline-block; min-width: 5.2em; text-align: left; }
.rotating-word.flip { animation: wordFlip 0.55s var(--ease); }
@keyframes wordFlip {
  0% { opacity: 1; transform: translateY(0) rotate(0); }
  45% { opacity: 0; transform: translateY(-18px) rotate(-2deg); }
  55% { opacity: 0; transform: translateY(18px) rotate(2deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0); }
}

.hero-sub { color: rgba(255,255,255,0.72); font-size: 18px; max-width: 470px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* arch collage */
.hero-collage { position: relative; display: flex; gap: 20px; align-items: flex-end; justify-content: center; }
.arch-frame { position: relative; overflow: hidden; border-radius: var(--arch); box-shadow: 0 30px 70px rgba(0,0,0,0.45); }
.arch-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 0.8s var(--ease); }
.arch-frame:hover img { transform: scale(1.12); }
.arch-a { width: 38%; aspect-ratio: 3 / 4.6; }
.arch-b { width: 46%; aspect-ratio: 3 / 5.4; }
.arch-c { width: 30%; aspect-ratio: 3 / 4; }
.arch-badge {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%) rotate(-3deg);
  background: var(--terra);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}
.arch-badge .stars { color: #FFD9A0; letter-spacing: 3px; margin-right: 8px; }

/* hero stats strip */
.hero-stats {
  border-top: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
}
.hero-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hstat { padding: 34px 28px; border-left: 1px solid rgba(255,255,255,0.14); }
.hstat:first-child { border-left: 0; }
.hstat strong { display: block; font-family: var(--display); font-size: clamp(26px, 2.6vw, 40px); color: #fff; line-height: 1; margin-bottom: 8px; }
.hstat strong em { color: var(--terra); font-style: normal; }
.hstat span { color: rgba(255,255,255,0.6); font-size: 14px; }

/* =========================================================
   MARQUEE STRIP
   ========================================================= */
.marquee-strip { background: var(--terra); color: var(--cream); padding: 18px 0; overflow: hidden; }
.marquee-strip.dark { background: var(--ink); }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 30s linear infinite; }
.marquee-track span { font-family: var(--display); font-style: italic; font-size: 22px; white-space: nowrap; display: flex; align-items: center; gap: 56px; }
.marquee-track span::after { content: "✦"; font-style: normal; font-size: 15px; opacity: 0.7; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================
   INTRO / STORY SPLIT
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-media { position: relative; }
.split-media .arch-frame { width: 78%; aspect-ratio: 3 / 4; margin: 0 auto; }
.split-media .float-img {
  position: absolute;
  width: 44%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--cream);
  bottom: -30px; right: 0;
  box-shadow: var(--shadow);
}
.split-copy p { color: var(--muted); margin-bottom: 18px; }
.split-copy .btn { margin-top: 14px; }

.tick-list { list-style: none; margin: 26px 0 10px; display: grid; gap: 13px; }
.tick-list li { display: flex; gap: 14px; align-items: flex-start; font-weight: 600; color: var(--ink-soft); }
.tick-list li::before {
  content: "✓";
  flex: 0 0 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--terra-soft);
  color: var(--terra);
  border-radius: 50%;
  font-size: 13px; font-weight: 800;
  margin-top: 2px;
}

/* =========================================================
   DESTINATIONS
   ========================================================= */
.dest-section { background: var(--sand); border-radius: 56px; }
.dest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.dest-card { text-decoration: none; text-align: center; group: dest; }
.dest-card .arch-frame { aspect-ratio: 3 / 4.2; border-radius: var(--arch); box-shadow: 0 14px 34px rgba(31,13,5,0.16); }
.dest-card strong { display: block; font-family: var(--display); font-size: 21px; color: var(--ink); margin: 18px 0 2px; transition: color 0.2s; }
.dest-card:hover strong { color: var(--terra); }
.dest-card span { color: var(--muted); font-size: 14px; font-weight: 600; }

/* =========================================================
   TOUR CARDS
   ========================================================= */
.tour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.tour-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.tour-media { position: relative; overflow: hidden; }
.tour-media img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; transition: transform 0.7s var(--ease); }
.tour-card:hover .tour-media img { transform: scale(1.07); }
.tour-price {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--cream);
  color: var(--ink);
  font-weight: 800; font-size: 16px;
  padding: 9px 18px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.tour-price s { color: var(--muted); font-weight: 600; font-size: 13px; margin-right: 5px; }
.tour-tag {
  position: absolute; top: 16px; left: 16px;
  background: rgba(31,13,5,0.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
}
.tour-body { padding: 26px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.tour-body h3 { font-size: 23px; margin-bottom: 12px; }
.tour-meta { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; color: var(--muted); font-size: 13.5px; margin-bottom: 14px; }
.tour-route { font-weight: 700; color: var(--ink-soft); }
.tour-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; border-top: 1px dashed var(--border); padding-top: 16px; }
.tour-reviews { color: var(--gold); font-size: 13px; letter-spacing: 2px; }
.tour-reviews em { font-style: normal; letter-spacing: 0; color: var(--muted); font-weight: 600; margin-left: 6px; }
.tour-go { font-weight: 800; color: var(--terra); font-size: 14px; }

.tours-more { text-align: center; margin-top: 56px; }

/* filter chips (tours page) */
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }
.filter-chip {
  font-family: var(--sans);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-weight: 700; font-size: 14px;
  padding: 11px 22px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s;
}
.filter-chip:hover { border-color: var(--terra); color: var(--terra); }
.filter-chip.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.tour-card.hide { display: none; }

/* =========================================================
   EXPERIENCE BAND (dark)
   ========================================================= */
.exp-band { background: var(--ink); border-radius: 56px; color: #fff; padding: clamp(48px, 6vw, 96px); position: relative; overflow: hidden; }
.exp-band::after {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(220,79,30,0.35), transparent 65%);
  pointer-events: none;
}
.exp-band h2 { color: #fff; font-size: clamp(30px, 3.8vw, 50px); max-width: 620px; margin-bottom: 14px; }
.exp-band > p { color: rgba(255,255,255,0.68); max-width: 540px; margin-bottom: 52px; }
.exp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exp-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3 / 3.7;
  text-decoration: none;
  display: flex; align-items: flex-end;
}
.exp-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.exp-card:hover img { transform: scale(1.07); }
.exp-card-body {
  position: relative;
  width: 100%;
  padding: 28px;
  background: linear-gradient(to top, rgba(31,13,5,0.92), rgba(31,13,5,0) 80%);
}
.exp-card-body h3 { color: #fff; font-size: 24px; margin-bottom: 6px; }
.exp-card-body p { color: rgba(255,255,255,0.78); font-size: 14px; }
.exp-card-body .price { display: inline-block; margin-top: 12px; background: var(--terra); padding: 7px 16px; border-radius: 999px; font-weight: 800; font-size: 14px; color: #fff; }

/* =========================================================
   SERVICES
   ========================================================= */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-num { font-family: var(--display); font-style: italic; font-size: 17px; color: var(--terra); display: block; margin-bottom: 18px; }
.svc-card h3 { font-size: 22px; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 15px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.stories { background: var(--sand); border-radius: 56px; }
.stories-track { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 10px; }
.stories-track::-webkit-scrollbar { display: none; }
.stories-track:focus-visible { outline: 3px solid var(--terra); outline-offset: 4px; border-radius: 4px; }
.story {
  flex: 0 0 min(460px, 88%);
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 38px;
  box-shadow: 0 10px 28px rgba(31,13,5,0.08);
  display: flex; flex-direction: column;
}
.story .stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 18px; }
.story blockquote { font-family: var(--display); font-size: 19px; line-height: 1.5; color: var(--ink); flex: 1; }
.story cite { display: flex; align-items: center; gap: 14px; margin-top: 26px; font-style: normal; }
.story cite img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.story cite strong { display: block; color: var(--ink); font-size: 15px; }
.story cite span { color: var(--muted); font-size: 13px; }
.stories-nav { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 44px; }
.story-arrow {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--white); color: var(--ink);
  display: grid; place-items: center; cursor: pointer; transition: 0.2s;
}
.story-arrow:hover { background: var(--terra); color: #fff; border-color: var(--terra-deep); }
.story-arrow svg { width: 20px; height: 20px; }
.story-dots { display: flex; gap: 8px; }
.story-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: var(--border); cursor: pointer; transition: 0.2s; }
.story-dots button.active { background: var(--terra); transform: scale(1.35); }

/* =========================================================
   STEPS / CTA
   ========================================================= */
.cta-panel {
  background: var(--terra);
  background-image: radial-gradient(700px 360px at 90% -20%, rgba(255, 200, 150, 0.35), transparent 60%);
  border-radius: 44px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-copy { padding: clamp(44px, 5vw, 80px); }
.cta-copy h2 { color: #fff; font-size: clamp(32px, 4.4vw, 56px); margin-bottom: 20px; }
.cta-copy h2 em { color: var(--ink); }
.cta-copy p { color: rgba(255,255,255,0.92); margin-bottom: 36px; max-width: 440px; }
.cta-steps {
  background: var(--ink);
  margin: 22px;
  border-radius: 30px;
  padding: clamp(34px, 4vw, 58px) clamp(30px, 3vw, 50px);
  display: flex; flex-direction: column; justify-content: center;
}
.step { display: flex; align-items: center; gap: 20px; position: relative; padding: 24px 0; }
.step:not(:last-child)::after {
  content: ""; position: absolute; left: 27px; top: calc(50% + 30px); bottom: -30px;
  width: 3px; background: var(--terra); opacity: 0.6;
}
.step-num {
  flex: 0 0 54px; height: 54px; border-radius: 50%;
  background: var(--terra); border: 2px solid #FFC9AE; color: #fff;
  font-weight: 800; display: grid; place-items: center; font-size: 15px; z-index: 1;
}
.step-label { color: #fff; font-weight: 700; font-size: 17px; }
.step-label small { display: block; color: rgba(255,255,255,0.55); font-weight: 500; font-size: 13px; margin-top: 2px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-container { max-width: 840px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: 0;
  font-family: var(--display); font-size: 21px; font-weight: 600;
  color: var(--ink); text-align: left;
  padding: 26px 48px 26px 0;
  cursor: pointer; position: relative;
}
.faq-icon { position: absolute; right: 4px; top: 50%; width: 20px; height: 20px; transform: translateY(-50%); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--terra); border-radius: 2px; transition: transform 0.3s var(--ease); }
.faq-icon::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq-icon::after { left: 9px; top: 0; width: 2px; height: 20px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { color: var(--muted); padding: 0 0 28px; max-width: 720px; }
.faq-cta { text-align: center; margin-top: 52px; }

/* =========================================================
   TEAM (about page)
   ========================================================= */
.founder { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; }
.founder .arch-frame { aspect-ratio: 3 / 3.8; }
.founder-quote {
  font-family: var(--display); font-style: italic;
  font-size: 21px; color: var(--ink);
  border-left: 3px solid var(--terra);
  padding-left: 22px; margin: 26px 0;
}
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; }
.team-body { padding: 26px 28px 30px; }
.team-body h3 { font-size: 23px; }
.team-role { color: var(--terra); font-weight: 700; font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin: 4px 0 12px; }
.team-body p { color: var(--muted); font-size: 14.5px; }
.team-body q { display: block; font-family: var(--display); font-style: italic; color: var(--ink-soft); margin-top: 14px; font-size: 15px; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 3vw, 40px); margin-bottom: 18px; }
.contact-info > p { color: var(--muted); margin-bottom: 34px; }
.contact-rows { display: grid; gap: 16px; margin-bottom: 40px; }
.contact-row {
  display: flex; gap: 18px; align-items: center;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 18px 22px;
  text-decoration: none; transition: 0.2s;
}
.contact-row:hover { border-color: var(--terra); transform: translateX(4px); }
.contact-row .ic { flex: 0 0 46px; height: 46px; border-radius: 50%; background: var(--terra-soft); color: var(--terra); display: grid; place-items: center; }
.contact-row .ic svg { width: 21px; height: 21px; }
.contact-row strong { display: block; color: var(--ink); font-size: 15px; }
.contact-row span { color: var(--muted); font-size: 13.5px; }

.book-steps { display: grid; gap: 0; }
.bstep { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px dashed var(--border); }
.bstep:last-child { border: 0; }
.bstep-num { font-family: var(--display); font-style: italic; color: var(--terra); font-size: 20px; flex: 0 0 36px; }
.bstep h4 { font-size: 17px; margin-bottom: 4px; }
.bstep p { color: var(--muted); font-size: 14.5px; }

.contact-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(30px, 3.5vw, 52px);
  box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 26px; margin-bottom: 6px; }
.contact-form > p { color: var(--muted); font-size: 15px; margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px;
  border: 1px solid var(--border); border-radius: 14px;
  padding: 13px 16px; background: var(--cream);
  color: var(--ink-soft); outline: none; transition: border 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--terra); }
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 16px; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--ink); border-radius: 56px 56px 0 0; padding: 88px 0 30px; color: rgba(255,255,255,0.7); overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 48px; margin-bottom: 72px; }
.footer-brand img { height: 54px; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-col h5 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: rgba(255,255,255,0.58); text-decoration: none; font-size: 14.5px; transition: color 0.2s; }
.footer-col a:hover { color: #FFC9AE; }
.footer-wordmark {
  font-family: var(--sans);
  font-size: clamp(40px, 10.2vw, 164px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 0.9;
  color: var(--terra); text-align: center; white-space: nowrap; user-select: none;
}
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; font-size: 13px; }
.footer-legal { display: flex; gap: 26px; }
.footer-legal a { color: rgba(255,255,255,0.58); text-decoration: none; }

/* WhatsApp floating button */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

/* =========================================================
   REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .preloader { display: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1020px) {
  .hero-grid, .split, .founder, .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding-top: 150px; }
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hstat { border-left: 0; border-top: 1px solid rgba(255,255,255,0.12); }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .tour-grid, .svc-grid, .exp-cards, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 620px) {
  .section { padding: 72px 0; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .tour-grid, .svc-grid, .exp-cards, .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-collage { gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .rotating-word { min-width: 0; }
}

/* =========================================================
   TOUR DETAIL PAGE
   ========================================================= */
.tour-hero { background: var(--ink); background-image: radial-gradient(1100px 520px at 82% -15%, rgba(220,79,30,.28), transparent 62%); color: #fff; padding: 150px 0 0; overflow: hidden; }
.breadcrumb { display: flex; gap: 9px; align-items: center; font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: #FFC9AE; }
.breadcrumb span { opacity: .5; }
.tour-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: end; padding-bottom: 44px; }
.tour-hero h1 { color: #fff; font-size: clamp(34px, 4.6vw, 60px); margin-bottom: 18px; }
.tour-hero .tour-rating { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 16px; display: inline-flex; gap: 8px; align-items: center; }
.tour-hero .tour-rating em { font-style: normal; color: rgba(255,255,255,.7); letter-spacing: 0; }
.tour-hero-media .arch-frame { aspect-ratio: 3 / 2.5; border-radius: var(--r-lg); box-shadow: 0 30px 70px rgba(0,0,0,.45); }
.tour-hero-media .arch-frame img { width: 100%; height: 100%; object-fit: cover; }

/* quick facts bar */
.tour-quickbar { border-top: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.03); }
.tour-quickbar-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.qfact { padding: 26px 24px; border-left: 1px solid rgba(255,255,255,.14); color: #fff; }
.qfact:first-child { border-left: 0; }
.qfact small { display: block; color: rgba(255,255,255,.55); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 6px; }
.qfact strong { font-family: var(--display); font-weight: 600; font-size: 21px; }

/* main + sticky aside layout */
.tour-layout { display: grid; grid-template-columns: 1fr 372px; gap: 56px; align-items: start; padding: 80px 0; }
.tour-main > * + * { margin-top: 56px; }
.tour-lead { font-size: 19px; color: var(--ink-soft); }
.tour-block h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 8px; }
.tour-block > p { color: var(--muted); }
.tour-block .block-sub { color: var(--muted); margin-bottom: 28px; }

/* itinerary timeline */
.itinerary { border-left: 2px solid var(--border); margin-left: 7px; }
.day { position: relative; padding: 0 0 8px 34px; }
.day::before { content: ""; position: absolute; left: -9px; top: 24px; width: 16px; height: 16px; border-radius: 50%; background: var(--terra); border: 3px solid var(--cream); box-shadow: 0 0 0 1px var(--border); }
.day + .day { margin-top: 6px; }
.day-head { width: 100%; background: none; border: 0; text-align: left; cursor: pointer; padding: 18px 40px 18px 0; position: relative; }
.day-num { font-weight: 700; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--terra); display: block; margin-bottom: 3px; }
.day-title { font-family: var(--display); font-weight: 600; font-size: 21px; color: var(--ink); line-height: 1.2; }
.day-toggle { position: absolute; right: 4px; top: 22px; width: 18px; height: 18px; }
.day-toggle::before, .day-toggle::after { content: ""; position: absolute; background: var(--terra); border-radius: 2px; transition: transform .3s var(--ease); }
.day-toggle::before { left: 0; top: 8px; width: 18px; height: 2px; }
.day-toggle::after { left: 8px; top: 0; width: 2px; height: 18px; }
.day.open .day-toggle::after { transform: scaleY(0); }
.day-body { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.day.open .day-body { max-height: 1200px; }
.day-body-inner { padding: 0 0 24px; }
.day-body ul { list-style: none; display: grid; gap: 9px; margin-bottom: 16px; }
.day-body li { position: relative; padding-left: 22px; color: var(--ink-soft); }
.day-body li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.day-meta { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.day-tag { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); background: var(--sand); border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px; }

/* included / excluded */
.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.inc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 28px 30px; }
.inc-card h3 { font-size: 19px; margin-bottom: 16px; }
.inc-card ul { list-style: none; display: grid; gap: 11px; }
.inc-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; }
.inc-card li::before { flex: 0 0 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; font-size: 12px; font-weight: 800; margin-top: 1px; }
.inc-list li::before { content: "✓"; background: var(--terra-soft); color: var(--terra); }
.exc-list li::before { content: "✕"; background: #EFEAE0; color: var(--muted); }

/* gallery */
.tour-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tour-gallery .arch-frame { aspect-ratio: 3 / 3.4; border-radius: var(--arch); }
.tour-gallery .arch-frame img { width: 100%; height: 100%; object-fit: cover; }

/* sticky booking card */
.booking-card { position: sticky; top: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow); }
.booking-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.booking-price s { color: var(--muted); font-size: 16px; }
.booking-price strong { font-family: var(--display); font-weight: 600; font-size: 40px; color: var(--ink); }
.booking-price span { color: var(--muted); font-size: 14px; }
.booking-note { color: var(--muted); font-size: 13.5px; margin-bottom: 22px; }
.booking-card .btn { width: 100%; justify-content: center; }
.booking-card .btn + .btn { margin-top: 10px; }
.booking-includes { list-style: none; margin: 24px 0 0; padding-top: 22px; border-top: 1px dashed var(--border); display: grid; gap: 11px; }
.booking-includes li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--ink-soft); }
.booking-includes li svg { flex: 0 0 18px; color: var(--terra); }
.booking-reassure { margin-top: 22px; padding: 16px; background: var(--cream); border-radius: var(--r-md); font-size: 13px; color: var(--muted); text-align: center; }

@media (max-width: 1020px) {
  .tour-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .tour-quickbar-grid { grid-template-columns: repeat(2, 1fr); }
  .qfact:nth-child(odd) { border-left: 0; }
  .tour-layout { grid-template-columns: 1fr; gap: 40px; }
  .booking-card { position: static; }
}
@media (max-width: 620px) {
  .tour-quickbar-grid { grid-template-columns: 1fr 1fr; }
  .inc-exc { grid-template-columns: 1fr; }
  .tour-gallery { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   TRUST / GUARANTEES BAND (tour pages)
   ========================================================= */
.guarantees { background: var(--ink); color: #fff; padding: 84px 0; }
.guarantees .section-title { color: #fff; margin-bottom: 44px; }
.guarantee-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.guarantee { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); padding: 28px 26px; }
.g-ic { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--terra); color: #fff; font-weight: 800; margin-bottom: 16px; }
.guarantee h3 { color: #fff; font-size: 19px; margin-bottom: 8px; }
.guarantee p { color: rgba(255,255,255,0.66); font-size: 14.5px; }
@media (max-width: 900px) { .guarantee-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .guarantee-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TOUR-HERO ROUTE MAP (at-a-glance journey) — added for single-trip
   ========================================================= */
.tour-hero-copy.wide { max-width: 880px; }
.tour-hero .route { display: flex; flex-wrap: wrap; gap: 28px 30px; margin: 38px 0 48px; }
.tour-hero .rday { position: relative; flex: 1 1 190px; min-width: 168px; max-width: 300px; }
.tour-hero .rday-tag { display: inline-block; font-weight: 800; font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase; color: #FFC9AE; margin-bottom: 16px; }
.tour-hero .rstops { list-style: none; display: grid; gap: 14px; margin: 0; padding: 0; }
.tour-hero .rstop { position: relative; padding-left: 26px; color: rgba(255,255,255,.82); font-size: 14.5px; font-weight: 500; }
.tour-hero .rstop:not(:last-child)::after { content: ""; position: absolute; left: 5px; top: 16px; bottom: -14px; width: 2px; background: rgba(255,255,255,.18); }
.tour-hero .rstop::before { content: ""; position: absolute; left: 0; top: 5px; z-index: 1; width: 12px; height: 12px; border-radius: 50%; background: var(--terra); box-shadow: 0 0 0 3px rgba(220,79,30,.22); }
.tour-hero .rstop small { display: inline-block; margin-left: 8px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); }
.tour-hero .rstop.origin { color: #fff; font-weight: 700; }
.tour-hero .rstop.origin::before { background: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,.25); }
@media (max-width: 620px) {
  .tour-hero .route { gap: 22px; }
  .tour-hero .rday { flex: 1 1 100%; max-width: none; }
}

/* =========================================================
   FACTS GRID + JOURNEY SPINE (single-trip parity with Three)
   ========================================================= */
.facts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; }
.fact { background: var(--white); padding: 18px 22px; }
.fact h4 { font-family: var(--sans); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--terra); margin: 0 0 6px; }
.fact p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

.journey { position: relative; }
.journey-track, .journey-fill { position: absolute; left: 25px; top: 8px; width: 2px; border-radius: 2px; }
.journey-track { bottom: 8px; background: var(--border); }
.journey-fill { height: 0; background: linear-gradient(180deg, var(--terra), var(--gold)); transition: height .12s linear; }
.itin-day { position: relative; padding-left: 84px; padding-bottom: 52px; }
.itin-day:last-child { padding-bottom: 0; }
.chapter-num { position: absolute; left: 0; top: 0; z-index: 2; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: var(--cream); border: 2px solid var(--terra); font-family: var(--display); font-style: italic; font-weight: 600; font-size: 22px; color: var(--terra); }
.itin-day > .day-tag { display: inline-block; font-family: var(--sans); font-weight: 800; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); background: none; padding: 0; }
.itin-day > h3 { font-size: clamp(23px, 2.6vw, 30px); margin: 4px 0 14px; }
.itin-day h5 { font-family: var(--sans); font-size: 14px; color: var(--ink); margin: 16px 0 4px; }
.itin-day p { color: var(--muted); font-size: 15px; margin-bottom: 10px; }
@media (max-width: 620px) {
  .facts-grid { grid-template-columns: 1fr; }
  .journey-track, .journey-fill { left: 19px; }
  .itin-day { padding-left: 60px; }
  .chapter-num { width: 40px; height: 40px; font-size: 17px; }
}

/* hero badges + tour map (single-trip A–Z parity) */
.tour-hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.tour-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 9px 18px; font-size: 14px; font-weight: 600; color: #fff; backdrop-filter: blur(4px); }
.tour-badge.stars { color: var(--gold); letter-spacing: 1px; }
.tour-map img { width: 100%; border-radius: var(--r-md); border: 1px solid var(--border); }

/* reviews section (single-trip) */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px; }
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; }
.review-card h4 { font-family: var(--display); font-size: 19px; margin: 12px 0 10px; }
.review-card p { color: var(--muted); font-size: 14px; }
.review-card .rev-by { margin-top: 16px; font-weight: 700; color: var(--ink); font-size: 14px; }
@media (max-width: 980px) { .review-grid { grid-template-columns: 1fr; } }

/* what's-included grid (single-trip parity with Three) */
.ie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.ie-col h4 { font-size: 18px; margin-bottom: 14px; }
.ie-list { list-style: none; display: grid; gap: 11px; margin: 0; padding: 0; }
.ie-list li { position: relative; padding-left: 30px; font-size: 14.5px; color: var(--ink-soft); }
.ie-list.inc li::before { content: "\2713"; position: absolute; left: 0; top: -1px; color: #1d6b3f; font-weight: 800; }
.ie-list.exc li::before { content: "\2715"; position: absolute; left: 0; top: -1px; color: var(--terra-deep); font-weight: 800; }
@media (max-width: 620px) { .ie-grid { grid-template-columns: 1fr; } }

/* Web3Forms honeypot — visually hidden, off-screen (contact form spam trap) */
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
