/* ============================================================================
   Digitour — home.css
   Hero slideshow, destination cards, steps, why grid, visa teaser, reviews.
   ========================================================================== */

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 32px;
  overflow: hidden;
  background: var(--g900);
}
@media (min-width: 1024px) { .hero { min-height: 92vh; padding-bottom: 48px; } }

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .9s 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); }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,46,32,.28) 0%, rgba(10,46,32,.55) 45%, rgba(10,46,32,.92) 100%),
    linear-gradient(to right, rgba(10,46,32,.45) 0%, transparent 62%);
}

.hero__inner { position: relative; z-index: 2; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .6875rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,162,39,.34);
  border-radius: 999px; padding: 6px 14px;
  margin-bottom: 18px;
}
.hero__title { color: #fff; margin-bottom: 14px; max-width: 15ch; text-wrap: balance; }
.hero__lead {
  color: var(--on-dark); font-size: .9375rem; line-height: 1.66;
  max-width: 52ch; margin-bottom: 22px;
}
@media (min-width: 768px) { .hero__lead { font-size: 1.0625rem; } }

.hero__tabs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 12px; }
.hero__tab {
  font-size: .8125rem; font-weight: 600; color: #fff;
  min-height: 40px; padding: 0 16px; border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,.34);
  transition: background-color var(--dur-1) ease, color var(--dur-1) ease, border-color var(--dur-1) ease;
}
.hero__tab:hover { background: rgba(255,255,255,.16); }
.hero__tab.is-active { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.hero__caption {
  font-size: .75rem; color: var(--on-dark-2);
  margin-left: auto; display: none;
}
@media (min-width: 768px) { .hero__caption { display: inline; } }

.hero__trust {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .75rem; color: var(--on-dark-2);
  margin-top: 16px; line-height: 1.5;
}
.hero__trust .i { flex-shrink: 0; margin-top: 1px; color: var(--gold); }

.hero__dots {
  position: absolute; z-index: 3; right: var(--gutter); bottom: 14px;
  display: flex; gap: 6px;
}
.hero__dot {
  width: 7px; height: 7px; border-radius: 4px; background: rgba(255,255,255,.42);
  transition: width var(--dur-2) var(--ease), background-color var(--dur-2) ease;
}
.hero__dot.is-active { width: 22px; background: var(--gold); }

/* ── Destination cards ───────────────────────────────────────────────────── */
.destgrid { display: grid; gap: 16px; }
@media (min-width: 640px)  { .destgrid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; } }
@media (min-width: 1024px) { .destgrid { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; } }

.destcard {
  position: relative; display: block; text-decoration: none; color: #fff;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-2);
  transition: transform var(--dur-3) var(--ease), box-shadow var(--dur-3) var(--ease);
}
.destcard:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }
.destcard:hover img { transform: scale(1.05); }
.destcard__media { display: block; border-radius: 0; }
.destcard__badge { position: absolute; top: 14px; left: 14px; }
.destcard__body { position: absolute; inset: auto 0 0 0; padding: 20px; display: block; }
.destcard__title { font-family: var(--serif); font-weight: 600; font-size: 1.5rem; display: block; }
.destcard__tag { display: block; font-size: .8125rem; color: var(--g100); line-height: 1.5; margin: 4px 0 14px; max-width: 30ch; }
.destcard__price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.destcard__price span { font-size: .6875rem; color: var(--on-dark); }
.destcard__price b { font-family: var(--serif); font-size: 1.375rem; color: var(--gold); }

/* ── Why grid ────────────────────────────────────────────────────────────── */
.why { display: block; }
.why__icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  background: var(--g100); color: var(--g700);
  display: grid; place-items: center; margin-bottom: 14px;
}
.why h3 { margin-bottom: 8px; }

/* ── Visa teaser ─────────────────────────────────────────────────────────── */
.visateaser__grid { display: grid; gap: 32px; }
@media (min-width: 1024px) { .visateaser__grid { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; } }
.visateaser__lead { color: var(--g100); line-height: 1.72; margin: 14px 0 24px; max-width: 56ch; }
.visateaser__list { display: grid; gap: 10px; }

.visarow {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 16px; border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.05);
  text-decoration: none; color: #fff;
  transition: background-color var(--dur-1) ease, border-color var(--dur-1) ease, transform var(--dur-1) ease;
}
.visarow:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.26); transform: translateX(3px); }
.visarow__flag { flex-shrink: 0; line-height: 0; border-radius: 2px; overflow: hidden; box-shadow: 0 0 0 1px rgba(255,255,255,.18); }
.visarow__main { flex: 1; min-width: 0; }
.visarow__name { display: block; font-size: .9375rem; font-weight: 600; }
.visarow__sub  { display: block; font-size: .75rem; color: var(--g100); }
.visarow__fee  { text-align: right; flex-shrink: 0; }
.visarow__fee span { display: block; font-size: .6875rem; color: var(--on-dark-2); text-transform: uppercase; letter-spacing: .06em; }
.visarow__fee b { font-family: var(--serif); font-size: .9375rem; color: var(--gold); }
.visateaser__note {
  display: flex; gap: 8px; align-items: flex-start;
  font-size: .75rem; color: var(--on-dark-2); line-height: 1.55; padding: 4px 2px;
}
.visateaser__note .i { flex-shrink: 0; margin-top: 2px; }

/* ── Reviews ─────────────────────────────────────────────────────────────── */
.review {
  margin: 0; padding: 24px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 14px;
}
.review__stars { color: var(--gold); display: flex; gap: 2px; }
.review blockquote { margin: 0; }
.review blockquote p { font-size: .9375rem; line-height: 1.72; color: var(--ink); }
.review figcaption { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); }
.review__name { display: block; font-weight: 600; font-size: .875rem; }
.review__meta { display: block; font-size: .75rem; color: var(--muted); }

/* Slideshow dots carry an invisible 44px hit area around the 7px pip. */
.hero__dot { position: relative; }
.hero__dot::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 30px; height: 44px;
}
