:root {
  --red: #C00405;
  --cream: #F1E9DE;
  --cream-2: #EBE2D4;
  --charcoal: #2B2C30;
  --blue: #0D395E;
  --line: rgba(43, 44, 48, 0.14);
  --anton: 'Anton', 'Impact', sans-serif;
  --mont: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--mont);
  background: var(--cream);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--red); color: var(--cream); }

/* ============ BRAND CHROME ============ */

.right-strip {
  position: fixed;
  right: 0; top: 0; bottom: 0;
  width: 38px;
  background: var(--red);
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.right-strip span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: var(--cream);
  font-family: var(--mont);
  font-weight: 700;
  letter-spacing: 0.32em;
  font-size: 11px;
  text-transform: uppercase;
}

/* Top nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: padding 280ms ease, box-shadow 280ms ease;
}
.nav.scrolled {
  padding: 14px 56px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
}

.nav-wordmark {
  font-family: var(--mont);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-wordmark .br {
  color: var(--charcoal);
  font-weight: 700;
  opacity: 0.95;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-socials a {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: color 200ms ease, transform 200ms ease;
}
.nav-socials a:hover {
  color: var(--red);
  transform: translateY(-1px);
}
.nav-socials svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  gap: 32px;
  font-family: var(--mont);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.01em;
  text-transform: none;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--charcoal);
  transition: color 200ms ease;
}
.nav-links a:hover { color: var(--red); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 2px;
  height: 1.5px;
  background: var(--red);
  transition: right 240ms ease;
}
.nav-links a:hover::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-family: var(--mont);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 11px 22px;
  border: none;
  border-radius: 4px;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}
.nav-cta:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(192,4,5,0.25);
}
.nav-cta svg { width: 14px; height: 14px; }

/* ============ COORDS BLOCK ============ */
.coord-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--mont);
}
.coord-block .bar {
  width: 1.5px;
  align-self: stretch;
  background: var(--red);
  margin-top: 4px;
}
.coord-block .label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.35;
}
.coord-block .coords {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-top: 4px;
  font-variant-numeric: tabular-nums;
}

/* ============ SECTION SHELL ============ */
.section {
  position: relative;
  padding: 120px 56px 120px;
  max-width: 100vw;
}
.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 56px;
}
.section-eyebrow {
  font-family: var(--mont);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--red);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 1.5px;
  background: var(--red);
}

.display-title {
  font-family: var(--anton);
  font-weight: 400;
  font-size: clamp(60px, 9vw, 140px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  margin: 0;
  color: var(--charcoal);
}
.display-title .red { color: var(--red); }

/* ============ FLOATING WHATSAPP ============ */
.float-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0,0,0,0.18);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}
.float-wa svg { width: 32px; height: 32px; position: relative; z-index: 2; }
.float-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0,0,0,0.22);
}
.float-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.2s ease-out infinite;
  z-index: 1;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.55; }
  80% { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============ HERO (cinematic, full-bleed) ============ */
.hero {
  position: relative;
  min-height: 110vh;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 120px;
  max-width: 1100px;
  width: 100%;
}
.hero-content h1 {
  font-family: var(--anton);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 28px 0;
  text-shadow: 0 4px 24px rgba(0,0,0,0.35), 0 1px 2px rgba(0,0,0,0.25);
}
.hero-content h1 .red { color: var(--red); }
.hero-sub {
  font-family: var(--mont);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.55;
  color: #ffffff;
  max-width: 560px;
  margin: 0 auto 28px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  opacity: 0.95;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #ffffff;
  font-family: var(--mont);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: none;
  border-radius: 4px;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
  box-shadow: 0 12px 28px rgba(192,4,5,0.4);
}
.hero-cta:hover {
  background: #a30304;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(192,4,5,0.5);
}
.hero-tagline { display: none; }
.hero-coords {
  position: absolute;
  z-index: 3;
  left: 56px;
  bottom: 36px;
  color: #fff;
  font-family: var(--mont);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.95;
  display: flex;
  align-items: center;
  gap: 14px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.45);
}
.hero-coords .bar { width: 28px; height: 1.5px; background: var(--red); }
.hero-scroll {
  position: absolute;
  z-index: 3;
  right: 56px;
  bottom: 36px;
  color: #fff;
  font-family: var(--mont);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.86;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll .ln {
  width: 36px; height: 1.5px;
  background: #fff;
  animation: lineGrow 1.8s ease-in-out infinite;
  transform-origin: left;
}
@keyframes lineGrow {
  0%, 100% { transform: scaleX(0.3); opacity: 0.4; }
  50% { transform: scaleX(1); opacity: 1; }
}
.hero-scroll .ln {
  width: 1.5px; height: 36px;
  background: #fff;
  animation: lineGrow 1.8s ease-in-out infinite;
  transform-origin: top;
}

/* ============ ESENCIA / MANIFESTO ============ */
.manifesto {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 80px;
  align-items: start;
}
.manifesto-body p {
  font-family: var(--mont);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.45;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0 0 28px;
  text-wrap: pretty;
  max-width: 56ch;
}
.manifesto-body p strong { font-weight: 700; color: var(--red); }
.manifesto-quote {
  font-family: var(--anton);
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 16px;
}
.manifesto-quote .red { color: var(--red); }

/* ============ DIFERENCIAL ============ */
.diferencial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px;
}
.dif-card {
  border-top: 1.5px solid var(--red);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 280px;
}
.dif-card .num {
  font-family: var(--anton);
  font-size: 44px;
  color: var(--red);
  line-height: 0.9;
}
.dif-card .icon {
  width: 56px; height: 56px;
  color: var(--red);
}
.dif-card h3 {
  font-family: var(--mont);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  color: var(--charcoal);
  line-height: 1.35;
}
.dif-card p {
  font-family: var(--mont);
  font-size: 15px;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0;
  opacity: 0.85;
}

/* ============ PILARES ============ */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.pilar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 320ms ease;
}
.pilar-card:hover { transform: translateY(-6px); }
.pilar-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.pilar-photo .num {
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--anton);
  font-size: 36px;
  color: var(--red);
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.pilar-body {
  padding: 6px 4px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pilar-body h3 {
  font-family: var(--anton);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
}
.pilar-body .sep {
  width: 24px; height: 1.5px; background: var(--red);
}
.pilar-body p {
  font-family: var(--mont);
  font-size: 14px;
  line-height: 1.55;
  color: var(--charcoal);
  margin: 0;
  text-wrap: pretty;
}

/* ============ DESTINOS — HORIZONTAL CARD CAROUSEL ============ */
.destinos {
  background: var(--charcoal);
  color: var(--cream);
  overflow: hidden;
}
.destinos .section-eyebrow { color: var(--red); }
.destinos .section-eyebrow::before { background: var(--red); }
.destinos .display-title { color: var(--cream); }
.destinos .display-title .red { color: var(--red); }
.destinos-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  color: var(--cream);
  margin: 0 0 56px;
  max-width: 760px;
  letter-spacing: 0.005em;
}
.destinos-tagline em {
  font-style: italic;
  color: var(--red);
  font-weight: 500;
}

.dest-carousel {
  position: relative;
  margin: 0 -56px;
  padding: 0 56px;
  overflow: hidden;
}
.dest-track {
  display: flex;
  gap: 18px;
  transition: transform 720ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.dest-card {
  position: relative;
  flex: 0 0 calc((100% - 54px) / 4);
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
}
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.78) 100%);
  transition: background 320ms ease;
}
.dest-card:hover::after {
  background: linear-gradient(180deg, rgba(43,44,48,0.15) 0%, rgba(43,44,48,0.85) 100%);
}
.dest-card-label {
  position: absolute;
  left: 22px; top: 22px;
  z-index: 3;
  font-family: var(--mont);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}
.dest-card-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 26px 30px;
  z-index: 3;
  color: var(--cream);
}
.dest-card-content h3 {
  font-family: var(--anton);
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 40px);
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.dest-card-content .coords {
  font-family: var(--mont);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.7;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0;
  transition: margin-bottom 320ms ease;
}
.dest-card-content .perfil {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.4;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 360ms ease, opacity 280ms ease, margin-top 360ms ease;
}
.dest-card:hover .perfil {
  max-height: 120px;
  opacity: 0.96;
  margin-top: 14px;
}
.dest-card .arrow {
  position: absolute;
  top: 22px; right: 22px;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(241,233,222,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
  z-index: 3;
}
.dest-card:hover .arrow {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(-45deg);
}

.dest-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.dest-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--red);
  color: #fff;
  font-family: var(--mont);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: none;
  border-radius: 4px;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}
.dest-cta:hover {
  background: #a30304;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(192,4,5,0.35);
}
.dest-cta svg { width: 16px; height: 16px; }
.dest-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dest-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(241,233,222,0.4);
  background: transparent;
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.dest-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}
.dest-arrow svg { width: 18px; height: 18px; }
.dest-counter {
  font-family: var(--mont);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.6;
  font-variant-numeric: tabular-nums;
  margin-right: 12px;
}

/* ============ QUE HACEMOS ============ */
.que-hacemos {
  background: var(--cream);
}
.qh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 56px;
  margin-top: 32px;
}
.qh-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  padding-top: 28px;
  border-top: 1.5px solid var(--red);
}
.qh-icon {
  width: 64px; height: 64px;
  color: var(--red);
  margin-bottom: 4px;
}
.qh-icon svg { width: 100%; height: 100%; }
.qh-card .num {
  font-family: var(--anton);
  font-size: 56px;
  line-height: 0.85;
  color: var(--red);
  letter-spacing: 0.005em;
  opacity: 0.6;
}
.qh-card h3 {
  font-family: var(--anton);
  font-weight: 400;
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: 1;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0;
}
.qh-card p {
  font-family: var(--mont);
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0;
  max-width: 38ch;
}
.qh-footer {
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}
.qh-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: var(--charcoal);
  margin: 0;
  max-width: 22ch;
}
.qh-tagline em {
  font-style: italic;
  color: var(--red);
}

/* ============ NOSOTROS ============ */
.nosotros {
  background: #fff;
}
.nos-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.nos-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.nos-photo .tag {
  position: absolute;
  left: 24px; bottom: 24px;
  background: var(--cream);
  padding: 12px 18px;
  font-family: var(--mont);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-left: 3px solid var(--red);
}
.nos-text h2 {
  font-family: var(--anton);
  font-weight: 400;
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0 0 32px;
  color: var(--charcoal);
}
.nos-text h2 .red { color: var(--red); }
.nos-text p {
  font-family: var(--mont);
  font-size: 17px;
  line-height: 1.65;
  color: var(--charcoal);
  margin: 0 0 22px;
  max-width: 48ch;
  text-wrap: pretty;
}
.nos-text p:last-of-type { margin-bottom: 0; }
.nos-signature {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--red);
}
.nos-signature::before {
  content: '';
  width: 32px; height: 1.5px;
  background: var(--red);
}

/* ============ EXPERIENCIA TIMELINE ============ */
.exp-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}
.exp-left .lead {
  font-family: var(--mont);
  font-size: 18px;
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 44ch;
  margin: 0 0 32px;
}
.exp-left .photo {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  margin-top: 28px;
}
.timeline {
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 14px; top: 12px; bottom: 12px;
  width: 1.5px;
  background: var(--line);
}
.tl-phase {
  position: relative;
  margin-bottom: 48px;
}
.tl-phase:last-child { margin-bottom: 0; }
.tl-phase .dot {
  position: absolute;
  left: -36px; top: 6px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}
.tl-phase.durante .dot { background: var(--charcoal); }
.tl-phase .head {
  font-family: var(--anton);
  font-size: 28px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin: 0 0 4px;
  line-height: 1;
}
.tl-phase .sub {
  font-family: var(--mont);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.tl-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px 24px;
}
.tl-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--mont);
  font-size: 14px;
  color: var(--charcoal);
}
.tl-item svg {
  width: 18px; height: 18px;
  color: var(--red);
  flex: 0 0 auto;
}

/* ============ MOMENTOS — dual marquee strip ============ */
.gallery {
  background: var(--cream-2);
  padding: 100px 0 120px;
  max-width: 100vw;
  overflow: hidden;
}
.gallery .section-header {
  padding: 0 56px;
  margin-bottom: 48px;
}
.gallery-intro {
  padding: 0 56px;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 56px;
  color: var(--charcoal);
}
.gallery-strip {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.gallery-strip::before,
.gallery-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.gallery-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream-2) 0%, rgba(235, 226, 212, 0) 100%);
}
.gallery-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream-2) 0%, rgba(235, 226, 212, 0) 100%);
}
.gallery-track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}
.gallery-track.scroll-left {
  animation: scrollLeft 90s linear infinite;
}
.gallery-track.scroll-right {
  animation: scrollRight 110s linear infinite;
}
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.gallery-track:hover { animation-play-state: paused; }
.gallery-tile {
  flex: 0 0 auto;
  height: 320px;
  width: 240px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  filter: saturate(0.96);
  transition: filter 320ms ease, transform 320ms ease;
}
.gallery-tile.wide { width: 380px; }
.gallery-tile.tall { height: 360px; }
.gallery-tile:hover {
  filter: saturate(1.1) brightness(1.04);
  transform: scale(1.02);
}

.gallery-strip.row-2 .gallery-tile {
  height: 280px;
}
.gallery-grid { display: none; }

/* ============ CTA / CONTACTO ============ */
.contact {
  background: var(--red);
  color: var(--cream);
}
.contact .display-title { color: var(--cream); }
.contact .display-title .red { color: var(--cream); }
.contact .section-eyebrow { color: var(--cream); opacity: 0.85; }
.contact .section-eyebrow::before { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.contact-left p {
  font-family: var(--mont);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 44ch;
  opacity: 0.94;
}
.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(241, 233, 222, 0.3);
}
.contact-meta .item .label {
  font-family: var(--mont);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}
.contact-meta .item .val {
  font-family: var(--mont);
  font-weight: 600;
  font-size: 16px;
}
a.item { transition: opacity 200ms ease, transform 200ms ease; }
a.item:hover { opacity: 0.7; transform: translateX(3px); }
a.item:hover .val { text-decoration: underline; text-underline-offset: 3px; }

.contact-form {
  background: var(--cream);
  color: var(--charcoal);
  padding: 40px 40px 32px;
}
.contact-form h3 {
  font-family: var(--anton);
  font-size: 36px;
  margin: 0 0 8px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--red);
}
.contact-form .sub {
  font-family: var(--mont);
  font-size: 13px;
  color: var(--charcoal);
  opacity: 0.7;
  margin-bottom: 28px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.field label {
  font-family: var(--mont);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--charcoal);
}
.field input, .field select, .field textarea {
  font-family: var(--mont);
  font-size: 14px;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--charcoal);
  padding: 8px 0;
  outline: none;
  transition: border-color 200ms ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
}
.field textarea { resize: vertical; min-height: 60px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--mont);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 18px 22px;
  border: none;
  margin-top: 12px;
  transition: background 200ms ease;
}
.submit-btn:hover { background: var(--red); }
.submit-btn svg { width: 16px; height: 16px; }

.success-state {
  text-align: center;
  padding: 30px 0;
}
.success-state .check {
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-state h4 {
  font-family: var(--anton);
  font-size: 32px;
  margin: 0 0 8px;
  color: var(--charcoal);
  text-transform: uppercase;
}
.success-state p {
  font-family: var(--mont);
  font-size: 14px;
  color: var(--charcoal);
  opacity: 0.8;
  margin: 0;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 70px 56px 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(241, 233, 222, 0.12);
}
.footer h5 {
  font-family: var(--mont);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li {
  font-family: var(--mont);
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.85;
  cursor: pointer;
  transition: color 200ms ease;
}
.footer li:hover { color: var(--red); opacity: 1; }
.footer .brand-block .wordmark {
  font-family: var(--mont);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.footer .brand-block .wordmark .br { color: var(--cream); opacity: 0.6; padding: 0 6px; }
.footer .brand-block p {
  font-family: var(--mont);
  font-size: 13px;
  line-height: 1.55;
  opacity: 0.75;
  margin: 0 0 18px;
  max-width: 26ch;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--mont);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
}
.footer-bottom .socials { display: flex; gap: 18px; }
.footer-bottom .socials a {
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(241, 233, 222, 0.3);
  border-radius: 50%;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.footer-bottom .socials a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--cream);
}
.footer-bottom .socials svg { width: 14px; height: 14px; }

/* ============ PAGE EDGE FRAME (brand manual borders) ============ */
.edge-top, .edge-bottom {
  position: fixed;
  left: 0; right: 38px;
  height: 1px;
  background: var(--red);
  opacity: 0.5;
  z-index: 30;
  pointer-events: none;
  display: none; /* shown only in 'manual' hero variant */
}
.edge-top { top: 38px; }
.edge-bottom { bottom: 38px; }
body.manual-frame .edge-top,
body.manual-frame .edge-bottom { display: block; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms cubic-bezier(0.22, 0.61, 0.36, 1), transform 720ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms ease, transform 640ms ease;
}
.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 400ms; }

@keyframes lineGrow_unused {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============ DESTINOS OVERLAY CAROUSEL ============ */
.dest-overlay {
  position: absolute;
  left: 0; right: 0;
  bottom: -380px;
  z-index: 4;
  padding: 0 96px;
}
.dest-overlay-track-wrap {
  overflow: hidden;
  position: relative;
}
.dest-overlay-side-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(8px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.dest-overlay-side-arrow.prev { left: 18px; }
.dest-overlay-side-arrow.next { right: 18px; }
.dest-overlay-side-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.06);
}
.dest-overlay-side-arrow svg { width: 20px; height: 20px; }

/* ============ DESTINO MODAL ============ */
.dest-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(43, 44, 48, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  animation: modalFade 280ms ease;
}
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.dest-modal {
  position: relative;
  background: var(--cream);
  width: 100%;
  max-width: 920px;
  max-height: 88vh;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  animation: modalRise 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes modalRise { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.dest-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  z-index: 5;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.9);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, transform 200ms ease;
}
.dest-modal-close:hover { background: var(--red); color: #fff; transform: rotate(90deg); }
.dest-modal-close svg { width: 20px; height: 20px; }
.dest-modal-photo {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 420px;
}
.dest-modal-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.78) 100%);
}
.dest-modal-photo-info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 30px 28px;
  color: var(--cream);
}
.dest-modal-photo-info .country {
  font-family: var(--mont);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 8px;
}
.dest-modal-photo-info h3 {
  font-family: var(--anton);
  font-weight: 400;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
}
.dest-modal-photo-info .coords {
  font-family: var(--mont);
  font-size: 11px;
  letter-spacing: 0.08em;
  opacity: 0.75;
  font-variant-numeric: tabular-nums;
}
.dest-modal-body {
  padding: 36px 34px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.dest-modal-ratings {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.rating-label {
  font-family: var(--mont);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}
.stars { display: inline-flex; gap: 3px; font-size: 16px; line-height: 1; }
.stars .star { color: rgba(43,44,48,0.2); }
.stars .star.on { color: var(--red); }
.dest-modal-facts {
  display: flex;
  flex-direction: column;
}
.fact-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
}
.fact-row:last-child { border-bottom: none; }
.fact-label {
  font-family: var(--mont);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 1px;
}
.fact-value {
  font-family: var(--mont);
  font-size: 14px;
  line-height: 1.45;
  color: var(--charcoal);
}
.dest-modal-cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--mont);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: 4px;
  transition: background 200ms ease, transform 200ms ease;
}
.dest-modal-cta:hover { background: var(--charcoal); transform: translateY(-1px); }
.dest-modal-cta svg { width: 16px; height: 16px; }

@media (max-width: 760px) {
  .dest-modal { grid-template-columns: 1fr; max-height: 92vh; }
  .dest-modal-photo { min-height: 240px; }
}
.dest-overlay-track {
  display: flex;
  gap: 20px;
  transition: transform 720ms cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}
.dest-card {
  position: relative;
  flex: 0 0 auto;
  width: calc((100% - 60px) / 4);
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  transition: transform 320ms ease, box-shadow 320ms ease;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.55);
}
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.8) 100%);
  transition: background 320ms ease;
}
.dest-card:hover::after {
  background: linear-gradient(180deg, rgba(43,44,48,0.18) 0%, rgba(43,44,48,0.88) 100%);
}
.dest-card-label {
  position: absolute;
  left: 18px; top: 18px;
  z-index: 3;
  font-family: var(--mont);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}
.dest-card-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 22px 24px;
  z-index: 3;
  color: var(--cream);
}
.dest-card-content h3 {
  font-family: var(--anton);
  font-weight: 400;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.dest-card-content .coords {
  font-family: var(--mont);
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0.75;
  font-variant-numeric: tabular-nums;
}
.dest-card-content .perfil {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.4;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 360ms ease, opacity 280ms ease, margin-top 360ms ease;
}
.dest-card:hover .perfil {
  max-height: 110px;
  opacity: 0.96;
  margin-top: 12px;
}
.dest-card .arrow {
  position: absolute;
  top: 18px; right: 18px;
  width: 32px; height: 32px;
  border: 1.5px solid rgba(241,233,222,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
  z-index: 3;
}
.dest-card .arrow svg { width: 14px; height: 14px; }
.dest-card:hover .arrow {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(-45deg);
}

.dest-overlay-nav {
  display: none;
}
.dest-overlay-nav .counter {
  font-family: var(--mont);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
  margin-right: 8px;
  opacity: 0.92;
}
.dest-overlay-nav .arrow-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.dest-overlay-nav .arrow-btn:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}
.dest-overlay-nav .arrow-btn svg { width: 16px; height: 16px; }

/* Spacer below hero to account for floating cards */
.hero-spacer {
  height: 420px;
  background: var(--cream);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .destinos-grid { grid-template-columns: repeat(2, 1fr); }
  .pilares-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .diferencial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 800px) {
  .section { padding: 80px 24px; }
  .hero-content { padding: 100px 24px 100px; }
  .hero-coords, .hero-scroll { display: none; }
  .float-wa { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .nav-links { display: none; }
  .nav-socials a { width: 36px; height: 36px; }
  .manifesto-grid, .exp-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .destinos-grid, .pilares-grid { grid-template-columns: 1fr; }
  .diferencial-grid { grid-template-columns: 1fr; }
  .footer { padding: 56px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .tl-items { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 60px; }
}

@media (max-width: 1100px) {
  .dest-card { flex: 0 0 calc((100% - 36px) / 3); }
  .qh-grid { grid-template-columns: 1fr; gap: 36px; }
  .nos-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 800px) {
  .dest-card { flex: 0 0 calc((100% - 18px) / 1.5); aspect-ratio: 4 / 5; }
  .dest-carousel { margin: 0 -24px; padding: 0 24px; }
  .qh-footer { flex-direction: column; align-items: flex-start; }
}
