: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;
}

/* â”€â”€â”€ SCROLLBAR â”€â”€â”€ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--terracotta); border-radius: 3px; }

/* â”€â”€â”€ NAV â”€â”€â”€ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  background: transparent;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(26,26,24,0.96);
  padding: 0.8rem 4rem;
  backdrop-filter: blur(8px);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--white); letter-spacing: 0.04em;
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.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;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.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;
}
.nav-cta:hover { background: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: white; display: block; }

/* ─── HERO ─── */
#home {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
  background: #1a221d;
}
.hero-sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Hero background carousel — designed full-bleed slides only */
.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1a221d;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 0;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-slide img.hero-slide-img-svg {
  object-fit: contain;
  padding: 2rem;
  background: linear-gradient(160deg, #2a2419 0%, #1e3d2f 45%, #3b2a1a 100%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: opacity 0.35s ease; }
}

.hero-headline {
  position: absolute;
  z-index: 3;
  left: clamp(1.25rem, 5.5vw, 5rem);
  top: 50%;
  transform: translateY(-46%);
  max-width: min(560px, 88vw);
  text-align: left;
  pointer-events: none;
}
.hero-slide-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(2.4rem, 6.5vw, 5.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.02;
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 0.55rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.hero-slide-tagline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: clamp(0.62rem, 1.25vw, 0.82rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

.hero-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(26, 26, 24, 0.4);
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.hero-carousel-nav:hover {
  background: rgba(196, 98, 45, 0.65);
  border-color: rgba(255, 255, 255, 0.55);
}
.hero-carousel-nav:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.hero-carousel-prev { left: 1.25rem; }
.hero-carousel-next { right: 1.25rem; }

.hero-carousel--single ~ .hero-carousel-nav {
  display: none;
}

.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); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1px; height: 48px; background: rgba(255,255,255,0.3);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; height: 48px; }
  50% { opacity: 1; height: 64px; }
}

/* â”€â”€â”€ 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;
}

/* â”€â”€â”€ ABOUT â”€â”€â”€ */
#about { background: var(--cream); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-main {
  width: 100%; height: 500px;
  background: linear-gradient(135deg, #2D5A42 0%, #6B4226 60%, #3B2A1A 100%);
  position: relative; overflow: hidden;
}
.about-img-main img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.about-img-badge {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 160px; height: 160px;
  background: var(--terracotta);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1rem;
}
.about-img-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; color: white; font-weight: 300; display: block;
}
.about-img-badge span {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.about-text p {
  font-size: 0.95rem; line-height: 1.9; color: #444; margin-bottom: 1.4rem;
  font-weight: 300;
}
.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);
}
.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; }

/* â”€â”€â”€ DESTINATIONS â”€â”€â”€ */
#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: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  min-width: 0;
}
@media (min-width: 1100px) {
  .dest-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}
.dest-card {
  position: relative;
  min-width: 0;
  max-width: 100%;
  min-height: 320px;
  height: clamp(300px, 32vw, 400px);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.dest-card:nth-child(1) .dest-bg { background: linear-gradient(160deg, #3B6E3A 0%, #A87240 100%); }
.dest-card:nth-child(2) .dest-bg { background: linear-gradient(160deg, #7A3B1E 0%, #2D5A42 100%); }
.dest-card:nth-child(3) .dest-bg { background: linear-gradient(160deg, #2A4A6B 0%, #8B6914 100%); }
.dest-card:nth-child(4) .dest-bg { background: linear-gradient(160deg, #5C3317 0%, #D4763A 80%); }
.dest-card:nth-child(5) .dest-bg { background: linear-gradient(160deg, #1A4A5A 0%, #8B7355 100%); }
.dest-card:nth-child(6) .dest-bg { background: linear-gradient(160deg, #3D6B5A 0%, #1A3040 100%); }
.dest-card:nth-child(7) .dest-bg { background: linear-gradient(160deg, #4A3520 0%, #8B5A3C 100%); }
.dest-card:nth-child(8) .dest-bg { background: linear-gradient(160deg, #2A3D5A 0%, #6B8E6B 100%); }
.dest-card:nth-child(9) .dest-bg { background: linear-gradient(160deg, #5A2A4A 0%, #C4622D 90%); }
.dest-card:nth-child(10) .dest-bg { background: linear-gradient(160deg, #3A2A1A 0%, #8B6914 100%); }
.dest-card:nth-child(11) .dest-bg { background: linear-gradient(160deg, #1A3A4A 0%, #5A7A6A 100%); }
.dest-card:nth-child(12) .dest-bg { background: linear-gradient(160deg, #4A3A2A 0%, #2D5A42 100%); }
.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(6, 10, 16, 0.92) 0%,
    rgba(6, 10, 16, 0.55) 32%,
    rgba(6, 10, 16, 0.18) 58%,
    transparent 78%
  );
  transition: background 0.4s;
}
.dest-card:hover .dest-overlay {
  background: linear-gradient(
    to top,
    rgba(6, 10, 16, 0.94) 0%,
    rgba(6, 10, 16, 0.62) 38%,
    rgba(6, 10, 16, 0.22) 65%,
    transparent 82%
  );
}
.dest-content {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.75rem 1.5rem 1.85rem;
  transform: translateY(0);
  transition: transform 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .dest-content {
    transform: translateY(10px);
  }
  .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;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.85);
}
.dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 300; color: white; line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.75), 0 1px 0 rgba(0, 0, 0, 0.4);
}
.dest-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.82); line-height: 1.7;
  margin-top: 0.75rem;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.8);
}
.dest-card:hover .dest-desc { max-height: 88px; }
.dest-icon {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-size: 2rem; opacity: 0.6;
}

/* â”€â”€â”€ TOURS â”€â”€â”€ */
#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-card:nth-child(1) .tour-img-bg { background: linear-gradient(135deg,#4A7C4E 0%,#C4622D 100%); }
.tour-card:nth-child(2) .tour-img-bg { background: linear-gradient(135deg,#6B4226 0%,#2D5A42 100%); }
.tour-card:nth-child(3) .tour-img-bg { background: linear-gradient(135deg,#1A3A5C 0%,#8B6914 100%); }
.tour-card:nth-child(4) .tour-img-bg { background: linear-gradient(135deg,#3D5A3E 0%,#8B3A1A 100%); }
.tour-card:nth-child(5) .tour-img-bg { background: linear-gradient(135deg,#5C3D1A 0%,#2A5C4A 100%); }
.tour-card:nth-child(6) .tour-img-bg { background: linear-gradient(135deg,#1A3D5C 0%,#5C3D1A 100%); }
.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;
}

/* â”€â”€â”€ WHY US â”€â”€â”€ */
#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 ——— */
#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); }

/* ——— RESOURCES ——— */
#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 TRUST STRIP ——— */
#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 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 + NEWSLETTER ——— */
#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; }
.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); }

#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 â”€â”€â”€ */
#contact { background: var(--sand); padding: 7rem 4rem; }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
}
.contact-info p {
  font-size: 0.9rem; color: #555; line-height: 1.9; font-weight: 300; margin-bottom: 2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.contact-icon {
  width: 42px; height: 42px; min-width: 42px;
  background: var(--terracotta);
  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.2rem;
}
.contact-item-text span {
  font-size: 0.88rem; color: #555; font-weight: 300;
}
.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); }

/* â”€â”€â”€ 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: 5rem 4rem 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 .nav-logo { font-size: 1.9rem; display: inline-block; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.8rem; line-height: 1.75; font-weight: 300; max-width: none; }
.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.4rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-see-more {
  color: var(--gold) !important;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.footer-see-more:hover { color: var(--sand) !important; }
.footer-col ul a {
  font-size: 0.8rem; color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.2s; font-weight: 300;
  overflow-wrap: anywhere;
}
.footer-col ul a:hover { color: var(--sand); }
.footer-social { display: flex; gap: 0.5rem; align-items: center; margin-top: 1.8rem; }
.footer-bottom {
  max-width: 1200px; 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; }

/* â”€â”€â”€ MOBILE NAV â”€â”€â”€ */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(26,26,24,0.98); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: var(--sand);
  text-decoration: none; letter-spacing: 0.06em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 2rem; right: 2rem;
  font-size: 1.5rem; color: rgba(255,255,255,0.5); cursor: pointer; background: none; border: none;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 1024px) {
  section { padding: 5rem 2rem; }
  #destinations {
    padding: 5rem 2rem;
  }
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-main { height: 350px; }
  .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; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
  .footer-brand { grid-column: 1 / -1; max-width: 36rem; }
  .how-grid { grid-template-columns: 1fr; }
  .blogp-grid { grid-template-columns: 1fr; }
  .blogp-feature { grid-template-columns: 1fr; }
  .blogp-img { min-height: 240px; }
  .res-grid { grid-template-columns: 1fr 1fr; }
  .work-inner { grid-template-columns: 1fr; }
  .faq-inner-home { grid-template-columns: 1fr; }
  .news-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  /* Testimonials: full-bleed cards (edge-to-edge) 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;
  }
  .dest-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }
  #destinations {
    padding: 4rem 1.25rem;
  }
  .dest-card {
    height: auto;
    min-height: 280px;
    aspect-ratio: 16 / 11;
  }
  .dest-content {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
  }
  .tours-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .countries-strip { gap: 1.5rem; }
  .about-img-badge { bottom: -1rem; right: -1rem; width: 120px; height: 120px; }
  #home { height: 60vh; min-height: 280px; }
  .hero-headline {
    left: 1.15rem;
    transform: translateY(-42%);
    max-width: calc(100% - 2.3rem);
  }
  .hero-slide-title { letter-spacing: 0.03em; }
  .hero-slide-tagline { letter-spacing: 0.22em; }
  .hero-carousel-prev { left: 0.5rem; }
  .hero-carousel-next { right: 0.5rem; }
  .hero-carousel-nav { width: 38px; height: 38px; font-size: 1.25rem; }
}