*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --beige: #eee4d5;
  --beige-dark: #e4d7c5;
  --blue: #0a5ca8;
  --text: #4b4b4b;
  --white: #ffffff;
  --overlay: rgba(0, 0, 0, 0.28);
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  --radius: 22px;
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background: var(--beige);
  line-height: 1.45;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 48px), 840px);
}

.section-beige {
  background: var(--beige);
}

/* =========================
   EXPERIENCES
   ========================= */

.exp-hero-new {
  position: relative;
  min-height: 260px;
  background:
    url("experiences-hero.jpg") center center / cover no-repeat;
  overflow: hidden;
  color: #FFF;
}

.exp-hero-new::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -42px;
  height: 96px;
  background: #efe4d4;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
  pointer-events: none;
}


.exp-hero-inner-new {
  position: relative;
  z-index: 2;
  min-height: 260px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 34px;
}

.exp-hero-inner-new h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.exp-hero-inner-new p{
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* grid */

.exp-grid-section-new {
  background: #efe4d4;
  padding: 18px 0 42px;
}

.exp-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 26px;
}

.exp-card-new {
  display: flex;
  flex-direction: column;
}

.exp-card-new img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.exp-card-body-new {
  padding-top: 10px;
}

.exp-card-body-new h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  line-height: 1.25;
  font-weight: 700;
  color: #2a2a2a;
}

.exp-card-body-new p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #6a625d;
}

/* bottom symbol section */

.exp-symbol-section-new {
  position: relative;
  min-height: 180px;
  background: url("experiences-bottom.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.exp-symbol-overlay-new {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(38, 38, 38, 0.72), rgba(38, 38, 38, 0.78));
}

.exp-symbol-inner-new {
  position: relative;
  z-index: 2;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  max-width: 920px;
  color: #ffffff;
}

.exp-symbol-inner-new p {
  margin: 0 0 8px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255,255,255,.96);
}



/* TOPBAR */

.topbar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  background: #efe3d3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.8rem;
  width: 80%;
  border-radius: 0 0 15px 15px;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.topbar img {
  width: 20px;
  height: auto;
  margin-left: 5px;
}

.topbar-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
}

.topbar-inner p {
  margin: 0;
  max-width: 900px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font-weight: 600;
}

.topbar-right .lang {
  letter-spacing: 0.08em;
}

.lang-menu {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 9999;
}

.lang-menu > li {
  position: relative;
  list-style: none;
  padding: 10px 0;
}

.lang-menu .lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #2a2522;
  cursor: pointer;
}

.lang-menu .lang::after {
  content: "▾";
  font-size: 0.65rem;
  line-height: 1;
  margin-left: 2px;
}

.lang-menu img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  margin-left: 4px;
}

.lang-submenu {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  min-width: 92px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #efe3d3;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    visibility 0.2s ease,
    transform 0.2s ease;
  z-index: 99999;
}

.lang-menu > li:hover .lang-submenu,
.lang-menu > li:focus-within .lang-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-submenu li {
  list-style: none;
}

.lang-submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  color: #4b4b4b;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: left;
  white-space: nowrap;
  transition: background 0.18s ease;
  position: relative;
  z-index: 2;
}

.lang-submenu a:hover {
  background: rgba(255, 255, 255, 0.5);
}



/* HERO */

.hero {
  position: relative;
  height: 900px;
  overflow: hidden;
  background: none;
}

/* Carrusel de fondo */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero_curve {
  position: relative;
  min-height: 450px;
  height: 450px;
  overflow: visible;
  background: none;
}
/* Carrusel de fondo */
.hero-curve_slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 6s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

.hero-bg.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Capa oscura sobre el slider */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.24));
}

/* Elementos por encima del slider */
.nav-wrap,
.hero-content,
.hero-dots,
.hero-wave {
  position: relative;
  z-index: 3;
}

.topbar {
  z-index: 99999;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 80px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo img {
  width: 140px;
  height: auto;
  float: left;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 34px);
  flex-wrap: wrap;
}

.nav a {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  font-weight: 600;
}

.nav a:hover {
  opacity: 0.84;
}

.hero-content {
  min-height: 650px;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  align-items: center;
  gap: 12px;
}

.hero-copy {
  text-align: center;
  color: #fff;
  padding-top: 40px;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-copy p {
  margin: 8px 0 26px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 400;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  padding: 16px 48px;
  background: #89c95a;
  color: #ffffff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

  .hero-btn:hover {
    background: #76b34b;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
  }

.arrow {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.0);
  background: rgba(255, 255, 255, 0.00);
  color: var(--white);
  font-size: 2rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
}

.arrow:hover {
  width: 62px;
  height: 62px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dot.active {
  background: #fff;
  transform: scale(1.15);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
  background: var(--beige);
  clip-path: ellipse(70% 100% at 50% 100%);
}

/* =========================
   TRAILS
   ========================= */

.trails-hero-new {
  position: relative;
  min-height: 640px;
  background: url("hero-trails.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.trails-hero-overlay-new {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}

.trails-hero-content-new {
  position: relative;
  z-index: 2;
  width: 100%;
}

.trails-hero-copy-new {
  max-width: 520px;
  color: #ffffff;
  padding: 60px 0 80px;
  margin-left: 20%;
}

.trails-hero-copy-new h1 {
  margin: 0 0 12px;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.trails-hero-copy-new h2 {
  margin: 0 0 18px;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.2;
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
}

.trails-hero-copy-new p {
  margin: 0;
  max-width: 430px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
}

/* Grid cards */

.trails-grid-section-new {
  background: #efe4d4;
  padding: 42px 0 34px;
}

.trails-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.trail-card-new {
  position: relative;
}

.trail-card-new img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-radius: 0 28px 0 0;
}

.trail-card-new h3 {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.3;
  font-weight: 600;
  color: #2d2d2d;
}

.trail-badge-new {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 48px;
  height: 58px;
  background: #89c95a;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 12px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Bottom strip */

.trail-card-btn-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #C9ED18 0%, #43B957 65%, #A7D921 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
}

.trail-card-btn-new:hover {
  background-color: #E9DCCD;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
}

.trail-card-btn-new:active {
  transform: translateY(0);
}

.trails-info-strip-new {
  margin-top: 4%;
  margin-bottom: 4%;
  background:

    url("trails-alternatives.jpg") center 55% / cover no-repeat;

  padding: 64px 0 72px;
}

.trails-info-inner-new {
  color: #ffffff;
}

.trails-info-inner-new h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 700;
}

.trails-info-inner-new p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}


/* =========================
   US
   ========================= */

.us-values-team-section {
  --us-bg-main: #e9dece;
  --us-bg-soft: #f4eadf;
  --us-bg-curve: #ded1be;
  --us-text-dark: #2a2522;
  --us-text-soft: #5c554d;
  --us-accent: #63c7be;
  --us-white: #ffffff;

  width: min(100% - 48px, 1180px);
  margin: 0 auto 80px;
  background: var(--us-bg-main);
  overflow: hidden;
  position: relative;
  border-radius: 0 0 22px 22px;
}

/* curva superior */
.us-values-team-section .top-curve {
  background:
    linear-gradient(
      to right,
      transparent 0%,
      transparent 7%,
      var(--us-bg-soft) 7%,
      var(--us-bg-soft) 93%,
      transparent 93%,
      transparent 100%
    );
  position: relative;
}

.us-values-team-section .top-curve::after {
  content: "";
  position: absolute;
  left: -10%;
  bottom: -34px;
  width: 120%;
  height: 78px;
  background: var(--us-bg-soft);
  border-radius: 0 0 50% 50%;
}

/* bloques */
.us-values-team-section .section-block {
  position: relative;
  z-index: 2;
}

.us-values-team-section .values-block {
  background: var(--us-bg-soft);
  padding: 54px 40px 48px;
}

.us-values-team-section .team-block {
  background: var(--us-bg-main);
  padding: 26px 40px 54px;
}

/* contenedores internos */
.us-values-team-section .us-inner {
  width: min(100%, 980px);
  margin: 0 auto;
}

.us-values-team-section .us-inner.us-inner-small {
  width: min(100%, 1420px);
}

/* títulos y textos */
.us-values-team-section .section-title {
  text-align: center;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--us-text-dark);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.us-values-team-section .section-text {
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--us-text-soft);
  max-width: 760px;
  margin: 0 auto 34px;
}

/* values */
.us-values-team-section .values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
  justify-items: center;
}

.us-values-team-section .value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.us-values-team-section .value-item i {
  font-size: 24px;
  color: var(--us-accent);
  line-height: 1;
}

.us-values-team-section .value-item span {
  font-size: 0.95rem;
  color: var(--us-text-soft);
  line-height: 1.3;
  font-weight: 500;
}

/* curva intermedia */
.us-values-team-section .middle-curve {
  position: relative;
  height: 24px;
  background: var(--us-bg-main);
}

.us-values-team-section .middle-curve::before {
  content: "";
  position: absolute;
  left: -8%;
  top: -34px;
  width: 116%;
  height: 110px;
  background: var(--us-bg-main);
  border-radius: 50% 50% 0 0;
}

.us-values-team-section .value-image {
  width: 150px;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin-bottom: 18px;
  background: var(--us-bg-main);
  box-shadow: 0 18px 38px rgba(47, 64, 82, 0.14);
}

.us-values-team-section .value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.us-values-team-section .value-item i {
  margin-top: 4px;
  font-size: 24px;
  color: var(--us-accent);
  line-height: 1;
}

.us-values-team-section .value-item span {
  font-size: 0.95rem;
  color: var(--us-text-soft);
  line-height: 1.3;
  font-weight: 500;
}

/* team */
.us-values-team-section .team-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  text-align: center;
  margin-bottom: 34px;
}

.us-values-team-section .team-title {
  margin-bottom: 8px;
}

.us-values-team-section .team-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--us-text-soft);
}

.us-values-team-section .bird {
  font-size: 34px;
  color: #74cbbd;
  line-height: 1;
  transform: rotate(-8deg);
  flex-shrink: 0;
}

.us-values-team-section .bird-right {
  transform: scaleX(-1) rotate(-8deg);
}

/* grid team */
.us-values-team-section .team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.us-values-team-section .team-card {
  display: flex;
  flex-direction: column;
}

.us-values-team-section .team-image {
  width: 100%;
  aspect-ratio: 0.78 / 1;
  background: #9ec7d7;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.us-values-team-section .team-image img {
  width: 100%;
  height: calc(100% - 28px);
  object-fit: cover;
  display: block;
}

.us-values-team-section .team-image::after {
  content: "";
  display: block;
  width: 100%;
  height: 28px;
  background: #8bb9cb;
}

.team-info {
  padding: 22px 0 8px;
  text-align: left;
}

.team-info h3,
.team-info .team-name {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  color: #2f4052;
  letter-spacing: -0.4px;
  line-height: 1.25;
  position: relative;
}

.team-info h3::after,
.team-info .team-name::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: #8ec3d2;
}

.team-info p,
.team-info .team-role {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  color: #5f4b3f;
  letter-spacing: 0.3px;
  line-height: 1.1;
}

/* tablet */
@media (max-width: 1080px) {
  .us-values-team-section {
    width: min(100% - 32px, 960px);
    margin-bottom: 64px;
  }

  .us-values-team-section .values-block {
    padding: 42px 28px 40px;
  }

  .us-values-team-section .team-block {
    padding: 20px 28px 42px;
  }

  .us-values-team-section .values-grid {
    gap: 18px;
  }

  .us-values-team-section .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }


}

/* mobile */
@media (max-width: 720px) {
  .us-values-team-section {
    width: min(100% - 24px, 100%);
    margin-bottom: 48px;
    border-radius: 0 0 16px 16px;
  }

  .us-values-team-section .top-curve {
    height: 36px;
  }

  .us-values-team-section .top-curve::after {
    bottom: -20px;
    height: 46px;
  }

  .us-values-team-section .values-block {
    padding: 28px 18px 30px;
  }

  .us-values-team-section .section-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
  }

  .us-values-team-section .section-text {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .us-values-team-section .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 10px;
  }

  .us-values-team-section .value-item i {
    font-size: 18px;
  }

  .us-values-team-section .value-item span {
    font-size: 0.82rem;
  }

  .us-values-team-section .middle-curve {
    height: 42px;
  }

  .us-values-team-section .middle-curve::before {
    top: -18px;
    height: 60px;
  }

  .us-values-team-section .team-block {
    padding: 12px 18px 28px;
  }

  .us-values-team-section .team-heading {
    gap: 10px;
    margin-bottom: 22px;
  }

  .us-values-team-section .team-text {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .us-values-team-section .bird {
    font-size: 20px;
  }

  .us-values-team-section .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .us-values-team-section .team-image::after {
    height: 18px;
  }

  .us-values-team-section .team-image img {
    height: calc(100% - 18px);
  }
}


/* WHY SECTION */

.why {
  position: relative;
  padding: 24px 0 70px;
  margin-top: -90px;
  z-index: 1000;
}

.why h2 {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-style: italic;
  font-family: "Playfair Display", serif;
  text-align: center;
}

.why p {
  margin: 0 auto 12px;
  max-width: 760px;
  font-size: 1.2rem;
  text-align: center;
}

.cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1180px;
}

.info-card {
  position: relative;
  border-radius: 16px;
}

.card-image {
  aspect-ratio: 1 / 1.08;
  border-radius: 16px;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.mountain {
  background-image: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=900&q=80");
}

.hikers {
  background-image: linear-gradient(rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08)),
    url("https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=900&q=80");
}

.culture {
  background-image: linear-gradient(rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.06)),
    url("https://images.unsplash.com/photo-1544737151-6e4b1275b289?auto=format&fit=crop&w=900&q=80");
}

.card-pill {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  width: 82%;
  min-height: 44px;
  padding: 8px 42px 8px 16px;
  border-radius: 999px;
  background: #efe3d3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  font-size: 0.78rem;
  font-weight: 700;
  color: #33465a;
  line-height: 1.15;
}

.card-pill a {
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a5ca8;
  white-space: nowrap;
}

/* Animaciones de las tarjetas */

.card-pill {
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.card-pill a {
  display: inline-block;
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    letter-spacing 0.3s ease;
}

.card-pill span {
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
}

/* Hover general de la tarjeta */

.info-card:hover .card-pill {
  transform: translateX(-50%) translateY(-4px);
  background-color: #f4eadf;
  color: #263c51;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

/* Animación del botón Explore */

.info-card:hover .card-pill a {
  transform: translateX(3px);
  color: #074d8e;
  letter-spacing: 0.02em;
}

/* Animación del círculo celeste */

.info-card:hover .card-pill span {
  transform: translateY(-50%) scale(1.12);
  background-color: #70c2e0;
}

.card-pill a:hover {
  text-decoration: none;
  color: #033d74;
}

.card-pill span {
  position: absolute;
  right: 12px;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #8fd0e8;
}

/* STORY BAND */

.story-band {
  position: relative;
  padding: 56px 0 72px;
  background: #d7ebee;
  overflow: hidden;
}

.pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:url("pattern.jpg");
}

.story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 0;
}

.story-photo {
  min-height: 390px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.12)),
    url("qinti.jpg") center/cover no-repeat;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
  z-index: 100;
}

.story-text {
  width: 100%;
  background: url("banner.jpg");
  color: var(--white);
  padding: 48px 42px 48px 72px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-text p {
  margin: 0 0 12px;
  text-align: center;
  font-size: 1.12rem;
}

/* CTA BANNER */

.cta-banner {
  position: relative;
  min-height: 320px;
  display: grid;
  place-items: center;
  background:
    
    url("hummingbird.jpg") center 35%/cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  margin: 0;
  color: var(--white);
  text-align: center;
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  letter-spacing: 0.04em;
  font-weight: 800;
}

/* =========================
   ADVENTURE PAGE
   ========================= */

.adventure-intro {
  background: #efe4d4;
  padding: 56px 0 34px;
}

.adventure-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: start;
}

.adventure-kicker {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7f8f56;
}

.adventure-kicker.light {
  color: rgba(255, 255, 255, 0.9);
}

.adventure-intro-copy h2,
.adventure-section-heading h2,
.adventure-experience-copy h2,
.adventure-cta-inner h2 {
  margin: 0 0 16px;
  color: #2e3b46;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
  font-weight: 800;
}

.adventure-lead {
  font-size: 1.08rem;
  line-height: 1.8;
  color: #5a5956;
}

.adventure-intro-copy p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.8;
  color: #645f5a;
}

.adventure-facts-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 26px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.adventure-facts-card h3 {
  margin: 0 0 18px;
  font-size: 1.2rem;
  color: #2d2d2d;
}

.adventure-facts-list {
  display: grid;
  gap: 14px;
}

.adventure-fact {
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.adventure-fact:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.adventure-fact span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8279;
}

.adventure-fact strong {
  font-size: 1rem;
  color: #2e2e2e;
}

.adventure-highlight-band {
  background: #4a4a4a;
  padding: 36px 0;
}

.adventure-highlight-box {
  max-width: 900px;
  color: #ffffff;
}

.adventure-highlight-box h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
  font-weight: 800;
}

.adventure-highlight-box p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.adventure-journey {
  background: #efe4d4;
  padding: 56px 0;
}

.adventure-section-heading {
  margin-bottom: 28px;
}

.adventure-section-heading.center {
  text-align: center;
}

.adventure-section-heading span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7f8f56;
}

.adventure-days {
  display: grid;
  gap: 24px;
}

.adventure-day-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.adventure-day-number {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  background: #89c95a;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.adventure-day-content h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #2d2d2d;
}

.adventure-day-content p {
  margin: 0 0 12px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #635d58;
}

.adventure-day-content p:last-child {
  margin-bottom: 0;
}

.adventure-experience {
  background: #e9ddd0;
  padding: 56px 0;
}

.adventure-experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.adventure-experience-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 0 34px 0 34px;
}

.adventure-experience-copy p {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.85;
  color: #5f5a55;
}

.adventure-inclusions {
  background: #efe4d4;
  padding: 56px 0 68px;
}

.adventure-points-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.adventure-point-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.adventure-point-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #2f2f2f;
}

.adventure-point-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.75;
  color: #66605b;
}

.adventure-cta {
  position: relative;
  min-height: 360px;
  background:
    linear-gradient(rgba(20, 20, 20, 0.30), rgba(20, 20, 20, 0.30)),
    url("adventure-cta.jpg") center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.adventure-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.24));
}

.adventure-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #ffffff;
  text-align: center;
}

.adventure-cta-inner h2 {
  color: #ffffff;
}

.adventure-cta-inner p {
  margin: 0 auto 24px;
  max-width: 620px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
}

.adventure-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.9);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.adventure-cta-btn:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}

/* RESPONSIVE ADVENTURE */

@media (max-width: 1080px) {
  .adventure-intro-grid,
  .adventure-experience-grid {
    grid-template-columns: 1fr;
  }

  .adventure-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .adventure-intro,
  .adventure-journey,
  .adventure-experience,
  .adventure-inclusions {
    padding: 40px 0;
  }

  .adventure-day-card {
    grid-template-columns: 1fr;
  }

  .adventure-day-number {
    width: 72px;
    height: 72px;
    font-size: 1.25rem;
  }

  .adventure-experience-image img {
    height: 320px;
  }

  .adventure-points-grid {
    grid-template-columns: 1fr;
  }

  .adventure-cta {
    min-height: 300px;
  }
}

/* US */

/* CULTURAL */

.travel-section {
  width: min(100% - 48px, 1180px);
  margin: 70px auto 90px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.travel-card {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  align-items: stretch;
  background: #eadfd1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  min-height: 0;
}
.travel-card:nth-child(even) {
  grid-template-columns: 0.6fr 1.4fr;
}

.travel-card:nth-child(even) .travel-content {
  order: 2;
}

.travel-card:nth-child(even) .travel-image {
  order: 1;
}

.travel-content {
  padding: 30px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #eadfd1;
}

.travel-content.left-align {
  text-align: left;
}

.travel-content .hero-title,
.travel-title {
  margin: 0 0 20px;
  color: #33465a;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.travel-content .hero-text,
.travel-text {
  margin: 0;
  color: #5b5b5b;
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 100%;
}

.travel-image {
  height: 100%;
  min-height: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}

.travel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.travel-card:first-child .travel-content .hero-title {
  font-size: clamp(2.3rem, 3.4vw, 3.6rem);
}

.travel-card:first-child .travel-content .hero-text {
  font-size: 1.08rem;
}

/* FOOTER */

.footer {
  padding: 58px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
}

.footer-contact h3 {
  margin: 0 0 20px;
  font-size: 2rem;
  color: #333;
}

.footer-contact p {
  margin: 0 0 4px;
  font-size: 1rem;
}

.badges {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badges img{
  width: 400px;
}

.badges span {
  display: inline-flex;
  align-items: stretch;
  justify-content: center;
  min-width: 62px;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-logo {
  color: var(--blue);
}

.footer-logo img {
  width: 140px;
  height: auto;
  float: right;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 0.95rem;
}

.footer-bottom nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}



/* TABLET */

@media (max-width: 1080px) {
  .nav-wrap {
    flex-direction: column;
    padding-top: 100px;
  }

  .hero {
    min-height: 760px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }

  .story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-text {
    margin-left: 0;
    padding: 40px 28px;
  }

  .travel-section {
    width: min(100% - 32px, 920px);
    margin: 50px auto 70px;
    gap: 34px;
  }

  .travel-card,
  .travel-card:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .travel-card:nth-child(even) .travel-content,
  .travel-card:nth-child(even) .travel-image {
    order: initial;
  }

  .travel-content {
    padding: 38px 30px;
  }

  .travel-image {
    min-height: 320px;
  }

  .travel-content .hero-title,
  .travel-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }

  .travel-content .hero-text,
  .travel-text {
    font-size: 1rem;
    line-height: 1.7;
  }
}

@media (max-width: 900px) {
  .qinti-contact-card {
    max-width: 92%;
    padding: 34px 28px 24px;
  }

  .qinti-contact-title {
    font-size: 3rem;
  }

  .qinti-contact-deco {
    width: 130px;
  }

  .qinti-contact-deco-left {
    left: 2%;
  }

  .qinti-contact-deco-right {
    right: 2%;
  }
}

@media (max-width: 680px) {
  .qinti-contact-section {
    padding: 100px 16px 60px;
  }

  .qinti-contact-card {
    max-width: 100%;
    padding: 28px 22px 22px;
    border-radius: 16px;
  }

  .qinti-contact-title {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }

  .qinti-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .qinti-contact-deco {
    display: none;
  }

  .qinti-form-group input,
  .qinti-form-group textarea {
    font-size: 1rem;
  }
}

/* MOBILE */

@media (max-width: 720px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .topbar {
    width: 95%;
    border-radius: 0 0 12px 12px;
  }

  .topbar-inner {
    flex-direction: column;
    padding: 10px 14px;
    text-align: center;
  }

  .nav-wrap {
    padding-top: 110px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    min-height: 560px;
  }

  .arrow {
    display: none;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .hero-dots {
    bottom: 80px;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .why p {
    font-size: 1rem;
  }

  .story-photo {
    min-height: 290px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

      .top-bar {
        font-size: 10px;
        padding: 8px 12px;
      }

      .form-card {
        padding: 32px 24px 28px;
        border-radius: 18px;
      }

      .two-columns {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      footer {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-links {
        gap: 20px;
      }

}

/* =========================================================
   RESPONSIVE HARDENING — TABLET + MOBILE
   Q'inti / Estudio Bravos
   ========================================================= */

/* Prevent accidental horizontal overflow from wide media/content */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  min-width: 320px;
}

iframe,
video,
svg,
canvas {
  max-width: 100%;
}

/* Long copy, URLs and labels must never force the layout wider */
p,
a,
h1,
h2,
h3,
h4,
span,
strong {
  overflow-wrap: break-word;
}

/* -------------------------
   TABLET / SMALL LAPTOP
   ------------------------- */
@media (max-width: 1024px) {
  :root {
    --container: 920px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 40px), var(--container));
  }

  /* Header: keep navigation readable without creating a huge vertical block */
  .nav-wrap {
    flex-direction: row;
    align-items: center;
    padding-top: 88px;
    gap: 18px;
  }

  .logo img {
    width: 118px;
  }

  .nav {
    justify-content: flex-end;
    gap: 12px 18px;
  }

  .nav a {
    font-size: 0.86rem;
  }

  .hero,
  .hero_curve {
    min-height: 680px;
  }

  .hero-content {
    min-height: 600px;
  }

  .trails-hero-new {
    min-height: 560px;
  }

  .trails-hero-copy-new {
    margin-left: 7%;
    padding: 90px 0 70px;
    max-width: 500px;
  }

  .trails-grid-new,
  .exp-grid-new {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trail-card-new img,
  .exp-card-new img {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.45fr;
    align-items: end;
  }

  .badges img {
    width: min(100%, 360px);
  }

  /* Cultural cards work better as balanced 50/50 on tablet */
  .travel-card,
  .travel-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
  }

  .travel-card:nth-child(even) .travel-content {
    order: 2;
  }

  .travel-card:nth-child(even) .travel-image {
    order: 1;
  }

  /* Adventure */
  .adventure-intro-grid,
  .adventure-experience-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, .75fr);
    gap: 28px;
  }

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

  .adventure-experience-image img {
    height: 440px;
  }
}

/* -------------------------
   TABLET PORTRAIT
   ------------------------- */
@media (max-width: 820px) {
  .container,
  .narrow {
    width: min(calc(100% - 32px), var(--container));
  }

  .topbar {
    width: calc(100% - 32px);
  }

  .topbar-inner {
    gap: 12px;
  }

  .topbar-inner > p {
    font-size: 0.72rem;
    line-height: 1.35;
    max-width: 72%;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: center;
    padding-top: 96px;
    gap: 14px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    gap: 10px 16px;
  }

  .nav a {
    font-size: 0.83rem;
  }

  .hero,
  .hero_curve {
    min-height: 650px;
  }

  .hero-content {
    min-height: 560px;
    grid-template-columns: 54px 1fr 54px;
  }

  .trails-hero-copy-new {
    margin-left: 0;
    max-width: 560px;
  }

  .trails-grid-new,
  .exp-grid-new {
    gap: 22px;
  }

  .trail-card-new img {
    height: 280px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-logo-wrap {
    display: flex;
    justify-content: flex-start;
  }

  .footer-logo img {
    float: none;
  }

  .travel-card,
  .travel-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .travel-card:nth-child(even) .travel-content,
  .travel-card:nth-child(even) .travel-image {
    order: initial;
  }

  .travel-image {
    height: 360px;
    min-height: 360px;
  }

  .adventure-intro-grid,
  .adventure-experience-grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------
   MOBILE
   ------------------------- */
@media (max-width: 600px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  /* Topbar: preserve social/language access, remove only the long legend */
  .topbar {
    width: calc(100% - 20px);
    border-radius: 0 0 12px 12px;
  }

  .topbar-inner {
    min-height: 48px;
    flex-direction: row;
    justify-content: flex-end;
    padding: 8px 12px;
  }

  .topbar-inner > p {
    display: none;
  }

  .topbar-right {
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
  }

  .nav-wrap {
    padding-top: 70px;
    gap: 12px;
  }

  .logo img {
    width: 112px;
  }

  /* CSS-only mobile navigation: two-column compact menu, no JS required */
  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 7px 10px;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 7px 8px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    background: rgba(0,0,0,.10);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    text-align: center;
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .nav a:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 55%;
    justify-self: center;
  }

  .hero,
  .hero_curve {
    min-height: 620px;
  }

  .hero-content {
    min-height: 500px;
    grid-template-columns: 1fr;
    padding-top: 78px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .hero-copy p {
    font-size: clamp(1.05rem, 5vw, 1.45rem);
    margin-bottom: 20px;
  }

  .hero-btn,
  .trail-card-btn-new,
  .adventure-cta-btn {
    min-height: 48px;
  }

  .hero-wave {
    height: 85px;
  }

  .hero-dots {
    bottom: 62px;
  }

  .trails-hero-new {
    min-height: 610px;
    align-items: flex-end;
  }

  .trails-hero-copy-new {
    margin-left: 0;
    padding: 210px 0 72px;
    max-width: 100%;
  }

  .trails-hero-copy-new h1 {
    font-size: clamp(2.2rem, 12vw, 3.6rem);
    line-height: .95;
  }

  .trails-hero-copy-new h2 {
    font-size: 1.12rem;
  }

  .trails-hero-copy-new p {
    font-size: .92rem;
    line-height: 1.6;
  }

  .trails-grid-section-new,
  .exp-grid-section-new {
    padding-left: 0;
    padding-right: 0;
  }

  .trails-grid-new,
  .exp-grid-new {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trail-card-new img,
  .exp-card-new img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .trail-card-new h3 {
    font-size: 1.05rem;
  }

  /* Experiences accordion/cards */
  .qinti-category-grid {
    grid-template-columns: 1fr !important;
  }

  .qinti-category summary {
    min-height: 0;
  }

  .qinti-category summary img {
    aspect-ratio: 4 / 3;
    height: auto;
  }

  /* About us */
  .us-values-team-section {
    width: calc(100% - 20px);
  }

  .us-values-team-section .values-grid,
  .us-values-team-section .team-grid {
    grid-template-columns: 1fr;
  }

  /* Cultural */
  .travel-section {
    width: calc(100% - 28px);
    margin: 36px auto 52px;
    gap: 26px;
  }

  .travel-card,
  .travel-card:nth-child(even) {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .travel-content {
    padding: 26px 20px;
  }

  .travel-content .hero-title,
  .travel-title,
  .travel-card:first-child .travel-content .hero-title {
    font-size: clamp(1.65rem, 8.5vw, 2.25rem);
  }

  .travel-content .hero-text,
  .travel-text,
  .travel-card:first-child .travel-content .hero-text {
    font-size: .94rem;
    line-height: 1.7;
  }

  .travel-image {
    height: 260px;
    min-height: 260px;
  }

  /* Adventure */
  .adventure-intro,
  .adventure-journey,
  .adventure-experience,
  .adventure-inclusions {
    padding: 36px 0;
  }

  .adventure-facts-card,
  .adventure-day-card,
  .adventure-point-card {
    border-radius: 18px;
  }

  .adventure-day-card {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }

  .adventure-day-number {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .adventure-experience-image img {
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 0 24px 0 24px;
  }

  .adventure-points-grid {
    grid-template-columns: 1fr;
  }

  .adventure-cta {
    min-height: 340px;
    padding: 48px 0;
  }

  .adventure-cta-btn {
    width: min(100%, 320px);
    min-width: 0;
  }

  /* Contact forms: support both implementations present in the project */
  .form-card,
  .qinti-contact-card,
  .contact-card {
    width: calc(100% - 28px);
    max-width: 100%;
    padding: 28px 20px;
  }

  .two-columns,
  .qinti-form-row,
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* Footer */
  .footer {
    padding: 44px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact h3 {
    font-size: 1.65rem;
  }

  .footer-contact p {
    font-size: .9rem;
    line-height: 1.55;
  }

  .badges img {
    width: 100%;
    max-width: 360px;
  }

  .footer-logo-wrap {
    display: flex;
    justify-content: flex-start;
  }

  .footer-logo img {
    width: 118px;
    float: none;
  }

  .footer-bottom {
    margin-top: 34px;
    padding-top: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom nav {
    gap: 10px 18px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .container,
  .narrow {
    width: calc(100% - 20px);
  }

  .nav {
    grid-template-columns: 1fr;
  }

  .nav a:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .trails-hero-copy-new {
    padding-top: 235px;
  }

  .hero-btn,
  .trail-card-btn-new {
    width: 100%;
  }
}


/* =========================================================
   Q'INTI — MOBILE HAMBURGER NAVIGATION
   ========================================================= */
.mobile-menu-toggle {
  display: none;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

@media (max-width: 600px) {
  body.menu-open {
    overflow: hidden;
  }

  .nav-wrap {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 68px;
    z-index: 1000;
  }

  .nav-wrap .logo {
    position: relative;
    z-index: 1002;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    position: relative;
    z-index: 1002;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-radius: 50%;
    background: rgba(239, 227, 211, 0.94);
    box-shadow: 0 8px 24px rgba(0,0,0,.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: #2f1d3a;
    transform-origin: center;
    transition: transform .28s ease, opacity .2s ease;
  }

  .mobile-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-wrap .nav {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 1001;
    width: 100%;
    height: 100dvh;
    padding: 132px 28px 48px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: rgba(29, 24, 32, 0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
    overflow-y: auto;
  }

  .nav-wrap .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-wrap .nav a,
  .nav-wrap .nav a:last-child:nth-child(odd) {
    display: flex;
    width: 100%;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: clamp(1.02rem, 4.8vw, 1.28rem);
    line-height: 1.2;
    font-weight: 600;
    text-align: left;
    justify-self: auto;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-wrap .nav a::after {
    content: "→";
    font-size: 1.1em;
    font-weight: 400;
    opacity: .55;
    transform: translateX(0);
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-wrap .nav a:hover::after,
  .nav-wrap .nav a:focus-visible::after {
    transform: translateX(4px);
    opacity: 1;
  }
}

/* =========================================================
   Q'INTI — COMPACT MOBILE HERO CONTENT
   Keeps desktop/tablet untouched. Mobile only.
   ========================================================= */
@media (max-width: 600px) {
  /* Home / general image heroes */
  .hero,
  .hero_curve {
    min-height: 520px;
  }

  .hero-content {
    min-height: 440px;
    padding-top: 112px;
  }

  .hero-copy {
    max-width: 430px;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 9.5vw, 2.9rem);
    line-height: .98;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .hero-copy p {
    max-width: 34rem;
    font-size: clamp(.92rem, 4vw, 1.08rem);
    line-height: 1.48;
    margin-bottom: 16px;
  }

  .hero-btn {
    min-height: 44px;
    padding: 11px 20px;
    font-size: .82rem;
  }

  .hero-wave {
    height: 68px;
  }

  .hero-dots {
    bottom: 48px;
  }

  /* Trails / Cultural / Classic Trail hero copy */
  .trails-hero-new {
    min-height: 500px;
  }

  .trails-hero-copy-new {
    max-width: 470px;
    padding: 158px 0 50px;
  }

  .trails-hero-copy-new h1 {
    font-size: clamp(1.85rem, 9.5vw, 2.85rem);
    line-height: .96;
    letter-spacing: .01em;
    margin-bottom: 10px;
  }

  .trails-hero-copy-new h2 {
    font-size: clamp(.92rem, 4.3vw, 1.04rem);
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .trails-hero-copy-new p {
    max-width: 38rem;
    font-size: .82rem;
    line-height: 1.5;
  }

  /* Simple title heroes: Experiences / About Us */
  .exp-hero-inner-new {
    min-height: 430px;
    padding-top: 170px;
    align-items: flex-start;
  }

  .exp-hero-inner-new h1,
  .exp-hero-inner-new p {
    font-size: clamp(2rem, 10vw, 3.15rem);
    line-height: .96;
  }
}

@media (max-width: 380px) {
  .hero,
  .hero_curve {
    min-height: 485px;
  }

  .hero-content {
    min-height: 405px;
    padding-top: 104px;
  }

  .trails-hero-new {
    min-height: 470px;
  }

  .trails-hero-copy-new {
    padding-top: 146px;
    padding-bottom: 42px;
  }

  .trails-hero-copy-new h1 {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
  }

  .trails-hero-copy-new p {
    font-size: .78rem;
    line-height: 1.45;
  }

  .exp-hero-inner-new {
    min-height: 400px;
    padding-top: 158px;
  }
}

/* =========================================================
   Q'INTI — SHORTER / HIGHER MOBILE HERO OVERRIDE
   Mobile only. Does not change desktop/tablet/layout/nav.
   ========================================================= */
@media (max-width: 600px) {
  /* Home carousel and curve-based heroes */
  .hero,
  .hero_curve {
    height: 390px;
    min-height: 390px;
  }

  .hero-slider,
  .hero-curve_slider,
  .hero-bg {
    height: 100%;
  }

  .hero-content {
    min-height: 390px;
    height: 390px;
    padding-top: 54px;
    padding-bottom: 42px;
    align-items: center;
  }

  .hero-copy {
    padding-top: 0;
    transform: translateY(-18px);
  }

  .hero-copy h1 {
    font-size: clamp(1.8rem, 9vw, 2.65rem);
    margin-bottom: 8px;
  }

  .hero-copy p {
    font-size: clamp(.86rem, 3.7vw, 1rem);
    line-height: 1.4;
    margin: 6px 0 12px;
  }

  .hero-btn {
    min-height: 40px;
    padding: 9px 18px;
    font-size: .78rem;
  }

  .hero-wave {
    height: 52px;
  }

  .hero-dots {
    bottom: 34px;
  }

  /* Trails / Cultural / Classic Trail */
  .trails-hero-new {
    min-height: 390px;
    height: 390px;
    align-items: flex-start;
  }

  .trails-hero-content-new {
    height: 100%;
  }

  .trails-hero-copy-new {
    max-width: 470px;
    margin-left: 0;
    padding: 108px 0 30px;
    transform: none;
  }

  .trails-hero-copy-new h1 {
    font-size: clamp(1.65rem, 8.8vw, 2.5rem);
    line-height: .95;
    margin-bottom: 7px;
  }

  .trails-hero-copy-new h2 {
    font-size: clamp(.84rem, 3.8vw, .98rem);
    margin-bottom: 7px;
  }

  .trails-hero-copy-new p {
    font-size: .76rem;
    line-height: 1.42;
    max-width: 34rem;
  }

  /* Experiences / About Us simple title heroes */
  .exp-hero-inner-new {
    min-height: 390px;
    height: 390px;
    padding-top: 108px;
    padding-bottom: 34px;
    align-items: flex-start;
  }

  .exp-hero-inner-new h1,
  .exp-hero-inner-new p {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }
}

@media (max-width: 380px) {
  .hero,
  .hero_curve,
  .trails-hero-new,
  .exp-hero-inner-new {
    height: 365px;
    min-height: 365px;
  }

  .hero-content {
    height: 365px;
    min-height: 365px;
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .hero-copy {
    transform: translateY(-14px);
  }

  .trails-hero-copy-new {
    padding-top: 98px;
    padding-bottom: 24px;
  }

  .trails-hero-copy-new p {
    font-size: .72rem;
    line-height: 1.38;
  }

  .exp-hero-inner-new {
    padding-top: 98px;
    padding-bottom: 28px;
  }
}

/* =========================================================
   Q'INTI — MOBILE NAV STABILITY + HERO TOP SPACING FIX
   Final override: keeps desktop/tablet untouched.
   ========================================================= */
@media (max-width: 600px) {
  /* Keep the mobile header above every hero/topbar variant. */
  .topbar {
    z-index: 1100;
  }

  .nav-wrap {
    position: relative;
    z-index: 1200;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: min(calc(100% - 28px), var(--container));
    padding-top: 68px !important;
    gap: 12px !important;
  }

  .nav-wrap .logo {
    position: relative;
    z-index: 1202;
    flex: 0 0 auto;
  }

  /* Fixed hamburger prevents page-specific hero rules from moving/clipping it. */
  .mobile-menu-toggle {
    display: inline-flex !important;
    position: fixed !important;
    top: 66px;
    right: 14px;
    z-index: 1302 !important;
    margin: 0 !important;
  }

  /* Force the opened navigation to behave identically on every page. */
  .nav-wrap .nav {
    display: flex !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 1301 !important;
    width: 100vw !important;
    max-width: none !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: 130px 28px 46px !important;
    grid-template-columns: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    background: rgba(29, 24, 32, .97) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    overflow-y: auto;
  }

  .nav-wrap .nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-wrap .nav a,
  .nav-wrap .nav a:last-child:nth-child(odd) {
    grid-column: auto !important;
    justify-self: auto !important;
    width: 100% !important;
    min-height: 58px !important;
    padding: 16px 4px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.14) !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: clamp(1.02rem, 4.8vw, 1.28rem) !important;
    text-align: left !important;
    justify-content: space-between !important;
  }

  /* Short heroes, but with intentional breathing room below the mobile header. */
  .hero-content {
    padding-top: 82px !important;
    padding-bottom: 34px !important;
  }

  .hero-copy {
    transform: none !important;
    padding-top: 12px !important;
  }

  .trails-hero-copy-new {
    padding-top: 124px !important;
    padding-bottom: 28px !important;
  }

  .exp-hero-inner-new {
    padding-top: 124px !important;
    padding-bottom: 30px !important;
  }
}

@media (max-width: 380px) {
  .mobile-menu-toggle {
    top: 62px;
    right: 10px;
  }

  .hero-content {
    padding-top: 76px !important;
  }

  .trails-hero-copy-new,
  .exp-hero-inner-new {
    padding-top: 114px !important;
  }
}

/* =========================================================
   Q'INTI — UNIFIED MOBILE HERO SYSTEM + BRAND NAV
   Final override. Mobile only; desktop/tablet untouched.
   ========================================================= */
@media (max-width: 600px) {
  /* Brand-colored hamburger */
  .mobile-menu-toggle {
    width: 46px !important;
    height: 46px !important;
    flex-basis: 46px !important;
    background: #0a5ca8 !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    box-shadow: 0 8px 22px rgba(10,92,168,.28) !important;
  }

  .mobile-menu-toggle span {
    background: #ffffff !important;
  }

  .nav-wrap .nav {
    background: rgba(7, 63, 112, .975) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
  }

  .nav-wrap .nav a,
  .nav-wrap .nav a:last-child:nth-child(odd) {
    border-bottom-color: rgba(255,255,255,.18) !important;
  }

  /* One short mobile hero height across all templates */
  .hero,
  .hero_curve,
  .trails-hero-new,
  .exp-hero-inner-new {
    height: 390px !important;
    min-height: 390px !important;
  }

  .hero-slider,
  .hero-curve_slider,
  .hero-bg {
    height: 100% !important;
  }

  /* Shared title language: same as Experiences / Our Commitment */
  .hero-copy h1,
  .trails-hero-copy-new h1,
  .exp-hero-inner-new h1,
  .exp-hero-inner-new p {
    margin-top: 0 !important;
    color: #ffffff !important;
    font-size: clamp(1.8rem, 9vw, 2.8rem) !important;
    line-height: 1 !important;
    font-weight: 800 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
  }

  /* Home carousel: same vertical rhythm */
  .hero-content {
    height: 390px !important;
    min-height: 390px !important;
    padding-top: 118px !important;
    padding-bottom: 38px !important;
    align-items: flex-start !important;
  }

  .hero-copy {
    width: 100% !important;
    padding-top: 12px !important;
    transform: none !important;
    text-align: center !important;
  }

  .hero-copy h1 {
    margin-bottom: 8px !important;
  }

  .hero-copy p {
    margin: 6px auto 12px !important;
    max-width: 31rem !important;
    font-size: .84rem !important;
    line-height: 1.4 !important;
  }

  /* Trails / Cultural / Classic: title starts on same visual line */
  .trails-hero-new {
    align-items: flex-start !important;
  }

  .trails-hero-content-new {
    height: 100% !important;
  }

  .trails-hero-copy-new {
    width: 100% !important;
    max-width: 34rem !important;
    margin: 0 auto !important;
    padding: 130px 20px 26px !important;
    transform: none !important;
    text-align: center !important;
  }

  .trails-hero-copy-new h1 {
    margin-bottom: 8px !important;
  }

  .trails-hero-copy-new h2 {
    margin: 0 0 8px !important;
    font-size: .88rem !important;
    line-height: 1.25 !important;
    font-weight: 600 !important;
  }

  .trails-hero-copy-new p {
    margin: 0 auto !important;
    max-width: 31rem !important;
    font-size: .73rem !important;
    line-height: 1.4 !important;
  }

  /* Experiences / Our Commitment reference alignment */
  .exp-hero-inner-new {
    padding-top: 130px !important;
    padding-bottom: 30px !important;
    align-items: flex-start !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .exp-hero-inner-new h1,
  .exp-hero-inner-new p {
    margin: 0 !important;
  }
}

@media (max-width: 380px) {
  /* Keep the same system even on small phones; just tighten type slightly. */
  .hero,
  .hero_curve,
  .trails-hero-new,
  .exp-hero-inner-new,
  .hero-content {
    height: 365px !important;
    min-height: 365px !important;
  }

  .hero-content {
    padding-top: 108px !important;
  }

  .trails-hero-copy-new,
  .exp-hero-inner-new {
    padding-top: 120px !important;
  }

  .hero-copy h1,
  .trails-hero-copy-new h1,
  .exp-hero-inner-new h1,
  .exp-hero-inner-new p {
    font-size: clamp(1.65rem, 8.7vw, 2.35rem) !important;
  }
}

/* =========================================================
   Q'INTI — FINAL MOBILE HERO TITLE-ONLY TWEAKS
   Mobile only. Keeps desktop/tablet and navigation intact.
   ========================================================= */
@media (max-width: 600px) {
  /* Hero content: title only */
  .hero-copy > p,
  .hero-copy > .hero-btn,
  .trails-hero-copy-new > h2,
  .trails-hero-copy-new > p {
    display: none !important;
  }

  /* Home title sits slightly higher while preserving header breathing room */
  .hero-content {
    padding-top: 98px !important;
  }

  .hero-copy {
    padding-top: 0 !important;
  }

  .hero-copy h1 {
    margin: 0 !important;
  }

  /* Internal hero titles remain aligned to Experiences / Our Commitment */
  .trails-hero-copy-new {
    padding-top: 130px !important;
  }

  /* Keep long internal titles compact enough for two lines.
     Cultural already contains one explicit <br>, so this prevents a third line. */
  .trails-hero-copy-new h1 {
    width: 100% !important;
    max-width: 100% !important;
    font-size: clamp(1.55rem, 7.2vw, 2.35rem) !important;
    line-height: 1.02 !important;
    white-space: normal !important;
  }

  .trails-hero-copy-new h1 br {
    display: block !important;
  }
}

@media (max-width: 380px) {
  .hero-content {
    padding-top: 92px !important;
  }

  .trails-hero-copy-new h1 {
    font-size: clamp(1.48rem, 7vw, 2rem) !important;
  }
}
