/* ============================================================
   Tikaymi — Editorial cálido andino
   ============================================================ */

/* ── 1. TOKENS ── */
:root {
  --bg:          #FAF6F0;
  --bg-alt:      #F4EDE2;
  --bg-deep:     #EFE6D6;
  --ink:         #1A2E2D;
  --ink-soft:    #4A5958;
  --ink-mute:    #8A8578;
  --line:        #E4DBC9;
  --line-strong: #C9BFA8;
  --teal:        #0E6462;
  --teal-deep:   #0A4947;
  --orange:      #CD572B;
  --orange-deep: #B0461F;
  --lime:        #A2C357;
  --paper:       #FFFFFF;
  --shadow-sm:   0 1px 2px rgba(26,46,45,.06), 0 2px 8px rgba(26,46,45,.04);
  --shadow-md:   0 4px 16px rgba(26,46,45,.08), 0 12px 32px rgba(26,46,45,.06);
  --shadow-lg:   0 20px 60px rgba(26,46,45,.15);
  --serif: 'Cormorant Garamond', 'Fraunces', Georgia, serif;
  --sans:  'Raleway', -apple-system, 'Helvetica Neue', sans-serif;
  --mono:  'IBM Plex Mono', ui-monospace, monospace;
  --nav-h: 72px;
}

.theme-dark {
  --bg:          #0E1F1E;
  --bg-alt:      #122827;
  --bg-deep:     #0A1918;
  --ink:         #F4EDE2;
  --ink-soft:    #C9BFA8;
  --ink-mute:    #8A8578;
  --line:        #1F3433;
  --line-strong: #2E4847;
  --teal:        #5FB3B0;
  --teal-deep:   #0E6462;
  --paper:       #122827;
}

/* ── 2. RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

/* ── 3. TYPOGRAPHY ── */
.serif { font-family: var(--serif); letter-spacing: -0.01em; }
.mono  { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; }
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}
.display-xl { font-family: var(--serif); font-weight: 400; font-size: clamp(52px, 8vw, 120px); line-height: 0.95; letter-spacing: -0.02em; }
.display-lg { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5.5vw, 88px); line-height: 1.0;  letter-spacing: -0.015em; }
.display-md { font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 3.8vw, 60px); line-height: 1.05; letter-spacing: -0.01em; }
.display-sm { font-family: var(--serif); font-weight: 400; font-size: clamp(24px, 2.4vw, 38px); line-height: 1.1;  letter-spacing: -0.005em; }
.body-lg { font-size: 18px; line-height: 1.65; color: var(--ink-soft); }
.body    { font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.body-sm { font-size: 13px; line-height: 1.55; color: var(--ink-soft); }

/* ── 4. LAYOUT ── */
.container      { max-width: 1440px; margin: 0 auto; padding: 0 64px; }
.container-wide { max-width: 1600px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 40px; }
.hairline       { height: 1px; background: var(--line); border: 0; }

/* ── 5. NAV ── */
.site-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  color: #fff;
  transition: background .35s ease, color .35s ease, box-shadow .35s ease, height .35s ease;
}
.site-nav.scrolled {
  position: fixed;
  background: rgba(250,246,240,.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  height: 64px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-logo-symbol { display: block; width: 38px; height: 38px; object-fit: cover; border-radius: 50%; }
.nav-logo-mark {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: grid; place-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.15);
  flex-shrink: 0;
  transition: background .35s;
}
.scrolled .nav-logo-mark { box-shadow: var(--shadow-sm); }
.nav-logo-text {
  display: flex; flex-direction: column; line-height: 1;
}
.nav-logo-name {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #fff;
  transition: color .35s;
}
.scrolled .nav-logo-name { color: var(--teal); }
.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 3px;
  padding-left: 2px;
  transition: color .35s;
}
.scrolled .nav-logo-sub { color: var(--ink-mute); }

/* Menu links */
.nav-menu {
  display: flex; align-items: center; gap: 28px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.nav-menu a {
  position: relative; padding: 6px 0;
  white-space: nowrap;
  display: flex; align-items: center; gap: 4px;
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: currentColor;
  transition: width .3s ease;
}
.nav-menu a:hover::after { width: 100%; }
.nav-menu .has-sub { position: relative; }
.nav-menu .sub-menu {
  position: absolute; top: 100%; left: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0; pointer-events: none;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
  z-index: 200;
}
.nav-menu .has-sub:hover .sub-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-menu .sub-menu li { }
.nav-menu .sub-menu a {
  display: block; padding: 10px 20px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: none;
  color: var(--ink);
  transition: background .2s, color .2s;
}
.nav-menu .sub-menu a::after { display: none; }
.nav-menu .sub-menu a:hover { background: var(--bg-alt); color: var(--teal); }

/* Nav right */
.nav-right {
  display: flex; align-items: center; gap: 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  flex-shrink: 0;
  min-width: 0;
}
.nav-search-btn {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  display: grid; place-items: center;
  color: currentColor; background: transparent;
  transition: border-color .25s, background .25s;
  flex-shrink: 0;
}
.scrolled .nav-search-btn {
  border-color: var(--line-strong);
}
.nav-search-btn:hover { background: rgba(255,255,255,.1); }
.scrolled .nav-search-btn:hover { background: var(--bg-alt); }
.nav-lang {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.12em;
}
.nav-lang a { opacity: .6; transition: opacity .2s; }
.nav-lang a.active { opacity: 1; font-weight: 700; }
.nav-lang a:hover { opacity: 1; }
.nav-lang em { opacity: .3; font-style: normal; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; letter-spacing: 0.05em;
  opacity: .9;
}
.nav-divider { opacity: .25; }
.nav-book {
  padding: 10px 20px; border-radius: 999px;
  background: var(--orange); color: #fff !important;
  font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  transition: background .25s, transform .2s;
  white-space: nowrap;
}
.nav-book:hover { background: var(--orange-deep); transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px; padding: 4px;
  cursor: pointer; background: none; border: none;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: all .3s;
}

/* ── 6. SEARCH OVERLAY ── */
.search-overlay {
  position: fixed; inset: 0; z-index: 9990;
  background: rgba(26,46,45,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex; flex-direction: column; align-items: center;
  padding: 120px 40px 40px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.search-overlay.open { opacity: 1; pointer-events: auto; }
.search-overlay-inner {
  width: 100%; max-width: 760px;
}
.search-overlay-form {
  display: flex; align-items: center; gap: 0;
  border-radius: 6px; overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}
.search-overlay-input {
  flex: 1; padding: 20px 24px;
  font-size: 18px; font-family: var(--sans);
  border: none; outline: none;
  color: var(--ink); background: transparent;
}
.search-overlay-btn {
  padding: 0 28px; height: 64px;
  background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  flex-shrink: 0;
  transition: background .25s;
}
.search-overlay-btn:hover { background: var(--orange-deep); }
.search-overlay-close {
  position: absolute; top: 32px; right: 40px;
  color: #fff; font-size: 20px; opacity: .7;
  cursor: pointer; padding: 8px;
}
.search-overlay-close:hover { opacity: 1; }
.search-results {
  margin-top: 32px; width: 100%; max-width: 760px;
}
.search-result-group { margin-bottom: 24px; }
.search-result-group h4 {
  font-family: var(--mono); font-size: 10px;
  color: rgba(255,255,255,.5); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 10px;
}
.search-result-item {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 18px; border-radius: 6px;
  background: rgba(255,255,255,.07);
  margin-bottom: 4px; cursor: pointer;
  transition: background .2s;
}
.search-result-item:hover { background: rgba(255,255,255,.12); }
.search-result-title {
  font-size: 15px; color: #fff; font-weight: 500;
}
.search-result-sub {
  font-size: 12px; color: rgba(255,255,255,.5);
}

/* ── 7. FOOTER ── */
.site-footer {
  background: var(--teal-deep);
  color: #E8D7C3;
  padding: 96px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: #fff; display: grid; place-items: center;
  flex-shrink: 0;
}
.footer-brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.footer-brand-name {
  font-family: var(--serif); font-size: 28px;
  font-style: italic; color: #fff;
}
.footer-logo-symbol { display: block; width: 30px; height: 30px; object-fit: cover; border-radius: 50%; }
.footer-tagline {
  font-size: 14px; line-height: 1.7;
  color: #C9BFA8; margin-bottom: 24px;
  max-width: 300px;
}
.footer-socials {
  display: flex; gap: 10px;
}
.footer-social {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; color: rgba(255,255,255,.7);
  transition: border-color .2s, color .2s, background .2s;
}
.footer-social svg {
  width: 16px; height: 16px;
  display: block;
}
.footer-social[aria-label="TripAdvisor"] svg {
  width: 18px; height: 18px;
}
.footer-social[aria-label="Google Maps"] svg,
.footer-social[aria-label="TikTok"] svg {
  width: 15px; height: 15px;
}
.footer-social:hover {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.footer-col h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 22px; color: #fff;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: #C9BFA8; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-cert {
  margin-top: 20px; padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
}
.footer-cert-label {
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff; margin-bottom: 6px;
}
.footer-cert-value { font-size: 12px; color: #C9BFA8; }
.footer-cert-link {
  display: block;
  font-size: 12px !important;
  line-height: 1.45;
  color: #C9BFA8 !important;
  margin-top: 8px;
}
.footer-cert-link:hover {
  color: #fff !important;
}
.footer-ruc {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,.58);
}
.footer-important-card {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px; padding: 14px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  color: #C9BFA8;
}
.footer-important-card svg {
  color: var(--lime); flex-shrink: 0;
}
.footer-important-card span {
  font-size: 12px; line-height: 1.4;
  color: #C9BFA8;
}
.footer-important-card:hover {
  border-color: rgba(255,255,255,.35);
}
.footer-important-card:hover span {
  color: #fff;
}
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px;
  font-size: 12px; color: rgba(255,255,255,.45);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ── 8. BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  transition: transform .2s, background .25s, color .25s, box-shadow .25s;
  cursor: pointer;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(205,87,43,.35); }
.btn-ghost { background: transparent; color: currentColor; border: 1.5px solid currentColor; }
.btn-ghost:hover { background: currentColor; color: var(--bg); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-deep); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--bg-alt); }
.btn-sm { padding: 10px 20px; font-size: 11px; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(14,100,98,.08); color: var(--teal);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
}
.chip:hover, .chip.active { background: var(--teal); color: #fff; }
.chip-orange { background: rgba(205,87,43,.08); color: var(--orange); }
.chip-orange.active { background: var(--orange); color: #fff; }

/* ── 9. HERO (base) ── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--teal-deep);
}
.hero-media {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 8px, rgba(255,255,255,.08) 8px 9px),
    var(--teal-deep);
}
.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: slowZoom 14s ease-out forwards;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,25,25,.45) 0%,
    rgba(10,25,25,.12) 35%,
    rgba(10,25,25,.15) 65%,
    rgba(10,25,25,.72) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 40px;
  min-height: inherit;
  animation: fadeUp 1.2s ease-out both;
}
.hero-scroll-hint {
  position: absolute; left: 40px; bottom: 28px; z-index: 2;
  color: rgba(255,255,255,.75);
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
}
.hero-scroll-hint::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: rgba(255,255,255,.6);
}

/* ── 10. SEARCH BAR (hero) ── */
.hero-search {
  position: absolute; left: 50%; z-index: 10;
  bottom: 80px;
  transform: translateX(-50%);
  width: min(1140px, 90%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 40px 100px rgba(10,25,25,.5), 0 12px 40px rgba(10,25,25,.22);
  overflow: hidden;
}
.hero-search-tabs {
  display: flex;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.hero-search-tab {
  padding: 13px 24px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); background: transparent;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s;
  cursor: pointer;
}
.hero-search-tab.active { color: var(--orange); border-color: var(--orange); }
.hero-search-fields {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
}
.hero-search-field {
  padding: 18px 24px;
  border-right: 1px solid var(--line);
  cursor: pointer;
  transition: background .2s;
}
.hero-search-field:hover { background: var(--bg); }
.hero-search-field:last-of-type { border-right: none; }
.hero-search-field-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 6px;
  display: flex; align-items: center; gap: 6px;
}
.hero-search-field-label i { color: var(--orange); font-size: 9px; }
.hero-search-field-value {
  font-size: 14px; color: var(--ink); font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.hero-search-field-value small { font-size: 10px; color: var(--ink-mute); }
.hero-search-submit {
  margin: 10px; border-radius: 6px;
  padding: 0 36px; background: var(--orange); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(205,87,43,.4);
  white-space: nowrap;
  transition: background .25s;
}
.hero-search-submit:hover { background: var(--orange-deep); }

/* ── 11. SECTION HEADER ── */
.section-head {
  margin-bottom: 56px;
}
.section-head.centered { text-align: center; }
.section-head .eyebrow { margin-bottom: 16px; display: block; }
.section-head h2 { margin-bottom: 18px; }
.section-head p { max-width: 580px; }
.section-head.centered p { margin: 0 auto; }
.section-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}

/* ── 12. FEATURED TOUR / SPLIT FEATURE ── */
.featured-tour-section {
  padding: 120px 0;
  background: var(--bg);
}
.featured-tour-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.featured-tour-media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-alt);
}
.featured-tour-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.featured-tour-media:hover img {
  transform: scale(1.04);
}
.featured-tour-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.featured-tour-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 30px;
}
.featured-tour-fact {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.featured-tour-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ── 13. TOUR CARD ── */
.tour-card {
  position: relative;
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tour-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.tour-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.06); }
.tour-card-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 10px; border-radius: 3px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--orange); color: #fff;
}
.tour-card-tag.tag-popular { background: var(--orange); }
.tour-card-tag.tag-permit  { background: var(--teal); }
.tour-card-tag.tag-new     { background: var(--lime); color: var(--ink); }
.tour-card-body { padding: 20px 22px 22px; }
.tour-card-region {
  font-family: var(--mono); font-size: 10px;
  color: var(--ink-mute); margin-bottom: 8px;
}
.tour-card-title {
  font-family: var(--serif); font-size: 22px; line-height: 1.15;
  color: var(--ink); margin-bottom: 14px;
}
.tour-card-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--ink-mute); margin-bottom: 16px;
}
.tour-card-meta span { display: flex; align-items: center; gap: 5px; }
.tour-card-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.tour-card-price {
  font-family: var(--serif); font-size: 24px; color: var(--ink);
}
.tour-card-price small {
  font-family: var(--sans); font-size: 11px;
  color: var(--ink-mute); font-weight: 600; letter-spacing: 0.06em;
}
.tour-card-cta {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 6px;
  transition: gap .2s;
}
.tour-card:hover .tour-card-cta { gap: 10px; }

/* ── 13. DESTINO CARD ── */
.destino-card {
  position: relative;
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--teal-deep);
  cursor: pointer;
  transition: transform .3s;
}
.destino-card:hover { transform: scale(1.02); }
.destino-card-img {
  position: absolute; inset: 0;
  background: var(--bg-alt);
}
.destino-card-img img { width: 100%; height: 100%; object-fit: cover; }
.destino-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,25,25,.85) 0%, rgba(10,25,25,.1) 55%);
}
.destino-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 24px; color: #fff;
}
.destino-card-region {
  font-family: var(--mono); font-size: 9px;
  color: rgba(255,255,255,.6); margin-bottom: 6px;
}
.destino-card-name {
  font-family: var(--serif); font-size: 28px;
  line-height: 1.05; margin-bottom: 10px;
}
.destino-card-tours {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lime); opacity: .9;
}

/* ── 14. BLOG CARD ── */
.blog-card { display: flex; flex-direction: column; }
.blog-card-img {
  aspect-ratio: 16/10; border-radius: 6px; overflow: hidden;
  background: var(--bg-alt); margin-bottom: 20px;
  position: relative;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-cat {
  font-family: var(--mono); font-size: 10px;
  color: var(--orange); margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--serif); font-size: 22px;
  line-height: 1.2; margin-bottom: 10px; color: var(--ink);
}
.blog-card-excerpt { color: var(--ink-soft); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.blog-card-meta {
  font-size: 11px; color: var(--ink-mute); font-weight: 600;
  letter-spacing: 0.06em; display: flex; gap: 14px;
}

/* ── 15. EVENTO CARD ── */
.evento-card {
  display: flex; gap: 20px;
  padding: 24px; border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: box-shadow .3s, transform .3s;
}
.evento-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.evento-date {
  flex-shrink: 0; width: 60px; text-align: center;
  padding: 10px 8px; border-radius: 6px;
  background: var(--teal); color: #fff;
}
.evento-date-day { font-family: var(--serif); font-size: 32px; line-height: 1; }
.evento-date-month { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.evento-body { flex: 1; min-width: 0; }
.evento-title { font-family: var(--serif); font-size: 20px; margin-bottom: 6px; }
.evento-sub { font-size: 13px; color: var(--ink-mute); }
.evento-tags { display: flex; gap: 6px; margin-top: 10px; }
.evento-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 2px;
  background: var(--lime); color: var(--ink);
}
.evento-tag.tag-star { background: var(--orange); color: #fff; }

/* ── 16. FILTERS / TABS ── */
.filters-bar {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.filter-tab {
  padding: 8px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--line-strong);
  color: var(--ink-mute); background: transparent;
  cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.filter-tab:hover { border-color: var(--teal); color: var(--teal); }
.filter-tab.active { background: var(--teal); border-color: var(--teal); color: #fff; }
.filters-sticky {
  position: sticky; top: 64px; z-index: 50;
  background: rgba(250,246,240,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

/* ── 17. BREADCRUMB ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-mute);
  font-weight: 500; letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--ink-mute); transition: color .2s; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb-sep { opacity: .4; }

/* ── 18. GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }
.grid-destinos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-tours { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* ── 19. DARK SECTION ── */
.section-dark {
  background: var(--teal-deep); color: #E8D7C3;
}
.section-dark .eyebrow { color: var(--lime); }
.section-dark .display-md,
.section-dark .display-lg,
.section-dark .display-xl { color: #fff; }
.section-dark p { color: #C9BFA8; }

/* ── 20. TESTIMONIALS ── */
.testimonial-quote {
  font-family: var(--serif); font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.4; font-style: italic;
  color: var(--ink);
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: 28px;
}
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-alt); overflow: hidden; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.testimonial-origin { font-size: 12px; color: var(--ink-mute); }
.stars { color: var(--orange); font-size: 13px; letter-spacing: 2px; }

/* ── 21. PLACEHOLDER (hasta que entren fotos reales) ── */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(14,100,98,.04) 0 8px, rgba(14,100,98,.08) 8px 9px),
    var(--bg-alt);
  display: grid; place-items: center;
  color: var(--ink-mute); overflow: hidden;
  width: 100%; height: 100%;
}
.ph-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 10px; background: rgba(250,246,240,.9); border-radius: 3px;
  color: var(--ink-soft); position: relative; z-index: 1;
}
.ph-dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.03) 0 8px, rgba(255,255,255,.07) 8px 9px),
    var(--teal-deep);
}
.ph-dark .ph-label { background: rgba(0,0,0,.4); color: rgba(255,255,255,.85); }

/* ── 22. WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 9000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 16px rgba(37,211,102,.45);
  text-decoration: none;
  transition: background .2s, transform .2s;
}
.whatsapp-float:hover { background: #128C7E; transform: scale(1.08); }
.whatsapp-float svg { width: 26px; height: 26px; fill: #fff; }

/* ── 23. ANIMATIONS ── */
@keyframes fadeUp   { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes slowZoom { from { transform:scale(1.05); } to { transform:scale(1); } }
@keyframes drift    { 0%,100%{transform:translate(0,0);} 50%{transform:translate(-12px,-6px);} }
@keyframes blink    { to { border-color:transparent; } }

.reveal { opacity:1; transform:none; }
.js .reveal { opacity:0; transform:translateY(24px); transition:opacity .9s ease, transform .9s cubic-bezier(.2,.7,.3,1); }
.js .reveal.in { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.12s; }
.reveal-delay-2 { transition-delay:.24s; }
.reveal-delay-3 { transition-delay:.36s; }
.reveal-delay-4 { transition-delay:.48s; }

/* ── 24. DARK MODE TOGGLE ── */
.theme-toggle {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  cursor: pointer; opacity: .8;
  transition: opacity .2s;
}
.theme-toggle:hover { opacity: 1; }
.theme-toggle-track {
  width: 32px; height: 18px; border-radius: 999px;
  background: rgba(255,255,255,.2);
  position: relative; transition: background .3s;
  border: 1px solid rgba(255,255,255,.3);
}
.scrolled .theme-toggle-track { background: var(--line); border-color: var(--line-strong); }
.theme-dark .theme-toggle-track { background: var(--teal); border-color: var(--teal); }
.theme-toggle-thumb {
  position: absolute; top: 2px; left: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fff; transition: transform .3s;
}
.theme-dark .theme-toggle-thumb { transform: translateX(14px); }

/* ── 25. REVIEWS (TrustIndex) ── */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ── 26. RESPONSIVE ── */
@media (max-width: 1100px) {
  .container { padding: 0 40px; }
  .nav-phone { display: none; }
  .nav-menu { gap: 20px; font-size: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 1500px) and (min-width: 861px) {
  .site-nav { gap: 20px; padding-left: 28px; padding-right: 28px; }
  .nav-menu { gap: 18px; font-size: 10px; min-width: 0; }
  .nav-right { gap: 10px; }
  .nav-phone, .nav-divider { display: none; }
  .nav-book { padding-left: 14px; padding-right: 14px; }
}
@media (max-width: 860px) {
  .container { padding: 0 24px; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-book { display: none; }
  .featured-tour-section { padding: 88px 0; }
  .featured-tour-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-tours { grid-template-columns: 1fr 1fr; }
  .hero-search { display: none; } /* simplify on mobile */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .featured-tour-card { padding: 28px; }
  .featured-tour-actions .btn { width: 100%; justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-tours { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero { min-height: 80vh; }
}
