/* ===========================
   NAVIGATE MOROCCO — SHARED CSS
   =========================== */
:root {
  /* Backgrounds — desert ground */
  --cream: #FBF7F0;        /* Bone — page background */
  --cream-soft: #FFFBF4;   /* Linen — lightest surfaces + light text on dark */
  --cream-deep: #EFE6D8;   /* Dune — alternating sections, cards */
  /* Accent — the Moroccan sun */
  --orange: #FB5500;       /* Sun — buttons, logo, icons, active (logo hex) */
  --orange-deep: #C9430A;  /* Ember — hovers */
  --terracotta: #C9430A;   /* Ember — typographic accents (headings, numbers, prices) */
  --terracotta-deep: #9E3506; /* Ember Dark */
  --sand: #D4A574;         /* Sand — tertiary accent on dark */
  /* Structural dark — the road */
  --indigo: #1C1A17;       /* retired blue → Charcoal */
  --indigo-soft: #2A2622;
  --ink: #1C1A17;          /* Charcoal — text + dark sections */
  --ink-soft: #5C5048;     /* Stone — secondary text */
  --muted: #6F6258;        /* Muted Stone — captions */
  --line: #E2D7C6;         /* Hairline — borders */
  --display: 'DM Serif Display', Georgia, serif;
  --body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1380px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 28px; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); }
.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 600;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terracotta);
}
.section-title { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 400; }
.section-title em { font-style: italic; font-weight: 300; color: var(--terracotta); }
.lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 60ch; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .3s ease;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--cream-soft); border: 1px solid rgba(245,239,230,0.6); }
.btn-outline:hover { background: rgba(245,239,230,0.1); border-color: var(--cream-soft); }
.btn-outline-dark { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn-outline-dark:hover { background: var(--ink); color: var(--cream-soft); }
.btn-dark { background: var(--ink); color: var(--cream-soft); }
.btn-dark:hover { background: var(--orange); transform: translateY(-2px); }
.btn-ghost { color: var(--ink); padding: 0; border-bottom: 1px solid var(--ink); border-radius: 0; padding-bottom: 4px; }
.btn-ghost:hover { color: var(--terracotta); border-color: var(--terracotta); }
.btn-block { width: 100%; justify-content: center; }

/* ===== TOP BAR ===== */
.topbar { background: var(--orange); color: #fff; font-size: 0.82rem; padding: 10px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left { display: flex; gap: 28px; align-items: center; }
.topbar-left span { display: inline-flex; align-items: center; gap: 8px; opacity: 0.92; }
.topbar-right { display: flex; align-items: center; gap: 18px; }
.topbar-right .lang { display: flex; gap: 12px; }
.topbar-right .lang a { color: rgba(255,255,255,0.8); }
.topbar-right .lang a:hover { color: #fff; }
.topbar-right .lang a.active { color: #fff; font-weight: 600; }
.socials { display: flex; gap: 14px; }
.socials a { opacity: 0.8; transition: opacity .2s; color: #fff; }
.socials a:hover { opacity: 1; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.logo { display: flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 1.4rem; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }
.logo-img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.logo small { display: block; font-family: var(--body); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); font-weight: 600; margin-top: 2px; }

/* Nav links */
.nav-links { display: flex; gap: 6px; list-style: none; align-items: center; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  padding: 8px 12px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--orange); }
.nav-links > li:hover > a { background: rgba(251,85,0,0.06); }

/* Dropdown arrow */
.has-dropdown > a::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
  transition: transform .2s;
}
.nav-links > li:hover .has-dropdown > a::after { transform: rotate(225deg) translateY(-2px); opacity: 1; }

/* Dropdown panel */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 2px solid var(--orange);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 8px 24px -8px rgba(42,31,26,0.15);
  padding: 8px 0;
  z-index: 200;
}
.nav-links > li:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.dropdown a:hover { color: var(--orange); background: rgba(251,85,0,0.05); }
.dropdown .divider { height: 1px; background: var(--line); margin: 6px 0; }
.dropdown .all-link { font-weight: 600; color: var(--orange) !important; }
.dropdown .all-link:hover { background: rgba(251,85,0,0.08) !important; }

/* CTA pill */
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 10px;
}
.nav-cta:hover { background: var(--orange-deep) !important; color: #fff !important; transform: translateY(-1px); }
.menu-toggle { display: none; }

/* ===== PAGE HEADER / HERO (inner pages) ===== */
.page-hero {
  position: relative;
  padding: 120px 0 100px;
  color: var(--cream-soft);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.page-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,31,26,0.55) 0%, rgba(42,31,26,0.75) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb { display: flex; gap: 10px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(245,239,230,0.7); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--sand); }
.breadcrumb span { color: var(--sand); }
.page-hero h1 { color: var(--cream-soft); font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 300; line-height: 1.05; max-width: 22ch; }
.page-hero h1 em { font-style: italic; color: var(--sand); font-weight: 300; }
.page-hero .lead { color: rgba(245,239,230,0.85); max-width: 56ch; margin-top: 22px; font-size: 1.05rem; }
.page-hero .eyebrow { color: var(--sand); }
.page-hero .eyebrow::before { background: var(--sand); }

/* ===== HOMEPAGE HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream-soft);
}
.hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; background-repeat: no-repeat; transform: scale(1.05); }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,31,26,0.45) 0%, rgba(42,31,26,0.35) 40%, rgba(42,31,26,0.75) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 120px 0 100px; max-width: 820px; }
.hero .eyebrow { color: var(--sand); }
.hero .eyebrow::before { background: var(--sand); }
.hero h1 { color: var(--cream-soft); font-size: clamp(2.2rem, 4.8vw, 4.2rem); font-weight: 300; line-height: 1.08; margin: 20px 0 28px; letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--sand); font-weight: 300; }
.hero p { font-size: 1.15rem; color: rgba(245,239,230,0.88); max-width: 56ch; margin-bottom: 40px; line-height: 1.65; }
.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
.hero-bullets li svg { color: var(--orange); flex-shrink: 0; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-trust { margin-top: 56px; display: flex; align-items: center; gap: 18px; color: rgba(245,239,230,0.8); font-size: 0.88rem; }
.stars { color: var(--sand); letter-spacing: 2px; }
/* Fractional star rating — set --rating (0–5); supports half stars */
.star-rating { --rating: 5; position: relative; display: inline-block; line-height: 1; letter-spacing: 2px; white-space: nowrap; font-size: inherit; }
.star-rating::before { content: "★★★★★"; color: var(--line); }
.star-rating::after { content: "★★★★★"; color: var(--sand); position: absolute; left: 0; top: 0; width: calc(var(--rating) / 5 * 100%); overflow: hidden; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(245,239,230,0.7); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.25em; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-scroll::after { content: ""; width: 1px; height: 50px; background: linear-gradient(180deg, var(--sand), transparent); animation: scrollPulse 2.4s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--cream-deep); padding: 36px 0; border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; align-items: center; text-align: center; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 14px; font-size: 0.9rem; color: var(--ink-soft); font-weight: 500; }
.trust-item svg { color: var(--terracotta); flex-shrink: 0; }
.trust-ta-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; white-space: nowrap; }
.trust-ta-link:hover .trust-ta-cta { text-decoration: underline; }
.trust-ta-cta { color: var(--terracotta); }
.trust-ta-logo { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.trust-ta-text { white-space: nowrap; }

/* ===== SECTIONS ===== */
section { padding: 100px 0; }
.section-head { max-width: 720px; margin-bottom: 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .section-title { margin: 16px 0 18px; }

/* ===== ABOUT ===== */
.about { background: var(--cream-soft); position: relative; }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.about-images { position: relative; height: 580px; }
.about-img-main { position: absolute; top: 0; left: 0; width: 72%; height: 78%; object-fit: cover; object-position: left center; border-radius: 4px; }
.about-img-sub { position: absolute; bottom: 0; right: 0; width: 56%; height: 52%; object-fit: cover; border-radius: 4px; border: 8px solid var(--cream-soft); }
.about-badge { position: absolute; top: 30px; right: 0; background: var(--terracotta); color: var(--cream-soft); padding: 18px 22px; border-radius: 50%; width: 130px; height: 130px; display: grid; place-items: center; text-align: center; font-family: var(--display); line-height: 1.1; transform: rotate(-8deg); box-shadow: 0 12px 30px -10px rgba(201, 67, 10, 0.5); }
.about-badge strong { font-size: 1.8rem; display: block; font-style: italic; }
.about-badge span { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.15em; font-family: var(--body); font-weight: 600; }
.about-content h2 { margin: 16px 0 24px; }
.about-content p { color: var(--ink-soft); margin-bottom: 18px; }
.about-content p.lead { font-size: 1.1rem; color: var(--ink); }

.arrow-link { display: inline-block; margin-top: 28px; color: var(--terracotta); font-size: 0.9rem; font-weight: 600; text-decoration: none; letter-spacing: 0.02em; }
.arrow-link:hover { text-decoration: underline; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 44px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 28px 16px 28px 0; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; padding-right: 0; }
.stat strong { font-family: var(--display); font-size: 2.4rem; font-weight: 400; color: var(--terracotta); font-style: italic; display: block; }
.stat span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); font-weight: 600; }

/* ===== WHY ===== */
.why { background: var(--indigo); color: var(--cream-soft); position: relative; overflow: hidden; }
.why::before { content: ""; position: absolute; right: -200px; top: -150px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(212,165,116,0.15) 0%, transparent 60%); pointer-events: none; }
.why .section-title { color: var(--cream-soft); }
.why .section-title em { color: var(--sand); }
.why .lead { color: rgba(245,239,230,0.75); }
.why .eyebrow { color: var(--sand); }
.why .eyebrow::before { background: var(--sand); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 20px; }
.why-card { padding: 36px 28px; background: rgba(245,239,230,0.04); border: 1px solid rgba(245,239,230,0.1); border-radius: 4px; transition: all .35s ease; position: relative; }
.why-card:hover { background: rgba(245,239,230,0.08); transform: translateY(-6px); border-color: var(--sand); }
.why-num { font-family: var(--display); font-size: 0.85rem; color: var(--sand); font-style: italic; letter-spacing: 0.1em; margin-bottom: 24px; display: block; }
.why-icon { width: 52px; height: 52px; margin-bottom: 22px; color: var(--sand); }
.why-card h3 { color: var(--cream-soft); font-size: 1.4rem; margin-bottom: 14px; line-height: 1.2; }
.why-card p { color: rgba(245,239,230,0.7); font-size: 0.92rem; line-height: 1.65; }

/* ===== DESTINATIONS ===== */
.destinations { background: var(--cream-soft); }
.dest-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 240px; gap: 18px; }
.dest-card { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; background: var(--ink); }
.dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(42,31,26,0.85) 100%); pointer-events: none; }
.dest-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 26px; z-index: 2; color: var(--cream-soft); }
.dest-content h3 { color: var(--cream-soft); font-size: 1.7rem; margin-bottom: 4px; font-weight: 400; }
.dest-content h3 em { font-style: italic; font-weight: 300; }
.dest-content span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--sand); font-weight: 600; }
.dest-arrow { position: absolute; top: 22px; right: 22px; width: 42px; height: 42px; border: 1px solid rgba(245,239,230,0.4); border-radius: 50%; display: grid; place-items: center; color: var(--cream-soft); z-index: 2; background: rgba(42,31,26,0.3); backdrop-filter: blur(4px); transition: all .3s ease; }
.dest-card:hover .dest-arrow { background: var(--terracotta); border-color: var(--terracotta); }
.dest-1 { grid-column: span 3; grid-row: span 2; }
.dest-2 { grid-column: span 3; grid-row: span 1; }
.dest-3 { grid-column: span 2; grid-row: span 1; }
.dest-4 { grid-column: span 1; grid-row: span 1; }
.dest-5 { grid-column: span 2; grid-row: span 1; }
.dest-6 { grid-column: span 4; grid-row: span 1; }

/* ===== TOURS ===== */
.tours { background: var(--cream-deep); }
.tours-head { margin-bottom: 50px; }
.tours-head .section-head { margin-bottom: 0; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.tour-card { background: var(--cream-soft); border-radius: 4px; overflow: hidden; transition: all .35s ease; display: flex; flex-direction: column; }
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px -20px rgba(42,31,26,0.2); }
.tour-image { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.tour-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.tour-card:hover .tour-image img { transform: scale(1.05); }
.tour-badge { position: absolute; top: 16px; left: 16px; background: var(--cream-soft); padding: 6px 12px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; border-radius: 2px; color: var(--terracotta); }
.tour-duration { position: absolute; bottom: 16px; right: 16px; background: var(--ink); color: var(--cream-soft); padding: 8px 14px; font-size: 0.78rem; font-weight: 600; border-radius: 2px; }
.tour-body { padding: 26px 26px 28px; flex: 1; display: flex; flex-direction: column; }
.tour-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; }
.tour-meta .stars { color: var(--sand); letter-spacing: 1px; font-size: 0.95rem; }
.tour-meta .star-rating { letter-spacing: 1px; font-size: 0.95rem; }
.tour-card h3 { font-size: 1.35rem; margin-bottom: 12px; line-height: 1.2; }
.tour-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 22px; flex: 1; }
.tour-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--line); }
.tour-price { font-family: var(--display); font-style: italic; }
.tour-price span { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--body); font-style: normal; font-weight: 600; display: block; margin-bottom: 2px; }
.tour-price strong { font-size: 1.6rem; font-weight: 400; color: var(--terracotta); }
.tour-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); }
.tour-link:hover { color: var(--terracotta); gap: 12px; }
.tours-cta { text-align: center; margin-top: 56px; }

/* ===== VISION/MISSION ===== */
.vision { background: var(--cream-soft); padding: 100px 0; }
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.vision-block { padding: 40px 0; position: relative; }
.vision-block::before { content: ""; width: 50px; height: 1px; background: var(--terracotta); position: absolute; top: 0; left: 0; }
.vision-block h3 { font-size: 2rem; margin-bottom: 18px; font-style: italic; color: var(--terracotta); font-weight: 400; }
.vision-block p { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; }

/* HOW IT WORKS */
.how { background: var(--cream-soft); }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-top: 20px; }
.how-step { position: relative; padding-top: 28px; }
.how-step::before { content: ""; position: absolute; top: 0; left: 0; width: 50px; height: 1px; background: var(--terracotta); }
.how-num { font-family: var(--display); font-size: 2.6rem; font-style: italic; color: var(--terracotta); line-height: 1; display: block; margin-bottom: 16px; }
.how-step h3 { font-size: 1.25rem; margin-bottom: 12px; line-height: 1.25; color: var(--ink); font-weight: 500; }
.how-step p { color: var(--ink-soft); font-size: 0.92rem; line-height: 1.65; }
.how-cta { text-align: center; margin-top: 56px; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--ink); color: var(--cream-soft); position: relative; overflow: hidden; }
.testimonials::before { content: "\201C"; position: absolute; top: -60px; right: 8%; font-family: var(--display); font-size: 28rem; color: rgba(212, 165, 116, 0.08); line-height: 1; pointer-events: none; }
.testimonials .section-title { color: var(--cream-soft); }
.testimonials .section-title em { color: var(--sand); }
.testimonials .lead { color: rgba(245,239,230,0.7); }
.testimonials .eyebrow { color: var(--sand); }
.testimonials .eyebrow::before { background: var(--sand); }
.testi-layout { display: grid; grid-template-columns: minmax(260px, 340px) 1fr; gap: 64px; align-items: center; position: relative; z-index: 2; }
.testi-layout .section-head { margin-bottom: 0; max-width: none; }
.testi-carousel { position: relative; z-index: 2; }
.testi-stage { display: flex; align-items: center; gap: 8px; }
.testi-viewport { flex: 1; overflow: hidden; }
.testi-track { display: flex; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.testi-slide { flex: 0 0 100%; padding: 0 10px; text-align: center; }
.testi-slide blockquote { font-family: var(--display); font-size: 1.35rem; line-height: 1.6; color: var(--cream-soft); font-weight: 300; font-style: italic; margin-bottom: 28px; }
.testi-author { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.testi-author strong { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 1.1rem; color: var(--sand); }
.testi-author span { font-size: 0.74rem; color: rgba(245,239,230,0.6); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; }
.testi-arrow { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(245,239,230,0.25); background: transparent; color: var(--cream-soft); display: grid; place-items: center; cursor: pointer; transition: all .3s; }
.testi-arrow:hover { background: var(--terracotta); border-color: var(--terracotta); }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 44px; }
.testi-dots button { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; background: rgba(245,239,230,0.25); cursor: pointer; transition: all .3s; }
.testi-dots button.active { background: var(--sand); width: 24px; border-radius: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 110px 0; color: var(--cream-soft); overflow: hidden; text-align: center; }
.cta-bg { position: absolute; inset: 0; background-position: center; background-size: cover; }
.cta-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,26,23,0.80) 0%, rgba(28,26,23,0.88) 100%); }
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.6rem); color: var(--cream-soft); margin: 18px 0 22px; font-weight: 300; max-width: 22ch; margin-left: auto; margin-right: auto; line-height: 1.1; }
.cta-banner h2 em { font-style: italic; color: var(--sand); }
.cta-banner p { color: rgba(245,239,230,0.85); max-width: 56ch; margin: 0 auto 38px; font-size: 1.05rem; }
.cta-banner .eyebrow { color: var(--sand); }
.cta-banner .eyebrow::before { background: var(--sand); }
.cta-buttons { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); color: rgba(245,239,230,0.7); padding: 90px 0 0; font-size: 0.92rem; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 50px; padding-bottom: 70px; }
.footer h4 { color: var(--cream-soft); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 24px; font-family: var(--body); font-weight: 600; }
.footer-brand .logo { margin-bottom: 24px; color: var(--cream-soft); }
.footer-brand .logo small { color: var(--sand); }
.footer-brand p { margin-bottom: 24px; line-height: 1.7; max-width: 36ch; }
.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact svg { color: var(--sand); flex-shrink: 0; margin-top: 4px; }
.footer ul { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--sand); padding-left: 6px; }
.footer-links a { transition: all .25s; }
.footer-bottom { border-top: 1px solid rgba(245,239,230,0.1); padding: 28px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 0.82rem; }
.footer-bottom .footer-legal { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--sand); }

/* ===========================
   PAGE-SPECIFIC: ABOUT
   =========================== */
.story { background: var(--cream-soft); }
.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center; }
.story-img { position: relative; }
.story-img img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; }
.story-img::before { content: ""; position: absolute; inset: -22px -22px 22px 22px; border: 1px solid var(--terracotta); z-index: -1; border-radius: 4px; }
.story p { color: var(--ink-soft); margin-bottom: 16px; line-height: 1.75; }
.story p.lead { color: var(--ink); font-size: 1.15rem; font-family: var(--display); font-weight: 300; font-style: italic; margin-bottom: 26px; }
.story-sign { display: flex; align-items: center; gap: 18px; margin-top: 36px; }
.story-sign img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.story-sign strong { display: block; font-family: var(--display); font-size: 1.2rem; font-style: italic; color: var(--ink); }
.story-sign span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }

.values { background: var(--cream-deep); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.value-item { padding: 0; }
.value-num { font-family: var(--display); font-style: italic; font-size: 3rem; color: var(--terracotta); display: block; line-height: 1; margin-bottom: 18px; font-weight: 300; }
.value-item h3 { font-size: 1.5rem; margin-bottom: 14px; }
.value-item p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.7; }

.team { background: var(--cream-soft); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: left; }
.team-img { aspect-ratio: 3/4; overflow: hidden; border-radius: 4px; margin-bottom: 18px; background: var(--cream-deep); }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.team-card:hover .team-img img { transform: scale(1.04); }
.team-card h4 { font-size: 1.25rem; margin-bottom: 4px; }
.team-card span { font-size: 0.78rem; color: var(--terracotta); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }
.team-card p { color: var(--ink-soft); font-size: 0.92rem; margin-top: 10px; line-height: 1.6; }

/* ===========================
   PAGE-SPECIFIC: TOURS LISTING
   =========================== */
.tours-listing { background: var(--cream-soft); padding: 80px 0 100px; }
.tours-layout { display: grid; grid-template-columns: 280px 1fr; gap: 50px; align-items: start; }
.tours-sidebar { position: sticky; top: 100px; }
.sidebar-block { padding: 26px 0; border-bottom: 1px solid var(--line); }
.sidebar-block:first-child { padding-top: 0; }
.sidebar-block h4 { font-family: var(--body); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.18em; font-weight: 600; margin-bottom: 18px; color: var(--ink); }
.filter-list { list-style: none; }
.filter-list li { margin-bottom: 12px; display: flex; justify-content: space-between; align-items: center; font-size: 0.94rem; color: var(--ink-soft); cursor: pointer; transition: color .2s; }
.filter-list li:hover { color: var(--terracotta); }
.filter-list li span { font-size: 0.78rem; color: var(--muted); }
.filter-list input { margin-right: 10px; accent-color: var(--terracotta); }
.filter-list label { display: flex; align-items: center; gap: 8px; cursor: pointer; flex: 1; }
.range-row { display: flex; gap: 12px; }
.range-row input { padding: 10px 12px; background: transparent; border: 1px solid var(--line); border-radius: 2px; font-family: inherit; font-size: 0.88rem; width: 100%; outline: none; color: var(--ink); }
.range-row input:focus { border-color: var(--terracotta); }

.results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; padding-bottom: 18px; border-bottom: 1px solid var(--line); flex-wrap: wrap; gap: 20px; }
.results-count { font-size: 0.92rem; color: var(--ink-soft); }
.results-count strong { color: var(--ink); font-weight: 600; }
.sort-select { padding: 10px 16px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: 2px; font-family: inherit; font-size: 0.88rem; color: var(--ink); cursor: pointer; outline: none; }

.tours-listing .tours-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 60px; }
.pagination a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 2px; font-weight: 600; font-size: 0.92rem; color: var(--ink-soft); transition: all .2s; }
.pagination a:hover, .pagination a.active { background: var(--ink); color: var(--cream-soft); border-color: var(--ink); }
.pagination a.arrow { width: auto; padding: 0 16px; gap: 8px; display: inline-flex; }

/* ===========================
   PAGE-SPECIFIC: TOUR SINGLE
   =========================== */
.tour-detail { background: var(--cream-soft); padding: 80px 0 100px; }
.tour-layout { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: start; }
.tour-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; height: 480px; margin-bottom: 50px; }
.tour-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.tour-gallery .grid-side { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }

.tour-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--line); margin-bottom: 36px; }
.tour-tabs button { padding: 16px 22px; font-size: 0.88rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .25s; }
.tour-tabs button.active, .tour-tabs button:hover { color: var(--ink); border-bottom-color: var(--terracotta); }

.tour-section { margin-bottom: 50px; }
.tour-section h2 { font-size: 1.9rem; margin-bottom: 22px; }
.tour-section p { color: var(--ink-soft); margin-bottom: 16px; line-height: 1.75; }
.tour-section ul { list-style: none; padding: 0; }
.tour-section ul li { padding: 12px 0 12px 32px; position: relative; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.tour-section ul li::before { content: ""; position: absolute; left: 0; top: 18px; width: 18px; height: 1px; background: var(--terracotta); }
.tour-section ul.checks li::before { content: "✓"; background: none; color: var(--terracotta); top: 12px; font-weight: 700; width: auto; font-size: 1rem; }
.tour-section ul.crosses li::before { content: "✕"; background: none; color: var(--muted); top: 12px; font-weight: 700; width: auto; font-size: 1rem; }

.tour-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 40px; }
.tour-highlights div { text-align: center; }
.tour-highlights svg { color: var(--terracotta); margin-bottom: 10px; }
.tour-highlights strong { display: block; font-family: var(--display); font-size: 1.3rem; font-style: italic; color: var(--ink); font-weight: 400; }
.tour-highlights span { font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }

/* Itinerary */
.itinerary { list-style: none; padding: 0; }
.itin-day { display: flex; gap: 30px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.itin-day:last-child { border-bottom: none; }
.itin-day-marker { flex-shrink: 0; width: 76px; }
.itin-day-marker strong { font-family: var(--display); font-size: 2.4rem; font-style: italic; color: var(--terracotta); display: block; line-height: 1; font-weight: 400; }
.itin-day-marker span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); font-weight: 600; }
.itin-day-body h4 { font-size: 1.25rem; margin-bottom: 10px; }
.itin-day-body p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.7; }

/* Booking sidebar */
.booking-card { background: var(--cream-deep); border: 1px solid var(--line); border-radius: 4px; padding: 36px 32px; position: sticky; top: 100px; }
.booking-price { padding-bottom: 22px; border-bottom: 1px solid var(--line); margin-bottom: 24px; }
.booking-price span { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }
.booking-price strong { font-family: var(--display); font-size: 2.6rem; color: var(--terracotta); font-style: italic; font-weight: 400; display: block; margin-top: 4px; line-height: 1; }
.booking-price small { font-size: 0.78rem; color: var(--muted); }
.booking-form label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); font-weight: 600; margin: 16px 0 8px; }
.booking-form input, .booking-form select { width: 100%; padding: 12px 14px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: 2px; font-family: inherit; font-size: 0.92rem; outline: none; color: var(--ink); }
.booking-form input:focus, .booking-form select:focus { border-color: var(--terracotta); }
.booking-card .btn { margin-top: 24px; }
.booking-help { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.85rem; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.booking-help svg { color: var(--terracotta); flex-shrink: 0; }

/* ===========================
   PAGE-SPECIFIC: BLOG
   =========================== */
.blog-listing { background: var(--cream-soft); padding: 80px 0 100px; }
.featured-post {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.featured-post-img { aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; }
.featured-post-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-post-body .meta { display: flex; gap: 16px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); font-weight: 600; margin-bottom: 18px; }
.featured-post-body .meta .cat { color: var(--terracotta); }
.featured-post-body h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 18px; line-height: 1.15; }
.featured-post-body h2 a:hover { color: var(--terracotta); }
.featured-post-body p { color: var(--ink-soft); margin-bottom: 24px; font-size: 1.02rem; line-height: 1.75; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 32px; }
.blog-card { display: flex; flex-direction: column; }
.blog-card .img { aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; margin-bottom: 22px; }
.blog-card .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .img img { transform: scale(1.04); }
.blog-card .meta { display: flex; gap: 14px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--muted); font-weight: 600; margin-bottom: 14px; }
.blog-card .meta .cat { color: var(--terracotta); }
.blog-card h3 { font-size: 1.35rem; margin-bottom: 12px; line-height: 1.25; }
.blog-card h3 a:hover { color: var(--terracotta); }
.blog-card p { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 16px; line-height: 1.65; }
.blog-card .read-more { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.blog-card .read-more:hover { color: var(--terracotta); gap: 12px; }

/* Blog single */
.article-hero { background: var(--ink); padding: 110px 0 80px; color: var(--cream-soft); position: relative; overflow: hidden; }
.article-hero-bg { position: absolute; inset: 0; background-position: center; background-size: cover; opacity: 0.25; }
.article-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,31,26,0.4), rgba(42,31,26,0.85)); }
.article-hero .container { position: relative; z-index: 2; }
.article-hero .meta { display: flex; gap: 16px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(245,239,230,0.7); font-weight: 600; margin-bottom: 22px; flex-wrap: wrap; }
.article-hero .meta .cat { color: var(--sand); }
.article-hero h1 { color: var(--cream-soft); font-size: clamp(2rem, 4.5vw, 3.6rem); font-weight: 300; line-height: 1.1; max-width: 22ch; }
.article-hero h1 em { font-style: italic; color: var(--sand); }
.article-hero .lead { color: rgba(245,239,230,0.85); max-width: 60ch; margin-top: 22px; font-size: 1.1rem; }

.article-body { background: var(--cream-soft); padding: 80px 0; }
.article-body .prose { max-width: 720px; margin: 0 auto; }
.article-body img.feature { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 4px; margin-bottom: 50px; }
.article-body h2 { font-size: 1.9rem; margin: 44px 0 18px; }
.article-body h3 { font-size: 1.4rem; margin: 32px 0 14px; }
.article-body p { color: var(--ink-soft); margin-bottom: 22px; font-size: 1.05rem; line-height: 1.8; }
.article-body p.intro { font-family: var(--display); font-size: 1.3rem; font-style: italic; color: var(--ink); font-weight: 300; line-height: 1.55; margin-bottom: 36px; }
.article-body blockquote { border-left: 3px solid var(--terracotta); padding: 8px 0 8px 28px; margin: 32px 0; font-family: var(--display); font-style: italic; font-size: 1.3rem; color: var(--ink); line-height: 1.55; font-weight: 300; }
.article-body ul, .article-body ol { color: var(--ink-soft); padding-left: 22px; margin-bottom: 24px; }
.article-body li { margin-bottom: 10px; line-height: 1.75; }
.article-body a { color: var(--terracotta); border-bottom: 1px solid var(--terracotta); }
.author-bio { display: flex; gap: 22px; align-items: center; padding: 32px; background: var(--cream-deep); border-radius: 4px; margin-top: 60px; }
.author-bio img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-bio strong { display: block; font-family: var(--display); font-size: 1.3rem; font-style: italic; margin-bottom: 4px; }
.author-bio span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--terracotta); font-weight: 600; }
.author-bio p { color: var(--ink-soft); font-size: 0.94rem; margin-top: 10px; line-height: 1.65; }

/* ===========================
   PAGE-SPECIFIC: CONTACT
   =========================== */
.contact-section { background: var(--cream-soft); padding: 90px 0 100px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-info h2 { margin: 16px 0 22px; }
.contact-info .lead { margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 22px; }
.contact-card { display: flex; gap: 18px; padding: 24px; background: var(--cream-deep); border-radius: 4px; border-left: 3px solid var(--terracotta); }
.contact-card .ic { width: 44px; height: 44px; border-radius: 50%; background: var(--terracotta); color: var(--cream-soft); display: grid; place-items: center; flex-shrink: 0; }
.contact-card h4 { font-family: var(--body); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.contact-card p { color: var(--ink); font-weight: 500; font-size: 1.02rem; line-height: 1.5; }
.contact-card a:hover { color: var(--terracotta); }

.contact-form { background: var(--cream-deep); padding: 48px; border-radius: 4px; }
.contact-form h3 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form > p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); font-weight: 600; margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 14px 16px; background: var(--cream-soft); border: 1px solid var(--line); border-radius: 2px;
  font-family: inherit; font-size: 0.95rem; outline: none; color: var(--ink); transition: border .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--terracotta); }
.form-field textarea { resize: vertical; min-height: 130px; }

.map-section { padding: 0; height: 420px; background: var(--cream-deep); position: relative; overflow: hidden; }
.map-section iframe, .map-section .map-placeholder {
  width: 100%; height: 100%; border: 0;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--ink) 100%);
  display: grid; place-items: center;
  color: var(--cream-soft);
}
.map-placeholder { text-align: center; padding: 30px; }
.map-placeholder svg { margin-bottom: 16px; color: var(--sand); }
.map-placeholder strong { font-family: var(--display); font-size: 1.5rem; font-style: italic; display: block; margin-bottom: 6px; }

.faq-section { background: var(--cream-deep); }
.faq-grid { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); padding: 24px 0; }
.faq-item summary { font-family: var(--display); font-size: 1.2rem; font-weight: 500; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--body); font-size: 1.6rem; color: var(--terracotta); font-weight: 300; flex-shrink: 0; transition: transform .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] summary { color: var(--terracotta); }
.faq-item p { color: var(--ink-soft); margin-top: 14px; line-height: 1.75; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .testi-layout { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .menu-toggle { display: grid; place-items: center; width: 42px; height: 42px; }
  .menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; }
  .menu-toggle span::before, .menu-toggle span::after { content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink); }
  .menu-toggle span::before { top: -7px; }
  .menu-toggle span::after { top: 7px; }
  .about-grid, .vision-grid, .story-grid, .contact-grid, .featured-post { grid-template-columns: 1fr; gap: 50px; }
  .about-images { height: 480px; }
  .why-grid, .team-grid, .how-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-listing .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .dest-grid { grid-template-columns: repeat(4, 1fr); }
  .dest-1, .dest-2, .dest-3, .dest-4, .dest-5, .dest-6 { grid-column: span 2; grid-row: span 1; }
  .values-grid { grid-template-columns: 1fr; }
  .tours-layout, .tour-layout { grid-template-columns: 1fr; gap: 40px; }
  .tours-sidebar, .booking-card { position: static; }
  .tour-gallery { height: 360px; }
  .tour-highlights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  section { padding: 70px 0; }
  .topbar-left { flex-wrap: wrap; gap: 14px; font-size: 0.78rem; }
  .topbar-right { display: none; }
  .hero { min-height: 80vh; }
  .hero-inner { padding: 80px 0 70px; }
  .hero h1 { font-size: 2.6rem; }
  .page-hero { padding: 80px 0 70px; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .why-grid, .tours-grid, .dest-grid, .blog-grid, .team-grid, .how-grid, .tours-listing .tours-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-auto-rows: 280px; }
  .dest-1, .dest-2, .dest-3, .dest-4, .dest-5, .dest-6 { grid-column: span 1; }
  .testi-slide { flex: 0 0 100%; padding: 0 4px; }
  .testi-slide blockquote { font-size: 1.3rem; margin-bottom: 26px; }
  .testi-arrow { width: 38px; height: 38px; }
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--line); padding: 22px 0; }
  .stat:last-child { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-badge { width: 100px; height: 100px; }
  .about-badge strong { font-size: 1.4rem; }
  .tour-gallery { grid-template-columns: 1fr; height: auto; }
  .tour-gallery .grid-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .tour-gallery .grid-side img { height: 180px; }
  .tour-gallery > img { height: 280px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .itin-day { flex-direction: column; gap: 12px; }
  .tour-highlights { grid-template-columns: 1fr 1fr; }
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
