:root {
  --terracotta: #C4622D;
  --gold: #C9963A;
  --sand: #F0E2C4;
  --cream: #FAF6EE;
  --forest: #1E3D2F;
  --forest-light: #2D5A42;
  --ink: #1A1A18;
  --mist: #7A8C7E;
  --white: #FFFFFF;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Josefin Sans', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 3px; }

/* SITE HEADER (wraps top-bar + nav, fixed to top) */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.35s, box-shadow 0.35s;
}
.site-header::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.38) 55%, rgba(0,0,0,0) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s;
  z-index: -1;
}
.site-header.scrolled {
  background: rgba(26,26,24,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 12px rgba(0,0,0,0.25);
}
.site-header.scrolled::before { opacity: 0; }

/* TOP BAR (social icons left, secondary links right) */
.top-bar {
  background: rgba(26,26,24,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
}
.site-header.scrolled .top-bar {
  background: transparent;
  border-bottom-color: rgba(255,255,255,0.06);
  backdrop-filter: none;
}
.top-bar-inner {
  width: 100%;
  max-width: 1280px;
  min-height: 34px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
}
.top-social { display: flex; gap: 0.5rem; align-items: center; }
.top-social a,
.footer-social a {
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--white);
  background: var(--terracotta);
  text-decoration: none;
  border-radius: 50%;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.top-social a svg,
.footer-social a svg { width: 13px; height: 13px; display: block; }
.top-social a:hover,
.footer-social a:hover {
  background: var(--gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(201, 150, 58, 0.45);
}
.top-links { display: flex; gap: 2rem; align-items: center; }
.top-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color 0.25s;
  position: relative; padding: 0.25rem 0 0.15rem;
}
.top-links a:hover, .top-links a.active { color: var(--gold); }
.top-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--gold);
}

/* NAV (high-specificity rules so per-page CSS can't override the new layout) */
.site-header nav {
  position: static;
  width: 100%;
  max-width: 1280px;
  min-height: 68px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem;
  background: transparent;
  backdrop-filter: none;
  transition: min-height 0.35s, padding 0.35s;
  z-index: 1;
}
.site-header.scrolled nav {
  min-height: 58px;
  padding: 0 4rem;
  background: transparent;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.04em;
  text-decoration: none;
  display: inline-block;
}
.nav-logo span { color: var(--gold); }
.nav-logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 240px;
  transition: height 0.25s ease;
}
nav#mainNav.scrolled .nav-logo-img,
.site-header.scrolled .nav-logo-img { height: 44px; }
.site-header .nav-logo { flex: 0 0 auto; display: inline-flex; align-items: center; }
.site-header .nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 1.8vw, 2.2rem);
  list-style: none;
  margin: 0 1.5rem;
  flex: 1 1 auto;
}
.site-header .nav-links > li {
  display: flex;
  align-items: center;
  position: relative;
}
.site-header .nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
  text-decoration: none; transition: color 0.25s;
  white-space: nowrap;
}
.site-header .nav-links a:hover,
.site-header .nav-links a.active { color: var(--gold); }
.site-header .nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 1.55rem 0;
}
.nav-caret {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.nav-has-dropdown:hover .nav-caret,
.nav-has-dropdown:focus-within .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -2.25rem;
  width: min(920px, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 1.7rem;
  padding: 2rem;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 46px rgba(0,0,0,0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.nav-dropdown::before {
  content: '';
  position: absolute;
  left: 2.6rem;
  top: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--white);
}
.nav-dropdown-heading {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.55rem;
  color: var(--forest) !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
}
.nav-dropdown-heading span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--forest);
  font-size: 1.15rem;
  letter-spacing: 0;
}
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem 1rem;
}
.nav-dropdown-card {
  display: block;
  color: var(--ink) !important;
  letter-spacing: 0.08em !important;
}
.nav-dropdown-thumb {
  display: block;
  aspect-ratio: 1.55 / 1;
  margin-bottom: 0.75rem;
  background: var(--sand);
  overflow: hidden;
}
.nav-dropdown-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.28s ease;
}
.nav-dropdown-card:hover .nav-dropdown-thumb img,
.nav-dropdown-card:focus-visible .nav-dropdown-thumb img {
  transform: scale(1.06);
}
.nav-dropdown-title {
  display: block;
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
}
.nav-dropdown-card:hover .nav-dropdown-title,
.nav-dropdown-card:focus-visible .nav-dropdown-title {
  color: var(--terracotta);
}
.nav-dropdown-sub {
  display: block;
  margin-top: 0.35rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.55;
  color: var(--mist);
}
.nav-dropdown-card:hover .nav-dropdown-sub,
.nav-dropdown-card:focus-visible .nav-dropdown-sub {
  color: var(--forest);
}
/* Country-grid variant — used for the Destinations dropdown */
.nav-dropdown-grid--countries {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem 1.15rem;
}
.nav-dropdown-grid--countries .nav-dropdown-thumb {
  aspect-ratio: 1.35 / 1;
  margin-bottom: 0.85rem;
}
.nav-dropdown-grid--countries .nav-dropdown-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em !important;
  color: var(--forest);
  text-transform: none;
}
.nav-dropdown-cta {
  background: var(--forest-light);
  color: var(--white);
  padding: 1.65rem 1.45rem;
}
.nav-dropdown-cta h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.nav-dropdown-cta img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  display: block;
  margin-bottom: 1.25rem;
}
.nav-dropdown-cta p {
  font-size: 0.78rem;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.86);
  margin-bottom: 1.4rem;
}
.nav-dropdown-cta a {
  display: block;
  padding: 0.9rem 1rem;
  background: #FFC247;
  color: var(--forest) !important;
  text-align: center;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
}
.nav-dropdown-cta a:hover,
.nav-dropdown-cta a:focus-visible {
  background: var(--sand);
}
.site-header .nav-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; background: var(--terracotta);
  color: var(--white); border: none; padding: 0.65rem 1.6rem;
  cursor: pointer; transition: background 0.25s; text-decoration: none;
  flex: 0 0 auto;
  box-shadow: 0 8px 24px rgba(196,98,45,0.18);
}
.site-header .nav-cta:hover { background: var(--gold); }
.site-header .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.site-header .hamburger span { width: 24px; height: 2px; background: white; display: block; }

/* MOBILE NAV */
#mobileMenu.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 1500;
  background: rgba(26,26,24,0.98); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.2rem;
  padding: 5rem 1.5rem 3rem;
  overflow-y: auto;
}
#mobileMenu.mobile-menu.open { display: flex; }
#mobileMenu.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; color: var(--sand);
  text-decoration: none; letter-spacing: 0.06em;
}
#mobileMenu.mobile-menu a:hover { color: var(--gold); }
#mobileMenu .mobile-subnav {
  display: grid;
  gap: 0.7rem;
  margin-top: -1.4rem;
  text-align: center;
}
#mobileMenu .mobile-subnav a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240,226,196,0.72);
}
#mobileMenu .mobile-close {
  position: fixed; top: 1.4rem; right: 1.4rem;
  z-index: 1600;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; line-height: 1;
  color: var(--sand); cursor: pointer;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
#mobileMenu .mobile-close:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: white;
}

/* SECTION COMMONS */
section { padding: 7rem 4rem; }
.section-label {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 0.8rem; display: block;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 300;
  line-height: 1.2; color: var(--forest);
}
.section-title em { font-style: italic; color: var(--terracotta); }
.section-line {
  width: 56px; height: 2px; background: var(--gold);
  margin: 1.4rem 0 2rem;
}

/* BUTTONS */
.btn-primary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 1rem 2.4rem;
  background: var(--terracotta); color: white;
  border: none; cursor: pointer; text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 1rem 2.4rem;
  border: 1px solid rgba(255,255,255,0.45); color: white;
  background: transparent; cursor: pointer; text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(201,150,58,0.15); }
.btn-dark { font-family:'Josefin Sans',sans-serif; font-size:0.72rem; font-weight:600; letter-spacing:0.16em; text-transform:uppercase; padding:1rem 2.4rem; background: var(--forest); color:white; text-decoration:none; display:inline-block; }
.btn-dark:hover { background: var(--terracotta); }

/* COUNTRIES STRIP */
.countries-strip {
  background: var(--terracotta); padding: 1.2rem 4rem;
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  flex-wrap: wrap; overflow: hidden;
}
.country-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); white-space: nowrap;
}
.country-dot {
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
}

/* FOOTER */
footer {
  background: var(--ink); padding: 4rem 2.5rem 2rem;
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
  gap: 2rem 1.75rem;
  align-items: start;
  margin-bottom: 4rem;
}
.footer-brand { min-width: 0; }
.footer-brand .nav-logo,
.footer-brand .footer-logo { display: inline-block; margin-bottom: 1rem; text-decoration: none; }
.footer-logo-img {
  display: block;
  height: 64px;
  width: auto;
}
.footer-brand p {
  font-size: 0.78rem;
  line-height: 1.65;
  font-weight: 300;
  max-width: 22rem;
  margin: 0;
}
.footer-col { min-width: 0; }
.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin: 0; padding: 0; }
.footer-col ul a {
  font-size: 0.78rem; color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.2s; font-weight: 300;
  line-height: 1.35;
}
.footer-col ul a:hover { color: var(--sand); }
.footer-see-more {
  color: var(--gold) !important;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}
.footer-see-more:hover { color: var(--sand) !important; }
.footer-social { display: flex; gap: 0.5rem; align-items: center; margin-top: 1.25rem; }
.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.72rem; }
.footer-bottom .legal { display: flex; gap: 2rem; }
.footer-bottom .legal a { font-size: 0.72rem; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-bottom .legal a:hover { color: var(--sand); }



/* REVEAL ANIMATION */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* NEWSLETTER (shared component) */
#newsletter { background: var(--forest); padding: 5.5rem 4rem; }
.news-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
.news-inner .section-title { color: var(--sand); }
.news-inner .section-label { color: var(--gold); }
.news-inner p { color: rgba(255,255,255,0.65); line-height: 1.9; font-weight: 300; margin-top: 1rem; }
.news-form { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); padding: 1.4rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.news-form input { flex: 1; min-width: 220px; padding: 0.95rem 1rem; border: 1px solid rgba(255,255,255,0.18); background: rgba(0,0,0,0.15); color: white; font-family: 'Josefin Sans', sans-serif; outline: none; }
.news-form input::placeholder { color: rgba(255,255,255,0.45); }
.news-form button { padding: 0.95rem 1.4rem; border: none; background: var(--gold); color: white; font-family: 'Josefin Sans', sans-serif; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; cursor: pointer; }
.news-form button:hover { background: var(--terracotta); }

/* CONTACT (shared component) */
#contact { background: var(--sand); padding: 7rem 4rem; }
.contact-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-info .section-line { margin: 1.4rem 0 2rem; }
.contact-info > p,
#contact .contact-inner > div > p {
  font-size: 0.92rem; color: #555; line-height: 1.9; font-weight: 300;
  margin: 0 0 2.4rem; max-width: 46ch;
}
.contact-details { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 0.5rem; }
.contact-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-icon { width: 42px; height: 42px; min-width: 42px; background: var(--terracotta); color: white; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.contact-item-text strong { display: block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest); margin-bottom: 0.35rem; }
.contact-item-text span { font-size: 0.88rem; color: #555; font-weight: 300; line-height: 1.7; }

/* FORMS (shared) */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--forest); }
.form-group input,
.form-group select,
.form-group textarea {
  background: white; border: 1px solid #ddd;
  padding: 0.9rem 1rem; font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem; color: var(--ink); outline: none;
  transition: border-color 0.25s;
  width: 100%;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.75rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231E3D2F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
}
.form-group select::-ms-expand { display: none; }
.form-group select:invalid,
.form-group select:has(option[value=""]:checked),
.form-group select option[value=""] { color: #888; }
.form-group select:valid:not(:has(option[value=""]:checked)) { color: var(--ink); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terracotta); }
.form-group select:focus {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23C4622D' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 1.1rem 2.8rem;
  background: var(--terracotta); color: white; border: none;
  cursor: pointer; transition: background 0.25s; align-self: flex-start;
}
.form-submit:hover { background: var(--forest); }

/* TOUR CARD GRID (shared component) */
#tours { background: var(--sand); }
.tours-inner { max-width: 1200px; margin: 0 auto; }
.tours-header { margin-bottom: 3.5rem; max-width: 600px; }
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.tour-card { background: white; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.12); }
.tour-img { height: 230px; position: relative; overflow: hidden; }
.tour-img-bg { width: 100%; height: 100%; transition: transform 0.6s ease; }
.tour-card:hover .tour-img-bg { transform: scale(1.07); }
.tour-img-bg img { width: 100%; height: 100%; object-fit: cover; }
.tour-badge { position: absolute; top: 1.2rem; left: 1.2rem; background: var(--terracotta); color: white; font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.3rem 0.8rem; }
.tour-info { padding: 1.8rem; }
.tour-flag { font-size: 0.62rem; letter-spacing: 0.18em; color: var(--terracotta); text-transform: uppercase; margin-bottom: 0.5rem; display: block; }
.tour-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--forest); margin-bottom: 0.8rem; line-height: 1.3; }
.tour-desc { font-size: 0.8rem; color: #666; line-height: 1.7; font-weight: 300; margin-bottom: 1.4rem; }
.tour-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 1.2rem; }
.tour-duration { font-size: 0.72rem; color: var(--mist); letter-spacing: 0.08em; }
.tour-price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--terracotta); font-weight: 600; }

/* DESTINATION CARD GRID (shared component) */
#destinations {
  background: var(--forest);
  padding: 7rem 4rem;
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}
#destinations .section-title { color: var(--sand); }
#destinations .section-label { color: var(--gold); }
.dest-header { max-width: 1200px; margin: 0 auto 4rem; }
.dest-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  min-width: 0;
}
.dest-card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  height: 400px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.dest-bg { position: absolute; inset: 0; transition: transform 0.7s ease; }
.dest-bg img { width: 100%; max-width: 100%; height: 100%; object-fit: cover; display: block; }
.dest-card:hover .dest-bg { transform: scale(1.08); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%); transition: background 0.4s; }
.dest-card:hover .dest-overlay { background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 60%); }
.dest-pattern { position: absolute; inset: 0; opacity: 0.07; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 24px 24px; }
.dest-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; transform: translateY(12px); transition: transform 0.4s; }
.dest-card:hover .dest-content { transform: translateY(0); }
.dest-country { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; display: block; }
.dest-name { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; color: white; line-height: 1.2; }
.dest-desc { font-size: 0.78rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-top: 0.8rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.dest-card:hover .dest-desc { max-height: 80px; }
.dest-icon { position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; opacity: 0.6; }

/* WHY CARDS */
#why { background: var(--cream); }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-top: 4rem; }
.why-card { text-align: center; }
.why-icon { width: 64px; height: 64px; margin: 0 auto 1.5rem; background: linear-gradient(135deg, var(--terracotta), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.why-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--forest); margin-bottom: 0.8rem; }
.why-card p { font-size: 0.82rem; color: #666; line-height: 1.8; font-weight: 300; }

/* TESTIMONIALS */
#testimonials { background: var(--forest); padding: 7rem 4rem; }
.testi-inner { max-width: 1200px; margin: 0 auto; }
.testi-header { text-align: center; margin-bottom: 4rem; }
.testi-header .section-title { color: var(--sand); }
.testi-header .section-label { color: var(--gold); }
.testi-header .section-line { margin: 1.4rem auto 2rem; }
.testi-carousel { position: relative; overflow: hidden; padding: 0.5rem 0 1rem; }
.testi-carousel::before,
.testi-carousel::after { content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.testi-carousel::before { left: 0; background: linear-gradient(to right, var(--forest), rgba(30,61,47,0)); }
.testi-carousel::after { right: 0; background: linear-gradient(to left, var(--forest), rgba(30,61,47,0)); }
.testi-track { display: flex; gap: 0; width: max-content; animation: testiMarquee 72s linear infinite; will-change: transform; }
#testimonials .reveal { opacity: 1; transform: none; }
.testi-card { background: rgba(255,255,255,0.06); padding: 2.4rem; border-left: 3px solid var(--gold); position: relative; width: 360px; min-height: 330px; flex: 0 0 360px; margin-right: 2rem; }
.testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; color: var(--gold); line-height: 1; position: absolute; top: 1rem; left: 1.8rem; opacity: 0.4; }
.testi-text { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; color: rgba(240,226,196,0.9); line-height: 1.8; margin-bottom: 1.8rem; margin-top: 0.8rem; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--terracotta); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: white; font-weight: 600; }
.testi-name strong { display: block; font-size: 0.8rem; color: var(--sand); letter-spacing: 0.06em; }
.testi-name span { font-size: 0.68rem; color: var(--mist); letter-spacing: 0.1em; }
@keyframes testiMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* HOW IT WORKS */
#how { background: var(--cream); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.how-card { background: white; padding: 2.2rem; border: 1px solid rgba(0,0,0,0.06); position: relative; overflow: hidden; }
.how-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300; color: var(--gold); opacity: 0.7; line-height: 1; margin-bottom: 1rem; }
.how-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--forest); font-weight: 600; margin-bottom: 0.6rem; }
.how-card p { font-size: 0.88rem; line-height: 1.9; color: #666; font-weight: 300; }
.how-pill { display: inline-block; margin-top: 1.2rem; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); border: 1px solid rgba(196,98,45,0.25); padding: 0.35rem 0.9rem; }

/* BLOG PREVIEW (home grid + cards) */
#blog-preview { background: var(--sand); }
.blogp-inner { max-width: 1200px; margin: 0 auto; }
.blogp-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; margin-top: 3rem; }
.blogp-feature { background: white; overflow: hidden; display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; text-decoration: none; color: inherit; }
.blogp-feature:hover .blogp-img img { transform: scale(1.04); }
.blogp-img { height: 100%; min-height: 320px; overflow: hidden; position: relative; }
.blogp-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blogp-cat { position: absolute; top: 1.2rem; left: 1.2rem; background: var(--forest); color: var(--gold); border: 1px solid rgba(201,150,58,0.35); font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.35rem 0.9rem; }
.blogp-body { padding: 2.2rem; }
.blogp-meta { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--mist); margin-bottom: 0.8rem; }
.blogp-title { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--forest); font-weight: 300; line-height: 1.15; margin-bottom: 0.9rem; }
.blogp-excerpt { font-size: 0.88rem; color: #666; line-height: 1.9; font-weight: 300; margin-bottom: 1.2rem; }
.blogp-link { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terracotta); font-weight: 600; }
.blogp-list { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.blogp-card { background: white; display: grid; grid-template-columns: 140px 1fr; gap: 1.2rem; overflow: hidden; text-decoration: none; color: inherit; border: 1px solid rgba(0,0,0,0.06); }
.blogp-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.blogp-card .thumb { height: 110px; overflow: hidden; }
.blogp-card .thumb img { width: 140px; height: 110px; object-fit: cover; transition: transform 0.5s; }
.blogp-card:hover .thumb img { transform: scale(1.06); }
.blogp-card .b { padding: 1rem 1rem 1rem 0; }
.blogp-card .t { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--forest); font-weight: 400; line-height: 1.25; margin-bottom: 0.25rem; }
.blogp-card .m { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--mist); }

/* RESOURCE CARDS */
#resources { background: var(--cream); }
.res-inner { max-width: 1200px; margin: 0 auto; }
.res-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
.res-card { background: white; border: 1px solid rgba(0,0,0,0.06); padding: 1.8rem; text-decoration: none; color: inherit; }
.res-card:hover { box-shadow: 0 12px 34px rgba(0,0,0,0.08); transform: translateY(-2px); transition: transform 0.25s, box-shadow 0.25s; }
.res-k { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 0.7rem; display: block; }
.res-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--forest); font-weight: 600; margin-bottom: 0.6rem; }
.res-card p { font-size: 0.82rem; color: #666; line-height: 1.8; font-weight: 300; }

/* WORK HISTORY */
#work { background: var(--ink); padding: 5rem 4rem; }
.work-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: start; }
.work-inner .section-title { color: var(--sand); }
.work-inner .section-label { color: var(--gold); }
.work-inner .section-line { background: var(--gold); }
.work-copy p { font-size: 0.88rem; line-height: 1.9; color: rgba(255,255,255,0.65); font-weight: 300; }
.work-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.work-card { border: 1px solid rgba(255,255,255,0.12); padding: 1.2rem; background: rgba(255,255,255,0.04); }
.work-card strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--sand); font-weight: 400; margin-bottom: 0.3rem; }
.work-list { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; }
.work-list li { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.14); padding: 0.35rem 0.8rem; }

/* FAQ PREVIEW */
#faq-preview { background: var(--sand); }
.faq-inner-home { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: start; }
.faq-list-home { display: flex; flex-direction: column; gap: 0.8rem; }
.faqq { background: white; border: 1px solid rgba(0,0,0,0.06); padding: 1rem 1.2rem; }
.faqq strong { display: block; font-size: 0.78rem; letter-spacing: 0.08em; color: var(--forest); }
.faqq span { display: block; margin-top: 0.35rem; font-size: 0.82rem; color: #666; line-height: 1.8; font-weight: 300; }
.faq-cta { margin-top: 1.4rem; display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ABOUT STATS */
.about-stats { display: flex; gap: 2.5rem; margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid rgba(196,98,45,0.2); flex-wrap: wrap; }
.stat strong { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; color: var(--terracotta); display: block; font-weight: 300; }
.stat span { font-size: 0.72rem; letter-spacing: 0.12em; color: var(--mist); text-transform: uppercase; }

/* LEGAL PAGES (Privacy / Terms / Cookies) */
.legal-page {
  background: var(--cream);
  padding: 5rem 2rem 6rem;
}
.legal-inner {
  max-width: 880px;
  margin: 0 auto;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 4rem 4rem 4.5rem;
  box-shadow: 0 14px 40px rgba(26,26,24,0.04);
}
.legal-meta {
  font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); display: block; margin-bottom: 0.8rem;
}
.legal-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 400; color: var(--forest);
  line-height: 1.2; margin-bottom: 1.2rem;
}
.legal-inner h1 em { font-style: italic; color: var(--terracotta); }
.legal-intro {
  font-size: 0.95rem; line-height: 1.95; color: #555;
  font-weight: 300; margin: 0 0 2.4rem; max-width: 65ch;
}
.legal-toc {
  background: var(--sand);
  border-left: 3px solid var(--gold);
  padding: 1.4rem 1.6rem;
  margin: 0 0 3rem;
}
.legal-toc strong {
  display: block; font-size: 0.66rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--forest); margin-bottom: 0.7rem;
}
.legal-toc ol {
  list-style: none; counter-reset: toc; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1.4rem;
}
.legal-toc ol li { counter-increment: toc; font-size: 0.85rem; }
.legal-toc ol li::before {
  content: counter(toc, decimal-leading-zero) ' ';
  color: var(--terracotta); font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; margin-right: 0.4rem;
}
.legal-toc a {
  color: #444; text-decoration: none; font-weight: 300;
  transition: color 0.2s;
}
.legal-toc a:hover { color: var(--terracotta); }
.legal-section {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 2.2rem;
  margin-top: 2.6rem;
}
.legal-section:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem; font-weight: 600; color: var(--forest);
  margin-bottom: 1rem;
}
.legal-section h3 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 600;
  margin: 1.6rem 0 0.7rem;
}
.legal-section p {
  font-size: 0.92rem; line-height: 1.95; color: #4a4a4a;
  font-weight: 300; margin: 0 0 1rem;
}
.legal-section ul {
  list-style: none; margin: 0.4rem 0 1.2rem; padding: 0;
}
.legal-section ul li {
  font-size: 0.9rem; line-height: 1.85; color: #4a4a4a;
  font-weight: 300; padding-left: 1.3rem; position: relative;
  margin-bottom: 0.45rem;
}
.legal-section ul li::before {
  content: ''; position: absolute; left: 0; top: 0.85em;
  width: 6px; height: 1px; background: var(--gold);
}
.legal-section a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }
.legal-section a:hover { color: var(--forest); }
.legal-contact {
  margin-top: 3rem; padding: 1.8rem 2rem;
  background: var(--forest); color: var(--sand);
}
.legal-contact strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--gold); font-weight: 400;
  margin-bottom: 0.4rem;
}
.legal-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.8; font-weight: 300; margin: 0; }
.legal-contact a { color: var(--sand); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 768px) {
  .legal-inner { padding: 2.4rem 1.5rem 2.8rem; }
  .legal-toc ol { grid-template-columns: 1fr; }
  .legal-page { padding: 3rem 1rem 4rem; }
}

/* PAGE HERO (shared component) */
.page-hero { position: relative; min-height: 60vh; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; padding: 11rem 2rem 4rem; }
.page-hero-bg { position: absolute; inset: 0; background: #1A1A18; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%); }
.page-hero-content { position: relative; z-index: 2; max-width: 900px; color: white; }
.page-hero-eyebrow { display: block; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.page-hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 300; line-height: 1.1; color: white; margin-bottom: 1.2rem; }
.page-hero-title em { font-style: italic; color: var(--sand); }
.page-hero-sub { font-family: 'Josefin Sans', sans-serif; font-size: 0.9rem; font-weight: 300; letter-spacing: 0.06em; color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 auto; line-height: 1.9; }

/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.18);
  z-index: 998;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.2s;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  background: #1ebe5a;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0, 0, 0, 0.22);
}
.whatsapp-float:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.whatsapp-float-icon {
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 2;
}
.whatsapp-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.55;
  animation: whatsapp-pulse 2s ease-out infinite;
  z-index: 1;
}
@keyframes whatsapp-pulse {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.55); opacity: 0;    }
  100% { transform: scale(1.55); opacity: 0;    }
}
.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--forest);
  color: white;
  padding: 0.55rem 0.95rem;
  border-radius: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 400;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--forest);
}
.whatsapp-float:hover .whatsapp-float-tooltip,
.whatsapp-float:focus-visible .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@media (max-width: 768px) {
  .whatsapp-float { bottom: 1rem; right: 1rem; width: 54px; height: 54px; }
  .whatsapp-float-icon { width: 28px; height: 28px; }
  .whatsapp-float-tooltip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float-pulse { animation: none; }
}

/* HTTP 404 — branded error page */
.error-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 2rem;
}
.error-help-band {
  background: var(--cream);
  padding: 3rem 1.5rem 4rem;
  border-top: 1px solid rgba(30, 61, 47, 0.08);
}
.error-help-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.error-help-lead {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.error-help-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  align-items: center;
}
.error-help-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  text-decoration: none;
  border-bottom: 1px solid rgba(196, 98, 45, 0.35);
  padding-bottom: 0.15rem;
  transition: color 0.2s, border-color 0.2s;
}
.error-help-links a:hover {
  color: var(--terracotta);
  border-bottom-color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  section { padding: 5rem 2rem; }
  .site-header nav { padding: 0 2rem; }
  .site-header.scrolled nav { padding: 0 2rem; }
  .top-bar-inner { padding: 0 2rem; }
  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
  .footer-brand { grid-column: 1 / -1; max-width: 36rem; }
  .news-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  #newsletter { padding: 4rem 2rem; }
  #contact { padding: 5rem 2rem; }
  #destinations, #testimonials { padding: 5rem 2rem; }
  .dest-grid    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tours-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: repeat(2, 1fr); }
  .testi-card   { width: 320px; min-height: 340px; flex-basis: 320px; }
  .how-grid     { grid-template-columns: 1fr; }
  .res-grid     { grid-template-columns: 1fr 1fr; }
  .blogp-grid   { grid-template-columns: 1fr; }
  .blogp-feature{ grid-template-columns: 1fr; }
  .blogp-img    { min-height: 240px; }
  .work-inner   { grid-template-columns: 1fr; }
  .faq-inner-home { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .site-header .nav-links,
  .site-header .nav-cta { display: none; }
  .site-header nav { min-height: 64px; }
  .site-header .nav-logo { font-size: 1.55rem; }
  .nav-logo-img { height: 42px; }
  .site-header.scrolled .nav-logo-img { height: 36px; }
  .footer-logo-img { height: 56px; }
  .site-header .hamburger { display: flex; }
  .top-bar { display: none; }
  /* Testimonials: full-bleed cards on small screens */
  #testimonials {
    padding-left: 0;
    padding-right: 0;
  }
  .testi-inner {
    max-width: none;
    width: 100%;
  }
  .testi-header {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .testi-carousel::before,
  .testi-carousel::after {
    display: none;
  }
  .testi-track { animation-duration: 58s; }
  .testi-card {
    width: 100vw;
    flex: 0 0 100vw;
    min-height: 300px;
    padding: 1.75rem 1.25rem;
    margin-right: 0.65rem;
    box-sizing: border-box;
  }
  /* Tour cards: near full width with a small side gutter */
  #tours {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #tours .tours-inner {
    max-width: none;
    width: 100%;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .countries-strip { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 7rem 1.5rem 3rem; min-height: 50vh; }
  #destinations { padding: 4rem 1.25rem; }
  .dest-grid  { grid-template-columns: minmax(0, 1fr); }
  .tours-grid { grid-template-columns: 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .res-grid   { grid-template-columns: 1fr; }
  .about-stats { gap: 1.5rem; }
}
