/* ═══════════════════════════════════════════════════════
   DUNAMONT ADVENTURES — Design System v2.0
   Space Grotesk (headings) + DM Sans (body)
   Brand: amber #E8850A | Sand: #F7F4EF | Ink: #1A1410
═══════════════════════════════════════════════════════ */

/* ── 1. TOKENS ── */
:root {
  --brand:        #E8850A;
  --brand-dark:   #C4700A;
  --brand-light:  #FFF3E0;
  --brand-rgb:    232, 133, 10;
  --sand:         #F7F4EF;
  --sand-dark:    #EDE8E0;
  --ink:          #1A1410;
  --ink-light:    #4A4138;
  --muted:        #7A7068;
  --border:       #E8E3DA;
  --bg:           #FFFFFF;
  --card-bg:      #FFFFFF;
  --success:      #16A34A;

  --header-h:     64px;
  --container:    1200px;
  --gap:          1rem;

  --radius:       14px;
  --radius-sm:    8px;
  --radius-pill:  9999px;

  --shadow-sm:    0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:    0 4px 18px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 36px rgba(0,0,0,0.14);
  --shadow-brand: 0 4px 18px rgba(232,133,10,0.35);

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --duration:    0.65s;

  --font-body:    'DM Sans', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

/* ── 3. LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
.section-gap   { padding-block: 5rem; }
.section-gap-sm { padding-block: 3rem; }
.grid-2 { display: grid; gap: var(--gap); }
.grid-3 { display: grid; gap: var(--gap); }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.section-header { margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--ink);
}
.section-title span { color: var(--brand); }

/* ── 4. BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body);
  min-height: 44px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--brand {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn--brand:hover { box-shadow: 0 6px 24px rgba(var(--brand-rgb), 0.45); }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--outline:hover { background: var(--sand); border-color: var(--brand); color: var(--brand); }
.btn--ghost {
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.22); }
.btn--lg { padding: 0.875rem 2rem; font-size: 1rem; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── 5. HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,227,218,0.6);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }
.site-logo img { height: 38px; width: auto; }

.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) { .site-nav { display: flex; } }

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: color 0.2s;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
  border-radius: 1px;
}
.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  background: var(--sand);
  border-radius: var(--radius-pill);
  padding: 2px;
}
.lang-switcher button {
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
}
.lang-switcher button.active {
  background: var(--bg);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

/* Hamburger */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  transition: background 0.2s;
}
.hamburger:hover { background: var(--sand); }
@media (min-width: 768px) { .hamburger { display: none; } }
.hamburger svg { width: 22px; height: 22px; }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  pointer-events: none;
}
.mobile-menu__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-menu__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--bg);
  box-shadow: -4px 0 32px rgba(0,0,0,0.15);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-menu.is-open { pointer-events: all; }
.mobile-menu.is-open .mobile-menu__overlay { opacity: 1; }
.mobile-menu.is-open .mobile-menu__panel { transform: translateX(0); }

.mobile-menu__close {
  align-self: flex-end;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.mobile-menu__close:hover { background: var(--sand); }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu__links a {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu__links a:hover { background: var(--sand); color: var(--ink); }
.mobile-menu__links .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* ── 6. HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Image slider container */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }

/* Dual gradient: top vignette + strong bottom for text */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.42) 0%, transparent 35%),
    linear-gradient(to top,   rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 40%, transparent 75%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 4rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 4.5rem);
  color: #fff;
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
}
.hero__title em {
  font-style: normal;
  color: var(--brand);
}

.hero__subtitle {
  font-size: clamp(0.9rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-bottom: 2rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 3rem; }

/* Stats bar */
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.65);
  display: block;
  margin-top: 0.2rem;
}

/* Slider dots */
.hero__dots {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
  border: none;
  padding: 0;
}
.hero__dot.is-active {
  background: #fff;
  width: 24px;
  border-radius: 4px;
}

/* ── 7. TOURS BENTO GRID ── */
.tours-section { padding-block: 5rem; }
.tours-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.tours-section-header .ver-todos {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
  white-space: nowrap;
}
.tours-section-header .ver-todos:hover { color: var(--ink); }

/* Bento grid */
.tours-bento {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 280px;
  gap: 1rem;
}
@media (min-width: 640px) {
  .tours-bento { grid-template-columns: repeat(2, 1fr); }
  .tours-bento__card--featured { grid-row: span 2; }
}
@media (min-width: 1024px) {
  .tours-bento { grid-template-columns: repeat(3, 1fr); }
  .tours-bento__card--wide { grid-column: span 2; }
}
@media (max-width: 639px) {
  .tours-bento__card--featured { grid-row: span 1; }
}

/* ── 8. TOUR CARD ── */
.tour-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  height: 100%;
  cursor: pointer;
}
.tour-card:hover .tour-card__img { transform: scale(1.055); }

.tour-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.75s var(--ease);
  will-change: transform;
}

/* CRITICAL: strong gradient — prevents ANY text overlap with the image */
.tour-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.62) 30%,
    rgba(0, 0, 0, 0.18) 62%,
    transparent 100%
  );
  pointer-events: none;
}

/* Price badge — top right */
.tour-card__badge-price {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Duration badge — top left */
.tour-card__badge-duration {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  background: rgba(var(--brand-rgb), 0.92);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

/* Text content at bottom — always above overlay */
.tour-card__body {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 2;
  padding: 1rem;
}

/* Frosted glass panel — secondary layer of protection */
.tour-card__panel {
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: calc(var(--radius) - 2px);
  padding: 0.875rem 1rem;
  transition: background 0.3s;
}
.tour-card:hover .tour-card__panel { background: rgba(0, 0, 0, 0.48); }

.tour-card__title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.55);
  line-height: 1.25;
}
.tour-card--large .tour-card__title { font-size: 1.4rem; }

.tour-card__tagline {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  line-height: 1.45;
  text-shadow: 0 1px 6px rgba(0,0,0,0.65);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.625rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.02em;
  transition: gap 0.2s;
}
.tour-card:hover .tour-card__cta { gap: 0.5rem; }

/* ── 9. SERVICES SECTION ── */
.services-section {
  background: var(--sand);
  padding-block: 5rem;
}
.service-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.service-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card__img { transform: scale(1.04); }

.service-card__body { padding: 1.5rem; }
.service-card__icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  flex-shrink: 0;
}
.service-card__icon svg { width: 20px; height: 20px; }
.service-card__title {
  font-size: 1.175rem;
  color: var(--ink);
  margin-bottom: 0.375rem;
}
.service-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-card__bullets { display: flex; flex-direction: column; gap: 0.45rem; }
.service-card__bullet {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--ink-light);
}
.bullet-check {
  width: 16px; height: 16px;
  color: var(--brand);
  flex-shrink: 0;
}

/* ── 10. WHY US ── */
.why-section { padding-block: 5rem; }
.why-section .section-header { text-align: center; }
.why-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.3s, transform 0.3s var(--ease), border-color 0.3s;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--brand);
}
.why-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--brand);
}
.why-card__icon svg { width: 22px; height: 22px; }
.why-card__title { font-size: 1.05rem; margin-bottom: 0.4rem; }
.why-card__desc  { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ── 11. CTA STRIP ── */
.cta-strip {
  background: var(--brand);
  padding-block: 4rem;
  text-align: center;
}
.cta-strip__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff;
  margin-bottom: 0.625rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
.cta-strip__desc { color: rgba(255,255,255,0.85); margin-bottom: 1.75rem; font-size: 1.05rem; }
.cta-strip .btn--ghost { border-color: rgba(255,255,255,0.55); }

/* ── 12. TOURS LISTING PAGE ── */
.page-tours-header {
  background: var(--sand);
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  text-align: center;
}
.page-tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: 4rem;
}
@media (min-width: 640px)  { .page-tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .page-tours-grid { grid-template-columns: repeat(3, 1fr); } }

.tour-listing-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.tour-listing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.tour-listing-card__img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.tour-listing-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s var(--ease);
}
.tour-listing-card:hover .tour-listing-card__img { transform: scale(1.05); }
.tour-listing-card__badge {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: rgba(var(--brand-rgb), 0.92);
  color: #fff;
  font-size: 0.7rem; font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
}
.tour-listing-card__body {
  padding: 1.375rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-listing-card__title {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.tour-listing-card__tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}
.tour-listing-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.tour-listing-card__price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand);
}
.tour-listing-card__price-label { font-size: 0.72rem; color: var(--muted); }

/* ── 13. SINGLE TOUR PAGE ── */
.tour-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.tour-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.tour-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, transparent 35%)
            , linear-gradient(to top,   rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.4) 50%, transparent 80%);
}
.tour-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 3rem;
  color: #fff;
}
.tour-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.tour-hero__back:hover { color: #fff; }
.tour-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
  max-width: 700px;
  margin-bottom: 0.625rem;
}
.tour-hero__tagline {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-bottom: 1.25rem;
}
.tour-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.tour-hero__meta-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.9);
}
.tour-hero__meta-item svg { width: 16px; height: 16px; color: var(--brand); }
.tour-hero__meta-item strong { color: var(--brand); }

/* Tour detail layout */
.tour-detail { padding-block: 4rem; }
.tour-detail__grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .tour-detail__grid { grid-template-columns: 1fr 340px; }
}

.tour-detail h2 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--ink); }
.tour-detail h3 { font-size: 1.15rem; margin: 2.5rem 0 0.875rem; color: var(--ink); }

.tour-desc { font-size: 0.95rem; color: var(--ink-light); line-height: 1.75; }

/* Itinerary */
.itinerary { display: flex; flex-direction: column; gap: 0.875rem; }
.itinerary-item {
  display: flex;
  gap: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
  transition: border-color 0.2s;
}
.itinerary-item:hover { border-color: var(--brand); }
.itinerary-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.itinerary-stop { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.2rem; }
.itinerary-detail { font-size: 0.84rem; color: var(--muted); }

/* Included / not included panels */
.included-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
@media (min-width: 480px) { .included-grid { grid-template-columns: 1fr 1fr; } }

.included-panel {
  border-radius: var(--radius);
  padding: 1.375rem;
}
.included-panel--yes { background: var(--sand); }
.included-panel--no  { border: 1.5px solid var(--border); }
.included-panel h4 { font-size: 0.9rem; margin-bottom: 0.75rem; }
.included-list { display: flex; flex-direction: column; gap: 0.5rem; }
.included-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.84rem; color: var(--ink-light);
}
.included-list svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; }
.included-list--yes svg { color: var(--brand); }
.included-list--no  svg { color: var(--muted); }

/* Gallery */
.tour-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-top: 1rem;
}
.tour-gallery__item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.tour-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}
.tour-gallery__item:hover .tour-gallery__img { transform: scale(1.08); }

/* Sidebar / booking card */
.booking-card {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.booking-card__label { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.25rem; }
.booking-card__price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.booking-card__price-sub { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.375rem; }
.booking-card .btn { width: 100%; justify-content: center; margin-bottom: 0.625rem; }
.booking-card__footer {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--muted);
  margin-top: 1rem; padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.booking-card__footer svg { width: 14px; height: 14px; }

/* ── 14. SERVICES PAGE ── */
.services-page-header {
  background: var(--sand);
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  text-align: center;
}

/* ── 15. ABOUT PAGE ── */
.about-hero {
  background: var(--sand);
  padding: calc(var(--header-h) + 3rem) 0 4rem;
}
.about-story { padding-block: 4rem; }
.about-story .container { max-width: 780px; }
.about-story p { font-size: 1.05rem; color: var(--ink-light); line-height: 1.8; margin-bottom: 1.25rem; }

.team-grid {
  display: grid;
  gap: 1.5rem;
  padding-block: 4rem;
}
@media (min-width: 640px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow 0.3s;
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card__avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--brand-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--brand);
}
.team-card__avatar svg { width: 28px; height: 28px; }
.team-card__name { font-size: 1rem; margin-bottom: 0.25rem; }
.team-card__role { font-size: 0.8rem; color: var(--brand); margin-bottom: 0.75rem; font-weight: 600; }
.team-card__bio  { font-size: 0.84rem; color: var(--muted); line-height: 1.6; }

/* ── 16. CONTACT PAGE ── */
.contact-page {
  padding: calc(var(--header-h) + 2rem) 0 5rem;
}
.contact-grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 400px; } }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.25rem;
  background: var(--sand);
  border-radius: var(--radius);
}
.contact-info-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.contact-wa-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25D366;
  color: #fff;
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 0.5rem;
  min-height: 44px;
}
.contact-wa-btn:hover { opacity: 0.9; transform: translateY(-2px); }
.contact-wa-btn svg { width: 24px; height: 24px; flex-shrink: 0; }

/* CF7 form overrides */
.wpcf7-form .form-group { margin-bottom: 1.125rem; }
.wpcf7-form label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-light);
  margin-bottom: 0.35rem;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.12);
}
.wpcf7-form textarea { height: 120px; resize: vertical; }
.wpcf7-form input[type="submit"] {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, box-shadow 0.2s;
  min-height: 44px;
  box-shadow: var(--shadow-brand);
}
.wpcf7-form input[type="submit"]:hover { opacity: 0.88; box-shadow: 0 6px 20px rgba(var(--brand-rgb),0.4); }
.wpcf7-not-valid-tip { color: #dc2626; font-size: 0.78rem; margin-top: 0.2rem; }
.wpcf7-response-output { padding: 0.875rem 1rem; border-radius: var(--radius-sm); font-size: 0.875rem; margin-top: 1rem; }
.wpcf7-mail-sent-ok { background: #d1fae5; border: 1px solid #6ee7b7; color: #065f46; }
.wpcf7-mail-sent-ng { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }

/* ── 17. FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding-block: 4rem 2rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-top: 0.75rem;
  max-width: 280px;
}
.footer-logo { filter: brightness(0) invert(1); height: 36px; width: auto; }

.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--brand); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ── 18. WHATSAPP FAB ── */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  text-decoration: none;
  color: #fff;
}
.wa-fab:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.6);
}
.wa-fab__icon { width: 28px; height: 28px; position: relative; z-index: 1; }
.wa-fab__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2); opacity: 0; }
}
.wa-fab__tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.45rem 0.875rem;
  border-radius: var(--radius-pill);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  box-shadow: var(--shadow-md);
}
.wa-fab__tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--ink);
  border-right: none;
}
.wa-fab:hover .wa-fab__tooltip { opacity: 1; }

/* ── 19. SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up[data-delay="1"] { transition-delay: 0.1s; }
.fade-up[data-delay="2"] { transition-delay: 0.2s; }
.fade-up[data-delay="3"] { transition-delay: 0.3s; }
.fade-up[data-delay="4"] { transition-delay: 0.4s; }

/* ── 20. 404 PAGE ── */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}
.page-404__code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 9rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 1rem;
}
.page-404__title { font-size: 1.75rem; margin-bottom: 0.75rem; }
.page-404__desc  { color: var(--muted); max-width: 420px; margin-bottom: 2rem; }

/* ── 21. UTILITIES ── */
.text-brand  { color: var(--brand); }
.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.prose { max-width: 680px; }
.prose p { margin-bottom: 1rem; color: var(--ink-light); line-height: 1.75; }
.page-title { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 1.5rem; }

/* ── 22. SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--brand);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── 23. REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__slide { transition: none; }
  .fade-up { opacity: 1; transform: none; transition: none; }
  .wa-fab__pulse { animation: none; }
}

/* ── 24. RESPONSIVE TWEAKS ── */
@media (max-width: 639px) {
  .section-gap   { padding-block: 3.5rem; }
  .hero__stats { gap: 1rem 2rem; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .tours-section-header .ver-todos { display: none; }
  .booking-card { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
}
