/* ==========================================================================
   Journeys Africa DMC — design system
   Brand teal #00695C (taken from the logo), warm sand & brass accents.
   ========================================================================== */

:root {
  --brand:        #00695C;
  --brand-deep:   #00463D;
  --brand-darker: #06231F;
  --brand-mid:    #0F7F70;
  --brand-light:  #3E9C8C;
  --brand-wash:   #E7F0ED;

  --gold:         #C08A3E;
  --gold-light:   #E0B778;
  --gold-wash:    #F6EBDA;

  --ink:          #0C1F1B;
  --body:         #3E4B47;
  --muted:        #74837E;
  --line:         #E2DDD3;

  --sand:         #FAF6EF;
  --sand-2:       #F1EADD;
  --paper:        #FFFFFF;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-cond:    "Barlow Condensed", "Inter", sans-serif;

  --shell: 1280px;
  --radius: 2px;
  --radius-lg: 4px;

  --shadow-sm: 0 2px 10px rgba(12, 31, 27, .06);
  --shadow:    0 18px 45px -22px rgba(12, 31, 27, .35);
  --shadow-lg: 0 40px 90px -40px rgba(12, 31, 27, .55);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --header-h: 84px;
}

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--body);
  background: var(--paper);
  overflow-x: hidden;
}
img, svg, video { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--gold); }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0 0 .55em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff; padding: .8rem 1.2rem;
}
.skip-link:focus { left: 1rem; top: 1rem; color: #fff; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --------------------------------------------------------------- layout */
.shell { width: min(100% - 2.6rem, var(--shell)); margin-inline: auto; }
.shell--narrow { width: min(100% - 2.6rem, 860px); }
.section { padding: clamp(4rem, 8vw, 7.5rem) 0; }
.section--tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section--sand { background: var(--sand); }
.section--sand2 { background: var(--sand-2); }
.section--dark { background: var(--brand-darker); color: #CBD8D3; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--brand { background: var(--brand-deep); color: #CBE0DA; }
.section--brand h2, .section--brand h3 { color: #fff; }

.grid { display: grid; gap: clamp(1.2rem, 2.2vw, 2rem); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

/* ------------------------------------------------------------ typography */
.eyebrow {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .32em;
  font-size: .78rem;
  font-weight: 500;
  color: var(--gold);
  margin: 0 0 1.1rem;
  display: flex; align-items: center; gap: .8rem;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: currentColor; flex: none;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: ""; width: 34px; height: 1px; background: currentColor; flex: none;
}
.section--dark .eyebrow, .section--brand .eyebrow { color: var(--gold-light); }

.lede { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--body); line-height: 1.75; }
.section--dark .lede, .section--brand .lede { color: #B9CCC6; }
.muted { color: var(--muted); }
.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--split {
  max-width: none; display: flex; gap: 2rem; align-items: flex-end;
  justify-content: space-between; flex-wrap: wrap;
}
.section-head--split > div:first-child { max-width: 640px; }

.rule { width: 46px; height: 2px; background: var(--gold); margin: 1.6rem 0; border: 0; }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-cond);
  text-transform: uppercase; letter-spacing: .16em; font-size: .86rem; font-weight: 500;
  padding: 1.05rem 2.1rem;
  border: 1px solid transparent; border-radius: var(--radius);
  transition: all .3s var(--ease); position: relative; overflow: hidden;
  background: var(--brand); color: #fff; white-space: nowrap;
}
.btn:hover { background: var(--brand-deep); color: #fff; transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { background: #A8752F; color: #fff; }
.btn--ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--outline { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }
.btn--sm { padding: .72rem 1.35rem; font-size: .76rem; }
.btn--block { display: flex; width: 100%; }

.link-more {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .2em;
  font-size: .8rem; font-weight: 500; color: var(--brand);
  display: inline-flex; align-items: center; gap: .6rem;
}
.link-more::after {
  content: ""; width: 26px; height: 1px; background: currentColor;
  transition: width .3s var(--ease);
}
.link-more:hover::after { width: 42px; }
.section--dark .link-more, .section--brand .link-more { color: var(--gold-light); }

/* ---------------------------------------------------------------- topbar */
.topbar {
  background: var(--brand-darker); color: #9FB6B0;
  font-size: .82rem; position: relative; z-index: 60;
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; min-height: 40px; flex-wrap: wrap;
}
.topbar__note { margin: 0; font-family: var(--font-cond); letter-spacing: .14em; text-transform: uppercase; font-size: .74rem; }
.topbar__links { display: flex; gap: 1.4rem; align-items: center; }
.topbar__links a { color: #C6D6D1; }
.topbar__links a:hover { color: var(--gold-light); }
.topbar__social { display: flex; gap: .8rem; font-family: var(--font-cond); letter-spacing: .12em; }
@media (max-width: 900px) { .topbar { display: none; } }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky; top: 0; z-index: 97;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  background: transparent;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.6rem; min-height: var(--header-h);
}
.brand { display: block; flex: none; }
.brand__img { height: 50px; width: auto; transition: opacity .3s var(--ease), height .35s var(--ease); }
.brand__img--dark { display: none; }

.site-header.is-stuck {
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(8px);
  box-shadow: 0 1px 0 var(--line), 0 14px 30px -26px rgba(12,31,27,.5);
  --header-h: 72px;
}
.site-header.is-stuck .brand__img--light { display: none; }
.site-header.is-stuck .brand__img--dark { display: block; }
.site-header.is-stuck .brand__img { height: 38px; }

.nav__list { display: flex; align-items: center; gap: .35rem; }
.nav__list > li > a {
  display: block; padding: .7rem .85rem;
  font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .14em; font-size: .87rem; font-weight: 500;
  color: rgba(255,255,255,.92);
  position: relative; white-space: nowrap;
}
.nav__list > li > a::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .45rem;
  height: 1px; background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform .3s var(--ease);
}
.nav__list > li > a:hover::after, .nav__list > li.is-active > a::after { transform: scaleX(1); }
.nav__list > li > a:hover { color: #fff; }
.site-header.is-stuck .nav__list > li > a { color: var(--ink); }
.site-header.is-stuck .nav__list > li > a:hover { color: var(--brand); }

.caret {
  display: inline-block; width: 5px; height: 5px; margin-left: .3rem;
  border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}
.has-drop { position: relative; }
.drop {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: #fff; box-shadow: var(--shadow); border-top: 2px solid var(--gold);
  padding: .6rem 0; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .28s var(--ease);
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a {
  display: block; padding: .6rem 1.4rem; color: var(--ink); font-size: .95rem;
  border-left: 2px solid transparent;
}
.drop a:hover { background: var(--sand); color: var(--brand); border-left-color: var(--gold); }

.site-header__actions { display: flex; align-items: center; gap: 1rem; }
.header-search { position: relative; display: none; }
@media (min-width: 1340px) { .header-search { display: block; } }
.header-search input {
  width: 130px; background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.4);
  color: #fff; padding: .45rem 1.8rem .45rem 0; font-size: .9rem;
  transition: width .35s var(--ease);
}
.header-search input::placeholder { color: rgba(255,255,255,.65); }
.header-search input:focus { width: 190px; outline: none; border-bottom-color: var(--gold); }
.header-search button {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  background: none; border: 0; padding: 0; width: 20px; height: 20px;
}
.header-search svg { width: 18px; height: 18px; fill: none; stroke: rgba(255,255,255,.8); stroke-width: 1.6; }
.site-header.is-stuck .header-search input { color: var(--ink); border-bottom-color: var(--line); }
.site-header.is-stuck .header-search input::placeholder { color: var(--muted); }
.site-header.is-stuck .header-search svg { stroke: var(--brand); }

.nav__mobile-extra { display: none; }
.burger {
  display: none; width: 42px; height: 34px; background: none; border: 0;
  padding: 0; position: relative;
}
.burger span {
  display: block; height: 2px; background: #fff; margin: 6px 0;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.site-header.is-stuck .burger span { background: var(--ink); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1240px) {
  .nav__list { gap: 0; }
  .nav__list > li > a { padding: .7rem .62rem; font-size: .82rem; letter-spacing: .1em; }
  .site-header__inner { gap: 1rem; }
}

@media (max-width: 1080px) {
  .burger { display: block; }
  .site-header__cta { display: none; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(88vw, 380px);
    background: var(--brand-darker); padding: 6rem 2rem 2rem;
    transform: translateX(100%); transition: transform .4s var(--ease);
    overflow-y: auto; z-index: 95;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li > a { color: #fff; font-size: 1.05rem; padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__list > li > a::after { display: none; }
  .drop {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; border: 0; padding: 0 0 .6rem 1rem;
  }
  .drop a { color: #9FB6B0; padding: .45rem 0; border: 0; }
  .drop a:hover { background: none; color: var(--gold-light); }
  .nav__mobile-extra { display: block; margin-top: 2rem; }
  .nav__phone {
    display: block; margin-top: 1.2rem; color: #fff; text-align: center;
    font-family: var(--font-cond); letter-spacing: .16em;
  }
  .site-header.is-stuck .nav__list > li > a { color: #fff; }
}
.nav-scrim {
  position: fixed; inset: 0; background: rgba(6,35,31,.6); z-index: 94;
  opacity: 0; visibility: hidden; transition: opacity .35s var(--ease);
}
.nav-scrim.is-open { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; min-height: 100svh; margin-top: calc(var(--header-h) * -1);
  display: flex; align-items: center; color: #fff; overflow: hidden;
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); transition: transform 9s linear;
}
.hero__slide.is-active img { transform: scale(1.16); }
.hero__slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,35,31,.62) 0%, rgba(6,35,31,.18) 34%, rgba(6,35,31,.30) 62%, rgba(6,35,31,.86) 100%),
    linear-gradient(90deg, rgba(6,35,31,.55) 0%, rgba(6,35,31,0) 62%);
}
.hero__inner { position: relative; z-index: 3; padding: calc(var(--header-h) + 4rem) 0 6rem; width: 100%; }
.hero__content { max-width: 780px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: #fff; font-size: clamp(2.8rem, 6.6vw, 5.4rem); font-weight: 300;
  letter-spacing: -.025em; margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,.88);
  max-width: 620px; margin-bottom: 2.4rem; line-height: 1.7;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__slide-copy { opacity: 0; transform: translateY(26px); }
.hero__slide-copy.is-active {
  opacity: 1; transform: none;
  transition: opacity .9s var(--ease) .35s, transform .9s var(--ease) .35s;
  position: relative;
}
.hero__slide-copy:not(.is-active) { position: absolute; pointer-events: none; }

.hero__dots {
  position: absolute; left: 0; right: 0; bottom: 2.6rem; z-index: 4;
  display: flex; gap: .9rem; align-items: center;
}
.hero__dots .shell { display: flex; gap: .9rem; align-items: center; }
.hero__dot {
  width: 46px; height: 2px; background: rgba(255,255,255,.35); border: 0; padding: 0;
  position: relative; overflow: hidden;
}
.hero__dot::after {
  content: ""; position: absolute; inset: 0; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
}
.hero__dot.is-active::after { animation: dotFill 7s linear forwards; }
@keyframes dotFill { to { transform: scaleX(1); } }

.hero__scroll {
  position: absolute; right: 2.4rem; bottom: 2.4rem; z-index: 4;
  writing-mode: vertical-rl; font-family: var(--font-cond);
  text-transform: uppercase; letter-spacing: .3em; font-size: .72rem;
  color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 1rem;
}
.hero__scroll::after {
  content: ""; width: 1px; height: 54px; background: rgba(255,255,255,.5);
  animation: scrollCue 2.4s var(--ease) infinite;
}
@keyframes scrollCue { 0%,100% { transform: scaleY(.4); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (max-width: 760px) { .hero__scroll { display: none; } }

/* page hero (inner pages) */
.page-hero {
  position: relative; margin-top: calc(var(--header-h) * -1);
  min-height: 62vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
}
.page-hero--short { min-height: 48vh; }
.page-hero--tall { min-height: 78vh; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,35,31,.66) 0%, rgba(6,35,31,.22) 40%, rgba(6,35,31,.85) 100%);
}
.page-hero__inner { position: relative; z-index: 3; padding: calc(var(--header-h) + 4rem) 0 3.4rem; width: 100%; }
.page-hero h1 { color: #fff; font-weight: 300; margin-bottom: .5rem; }
.page-hero__sub { color: rgba(255,255,255,.86); max-width: 640px; font-size: 1.08rem; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero__meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.8rem;
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .16em; font-size: .82rem;
  color: rgba(255,255,255,.9);
}
.page-hero__meta span { display: flex; align-items: center; gap: .55rem; }
.page-hero__meta span::before { content: ""; width: 6px; height: 6px; background: var(--gold); }

.crumbs {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .18em;
  font-size: .74rem; color: rgba(255,255,255,.7); margin-bottom: 1.4rem;
}
.crumbs a { color: rgba(255,255,255,.8); }
.crumbs a:hover { color: var(--gold-light); }
.crumbs span { margin: 0 .55rem; }

/* ---------------------------------------------------------------- intro */
.intro-split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
@media (max-width: 940px) { .intro-split { grid-template-columns: 1fr; } }
.intro-figure { position: relative; }
.intro-figure__main { aspect-ratio: 4/5; overflow: hidden; }
.intro-figure__main img { width: 100%; height: 100%; object-fit: cover; }
.intro-figure__inset {
  position: absolute; right: -1.6rem; bottom: -1.6rem; width: 52%;
  aspect-ratio: 1/1; overflow: hidden; border: 8px solid #fff; box-shadow: var(--shadow);
}
.intro-figure__inset img { width: 100%; height: 100%; object-fit: cover; }
.intro-figure__badge {
  position: absolute; left: -1.4rem; top: 2rem; background: var(--brand);
  color: #fff; padding: 1.2rem 1.4rem; max-width: 190px; box-shadow: var(--shadow);
}
.intro-figure__badge strong {
  display: block; font-family: var(--font-display); font-size: 2.4rem; line-height: 1;
  color: var(--gold-light); font-weight: 400;
}
.intro-figure__badge span {
  font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .18em; font-size: .74rem;
}
@media (max-width: 560px) { .intro-figure__badge { left: 0; } .intro-figure__inset { right: 0; } }

/* ---------------------------------------------------------------- stats */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: rgba(255,255,255,.14); }
.stat { background: var(--brand-deep); padding: 2.4rem 1.6rem; text-align: center; }
.stat__value {
  font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gold-light); line-height: 1; display: block; margin-bottom: .55rem;
}
.stat__label {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .2em;
  font-size: .78rem; color: rgba(255,255,255,.78);
}

/* -------------------------------------------------------------- services */
.service-card {
  background: #fff; padding: 0; border: 1px solid var(--line);
  display: flex; flex-direction: column; height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  overflow: hidden;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card__media { aspect-ratio: 16/10; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.07); }
.service-card__body { padding: 1.8rem 1.7rem 2rem; display: flex; flex-direction: column; flex: 1; }
.service-card__icon {
  width: 46px; height: 46px; margin-bottom: 1.1rem; color: var(--brand);
}
.service-card__icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.3; }
.service-card h3 { margin-bottom: .6rem; font-size: 1.35rem; }
.service-card p { color: var(--body); font-size: .97rem; flex: 1; }
.service-card .link-more { margin-top: 1.3rem; }

/* ---------------------------------------------------------- destinations */
.dest-mosaic {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(.6rem, 1.2vw, 1.1rem);
}
.dest-card {
  position: relative; overflow: hidden; display: block; min-height: 260px;
  color: #fff; background: var(--brand-darker);
}
.dest-card:hover { color: #fff; }
.dest-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,35,31,.05) 30%, rgba(6,35,31,.82) 100%);
  transition: background .5s var(--ease);
}
.dest-card:hover::after { background: linear-gradient(180deg, rgba(0,105,92,.18) 20%, rgba(6,35,31,.88) 100%); }
.dest-card__body { position: absolute; inset: auto 0 0 0; z-index: 3; padding: 1.7rem; }
.dest-card__name {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: #fff; margin: 0 0 .35rem; line-height: 1.1;
}
.dest-card__tag {
  font-size: .92rem; color: rgba(255,255,255,.82); margin: 0;
  max-height: 0; opacity: 0; overflow: hidden;
  transition: max-height .45s var(--ease), opacity .45s var(--ease);
}
.dest-card:hover .dest-card__tag { max-height: 5rem; opacity: 1; }
.dest-card__index {
  position: absolute; top: 1.4rem; left: 1.7rem; z-index: 3;
  font-family: var(--font-cond); letter-spacing: .2em; font-size: .74rem;
  color: rgba(255,255,255,.75);
}
.dest-card--tall { grid-row: span 2; }
.dest-card--wide { grid-column: span 2; }
.dest-mosaic .dest-card { aspect-ratio: 3/4; }
.dest-mosaic .dest-card--wide { aspect-ratio: 3/2; }
.dest-mosaic .dest-card--tall { aspect-ratio: auto; }
@media (max-width: 1000px) { .dest-mosaic { grid-template-columns: repeat(2, 1fr); } .dest-card--tall { grid-row: auto; } }
@media (max-width: 560px) { .dest-mosaic { grid-template-columns: 1fr; } .dest-card--wide { grid-column: auto; } }

/* --------------------------------------------------------------- journeys */
.tour-card {
  background: #fff; border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column; height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tour-card__media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.tour-card:hover .tour-card__media img { transform: scale(1.07); }
.tour-card__badge {
  position: absolute; top: 1rem; left: 1rem; background: rgba(6,35,31,.82);
  color: #fff; padding: .38rem .8rem; font-family: var(--font-cond);
  text-transform: uppercase; letter-spacing: .14em; font-size: .72rem;
}
.tour-card__price {
  position: absolute; bottom: 0; right: 0; background: var(--gold); color: #fff;
  padding: .55rem 1rem; font-family: var(--font-cond); letter-spacing: .1em; font-size: .84rem;
}
.tour-card__body { padding: 1.5rem 1.6rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.tour-card__where {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .18em;
  font-size: .74rem; color: var(--gold); margin-bottom: .5rem;
}
.tour-card h3 { font-size: 1.3rem; margin-bottom: .55rem; }
.tour-card h3 a { color: inherit; }
.tour-card h3 a:hover { color: var(--brand); }
.tour-card p { font-size: .95rem; flex: 1; }
.tour-card__meta {
  display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.2rem; padding-top: 1.1rem;
  border-top: 1px solid var(--line); font-size: .82rem; color: var(--muted);
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .12em;
}

/* --------------------------------------------------------------- gallery */
.mosaic { columns: 4; column-gap: clamp(.6rem, 1.1vw, 1rem); }
@media (max-width: 1100px) { .mosaic { columns: 3; } }
@media (max-width: 760px)  { .mosaic { columns: 2; } }
@media (max-width: 440px)  { .mosaic { columns: 1; } }
.mosaic__item {
  break-inside: avoid; margin-bottom: clamp(.6rem, 1.1vw, 1rem);
  position: relative; overflow: hidden; display: block; cursor: zoom-in;
  background: var(--sand-2);
}
.mosaic__item img { width: 100%; height: auto; transition: transform .8s var(--ease); }
.mosaic__item:hover img { transform: scale(1.06); }
.mosaic__item::after {
  content: ""; position: absolute; inset: 0; background: rgba(6,35,31,.0);
  transition: background .4s var(--ease);
}
.mosaic__item:hover::after { background: rgba(6,35,31,.25); }
.mosaic--grid {
  columns: auto; display: grid;
  grid-template-columns: repeat(4, 1fr); gap: clamp(.6rem, 1.1vw, 1rem);
}
.mosaic--grid .mosaic__item { margin: 0; aspect-ratio: 4/3; }
.mosaic--grid .mosaic__item img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .mosaic--grid { grid-template-columns: repeat(2, 1fr); } }

.mosaic__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 1.4rem 1.1rem .9rem;
  background: linear-gradient(transparent, rgba(6,35,31,.85));
  color: #fff; font-size: .86rem; opacity: 0; transform: translateY(10px);
  transition: all .4s var(--ease);
}
.mosaic__item:hover .mosaic__cap,
.mosaic__item:focus-visible .mosaic__cap { opacity: 1; transform: none; }

.album-card { position: relative; display: block; overflow: hidden; aspect-ratio: 4/3; color: #fff; }
.album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.album-card:hover img { transform: scale(1.07); }
.album-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,35,31,.1), rgba(6,35,31,.8));
}
.album-card__body { position: absolute; inset: auto 0 0 0; z-index: 3; padding: 1.5rem; }
.album-card__body h3 { color: #fff; margin: 0 0 .3rem; font-size: 1.28rem; }
.album-card__count {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .18em;
  font-size: .74rem; color: var(--gold-light);
}

/* ------------------------------------------------------------------ blog */
.post-card { display: flex; flex-direction: column; height: 100%; background: #fff; }
.post-card__media { position: relative; aspect-ratio: 3/2; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.07); }
.post-card__cat {
  position: absolute; top: 1rem; left: 1rem; background: var(--brand); color: #fff;
  padding: .35rem .8rem; font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .14em; font-size: .7rem;
}
.post-card__body { padding: 1.5rem .2rem 0; flex: 1; display: flex; flex-direction: column; }
.post-card__meta {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .18em;
  font-size: .73rem; color: var(--muted); margin-bottom: .7rem;
  display: flex; gap: .9rem; flex-wrap: wrap;
}
.post-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.post-card h3 a { color: inherit; }
.post-card h3 a:hover { color: var(--brand); }
.post-card p { font-size: .95rem; flex: 1; }
.post-card .link-more { margin-top: 1.1rem; }

.post-feature {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
  background: #fff; border: 1px solid var(--line); overflow: hidden;
}
@media (max-width: 900px) { .post-feature { grid-template-columns: 1fr; } }
.post-feature__media { min-height: 340px; position: relative; overflow: hidden; }
.post-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.post-feature__body { padding: clamp(2rem, 4vw, 3.4rem); display: flex; flex-direction: column; justify-content: center; }

.article { font-size: 1.08rem; line-height: 1.85; }
.article h2 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 2.4rem 0 1rem; }
.article ul { margin: 0 0 1.4rem; padding-left: 1.3rem; list-style: none; }
.article ul li { position: relative; margin-bottom: .6rem; }
.article ul li::before {
  content: ""; position: absolute; left: -1.3rem; top: .72em;
  width: 6px; height: 6px; background: var(--gold);
}
.article blockquote {
  margin: 2.2rem 0; padding: 1.4rem 0 1.4rem 2rem; border-left: 2px solid var(--gold);
  font-family: var(--font-display); font-size: 1.4rem; line-height: 1.5; color: var(--ink);
  font-style: italic;
}
.article__tags { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.6rem; }
.tag {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .14em;
  font-size: .74rem; padding: .4rem .9rem; background: var(--sand-2); color: var(--body);
}

/* --------------------------------------------------------- testimonials */
.quote-slider { position: relative; text-align: center; max-width: 860px; margin-inline: auto; }
.quote { display: none; }
.quote.is-active { display: block; animation: fadeUp .7s var(--ease); }
.quote__text {
  font-family: var(--font-display); font-size: clamp(1.35rem, 2.6vw, 2rem);
  line-height: 1.5; color: #fff; font-weight: 300; font-style: italic; margin-bottom: 2rem;
}
.quote__who { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.quote__who img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; }
.quote__name {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .2em;
  font-size: .84rem; color: var(--gold-light); text-align: left;
}
.quote__name span { display: block; letter-spacing: .1em; color: rgba(255,255,255,.6); font-size: .78rem; text-transform: none; }
.quote-dots { display: flex; gap: .6rem; justify-content: center; margin-top: 2.4rem; }
.quote-dots button {
  width: 9px; height: 9px; border-radius: 50%; border: 1px solid rgba(255,255,255,.5);
  background: transparent; padding: 0;
}
.quote-dots button.is-active { background: var(--gold); border-color: var(--gold); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ------------------------------------------------------------- partners */
.partner-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.6rem, 3.4vw, 3rem);
}
.partner-strip img { height: 34px; width: auto; opacity: .45; filter: grayscale(1); transition: all .35s var(--ease); }
.partner-strip a:hover img, .partner-strip img:hover { opacity: 1; filter: none; }

/* ------------------------------------------------------------ downloads */
.download-card {
  display: flex; gap: 1.3rem; align-items: center; background: #fff;
  border: 1px solid var(--line); padding: 1.2rem; transition: all .35s var(--ease);
}
.download-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.download-card img { width: 84px; height: 116px; object-fit: cover; flex: none; }
.download-card h3 { font-size: 1.1rem; margin-bottom: .3rem; }
.download-card p { font-size: .88rem; color: var(--muted); margin-bottom: .6rem; }

/* ------------------------------------------------------------------ CTA */
.cta-band { position: relative; overflow: hidden; color: #fff; }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,70,61,.94) 0%, rgba(0,70,61,.72) 50%, rgba(6,35,31,.6) 100%);
}
.cta-band__inner { position: relative; z-index: 3; padding: clamp(4rem, 8vw, 7rem) 0; }
.cta-band h2 { color: #fff; font-weight: 300; max-width: 620px; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }

/* ---------------------------------------------------------------- forms */
.field { margin-bottom: 1.3rem; }
.field label {
  display: block; font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .16em; font-size: .76rem; color: var(--muted); margin-bottom: .5rem;
}
.field__input, .field select, .field textarea, .field input {
  width: 100%; padding: .95rem 1.1rem; border: 1px solid var(--line);
  background: #fff; color: var(--ink); font-family: var(--font-body); font-size: 1rem;
  border-radius: var(--radius); transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field__input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(0,105,92,.12);
}
.field textarea { resize: vertical; min-height: 150px; }
.field .errorlist { color: #B3261E; font-size: .85rem; margin: .4rem 0 0; padding: 0; list-style: none; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1.3rem; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.form-note { font-size: .86rem; color: var(--muted); margin-top: 1rem; }

.form-card {
  background: #fff; padding: clamp(1.8rem, 3.5vw, 3rem); border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.flash-wrap { position: sticky; top: 0; z-index: 95; }
.flash {
  padding: 1rem 1.4rem; text-align: center; font-size: .95rem;
  background: var(--brand); color: #fff;
}
.flash--error { background: #B3261E; }
.flash--success { background: var(--brand); }

/* ------------------------------------------------------------- fact list */
.facts { border-top: 1px solid var(--line); }
.fact {
  display: flex; justify-content: space-between; gap: 1.2rem;
  padding: .95rem 0; border-bottom: 1px solid var(--line); font-size: .95rem;
}
.fact dt {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .16em;
  font-size: .76rem; color: var(--muted); flex: none;
}
.fact dd { margin: 0; text-align: right; color: var(--ink); }

/* ------------------------------------------------------------- itinerary */
.itinerary { border-left: 1px solid var(--line); margin-left: 1.2rem; }
.itin-day { position: relative; padding: 0 0 2.4rem 2.2rem; }
.itin-day::before {
  content: ""; position: absolute; left: -6px; top: .5rem;
  width: 11px; height: 11px; background: var(--gold); border-radius: 50%;
  box-shadow: 0 0 0 4px var(--sand);
}
.itin-day__num {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .2em;
  font-size: .76rem; color: var(--gold); margin-bottom: .3rem;
}
.itin-day h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.itin-day__meta { font-size: .85rem; color: var(--muted); margin-top: .7rem; }

/* --------------------------------------------------------------- accordion */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  width: 100%; background: none; border: 0; text-align: left;
  padding: 1.35rem 2.6rem 1.35rem 0; position: relative;
  font-family: var(--font-display); font-size: 1.12rem; color: var(--ink);
}
.acc__btn::after {
  content: ""; position: absolute; right: .3rem; top: 50%; width: 12px; height: 2px;
  background: var(--gold); transform: translateY(-50%);
}
.acc__btn::before {
  content: ""; position: absolute; right: .8rem; top: 50%;
  width: 2px; height: 12px; background: var(--gold); transform: translateY(-50%);
  transition: transform .3s var(--ease);
}
.acc__item.is-open .acc__btn::before { transform: translateY(-50%) scaleY(0); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__panel > div { padding: 0 0 1.5rem; color: var(--body); }

/* ------------------------------------------------------------------ team */
.team-card { text-align: center; }
.team-card__photo { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 1.1rem; background: var(--sand-2); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card h3 { font-size: 1.15rem; margin-bottom: .2rem; }
.team-card__role {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .18em;
  font-size: .74rem; color: var(--gold);
}

/* ------------------------------------------------------------- pagination */
.pager { display: flex; gap: .5rem; justify-content: center; margin-top: 3.4rem; flex-wrap: wrap; }
.pager a, .pager span {
  min-width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line); font-family: var(--font-cond); letter-spacing: .1em;
  color: var(--ink); padding: 0 .8rem;
}
.pager a:hover { border-color: var(--brand); color: var(--brand); }
.pager .is-current { background: var(--brand); border-color: var(--brand); color: #fff; }

/* ----------------------------------------------------------------- chips */
.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.4rem; }
.chip {
  padding: .55rem 1.15rem; border: 1px solid var(--line); background: #fff;
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .14em;
  font-size: .78rem; color: var(--body); transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }

/* --------------------------------------------------------------- footer */
.site-footer { background: var(--brand-darker); color: #9FB6B0; padding: clamp(3.5rem, 7vw, 6rem) 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem); padding-bottom: 3rem;
}
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand__logo { height: 56px; width: auto; margin-bottom: 1.4rem; }
.footer-brand__text { font-size: .95rem; max-width: 340px; }
.footer-brand__memberships {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .22em;
  font-size: .76rem; color: var(--gold-light); margin-top: 1.2rem;
}
.socials { display: flex; gap: 1.2rem; margin-top: 1.4rem; flex-wrap: wrap; }
.socials a {
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .16em;
  font-size: .76rem; color: #C6D6D1;
}
.socials a:hover { color: var(--gold-light); }
.footer-col h3 {
  color: #fff; font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .22em; font-size: .82rem; margin-bottom: 1.4rem;
}
.footer-col li { margin-bottom: .6rem; font-size: .93rem; }
.footer-col a { color: #9FB6B0; }
.footer-col a:hover { color: var(--gold-light); }
.newsletter { margin-top: 1.8rem; }
.newsletter label {
  display: block; font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .18em; font-size: .74rem; color: #fff; margin-bottom: .7rem;
}
.newsletter__row { display: flex; gap: .5rem; }
.newsletter .field__input {
  background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.16); color: #fff;
  padding: .7rem .9rem; font-size: .9rem;
}
.newsletter .field__input::placeholder { color: rgba(255,255,255,.45); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.8rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .85rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom__links { display: flex; gap: 1.4rem; }
.footer-bottom a { color: #9FB6B0; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ------------------------------------------------------------- whatsapp */
.whatsapp {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 80;
  display: inline-flex; align-items: center; gap: .65rem;
  background: #25D366; color: #fff; padding: .85rem 1.1rem;
  border-radius: 999px; box-shadow: 0 12px 30px -12px rgba(0,0,0,.5);
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .14em; font-size: .8rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.whatsapp:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(0,0,0,.55); }
.whatsapp svg { width: 24px; height: 24px; fill: currentColor; flex: none; }
@media (max-width: 620px) { .whatsapp span { display: none; } .whatsapp { padding: .95rem; } }

/* ------------------------------------------------------------- lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(6,35,31,.96);
  display: flex; align-items: center; justify-content: center; padding: 4rem 1.5rem;
}
.lightbox[hidden] { display: none; }
.lightbox__figure { margin: 0; max-width: 100%; max-height: 100%; text-align: center; }
.lightbox__figure img { max-height: 80vh; width: auto; margin-inline: auto; }
.lightbox__figure figcaption { color: rgba(255,255,255,.75); margin-top: 1rem; font-size: .9rem; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: none; border: 0; color: #fff; opacity: .75;
  transition: opacity .25s var(--ease);
}
.lightbox__close { top: 1.4rem; right: 1.8rem; font-size: 2.4rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); font-size: 3.4rem; line-height: 1; padding: 0 1rem; }
.lightbox__nav--prev { left: .6rem; }
.lightbox__nav--next { right: .6rem; }
.lightbox__close:hover, .lightbox__nav:hover { opacity: 1; }

/* ---------------------------------------------------------------- reveal */
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.is-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__slide img, .hero__slide.is-active img { transition: none; transform: none; }
}

/* ---------------------------------------------------------------- utils */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 1.4rem; }
.mt-3 { margin-top: 2.2rem; }
.mt-4 { margin-top: 3.2rem; }
.mb-0 { margin-bottom: 0; }
.stack > * + * { margin-top: 1.2rem; }
.empty-note { padding: 3rem 0; text-align: center; color: var(--muted); }
.sidebar-box { background: var(--sand); padding: 1.8rem; border: 1px solid var(--line); }
.sidebar-box h3 { font-size: 1.1rem; }
.split-2 { display: grid; grid-template-columns: 1.6fr .9fr; gap: clamp(2rem, 4vw, 3.6rem); align-items: start; }
@media (max-width: 940px) { .split-2 { grid-template-columns: 1fr; } }
.sticky { position: sticky; top: calc(var(--header-h) + 1.5rem); }
