/*
 * Inicio
 * Extiende la identidad visual compartida de site.css sin alterar las páginas
 * ya aprobadas. La composición toma el azul noche como ancla, el amarillo como
 * señal de acción y la terracota como acento editorial.
 */

.page-home {
  overflow-x: clip;
}

.page-home main {
  overflow: clip;
}

.page-home .section {
  position: relative;
}

.home-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(36px, 6vw, 84px);
  margin-bottom: clamp(38px, 5vw, 66px);
}

.home-section-heading > div {
  min-width: 0;
}

.home-section-heading h2 {
  max-width: 850px;
  margin: 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.86;
  text-transform: uppercase;
}

.home-section-heading h2 em {
  color: var(--terracotta);
  font-style: normal;
}

.home-section-heading > p,
.home-section-heading__aside {
  margin: 0;
  padding: 4px 0 4px 26px;
  color: var(--muted);
  border-left: 2px solid var(--yellow);
  font-size: 0.92rem;
}

.home-section-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  justify-self: start;
  padding: 8px 0;
  color: var(--navy);
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.home-section-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-section-link__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

/* Hero — carrusel manual */
.home-hero {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background: var(--navy);
}

.home-hero__carousel {
  position: relative;
  min-height: clamp(600px, calc(100svh - var(--header-height)), 840px);
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 180, 0, 0.18), transparent 28rem),
    var(--navy);
  border-radius: 0 0 76px 8px;
}

.home-hero__viewport {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background: var(--navy);
}

.home-hero__track {
  display: flex;
  min-height: inherit;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero__track.is-moving {
  will-change: transform;
}

.home-hero__slide {
  position: relative;
  isolation: isolate;
  display: grid;
  min-width: 0;
  min-height: inherit;
  flex: 0 0 100%;
  align-items: end;
  overflow: hidden;
  padding: clamp(92px, 13vh, 132px) 0 clamp(132px, 16vh, 170px);
  backface-visibility: hidden;
}

.home-hero__slide > .shell {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), var(--shell));
}

.home-hero__media,
.home-hero__wash {
  position: absolute;
  inset: 0;
}

.home-hero__media {
  z-index: -3;
  overflow: hidden;
  background: var(--navy-soft);
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-fit: cover;
  object-position: var(--image-position, center);
  transform: translateZ(0) scale(1.015);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero__slide[aria-hidden="false"] .home-hero__media img,
.home-hero__slide.is-active .home-hero__media img {
  transform: translateZ(0) scale(1.045);
}

.home-hero__wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(4, 12, 52, 0.94) 0%, rgba(4, 12, 52, 0.76) 44%, rgba(4, 12, 52, 0.22) 76%, rgba(4, 12, 52, 0.42) 100%),
    linear-gradient(180deg, rgba(4, 12, 52, 0.06) 34%, rgba(4, 12, 52, 0.82) 100%);
}

.home-hero__slide::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 72%);
  pointer-events: none;
}

.home-hero__copy {
  width: min(760px, 67%);
}

.home-hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-hero__kicker::before {
  width: 38px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
}

.home-hero h1,
.home-hero__copy h2 {
  max-width: 850px;
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(4.25rem, 7.2vw, 7.6rem);
  font-weight: 700;
  letter-spacing: -0.032em;
  line-height: 0.82;
  text-transform: uppercase;
}

.home-hero h1 em,
.home-hero__copy h2 em {
  color: var(--yellow);
  font-style: normal;
}

.home-hero__intro {
  max-width: 640px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(0.96rem, 1.25vw, 1.1rem);
  line-height: 1.7;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 26px;
}

.home-hero__actions .text-link {
  color: var(--white);
}

.home-hero__controls {
  position: absolute;
  z-index: 8;
  right: max(24px, calc((100% - var(--shell)) / 2));
  bottom: 34px;
  display: grid;
  grid-template-columns: 48px minmax(88px, auto) 44px 48px;
  align-items: center;
  gap: 8px;
  padding: 7px;
  color: var(--white);
  background: rgba(4, 12, 52, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px 26px 3px 26px;
  box-shadow: 0 18px 46px rgba(2, 7, 30, 0.28);
  backdrop-filter: blur(14px);
}

.home-hero__arrow {
  display: grid;
  width: 48px;
  min-width: 44px;
  height: 48px;
  min-height: 44px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 100ms ease;
}

.home-hero__pause {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 100ms ease;
}

.home-hero__pause-icon {
  width: 18px;
  height: 18px;
}

.home-hero__pause-icon--play {
  display: none;
}

.home-hero__pause[aria-pressed="true"] .home-hero__pause-icon--pause {
  display: none;
}

.home-hero__pause[aria-pressed="true"] .home-hero__pause-icon--play {
  display: block;
}

.home-hero__pause:active {
  transform: scale(0.94);
}

.home-hero__pause:disabled {
  cursor: default;
  opacity: 0.48;
}

.home-hero__arrow svg {
  width: 19px;
  height: 19px;
}

.home-hero__arrow:active {
  transform: scale(0.94);
}

.home-hero__dots {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.home-hero__dot {
  position: relative;
  display: grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.home-hero__dot::before {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  transition:
    width 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    border-color 180ms ease;
}

.home-hero__dot[aria-current="true"]::before,
.home-hero__dot.is-active::before {
  width: 23px;
  background: var(--yellow);
  border-color: var(--yellow);
  border-radius: 999px;
}

.home-hero__status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.home-hero__index {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100% - var(--shell)) / 2));
  bottom: 106px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.home-hero__index strong,
.home-hero__index span:first-child {
  color: var(--yellow);
  font-size: 1.4rem;
  font-weight: 700;
}

.motion-ready .page-home .home-hero__kicker,
.motion-ready .page-home .home-hero h1,
.motion-ready .page-home .home-hero__intro,
.motion-ready .page-home .home-hero__actions,
.motion-ready .page-home .home-hero__controls,
.motion-ready .page-home .home-hero__index {
  animation: home-hero-content-in 680ms var(--motion-ease-out) backwards;
}

.motion-ready .page-home .home-hero h1 {
  animation-delay: 65ms;
}

.motion-ready .page-home .home-hero__intro {
  animation-delay: 130ms;
}

.motion-ready .page-home .home-hero__actions {
  animation-delay: 195ms;
}

.motion-ready .page-home .home-hero__index {
  animation-delay: 220ms;
}

.motion-ready .page-home .home-hero__controls {
  animation-delay: 260ms;
}

@keyframes home-hero-content-in {
  from {
    opacity: 0;
    transform: translate3d(0, var(--home-hero-enter-y, 18px), 0);
  }
}

/*
 * Los carruseles son infraestructura de interacción, no elementos de entrada.
 * Esta regla evita que el sistema global .reveal compita por transform/opacity.
 */
.motion-ready .page-home .home-hero__track.reveal,
.motion-ready .page-home .home-hero__slide.reveal,
.motion-ready .page-home .home-testimonials__viewport.reveal,
.motion-ready .page-home .home-testimonials__track.reveal {
  opacity: 1;
  transition-delay: 0s;
  will-change: auto;
}

.motion-ready .page-home .home-hero__slide.reveal,
.motion-ready .page-home .home-testimonials__viewport.reveal,
.motion-ready .page-home .home-testimonials__track.reveal {
  transform: none;
}

.motion-ready .page-home .home-hero__track.reveal {
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .page-home .home-hero__track.reveal.is-moving {
  will-change: transform;
}

/* Sobre nosotros */
.home-about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 94% 18%, rgba(255, 180, 0, 0.11), transparent 22rem),
    transparent;
}

.home-about::before {
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: 0.02em;
  color: rgba(4, 12, 52, 0.07);
  content: "NOSOTROS";
  font-family: var(--font-display);
  font-size: clamp(7rem, 16vw, 17rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.72;
  pointer-events: none;
}

.home-about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 9vw, 128px);
}

.home-about__visual {
  position: relative;
  min-height: 610px;
}

.home-about__image {
  position: absolute;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 28px 65px rgba(4, 12, 52, 0.18);
}

.home-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-about__image--primary {
  inset: 0 13% 56px 0;
  border: 8px solid var(--paper);
  border-radius: 3px 62px 3px 48px;
  transform: rotate(-1.35deg);
}

.home-about__image--secondary {
  z-index: 2;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 43%;
  border: 7px solid var(--paper);
  border-radius: 34px 3px 34px 3px;
  transform: rotate(2.5deg);
}

.home-about__stamp {
  position: absolute;
  z-index: 4;
  top: 44px;
  right: 3%;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  padding: 20px;
  color: var(--navy);
  background: var(--yellow);
  border: 5px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 20px 44px rgba(4, 12, 52, 0.22);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(7deg);
}

.home-about__copy {
  position: relative;
  min-width: 0;
}

.home-about__copy h2 {
  max-width: 640px;
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 5.8vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 0.86;
  text-transform: uppercase;
}

.home-about__copy h2 em {
  color: var(--terracotta);
  font-style: normal;
}

.home-about__copy > p {
  max-width: 630px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.home-about__copy > p:first-of-type {
  color: var(--navy-muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.home-about__facts {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0;
  background: transparent;
  border-block: 1px solid rgba(4, 12, 52, 0.2);
}

.home-about__fact {
  position: relative;
  min-width: 0;
  padding: 22px 20px 22px 0;
  background: transparent;
}

.home-about__fact:nth-child(2),
.home-about__fact:nth-child(3) {
  background: transparent;
}

.home-about__fact:not(:last-child) {
  border-right: 1px solid rgba(4, 12, 52, 0.14);
}

.home-about__fact:not(:first-child) {
  padding-left: 20px;
}

.home-about__fact::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--yellow);
  border: 2px solid var(--cream);
  border-radius: 50%;
  content: "";
}

.home-about__fact strong {
  display: block;
  margin-bottom: 5px;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.home-about__fact span,
.home-about__fact p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

/* Selección de tours */
.home-tours {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 7% 18%, rgba(255, 180, 0, 0.16), transparent 24rem),
    linear-gradient(120deg, var(--navy) 0%, #07113e 58%, #0a1748 100%);
  border-radius: 9px 74px 9px 74px;
}

.home-tours::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 520'%3E%3Cpath d='M-20 410C180 86 420 596 720 176S1120 268 1240 28' fill='none' stroke='%23ffb400' stroke-opacity='.2' stroke-width='2' stroke-dasharray='5 12'/%3E%3Ccircle cx='82' cy='295' r='5' fill='%23ffb400' fill-opacity='.5'/%3E%3Ccircle cx='1120' cy='132' r='5' fill='%23ffb400' fill-opacity='.5'/%3E%3C/svg%3E") center / cover no-repeat,
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, 0.06), transparent 18rem);
  content: "";
  opacity: 0.78;
  pointer-events: none;
}

.home-tours .home-section-heading h2 {
  color: var(--white);
}

.home-tours .home-section-heading h2 em {
  color: var(--yellow);
}

.home-tours .home-section-heading > p,
.home-tours .home-section-heading__aside {
  color: rgba(255, 255, 255, 0.7);
  border-left-color: var(--yellow);
}

.home-tours .home-section-link {
  color: var(--white);
}

.home-tour-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}

.home-tour-card {
  position: relative;
  min-width: 0;
  min-height: 470px;
  grid-column: span 4;
}

.home-tour-card:first-child {
  grid-column: span 5;
  min-height: 540px;
}

.home-tour-card:nth-child(2) {
  grid-column: span 3;
  margin-top: 56px;
}

.home-tour-card:nth-child(3) {
  grid-column: span 4;
  min-height: 510px;
  margin-top: 18px;
}

.home-tour-card__link {
  position: relative;
  isolation: isolate;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-muted);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 3px 46px 3px 46px;
  box-shadow: 0 24px 58px rgba(2, 7, 30, 0.3);
}

.home-tour-card:nth-child(2) .home-tour-card__link {
  border-radius: 38px 3px 38px 3px;
}

.home-tour-card:nth-child(3) .home-tour-card__link {
  border-radius: 3px 3px 48px 3px;
}

.home-tour-card__media,
.home-tour-card__wash {
  position: absolute;
  inset: 0;
}

.home-tour-card__media {
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 180, 0, 0.28), transparent 12rem),
    var(--navy-soft);
}

.home-tour-card__media img {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-tour-card__wash {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 12, 52, 0.02) 24%, rgba(4, 12, 52, 0.94) 100%),
    linear-gradient(90deg, rgba(4, 12, 52, 0.38), transparent 70%);
}

.home-tour-card__number {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.home-tour-card__content {
  padding: clamp(26px, 3.4vw, 42px);
}

.home-tour-card__eyebrow,
.home-tour-card__category {
  display: block;
  margin-bottom: 10px;
  color: var(--yellow);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-tour-card h3 {
  margin: 0 0 13px;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 3.9vw, 4.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.88;
  text-transform: uppercase;
}

.home-tour-card:nth-child(2) h3 {
  font-size: clamp(2.25rem, 3.2vw, 3.35rem);
}

.home-tour-card__content p,
.home-tour-card__summary {
  max-width: 510px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.55;
}

.home-tour-card__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-tour-card__action svg {
  width: 18px;
  height: 18px;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Por qué viajar / trato VIP */
.home-vip {
  isolation: isolate;
}

.home-vip::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -70px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(185, 67, 43, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 64px rgba(185, 67, 43, 0.025),
    0 0 0 128px rgba(255, 180, 0, 0.018);
  content: "";
}

.home-vip__layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: clamp(56px, 9vw, 126px);
}

.home-vip__intro {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.home-vip__intro h2 {
  max-width: 620px;
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.84;
  text-transform: uppercase;
}

.home-vip__intro h2 em {
  display: block;
  color: var(--terracotta);
  font-style: normal;
}

.home-vip__intro > p {
  max-width: 510px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.93rem;
}

.home-vip__badge {
  display: inline-grid;
  min-width: 156px;
  min-height: 84px;
  place-items: center;
  padding: 16px 22px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 3px 30px 3px 30px;
  box-shadow: 0 16px 38px rgba(255, 180, 0, 0.16);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.home-vip__promise-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px 48px 4px 48px;
  box-shadow: 0 24px 64px rgba(4, 12, 52, 0.08);
}

.home-vip__promise {
  position: relative;
  min-height: 250px;
  padding: clamp(26px, 3.5vw, 42px);
  overflow: hidden;
  background: var(--paper);
}

.home-vip__promise:nth-child(2),
.home-vip__promise:nth-child(3) {
  background: #fbf7ed;
}

.home-vip__promise:nth-child(3) {
  border-radius: 0 0 0 46px;
}

.home-vip__promise:nth-child(4) {
  border-radius: 0 0 4px 0;
}

.home-vip__promise::after {
  position: absolute;
  right: -34px;
  bottom: -40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(4, 12, 52, 0.08);
  border-radius: 50%;
  content: "";
  transition:
    border-color 220ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-vip__promise > svg,
.home-vip__promise-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--terracotta);
}

.home-vip__promise > span:first-child {
  display: block;
  margin-bottom: 22px;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.home-vip__promise h3 {
  margin: 0 0 11px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.4vw, 2.45rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.home-vip__promise p {
  max-width: 340px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.58;
}

/* Testimonios — scroll nativo con snap, sin autoplay */
.home-testimonials {
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 20%, rgba(255, 180, 0, 0.16), transparent 22rem),
    var(--navy);
  border-radius: 72px 8px 72px 8px;
}

.home-testimonials::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 20px, rgba(255, 255, 255, 0.028) 20px 22px);
  content: "";
  clip-path: polygon(54% 0, 100% 0, 100% 100%, 30% 100%);
}

.home-testimonials__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 48px;
}

.home-testimonials__header h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 5.9vw, 6.3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.86;
  text-transform: uppercase;
}

.home-testimonials__header h2 em {
  color: var(--yellow);
  font-style: normal;
}

.home-testimonials__controls {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
}

.home-testimonials__arrow {
  display: grid;
  width: 50px;
  min-width: 44px;
  height: 50px;
  min-height: 44px;
  place-items: center;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 100ms ease;
}

.home-testimonials__arrow svg {
  width: 19px;
  height: 19px;
}

.home-testimonials__arrow:active {
  transform: scale(0.94);
}

.home-testimonials__arrow:disabled {
  cursor: default;
  opacity: 0.38;
}

.home-testimonials__viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 3px 2px 22px;
  scroll-padding-inline: 2px;
  scroll-snap-type: inline mandatory;
  scrollbar-color: rgba(255, 180, 0, 0.5) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.home-testimonials__viewport::-webkit-scrollbar {
  height: 5px;
}

.home-testimonials__viewport::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.home-testimonials__viewport::-webkit-scrollbar-thumb {
  background: rgba(255, 180, 0, 0.58);
  border-radius: 999px;
}

.home-testimonials__track {
  --home-testimonial-gap: 18px;
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: var(--home-testimonial-gap);
}

.home-testimonials__card {
  position: relative;
  display: flex;
  width: calc((min(100vw - 48px, var(--shell)) - (var(--home-testimonial-gap) * 2)) / 3);
  min-width: 0;
  min-height: 330px;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.2vw, 40px);
  overflow: hidden;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px 38px 3px 38px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.home-testimonials__card:nth-child(even) {
  background: #fbf3df;
  border-radius: 34px 3px 34px 3px;
}

.home-testimonials__card--visible {
  border-color: rgba(255, 180, 0, 0.5);
  box-shadow: 0 18px 44px rgba(2, 7, 30, 0.12);
}

.home-testimonials__card::before {
  position: absolute;
  top: -12px;
  right: 20px;
  color: rgba(185, 67, 43, 0.12);
  content: "“";
  font-family: Georgia, serif;
  font-size: 10rem;
  line-height: 1;
  pointer-events: none;
}

.home-testimonials__quote {
  position: relative;
  z-index: 1;
  margin: 0 0 36px;
  color: var(--navy-muted);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 600;
  line-height: 1.16;
}

.home-testimonials__source {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(4, 12, 52, 0.12);
}

.home-testimonials__source::before {
  width: 34px;
  height: 3px;
  flex: 0 0 auto;
  background: var(--yellow);
  content: "";
}

.home-testimonials__source strong,
.home-testimonials__source span {
  display: block;
}

.home-testimonials__source strong {
  font-size: 0.78rem;
}

.home-testimonials__source span {
  color: var(--muted);
  font-size: 0.68rem;
}

.home-testimonials__pending {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  align-self: flex-start;
  padding: 5px 10px;
  color: var(--terracotta);
  background: rgba(185, 67, 43, 0.08);
  border: 1px solid rgba(185, 67, 43, 0.24);
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-testimonials__dots {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.home-testimonials__dot {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.home-testimonials__dot::before {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  content: "";
  transition:
    width 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease;
}

.home-testimonials__dot[aria-current="true"]::before,
.home-testimonials__dot.is-active::before {
  width: 23px;
  background: var(--yellow);
  border-radius: 999px;
}

.home-testimonials__status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Recomendaciones de destinos */
.home-destinations {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-destinations::before {
  position: absolute;
  z-index: -1;
  top: 100px;
  left: -120px;
  width: min(48vw, 590px);
  height: 500px;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0 22%, rgba(4, 12, 52, 0.065) 22.3% 22.65%, transparent 23% 31%, rgba(185, 67, 43, 0.08) 31.3% 31.65%, transparent 32% 40%, rgba(4, 12, 52, 0.055) 40.3% 40.65%, transparent 41% 49%, rgba(255, 180, 0, 0.1) 49.3% 49.65%, transparent 50%);
  content: "";
  opacity: 0.92;
  pointer-events: none;
  transform: rotate(11deg);
}

.home-destinations__grid {
  display: grid;
  min-height: 790px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(280px, 1fr));
  gap: 18px;
}

.home-destination-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  grid-column: span 3;
}

.home-destination-card--featured {
  grid-column: span 6;
  grid-row: span 2;
}

.home-destination-card:nth-child(2),
.home-destination-card:nth-child(5) {
  grid-column: span 3;
}

.home-destination-card__link {
  position: relative;
  isolation: isolate;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 3px 38px 3px 38px;
  box-shadow: 0 20px 52px rgba(4, 12, 52, 0.12);
}

.home-destination-card:nth-child(3) .home-destination-card__link,
.home-destination-card:nth-child(4) .home-destination-card__link {
  border-radius: 32px 3px 32px 3px;
}

.home-destination-card__media,
.home-destination-card__wash {
  position: absolute;
  inset: 0;
}

.home-destination-card__media {
  z-index: -2;
  overflow: hidden;
  background: var(--navy-soft);
}

.home-destination-card--image .home-destination-card__media {
  display: block;
}

.home-destination-card--image .home-destination-card__placeholder {
  display: none;
}

.home-destination-card__media img {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-fit: cover;
  object-position: var(--image-position, center);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-destination-card__wash {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(4, 12, 52, 0.04) 26%, rgba(4, 12, 52, 0.92) 100%),
    linear-gradient(90deg, rgba(4, 12, 52, 0.24), transparent 76%);
}

.home-destination-card__content {
  padding: clamp(23px, 3vw, 38px);
}

.home-destination-card__number {
  position: absolute;
  z-index: 2;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.home-destination-card__label {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-destination-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 0.9;
  text-transform: uppercase;
}

.home-destination-card--featured h3 {
  font-size: clamp(3.2rem, 5vw, 5.7rem);
}

.home-destination-card p {
  max-width: 500px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  line-height: 1.52;
}

.home-destination-card__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-destination-card__action svg {
  width: 17px;
  height: 17px;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-destination-card--placeholder .home-destination-card__link,
.home-destination-card__link--placeholder {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 180, 0, 0.28), transparent 11rem),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.035) 18px 20px),
    var(--navy-soft);
}

.home-destination-card--placeholder .home-destination-card__link::before,
.home-destination-card__link--placeholder::before {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 144px;
  height: 144px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.home-destination-card__placeholder {
  position: absolute;
  top: 24%;
  left: 50%;
  display: grid;
  width: 110px;
  place-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.home-destination-card__placeholder svg {
  width: 38px;
  height: 38px;
  color: var(--yellow);
}

.home-destination-card__placeholder-icon {
  width: 38px;
  height: 38px;
  color: var(--yellow);
}

/* Blog */
.home-blog {
  background:
    radial-gradient(circle at 8% 82%, rgba(185, 67, 43, 0.06), transparent 24rem),
    transparent;
}

.home-blog__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.home-article-card {
  min-width: 0;
  grid-column: span 4;
}

.home-article-card:first-child {
  grid-column: span 5;
}

.home-article-card:nth-child(2) {
  grid-column: span 3;
  margin-top: 44px;
}

.home-article-card:nth-child(3) {
  grid-column: span 4;
  margin-top: 16px;
}

.home-article-card__link {
  display: flex;
  height: 100%;
  min-height: 440px;
  flex-direction: column;
  overflow: hidden;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px 42px 3px 42px;
  box-shadow: 0 20px 50px rgba(4, 12, 52, 0.075);
  transition:
    border-color 180ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
}

.home-article-card:nth-child(2) .home-article-card__link {
  border-radius: 34px 3px 34px 3px;
}

.home-article-card__visual {
  position: relative;
  isolation: isolate;
  min-height: 210px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 180, 0, 0.24), transparent 10rem),
    var(--navy);
}

.home-article-card:first-child .home-article-card__visual {
  min-height: 250px;
}

.home-article-card__visual img {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-article-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 12, 52, 0.48));
  content: "";
  pointer-events: none;
}

.home-article-card__date,
.home-article-card__tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 2px 14px 2px 14px;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-article-card__body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: clamp(25px, 3vw, 35px);
}

.home-article-card__category {
  margin-bottom: 11px;
  color: var(--terracotta);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-article-card h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 0.93;
  text-transform: uppercase;
}

.home-article-card:nth-child(2) h3 {
  font-size: clamp(1.8rem, 2.45vw, 2.55rem);
}

.home-article-card__excerpt {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.62;
}

.home-article-card__action {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 12px;
  color: var(--navy);
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-article-card__action svg {
  width: 17px;
  height: 17px;
  color: var(--terracotta);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Newsletter */
.home-newsletter {
  padding-top: clamp(24px, 4vw, 64px);
  padding-bottom: clamp(96px, 10vw, 142px);
}

.home-newsletter__card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(44px, 8vw, 112px);
  overflow: hidden;
  padding: clamp(42px, 7vw, 88px);
  color: var(--white);
  background:
    radial-gradient(circle at 92% 18%, rgba(255, 180, 0, 0.24), transparent 21rem),
    linear-gradient(120deg, var(--navy), #09194d);
  border-radius: 6px 72px 6px 72px;
  box-shadow: 0 32px 76px rgba(4, 12, 52, 0.18);
}

.home-newsletter__card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 78%);
}

.home-newsletter__card::after {
  position: absolute;
  z-index: -1;
  top: -160px;
  right: -120px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 180, 0, 0.22);
  border-radius: 50%;
  box-shadow:
    0 0 0 62px rgba(255, 180, 0, 0.026),
    0 0 0 124px rgba(255, 180, 0, 0.018);
  content: "";
}

.home-newsletter__copy {
  min-width: 0;
}

.home-newsletter__copy h2 {
  max-width: 650px;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5.5vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 0.86;
  text-transform: uppercase;
}

.home-newsletter__copy h2 em {
  color: var(--yellow);
  font-style: normal;
}

.home-newsletter__copy p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.home-newsletter__form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 12px;
  padding: 16px;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px 30px 3px 30px;
  box-shadow: 0 22px 54px rgba(2, 7, 30, 0.26);
}

.home-newsletter__field {
  display: grid;
  min-width: 0;
  gap: 7px;
}

.home-newsletter__field label {
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-newsletter__field input {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px 16px 2px 16px;
  outline-offset: 2px;
}

.home-newsletter__field input::placeholder {
  color: #727789;
  opacity: 1;
}

.home-newsletter__field input:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.home-newsletter__form .button {
  width: 100%;
  min-width: 148px;
}

.home-newsletter__form .button:disabled {
  cursor: not-allowed;
  filter: saturate(0.55);
  opacity: 0.72;
}

.home-newsletter__note {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 2px;
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.5;
}

.home-newsletter__privacy {
  grid-column: 1 / -1;
  max-width: none;
  margin: 0;
  padding-top: 11px;
  color: var(--muted);
  border-top: 1px solid rgba(4, 12, 52, 0.1);
  font-size: 0.68rem;
  line-height: 1.55;
}

.home-newsletter__privacy a {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  color: var(--navy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--yellow-deep);
  text-underline-offset: 4px;
}

/* Alineación con el renderer real de Inicio */
.home-section-heading > div:last-child > p {
  margin: 0 0 18px;
  padding-left: 24px;
  color: var(--muted);
  border-left: 2px solid var(--yellow);
  font-size: 0.92rem;
}

.home-tours .home-section-heading > div:last-child > p {
  color: rgba(255, 255, 255, 0.72);
}

.home-hero__viewport {
  isolation: isolate;
}

.home-hero__track {
  position: relative;
  z-index: 0;
}

.home-hero__slide {
  display: block;
  margin: 0;
  padding: 0;
}

.home-hero__slide > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-fit: cover;
  object-position: var(--image-position, center);
  transform: translateZ(0) scale(1.015);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero__slide[aria-hidden="false"] > img {
  transform: translateZ(0) scale(1.045);
}

.home-hero__slide figcaption {
  position: absolute;
  z-index: 3;
  top: 30px;
  right: max(24px, calc((100% - var(--shell)) / 2));
  max-width: min(320px, 42vw);
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(4, 12, 52, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px 16px 2px 16px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.home-hero__wash {
  z-index: 1;
  pointer-events: none;
}

.home-hero__copy {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: min(calc(100% - 48px), var(--shell));
  max-width: none;
  margin: 0;
  padding-right: min(36vw, 460px);
  transform: translate3d(-50%, -50%, 0);
}

.home-hero__copy h1,
.home-hero__copy .home-hero__intro,
.home-hero__copy .home-hero__actions {
  max-width: 760px;
}

.home-hero__arrow--previous .home-hero__arrow-icon,
.home-testimonials__arrow--previous .home-testimonials__arrow-icon {
  transform: rotate(180deg);
}

.home-hero__arrow:disabled {
  cursor: default;
  opacity: 0.4;
}

.home-hero__kicker::before {
  display: none;
}

.home-hero__kicker > span {
  width: 38px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

.home-hero__dot::before,
.home-testimonials__dot::before {
  display: none;
}

.home-hero__dot > span,
.home-testimonials__dot > span {
  display: block;
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid transparent;
  border-radius: 50%;
  transition:
    width 220ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 180ms ease,
    border-color 180ms ease;
}

.home-hero__dot[aria-current="true"] > span,
.home-testimonials__dot[aria-current="true"] > span {
  width: 23px;
  background: var(--yellow);
  border-color: var(--yellow);
  border-radius: 999px;
}

.home-about__stamp {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-about__image {
  margin: 0;
}

.home-about__stamp strong {
  font-size: 1.45rem;
  line-height: 0.85;
}

.home-about__stamp span {
  display: block;
}

.home-about__lead {
  color: var(--navy-muted) !important;
  font-size: 1.05rem !important;
  font-weight: 600;
}

.home-about__facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-about__fact {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.home-about__fact dt {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
}

.home-about__fact dd {
  min-width: 0;
  margin: 0;
}

.home-about__fact dd strong {
  font-size: 1.12rem;
}

.home-tour-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px 46px 3px 46px;
  box-shadow: 0 24px 58px rgba(2, 7, 30, 0.3);
}

.home-tour-card:nth-child(2) {
  border-radius: 38px 3px 38px 3px;
}

.home-tour-card:nth-child(3) {
  border-radius: 3px 3px 48px 3px;
}

.home-tour-card::after,
.home-tour-card:first-child::after {
  display: none;
}

.home-tour-card__visual {
  position: relative;
  isolation: isolate;
  min-height: 275px;
  overflow: hidden;
  flex: 0 0 auto;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 180, 0, 0.3), transparent 11rem),
    var(--navy-soft);
}

.home-tour-card:first-child .home-tour-card__visual {
  min-height: 330px;
}

.home-tour-card:nth-child(2) .home-tour-card__visual {
  min-height: 240px;
}

.home-tour-card__visual::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(135deg, black, transparent 88%);
}

.home-tour-card__visual--garden {
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 180, 0, 0.26), transparent 10rem),
    linear-gradient(145deg, #173f48, #0a253e);
}

.home-tour-card__visual--route {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 180, 0, 0.34), transparent 12rem),
    linear-gradient(145deg, #8d3023, var(--terracotta));
}

.home-tour-card__visual--image {
  background: var(--navy-muted);
}

.home-tour-card__visual--image::after {
  z-index: 1;
  background: linear-gradient(180deg, transparent 36%, rgba(4, 12, 52, 0.72));
  mask-image: none;
}

.home-tour-card__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-fit: cover;
  object-position: var(--image-position, center);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-tour-card__monogram {
  position: absolute;
  z-index: 1;
  right: -10px;
  bottom: -25px;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: clamp(7rem, 12vw, 11rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.home-tour-card__visual-caption {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 22px;
  max-width: calc(100% - 44px);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.home-tour-card__route {
  position: absolute;
  z-index: 2;
  top: 25%;
  left: 9%;
  width: 68%;
  color: var(--yellow);
}

.home-tour-card__route path {
  stroke: currentColor;
  stroke-width: 2;
  stroke-dasharray: 0.025 0.035;
}

.home-tour-card__route circle {
  fill: currentColor;
}

.home-tour-card__body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: clamp(26px, 3.2vw, 38px);
}

.home-tour-card__category {
  margin: 0 0 11px;
  color: var(--terracotta);
}

.home-tour-card__body h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(2.35rem, 3.4vw, 3.7rem);
}

.home-tour-card:nth-child(2) .home-tour-card__body h3 {
  font-size: clamp(2.15rem, 2.9vw, 3.1rem);
}

.home-tour-card__body > p:not(.home-tour-card__category) {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
}

.home-tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 13px;
  margin: 0 0 22px;
}

.home-tour-card__meta > span {
  display: inline-flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--navy-muted);
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.45;
}

.home-tour-card__meta-icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--terracotta);
}

.home-tour-card__link,
.home-tour-card:nth-child(2) .home-tour-card__link,
.home-tour-card:nth-child(3) .home-tour-card__link {
  position: static;
  isolation: auto;
  display: inline-flex;
  width: auto;
  height: auto;
  min-height: 44px;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  margin-top: auto;
  padding: 12px 0 0;
  overflow: visible;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-tour-card__link-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--terracotta);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-vip .eyebrow--light {
  color: var(--terracotta);
}

.home-vip__promise-grid {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-vip__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.home-vip__badge-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--terracotta);
}

.home-testimonials .eyebrow {
  color: var(--yellow);
}

.home-testimonials__pending {
  display: block;
  width: min(100%, 760px);
  min-height: 0;
  margin: -20px 0 34px;
  padding: 14px 17px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 180, 0, 0.34);
  border-radius: 2px 20px 2px 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.55;
  text-transform: none;
}

.home-testimonials__card::before {
  display: none;
}

.home-testimonials__quote-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 28px;
  color: var(--terracotta);
}

.home-testimonials__topic {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-testimonials__card blockquote {
  display: flex;
  min-height: 120px;
  flex: 1;
  align-items: flex-start;
  margin: 0 0 30px;
  padding: 0;
}

.home-testimonials__card blockquote p {
  margin: 0;
  color: var(--navy-muted);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 600;
  line-height: 1.12;
}

.home-testimonials__card cite {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(4, 12, 52, 0.12);
  font-size: 0.67rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.45;
}

.home-testimonials__card cite > span {
  color: var(--terracotta);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.home-testimonials__card cite img,
.home-testimonials__avatar-fallback {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  object-fit: cover;
}

.home-testimonials__avatar-fallback {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.home-testimonials__card cite > span:last-child {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: var(--navy-muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
}

.home-testimonials__card cite strong,
.home-testimonials__card cite small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-testimonials__card cite strong { color: var(--navy); }
.home-testimonials__card cite small { color: var(--muted); font-size: 0.64rem; }

.home-testimonials__footer {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
}

.home-testimonials__footer .home-testimonials__dots {
  margin: 0;
}

.home-testimonials__status {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: normal;
}

.home-testimonials__viewport:focus-visible {
  outline-color: var(--yellow);
  outline-offset: 6px;
}

.home-destination-card > a {
  position: relative;
  isolation: isolate;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: 3px 38px 3px 38px;
  box-shadow: 0 20px 52px rgba(4, 12, 52, 0.12);
}

.home-destination-card:nth-child(3) > a,
.home-destination-card:nth-child(4) > a {
  border-radius: 32px 3px 32px 3px;
}

.home-destination-card--placeholder > a {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 180, 0, 0.28), transparent 11rem),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.035) 18px 20px),
    var(--navy-soft);
}

.home-destination-card__copy {
  position: relative;
  z-index: 2;
  padding: clamp(23px, 3vw, 38px);
}

.home-destination-card__copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--yellow);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-destination-card__copy > strong {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-destination-card__arrow {
  width: 17px;
  height: 17px;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-destination-card--placeholder .home-destination-card__media {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 180, 0, 0.28), transparent 11rem),
    repeating-linear-gradient(135deg, transparent 0 18px, rgba(255, 255, 255, 0.035) 18px 20px),
    var(--navy-soft);
}

.home-article-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px 42px 3px 42px;
  box-shadow: 0 20px 50px rgba(4, 12, 52, 0.075);
  transition:
    border-color 180ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
}

.home-article-card:nth-child(2) {
  border-radius: 34px 3px 34px 3px;
}

.home-article-card__media {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 225px;
  flex: 0 0 auto;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 180, 0, 0.24), transparent 10rem),
    var(--navy);
}

.home-article-card:first-child .home-article-card__media {
  min-height: 265px;
}

.home-article-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-article-card__media::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(4, 12, 52, 0.54));
  content: "";
  pointer-events: none;
}

.home-article-card__media > span {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--navy);
  background: var(--yellow);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
}

.home-article-card__body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  padding: clamp(25px, 3vw, 35px);
}

.home-article-card__body > p {
  margin: 0 0 11px;
  color: var(--terracotta);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-article-card__body h3 {
  margin: 0 0 14px;
}

.home-article-card__body h3 a {
  color: var(--navy);
}

.home-article-card__body > span {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.62;
}

.home-article-card__link,
.home-article-card:first-child .home-article-card__link,
.home-article-card:nth-child(2) .home-article-card__link {
  display: inline-flex;
  width: auto;
  height: auto;
  min-height: 44px;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  margin-top: auto;
  padding: 12px 0 0;
  overflow: visible;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  transform: none;
}

.home-article-card__link-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  color: var(--terracotta);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.home-newsletter__field > span:first-child {
  color: var(--navy);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-newsletter__input-wrap {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
}

.home-newsletter__field-icon {
  position: absolute;
  z-index: 2;
  left: 14px;
  width: 18px;
  height: 18px;
  color: var(--terracotta);
  pointer-events: none;
}

.home-newsletter__input-wrap input {
  padding-left: 43px;
}

.home-newsletter__mark {
  position: absolute;
  z-index: -1;
  right: -22px;
  bottom: -52px;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--font-display);
  font-size: clamp(10rem, 20vw, 18rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.8;
  pointer-events: none;
}

.home-tour-card__link,
.home-destination-card__link {
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-medium) var(--motion-ease-out),
    transform var(--motion-medium) var(--motion-ease-out);
}

.home-vip__promise-icon,
.home-vip__promise > svg,
.home-testimonials__quote-icon {
  transition:
    color var(--motion-fast) ease,
    transform var(--motion-medium) var(--motion-ease-out);
}

.home-testimonials__card {
  transition:
    border-color var(--motion-fast) ease,
    box-shadow var(--motion-medium) var(--motion-ease-out);
}

.motion-ready .home-about__visual.reveal--visible .home-about__stamp {
  animation: home-stamp-in 540ms 170ms var(--motion-ease-out) backwards;
}

.motion-ready .home-tour-card.reveal--visible .home-tour-card__route path {
  animation: home-route-draw 680ms 160ms var(--motion-ease-out) backwards;
}

.motion-ready .home-vip__promise.reveal--visible .home-vip__promise-icon,
.motion-ready .home-vip__promise.reveal--visible > svg {
  animation: home-icon-in 520ms 140ms var(--motion-ease-out) backwards;
}

@keyframes home-stamp-in {
  from {
    opacity: 0;
    transform: rotate(1deg) scale(0.78);
  }
}

@keyframes home-route-draw {
  from {
    stroke-dashoffset: 1;
  }
}

@keyframes home-icon-in {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.86);
  }
}

@media (hover: hover) {
  .home-section-link:hover {
    color: var(--terracotta);
  }

  .home-section-link:hover svg,
  .home-tour-card__link:hover .home-tour-card__link-icon,
  .home-destination-card > a:hover .home-destination-card__arrow,
  .home-article-card__link:hover .home-article-card__link-icon {
    transform: translate3d(4px, 0, 0);
  }

  .home-hero__arrow:hover,
  .home-hero__pause:hover:not(:disabled),
  .home-testimonials__arrow:hover:not(:disabled) {
    color: var(--navy);
    background: var(--yellow);
    border-color: var(--yellow);
  }

  .home-about__visual:hover .home-about__image--primary img,
  .home-tour-card:hover .home-tour-card__visual img,
  .home-destination-card > a:hover .home-destination-card__media img,
  .home-article-card:hover .home-article-card__media img {
    transform: scale(1.045);
  }

  .home-about__visual:hover .home-about__image--secondary img {
    transform: scale(1.06);
  }

  .home-tour-card:hover .home-tour-card__link,
  .home-destination-card > a:hover {
    border-color: rgba(255, 180, 0, 0.5);
    box-shadow: 0 30px 70px rgba(2, 7, 30, 0.38);
    transform: translate3d(0, -5px, 0);
  }

  .home-vip__promise:hover .home-vip__promise-icon,
  .home-vip__promise:hover > svg {
    color: var(--navy);
    transform: rotate(-8deg) scale(1.08);
  }

  .home-testimonials__card:hover {
    border-color: rgba(255, 180, 0, 0.54);
    box-shadow: 0 22px 50px rgba(2, 7, 30, 0.16);
  }

  .home-vip__promise:hover::after {
    border-color: rgba(185, 67, 43, 0.3);
    transform: scale(1.18);
  }

  .home-article-card:hover {
    border-color: rgba(4, 12, 52, 0.24);
    box-shadow: 0 28px 66px rgba(4, 12, 52, 0.13);
    transform: translate3d(0, -5px, 0);
  }
}

@media (max-width: 1120px) {
  .home-hero__copy {
    width: min(calc(100% - 48px), var(--shell));
    padding-right: min(28vw, 300px);
  }

  .home-about__layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
    gap: 64px;
  }

  .home-about__visual {
    min-height: 540px;
  }

  .home-tour-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-tour-card,
  .home-tour-card:first-child,
  .home-tour-card:nth-child(2),
  .home-tour-card:nth-child(3) {
    min-height: 470px;
    grid-column: auto;
    margin-top: 0;
  }

  .home-tour-card:first-child {
    min-height: 520px;
    grid-column: 1 / -1;
  }

  .home-tour-card:first-child .home-tour-card__link {
    width: auto;
  }

  .home-tour-card:first-child::after {
    position: absolute;
    z-index: -1;
    top: 70px;
    right: 0;
    bottom: -28px;
    width: 35%;
    background:
      radial-gradient(circle at 54% 34%, rgba(255, 180, 0, 0.2), transparent 9rem),
      repeating-linear-gradient(135deg, transparent 0 14px, rgba(255, 255, 255, 0.04) 14px 16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    content: "";
  }

  .home-testimonials__card {
    width: calc((min(100vw - 48px, var(--shell)) - var(--home-testimonial-gap)) / 2);
  }

  .home-destinations__grid {
    min-height: 980px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(280px, 1fr));
  }

  .home-destination-card,
  .home-destination-card:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .home-destination-card--featured {
    grid-column: 1 / -1 !important;
    min-height: 380px;
  }

  .home-destination-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .home-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-article-card,
  .home-article-card:first-child,
  .home-article-card:nth-child(2),
  .home-article-card:nth-child(3) {
    grid-column: auto;
    margin-top: 0;
  }

  .home-article-card:first-child {
    grid-column: 1 / -1;
  }

  .home-article-card:first-child {
    display: grid;
    min-height: 360px;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  }

  .home-article-card:first-child .home-article-card__media {
    min-height: 100%;
  }

  .home-newsletter__card {
    grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.72fr);
    gap: 52px;
  }
}

@media (max-width: 820px) {
  .home-section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .home-section-heading > p,
  .home-section-heading__aside {
    max-width: 640px;
  }

  .home-hero__carousel,
  .home-hero__viewport,
  .home-hero__track,
  .home-hero__slide {
    min-height: max(600px, min(760px, calc(100svh - var(--header-height))));
  }

  .home-hero__slide {
    padding: 0;
  }

  .home-hero__copy {
    width: min(calc(100% - 48px), var(--shell));
    padding-right: 12%;
  }

  .home-hero h1,
  .home-hero__copy h2 {
    font-size: clamp(4rem, 12vw, 6.5rem);
  }

  .home-hero__wash {
    background:
      linear-gradient(90deg, rgba(4, 12, 52, 0.94) 0%, rgba(4, 12, 52, 0.7) 72%, rgba(4, 12, 52, 0.38) 100%),
      linear-gradient(180deg, rgba(4, 12, 52, 0.08), rgba(4, 12, 52, 0.85));
  }

  .home-about__layout {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .home-about__visual {
    width: min(100%, 680px);
    min-height: 600px;
  }

  .home-about__copy {
    width: min(100%, 680px);
  }

  .home-vip__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .home-vip__intro {
    position: static;
  }

  .home-vip__intro > p {
    max-width: 640px;
  }

  .home-testimonials__header {
    align-items: start;
    flex-direction: column;
  }

  .home-testimonials__card {
    width: calc((min(100vw - 48px, var(--shell)) - var(--home-testimonial-gap)) / 2);
  }

  .home-newsletter__card {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 599px) {
  .page-home {
    --home-mobile-gutter: 22px;
  }

  .home-hero {
    --home-hero-enter-y: 10px;
  }

  .home-section-heading {
    margin-bottom: 34px;
  }

  .home-section-heading h2 {
    font-size: clamp(3.2rem, 15vw, 4.65rem);
  }

  .home-section-heading > p,
  .home-section-heading__aside {
    padding-left: 18px;
    font-size: 0.84rem;
  }

  .home-section-heading > div:last-child > p {
    padding-left: 18px;
    font-size: 0.84rem;
  }

  .home-hero__carousel {
    border-radius: 0 0 44px 4px;
  }

  .home-hero__carousel,
  .home-hero__viewport,
  .home-hero__track,
  .home-hero__slide {
    min-height: max(660px, calc(100svh - var(--header-height)));
  }

  .home-hero__slide {
    padding: 0;
  }

  .home-hero__slide > .shell {
    width: calc(100% - (var(--home-mobile-gutter) * 2));
  }

  .home-hero__slide > img,
  .home-hero__media img {
    object-position: 58% center;
  }

  .home-hero__wash {
    background:
      linear-gradient(90deg, rgba(4, 12, 52, 0.9), rgba(4, 12, 52, 0.42)),
      linear-gradient(180deg, rgba(4, 12, 52, 0.08) 18%, rgba(4, 12, 52, 0.96) 78%);
  }

  .home-hero__copy {
    top: auto;
    bottom: 205px;
    width: calc(100% - (var(--home-mobile-gutter) * 2));
    padding-right: 0;
    transform: translate3d(-50%, 0, 0);
  }

  .home-hero__kicker {
    margin-bottom: 16px;
    font-size: 0.63rem;
  }

  .home-hero h1,
  .home-hero__copy h2 {
    margin-bottom: 18px;
    font-size: clamp(3.75rem, 18vw, 5.35rem);
    line-height: 0.83;
  }

  .home-hero__intro {
    margin-bottom: 22px;
    font-size: 0.88rem;
  }

  .home-hero__actions {
    gap: 10px;
  }

  .home-hero__actions .button {
    width: 100%;
  }

  .home-hero__actions .text-link {
    display: none;
  }

  .home-hero__controls {
    right: var(--home-mobile-gutter);
    bottom: 92px;
    left: var(--home-mobile-gutter);
    grid-template-columns: 48px minmax(0, 1fr) 44px 48px;
    gap: 4px;
  }

  .home-hero__index {
    display: none;
  }

  .home-about__layout {
    gap: 48px;
  }

  .home-about__visual {
    min-height: 450px;
  }

  .home-about__image--primary {
    inset: 0 7% 44px 0;
    border-width: 5px;
    border-radius: 3px 42px 3px 36px;
  }

  .home-about__image--secondary {
    width: 48%;
    height: 39%;
    border-width: 5px;
  }

  .home-about__stamp {
    top: 24px;
    width: 104px;
    height: 104px;
    padding: 13px;
    border-width: 4px;
    font-size: 0.78rem;
  }

  .home-about__copy h2 {
    font-size: clamp(3.35rem, 16vw, 4.8rem);
  }

  .home-about__copy > p {
    font-size: 0.88rem;
  }

  .home-about__facts {
    grid-template-columns: 1fr;
    border-block: 0;
    border-left: 1px solid rgba(4, 12, 52, 0.2);
  }

  .home-about__fact:nth-child(n) {
    padding: 18px 0 18px 24px;
    background: transparent;
    border-right: 0;
    border-bottom: 1px solid rgba(4, 12, 52, 0.13);
  }

  .home-about__fact:nth-child(even) {
    background: transparent;
  }

  .home-about__fact::before {
    top: 24px;
    left: -5px;
  }

  .home-tours,
  .home-testimonials {
    border-radius: 44px 5px 44px 5px;
  }

  .home-tour-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-tour-card,
  .home-tour-card:first-child,
  .home-tour-card:nth-child(2),
  .home-tour-card:nth-child(3) {
    min-height: 440px;
    grid-column: auto;
  }

  .home-tour-card:first-child .home-tour-card__link {
    width: 100%;
  }

  .home-tour-card:first-child::after {
    display: none;
  }

  .home-tour-card__link,
  .home-tour-card:nth-child(2) .home-tour-card__link,
  .home-tour-card:nth-child(3) .home-tour-card__link {
    border-radius: 0;
  }

  .home-tour-card h3,
  .home-tour-card:nth-child(2) h3 {
    font-size: clamp(2.7rem, 13vw, 3.9rem);
  }

  .home-vip__intro h2 {
    font-size: clamp(3.55rem, 16vw, 4.85rem);
  }

  .home-vip__promise-grid {
    grid-template-columns: 1fr;
    border-radius: 3px 36px 3px 36px;
  }

  .home-vip__promise {
    min-height: 0;
    padding: 30px 25px;
  }

  .home-vip__promise:nth-child(n) {
    border-radius: 0;
  }

  .home-vip__promise:last-child {
    border-radius: 0 0 3px 34px;
  }

  .home-vip__promise > svg,
  .home-vip__promise-icon {
    margin-bottom: 20px;
  }

  .home-testimonials__header {
    gap: 26px;
    margin-bottom: 34px;
  }

  .home-testimonials__header h2 {
    font-size: clamp(3.4rem, 16vw, 4.9rem);
  }

  .home-testimonials__viewport {
    width: calc(100% + var(--home-mobile-gutter));
    margin-right: calc(var(--home-mobile-gutter) * -1);
    padding-right: var(--home-mobile-gutter);
  }

  .home-testimonials__track {
    --home-testimonial-gap: 14px;
  }

  .home-testimonials__card {
    width: min(84vw, 340px);
    min-height: 315px;
    padding: 28px 24px;
  }

  .home-testimonials__quote {
    font-size: 1.55rem;
  }

  .home-destinations__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 15px;
  }

  .home-destination-card,
  .home-destination-card:nth-child(n),
  .home-destination-card--featured,
  .home-destination-card:last-child:nth-child(odd) {
    min-height: 330px;
    grid-column: auto !important;
    grid-row: auto;
  }

  .home-destination-card--featured {
    min-height: 460px;
  }

  .home-destination-card__link,
  .home-destination-card:nth-child(3) .home-destination-card__link,
  .home-destination-card:nth-child(4) .home-destination-card__link {
    border-radius: 3px 34px 3px 34px;
  }

  .home-destination-card > a,
  .home-destination-card:nth-child(3) > a,
  .home-destination-card:nth-child(4) > a {
    border-radius: 3px 34px 3px 34px;
  }

  .home-destination-card h3 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .home-destination-card--featured h3 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .home-blog__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-article-card,
  .home-article-card:first-child,
  .home-article-card:nth-child(2),
  .home-article-card:nth-child(3) {
    grid-column: auto;
  }

  .home-article-card:first-child {
    display: flex;
    min-height: 0;
    grid-template-columns: none;
  }

  .home-article-card:first-child .home-article-card__media,
  .home-article-card__media {
    min-height: 215px;
  }

  .home-article-card:first-child .home-article-card__link,
  .home-article-card__link {
    display: inline-flex;
    min-height: 44px;
  }

  .home-article-card h3,
  .home-article-card:nth-child(2) h3 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .home-newsletter {
    padding-bottom: 112px;
  }

  .home-newsletter__card {
    gap: 32px;
    padding: 42px 24px 44px;
    border-radius: 4px 42px 4px 42px;
  }

  .home-newsletter__copy h2 {
    font-size: clamp(3.25rem, 15vw, 4.65rem);
  }

  .home-newsletter__form {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .home-newsletter__form .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .home-hero__slide figcaption {
    display: none;
  }

  .home-hero__copy {
    bottom: 224px;
  }

  .home-hero__controls {
    grid-template-areas:
      "dots dots dots"
      "previous pause next";
    grid-template-columns: repeat(3, 48px);
    justify-content: center;
    gap: 2px 16px;
  }

  .home-hero__arrow--previous {
    grid-area: previous;
  }

  .home-hero__dots {
    grid-area: dots;
  }

  .home-hero__pause {
    grid-area: pause;
    justify-self: center;
  }

  .home-hero__arrow--next {
    grid-area: next;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .page-home .home-hero__kicker,
  .motion-ready .page-home .home-hero h1,
  .motion-ready .page-home .home-hero__intro,
  .motion-ready .page-home .home-hero__actions,
  .motion-ready .page-home .home-hero__controls,
  .motion-ready .page-home .home-hero__index,
  .motion-ready .page-home .home-about__stamp,
  .motion-ready .page-home .home-tour-card__route path,
  .motion-ready .page-home .home-vip__promise-icon,
  .motion-ready .page-home .home-vip__promise > svg {
    animation: none !important;
  }

  .page-home .home-hero__track,
  .motion-ready .page-home .home-hero__track.reveal {
    transition: none !important;
    will-change: auto !important;
  }

  .page-home .home-hero__slide > img,
  .page-home .home-hero__media img,
  .page-home .home-about__image img,
  .page-home .home-tour-card__visual img,
  .page-home .home-tour-card__media img,
  .page-home .home-destination-card__media img,
  .page-home .home-article-card__media img,
  .page-home .home-article-card__visual img,
  .page-home .home-section-link svg,
  .page-home .home-tour-card__link-icon,
  .page-home .home-tour-card__action svg,
  .page-home .home-destination-card__arrow,
  .page-home .home-destination-card__action svg,
  .page-home .home-article-card__link-icon,
  .page-home .home-article-card__action svg {
    transform: none !important;
    transition: none !important;
  }

  .page-home .home-testimonials__viewport {
    scroll-behavior: auto !important;
  }

  .page-home .home-vip__intro {
    position: static;
  }
}

@media (forced-colors: active) {
  .page-home .home-hero__controls,
  .page-home .home-hero__arrow,
  .page-home .home-hero__pause,
  .page-home .home-hero__dot,
  .page-home .home-about__image,
  .page-home .home-about__fact,
  .page-home .home-tour-card,
  .page-home .home-tour-card__link,
  .page-home .home-vip__promise-grid,
  .page-home .home-vip__promise,
  .page-home .home-testimonials__arrow,
  .page-home .home-testimonials__card,
  .page-home .home-testimonials__dot,
  .page-home .home-destination-card > a,
  .page-home .home-destination-card__link,
  .page-home .home-article-card,
  .page-home .home-article-card__link,
  .page-home .home-newsletter__card,
  .page-home .home-newsletter__form,
  .page-home .home-newsletter__field input {
    border: 2px solid currentColor;
  }

  .page-home .home-hero__dot > span,
  .page-home .home-testimonials__dot > span {
    forced-color-adjust: none;
  }

  .page-home .home-tour-card__wash,
  .page-home .home-destination-card__wash,
  .page-home .home-article-card__media::after,
  .page-home .home-article-card__visual::after {
    background: linear-gradient(transparent, CanvasText);
  }
}

/* Movimiento y bloques visuales reforzados en Inicio */
.motion-ready .page-home .home-hero__kicker,
.motion-ready .page-home .home-hero h1,
.motion-ready .page-home .home-hero__intro,
.motion-ready .page-home .home-hero__actions,
.motion-ready .page-home .home-hero__controls,
.motion-ready .page-home .home-hero__index {
  animation-duration: 640ms;
}

@keyframes home-hero-content-in {
  from {
    opacity: 0;
    transform: translate3d(0, var(--home-hero-enter-y, 28px), 0);
  }
}

.home-about__visual .image-carousel--home-about {
  position: absolute;
  inset: 0 8% 44px 0;
  filter: none;
  transform: none;
}

.image-carousel--home-about .image-carousel__viewport {
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(2, 30, 64, 0.14);
}

.image-carousel--home-about .image-carousel__slide figcaption {
  right: auto;
  left: 18px;
}

.image-carousel--home-about .image-carousel__controls {
  grid-template-columns: 44px minmax(0, 1fr) 44px;
}

.image-carousel--home-about .image-carousel__dots {
  justify-content: flex-start;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.image-carousel--home-about .image-carousel__dots::-webkit-scrollbar {
  display: none;
}

.home-newsletter {
  padding-bottom: clamp(54px, 6vw, 86px);
}

.home-payments {
  position: relative;
  overflow: hidden;
  padding-top: clamp(54px, 6vw, 88px);
  background:
    radial-gradient(circle at 9% 25%, rgba(255, 180, 0, 0.13), transparent 19rem),
    linear-gradient(180deg, transparent, rgba(255, 253, 248, 0.75));
}

.home-payments::before {
  position: absolute;
  top: 52px;
  right: -80px;
  width: min(30vw, 410px);
  height: 260px;
  background-image: repeating-linear-gradient(
    135deg,
    transparent 0 15px,
    rgba(4, 12, 52, 0.05) 15px 17px
  );
  clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 76%);
  content: "";
  pointer-events: none;
}

.home-payments__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: clamp(40px, 7vw, 96px);
  margin-bottom: 44px;
}

.home-payments__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6vw, 6.4rem);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 0.88;
  text-transform: uppercase;
}

.home-payments__heading > p {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  border-left: 2px solid var(--yellow);
  font-size: 0.9rem;
  line-height: 1.75;
}

.home-payments__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-payment-card {
  display: grid;
  min-width: 0;
  min-height: 158px;
  align-content: center;
  gap: 9px;
  padding: 22px 18px 18px;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(4, 12, 52, 0.13);
  border-radius: 3px 28px 3px 28px;
  box-shadow: 0 16px 34px rgba(4, 12, 52, 0.08);
}

.home-payment-card:nth-child(even) {
  border-radius: 24px 3px 24px 3px;
}

.home-payment-card__logo {
  display: grid;
  height: 72px;
  place-items: center;
  overflow: hidden;
}

.home-payment-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.home-payment-card__name {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

@keyframes home-hero-photo-drift {
  from {
    transform: translateZ(0) scale(1.035);
  }
  to {
    transform: translate3d(-0.8%, -0.5%, 0) scale(1.075);
  }
}

@keyframes home-badge-float {
  from {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }
  to {
    transform: translate3d(0, -8px, 0) rotate(1deg);
  }
}

@keyframes home-payment-shape-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-14px, 10px, 0);
  }
}

@media (max-width: 980px) {
  .home-payments__heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-payments__heading > p {
    max-width: 680px;
  }

  .home-payments__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-about__visual .image-carousel--home-about {
    inset: 0 6% 36px 0;
  }
}

@media (max-width: 599px) {
  .home-about__visual .image-carousel--home-about {
    inset: 0 3% 24px 0;
  }

  .image-carousel--home-about .image-carousel__viewport {
    border: 0;
    border-radius: 20px;
  }

  .home-newsletter {
    padding-bottom: 48px;
  }

  .home-payments {
    padding-top: 48px;
    padding-bottom: 104px;
  }

  .home-payments__heading {
    margin-bottom: 30px;
  }

  .home-payments__heading h2 {
    font-size: clamp(3.45rem, 16vw, 4.8rem);
  }

  .home-payments__heading > p {
    padding-left: 18px;
    font-size: 0.84rem;
  }

  .home-payments__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .home-payment-card {
    min-height: 138px;
    padding: 18px 12px 15px;
  }

  .home-payment-card__logo {
    height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__slide > img,
  .page-home .home-vip__badge,
  .page-home .home-payments::before,
  .page-home .home-newsletter__card::after,
  .page-home .home-payment-card {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (forced-colors: active) {
  .page-home .home-payment-card {
    border: 2px solid currentColor;
  }
}

/* En tablet y escritorio la ayuda conserva su zona; en móvil los controles se centran. */
@media (min-width: 600px) and (max-width: 1632px) {
  .page-home .home-hero__controls {
    right: 176px;
  }
}

@media (max-width: 599px) {
  .page-home .home-hero__controls {
    right: var(--home-mobile-gutter);
    left: var(--home-mobile-gutter);
  }
}

/* Reseñas editoriales: altura estable, lectura breve y texto completo bajo demanda. */
.home-testimonials__card {
  height: clamp(370px, 31vw, 430px);
  min-height: 0;
  justify-content: flex-start;
  padding: clamp(26px, 2.7vw, 36px);
}

.home-testimonials__quote-icon { width: 30px; height: 30px; margin-bottom: 17px; }
.home-testimonials__topic { margin-bottom: 14px; }

.home-testimonials__card blockquote {
  display: block;
  min-height: 0;
  flex: 1 1 auto;
  margin: 0 0 14px;
  overflow: hidden;
}

.home-testimonials__excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  color: var(--navy-muted);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.75vw, 1.8rem);
  font-weight: 600;
  line-height: 1.12;
}

.home-testimonials__disclosure {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  margin-bottom: 13px;
}

.home-testimonials__disclosure summary {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  color: var(--navy);
  border-top: 1px solid rgba(4,12,52,.13);
  border-bottom: 1px solid rgba(4,12,52,.13);
  cursor: pointer;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .075em;
  list-style: none;
  text-transform: uppercase;
}

.home-testimonials__disclosure summary::-webkit-details-marker { display: none; }
.home-testimonials__read-icon { width: 18px; height: 18px; color: var(--terracotta); transition: transform 220ms var(--motion-ease-out); }
.home-testimonials__close-label { display: none; }

.home-testimonials__disclosure[open] {
  position: absolute;
  z-index: 8;
  inset: 0;
  display: block;
  margin: 0;
  padding: 22px clamp(22px, 2.7vw, 34px) 26px;
  color: var(--navy);
  background:
    radial-gradient(circle at 100% 0, rgba(255,180,0,.18), transparent 12rem),
    #fffaf0;
}

.home-testimonials__disclosure[open] summary { border-top: 0; }
.home-testimonials__disclosure[open] .home-testimonials__read-label { display: none; }
.home-testimonials__disclosure[open] .home-testimonials__close-label { display: inline; }
.home-testimonials__disclosure[open] .home-testimonials__read-icon { transform: rotate(-90deg); }

.home-testimonials__full-quote {
  min-height: 0;
  overflow: auto;
  padding: 20px 8px 8px 0;
  scrollbar-color: rgba(185,67,43,.5) rgba(4,12,52,.08);
  scrollbar-width: thin;
}

.home-testimonials__disclosure[open] .home-testimonials__full-quote {
  position: absolute;
  inset: 68px clamp(22px, 2.7vw, 34px) 24px;
}

.home-testimonials__full-quote p {
  margin: 0;
  color: var(--navy-muted);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.72;
}

.home-testimonials__card cite {
  min-height: 52px;
  flex: 0 0 auto;
  padding-top: 13px;
}

@media (hover: hover) {
  .home-testimonials__disclosure summary:hover { color: var(--terracotta); }
}

@media (max-width: 980px) {
  .home-testimonials__card { height: clamp(370px, 48vw, 420px); }
}

@media (max-width: 599px) {
  .home-testimonials__card {
    width: min(84vw, 340px);
    height: 398px;
    min-height: 0;
    padding: 26px 22px;
  }

  .home-testimonials__excerpt { font-size: 1.4rem; -webkit-line-clamp: 6; }
  .home-testimonials__disclosure[open] { padding: 18px 22px 24px; }
  .home-testimonials__disclosure[open] .home-testimonials__full-quote { inset: 64px 22px 22px; }
  .home-testimonials__full-quote p { font-size: .86rem; }
}

@media (prefers-reduced-motion: reduce) {
  .home-testimonials__read-icon { transition: none; }
}
