*,
*::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: 0;
  right: 0;
  bottom: -1px;
  height: 82px;
  background: #efe4d4;
  clip-path: ellipse(72% 100% at 50% 100%);
}


.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: hidden;
  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;
}

/* 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: hidden;
  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 */
.topbar,
.nav-wrap,
.hero-content,
.hero-dots,
.hero-wave {
  position: relative;
  z-index: 3;
}

.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: #89c95a;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  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);
}

.trail-card-btn-new:hover {
  background: #76b34b;
  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 {
  background: #4a4a4a;
  padding: 28px 0 36px;
}

.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 {
  height: 60px;
  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%, 820px);
}

/* 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(5, 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: 78px;
  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;
}

/* 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;
}

/* 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(3, 1fr);
  gap: 28px;
  max-width: 920px;
}

.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: 12px;
  transform: translateX(-50%);
  width: 75%;
  height: 28px;
  border-radius: 999px;
  background: #efe3d3;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.card-pill span {
  position: absolute;
  right: 10px;
  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.05fr 1fr;
  align-items: stretch;
  background: #eadfd1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
  min-height: 420px;
}

.travel-card:nth-child(even) {
  grid-template-columns: 1fr 1.05fr;
}

.travel-card:nth-child(even) .travel-content {
  order: 2;
}

.travel-card:nth-child(even) .travel-image {
  order: 1;
}

.travel-content {
  padding: 56px 52px;
  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 {
  min-height: 420px;
  height: auto%;
}

.travel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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: center;
  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;
      }

}

