@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://amazonas-colombia-tours-149415111214.us-west2.run.app/assets/geist-latin-wght-normal-Dm3htQBi.woff2")
    format("woff2");
}

:root {
  --jungle-950: #052e16;
  --jungle-900: #064e3b;
  --jungle-800: #065f46;
  --earth-50: #faf9f6;
  --earth-100: #f5f2ed;
  --earth-200: #e7dfd3;
  --earth-400: #c1a886;
  --earth-600: #8c6a41;
  --earth-700: #715535;
  --white-10: rgba(255, 255, 255, 0.1);
  --white-20: rgba(255, 255, 255, 0.2);
  --ink-10: rgba(5, 46, 22, 0.1);
  --ink-15: rgba(5, 46, 22, 0.15);
  --ink-25: rgba(5, 46, 22, 0.25);
  --shadow-soft: 0 22px 48px rgba(5, 46, 22, 0.08);
  --shadow-strong: 0 28px 64px rgba(5, 46, 22, 0.22);
  --shell: min(1280px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--earth-100);
  color: var(--jungle-950);
  font-family: "Geist", "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 7rem;
}

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

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

button {
  font: inherit;
}

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.section {
  padding: 8rem 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: rgba(5, 46, 22, 0.45);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow--glass {
  padding: 0.8rem 1.4rem;
  border: 1px solid var(--white-20);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.section-heading--compact {
  margin-bottom: 2.5rem;
}

.section-heading h2,
.culture-copy h2,
.article-card h2,
.article-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

.section-heading h2,
.culture-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section-heading h2 span,
.culture-copy h2 span,
.hero h1 span {
  font-style: italic;
}

.text-link {
  position: relative;
  align-self: flex-end;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(245, 242, 237, 0.82);
  border-bottom: 1px solid var(--ink-10);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  background: var(--jungle-900);
  color: var(--earth-100);
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong,
.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-copy strong {
  font-size: 1.9rem;
  line-height: 0.9;
}

.brand-copy span {
  margin-top: 0.2rem;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  opacity: 0.55;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-nav > a:not(.pill-button) {
  position: relative;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav > a:not(.pill-button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav > a:not(.pill-button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.mobile-menu {
  display: none;
  padding: 0.55rem 0.9rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jungle-950);
}

.mobile-menu[aria-expanded="true"] {
  background: rgba(5, 46, 22, 0.08);
}

.mobile-nav {
  display: none;
  border-top: 1px solid var(--ink-10);
  background: rgba(245, 242, 237, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1.2rem 2.4rem rgba(5, 46, 22, 0.1);
}

.mobile-nav__inner {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 0 1.25rem;
}

.mobile-nav__inner > a:not(.pill-button) {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(5, 46, 22, 0.08);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.mobile-nav__inner .pill-button {
  margin-top: 0.5rem;
  width: 100%;
}

.mobile-nav__inner .pill-button.pill-button--small {
  min-height: 3.35rem;
  font-size: 0.95rem;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.2rem;
  padding: 0 2.25rem;
  border-radius: 999px;
  background: var(--jungle-900);
  color: var(--earth-100);
  font-size: 1.05rem;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 16px 30px rgba(5, 46, 22, 0.18);
}

.pill-button:hover {
  transform: translateY(-2px);
  background: var(--jungle-950);
}

.pill-button--small {
  min-height: 2.8rem;
  padding: 0 1.65rem;
  font-size: 0.9rem;
}

.pill-button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.pill-button--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding-top: 5rem;
  overflow: hidden;
  color: var(--earth-100);
}

.hero-media,
.hero-media img,
.hero-overlay,
.hero-gradient {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(rgba(5, 46, 22, 0.28), rgba(5, 46, 22, 0.42)),
    radial-gradient(circle at center, rgba(5, 46, 22, 0.14), rgba(5, 46, 22, 0.48));
  mix-blend-mode: multiply;
}

.hero-gradient {
  background: linear-gradient(
    180deg,
    rgba(5, 46, 22, 0.18) 0%,
    rgba(5, 46, 22, 0.1) 45%,
    rgba(5, 46, 22, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 74rem;
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(4rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero p {
  width: min(44rem, 100%);
  margin: 1.8rem auto 0;
  color: rgba(245, 242, 237, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.5;
  font-weight: 350;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.75rem;
  flex-wrap: wrap;
}

.scroll-note {
  position: absolute;
  bottom: 2.3rem;
  left: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  color: rgba(245, 242, 237, 0.45);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-note__arrow {
  font-size: 1.2rem;
  animation: bounce 1.9s infinite;
}

.features {
  position: relative;
  background: var(--earth-100);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--ink-10);
}

.feature-card h3,
.tour-card h3,
.story-card h3,
.site-footer h4 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

.feature-card h3 {
  margin-top: 1.5rem;
  font-size: 2rem;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 1rem 0 0;
  color: rgba(5, 46, 22, 0.7);
  font-size: 0.98rem;
  line-height: 1.75;
}

.icon-chip {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(6, 78, 59, 0.06);
  color: var(--jungle-900);
}

.cards-grid,
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

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

.expedition-group + .expedition-group {
  margin-top: 5rem;
}

.expedition-group--pattern {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid rgba(5, 46, 22, 0.08);
  border-radius: 2.25rem;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
}

.expedition-group--pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../img/bg-daily-tours.webp");
  background-repeat: repeat;
  background-position: center;
  background-size: 720px auto;
  opacity: 0.28;
}

.expedition-group--pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(250, 249, 246, 0.9) 0%,
    rgba(250, 249, 246, 0.82) 100%
  );
}

.expedition-group__intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.expedition-group__intro h3 {
  margin: 0.45rem 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.expedition-group__intro p {
  max-width: 28rem;
  margin: 0;
  color: rgba(5, 46, 22, 0.6);
  font-size: 0.98rem;
  line-height: 1.7;
}

.tour-card,
.story-card {
  transform: translateY(0);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.tour-card:hover,
.story-card:hover {
  transform: translateY(-6px);
}

.tour-card__media,
.story-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.tour-card__media {
  aspect-ratio: 4 / 5;
}

.story-card__media {
  aspect-ratio: 16 / 10;
}

.tour-card__media img,
.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.tour-card:hover .tour-card__media img,
.story-card:hover .story-card__media img {
  transform: scale(1.08);
}

.media-tag {
  position: absolute;
  top: 1.4rem;
  left: 1.4rem;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  background: rgba(5, 46, 22, 0.82);
  color: var(--earth-100);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.media-tag--light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--jungle-950);
}

.tour-card__body {
  padding-top: 1.35rem;
}

.tour-card__head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.tour-card__head h3 {
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.tour-card__head strong {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
}

.tour-card p,
.story-card p,
.article-card p,
.article-card li,
.site-footer li,
.footer-about p {
  color: rgba(5, 46, 22, 0.64);
  line-height: 1.72;
}

.tour-card p,
.story-card p {
  margin: 0.9rem 0 0;
  font-size: 0.98rem;
}

.blog-hero {
  padding: 7rem 0 3rem;
}

.blog-hero__copy {
  max-width: 58rem;
}

.blog-hero h1 {
  margin: 0.75rem 0 0;
  font-family: "Playfair Display", serif;
  color: var(--jungle-950);
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.blog-hero p {
  max-width: 46rem;
  margin: 1.25rem 0 0;
  color: rgba(5, 46, 22, 0.68);
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.blog-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card__media {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  aspect-ratio: 16 / 9;
  background: var(--earth-200);
}

.blog-card__media img,
.article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__media img {
  transition: transform 0.7s ease;
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}

.blog-card__body {
  padding-top: 1.15rem;
}

.blog-card__body h2,
.blog-card__body h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--jungle-950);
  font-size: 1.65rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.blog-card__body p {
  margin: 0.75rem 0 0;
  color: rgba(5, 46, 22, 0.64);
  font-size: 0.95rem;
  line-height: 1.7;
}

.article-hero {
  position: relative;
  overflow: hidden;
  min-height: 42rem;
  padding: 7rem 0 4.5rem;
  background: var(--jungle-950);
  isolation: isolate;
  display: flex;
  align-items: flex-end;
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 20%, rgba(193, 168, 134, 0.24), transparent 32rem),
    linear-gradient(90deg, rgba(2, 26, 12, 0.9) 0%, rgba(2, 26, 12, 0.74) 42%, rgba(2, 26, 12, 0.32) 100%),
    linear-gradient(0deg, rgba(2, 26, 12, 0.78) 0%, rgba(2, 26, 12, 0.08) 48%);
}

.article-hero__grid {
  position: static;
  display: block;
  max-width: 58rem;
}

.article-hero__grid > div:first-child {
  position: relative;
  z-index: 2;
}

.article-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  min-height: 0;
  border-radius: 0;
  background: var(--jungle-950);
  box-shadow: none;
}

.article-hero__media img {
  filter: saturate(1.06) contrast(1.04);
}

.article-hero .breadcrumbs {
  margin-bottom: 1.2rem;
  color: rgba(245, 242, 237, 0.62);
}

.article-hero .breadcrumbs a,
.article-hero .breadcrumbs span {
  color: rgba(245, 242, 237, 0.72);
}

.article-hero .breadcrumbs span:last-child {
  color: rgba(245, 242, 237, 0.58);
}

.article-hero .breadcrumbs a:hover {
  color: var(--earth-100);
}

.article-hero .eyebrow {
  color: var(--earth-400);
}

.article-hero h1 {
  max-width: 55rem;
  margin: 0.75rem 0 0;
  font-family: "Playfair Display", serif;
  color: var(--earth-50);
  font-size: clamp(3rem, 6.4vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.article-hero p {
  max-width: 43rem;
  margin: 1.25rem 0 0;
  color: rgba(245, 242, 237, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.article-meta span {
  padding: 0.38rem 0.78rem;
  border: 1px solid rgba(245, 242, 237, 0.22);
  border-radius: 999px;
  background: rgba(245, 242, 237, 0.12);
  color: rgba(245, 242, 237, 0.78);
  backdrop-filter: blur(10px);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 19rem;
  gap: 3rem;
  align-items: start;
}

.article-layout > * {
  min-width: 0;
}

.article-body {
  padding: 3rem;
  border: 1px solid rgba(5, 46, 22, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 2.2rem 0 0.85rem;
  font-family: "Playfair Display", serif;
  color: var(--jungle-950);
  letter-spacing: -0.035em;
}

.article-body h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.article-body h3 {
  font-size: 1.65rem;
  line-height: 1.12;
}

.article-body p,
.article-body li {
  color: rgba(5, 46, 22, 0.72);
  font-size: 1rem;
  line-height: 1.85;
}

.article-body p {
  margin: 0.85rem 0;
}

.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}

.article-table-wrap {
  margin: 1.25rem 0 1.75rem;
  overflow-x: auto;
  border: 1px solid rgba(5, 46, 22, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1rem 2.2rem rgba(5, 46, 22, 0.06);
}

.article-table {
  width: 100%;
  min-width: 34rem;
  border-collapse: collapse;
  color: rgba(5, 46, 22, 0.76);
  font-size: 0.94rem;
  line-height: 1.5;
}

.article-table th,
.article-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(5, 46, 22, 0.08);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  background: var(--jungle-950);
  color: var(--earth-100);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-table tr:last-child td {
  border-bottom: 0;
}

.article-table tbody tr:nth-child(even) {
  background: rgba(193, 168, 134, 0.08);
}

.article-body blockquote {
  margin: 1.5rem 0;
  padding: 1.1rem 1.3rem;
  border-left: 4px solid var(--earth-600);
  border-radius: 1rem;
  background: rgba(193, 168, 134, 0.12);
  color: rgba(5, 46, 22, 0.74);
}

.article-sidebar {
  position: sticky;
  top: 6rem;
}

.article-sidebar .sidebar-card {
  margin: 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.culture {
  position: relative;
  overflow: hidden;
  background: var(--jungle-900);
  color: var(--earth-100);
}

.review-strip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.45));
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  gap: 1.5rem;
  align-items: stretch;
}

.review-card {
  padding: 2rem;
  border: 1px solid rgba(5, 46, 22, 0.08);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.review-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.review-card p {
  margin: 1rem 0 0;
  color: rgba(5, 46, 22, 0.68);
  line-height: 1.75;
}

.review-score {
  display: flex;
  align-items: end;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.review-score strong {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 0.9;
  letter-spacing: -0.05em;
}

.review-score span {
  color: rgba(5, 46, 22, 0.58);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-proof__link {
  display: inline-flex;
  margin-top: 1.35rem;
  color: var(--jungle-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.review-mini {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.review-mini__item {
  padding: 1.3rem 1.2rem;
  border: 1px solid rgba(5, 46, 22, 0.08);
  border-radius: 1.4rem;
  background: var(--earth-50);
}

.review-mini__item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--jungle-950);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.review-mini__item span {
  color: rgba(5, 46, 22, 0.72);
  line-height: 1.65;
  font-size: 0.94rem;
}

.culture-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(5, 46, 22, 0.78), rgba(5, 46, 22, 0.78)),
    url("https://images.unsplash.com/photo-1518709268805-4e9042af9f23?auto=format&fit=crop&q=80&w=1200")
      center/cover;
  opacity: 0.24;
}

.culture-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 5rem;
}

.culture-copy p {
  max-width: 40rem;
  margin: 1.5rem 0 0;
  color: rgba(245, 242, 237, 0.82);
  font-size: 1.08rem;
  line-height: 1.8;
  font-weight: 350;
}

.stat-row {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
}

.stat-row strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
}

.stat-row span {
  color: rgba(245, 242, 237, 0.62);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.culture-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.culture-portrait {
  width: min(34rem, 100%);
  aspect-ratio: 1;
  padding: 2rem;
  border: 1px solid var(--white-20);
  border-radius: 999px;
}

.culture-portrait img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
}

.rating-badge {
  position: absolute;
  right: -1rem;
  bottom: -1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(5, 46, 22, 0.85);
  text-align: center;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-strong);
}

.rating-badge__star {
  margin-bottom: 0.55rem;
  color: #efc44d;
  font-size: 1.6rem;
}

.rating-badge span {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.rating-badge small {
  margin-top: 0.55rem;
  color: rgba(245, 242, 237, 0.56);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.stories {
  background: rgba(245, 242, 237, 0.55);
}

.story-card h3 {
  margin-top: 1.5rem;
  font-size: 1.55rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.story-card p {
  margin-top: 0.8rem;
}

.story-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.1rem;
  color: rgba(5, 46, 22, 0.38);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-meta span:nth-child(2) {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background: rgba(5, 46, 22, 0.2);
}

.article-strip {
  padding-top: 6.2rem;
  padding-bottom: 6.2rem;
  border-top: 1px solid rgba(5, 46, 22, 0.05);
  border-bottom: 1px solid rgba(5, 46, 22, 0.05);
  background: rgba(255, 255, 255, 0.45);
}

.article-card {
  max-width: 58rem;
}

.article-card h2 {
  font-size: 2.3rem;
  line-height: 1.12;
}

.article-card h3 {
  margin-top: 2.5rem;
  font-size: 1.45rem;
}

.article-card p {
  margin: 1rem 0 0;
  font-size: 1.02rem;
}

.article-card ul {
  margin: 1.2rem 0 0;
  padding-left: 1.35rem;
}

.article-card li + li {
  margin-top: 0.55rem;
}

.site-footer {
  padding: 5rem 0 2.4rem;
  background: var(--jungle-950);
  color: rgba(245, 242, 237, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 3rem;
}

.footer-about p,
.site-footer li {
  color: rgba(245, 242, 237, 0.68);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--earth-100);
}

.site-footer h4 {
  margin-bottom: 1.3rem;
  color: var(--earth-100);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.85rem;
}

.socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.socials a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(245, 242, 237, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.25s ease;
}

.socials a:hover {
  background: rgba(245, 242, 237, 0.1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(245, 242, 237, 0.1);
  color: rgba(245, 242, 237, 0.48);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-bottom div {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.page-main {
  padding-top: 5rem;
}

.page-hero {
  padding: 5.5rem 0 3rem;
  background:
    linear-gradient(180deg, rgba(245, 242, 237, 0.96), rgba(245, 242, 237, 0.86)),
    radial-gradient(circle at top left, rgba(193, 168, 134, 0.16), transparent 40%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  color: rgba(5, 46, 22, 0.52);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.breadcrumbs span:last-child {
  color: var(--jungle-950);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  align-items: center;
  gap: 3rem;
}

.page-hero__copy h1,
.page-section h2,
.sidebar-card h3,
.page-cta h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

.page-hero__copy h1 {
  font-size: clamp(2.9rem, 6vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.page-hero__copy p {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  color: rgba(5, 46, 22, 0.72);
  font-size: 1.08rem;
  line-height: 1.8;
}

.page-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 22rem;
  border-radius: 2.25rem;
  box-shadow: var(--shadow-soft);
}

.page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.55fr);
  gap: 2rem;
}

.content-stack {
  display: grid;
  gap: 1.5rem;
}

.page-section,
.sidebar-card,
.page-cta {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(5, 46, 22, 0.08);
  border-radius: 2rem;
  box-shadow: var(--shadow-soft);
}

.page-section {
  padding: 2.2rem;
}

.page-section h2 {
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.page-section p,
.page-section li,
.sidebar-card p,
.sidebar-card li,
.template-note li,
.template-note p {
  color: rgba(5, 46, 22, 0.72);
  line-height: 1.8;
}

.page-section p + p,
.page-section ul,
.page-section ol {
  margin-top: 1rem;
}

.page-section ul,
.page-section ol,
.sidebar-card ul {
  padding-left: 1.2rem;
}

.page-section li + li,
.sidebar-card li + li {
  margin-top: 0.5rem;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.fact-card {
  padding: 1.2rem;
  border-radius: 1.4rem;
  background: var(--earth-50);
  border: 1px solid rgba(5, 46, 22, 0.06);
}

.fact-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--jungle-950);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-card span {
  color: rgba(5, 46, 22, 0.76);
  font-size: 0.98rem;
  line-height: 1.6;
}

.sidebar-stack {
  display: grid;
  align-content: start;
  gap: 1.25rem;
}

.sidebar-card {
  padding: 1.6rem;
}

.sidebar-card h3 {
  font-size: 1.45rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.sidebar-card p,
.sidebar-card ul {
  margin-top: 0.85rem;
}

.sidebar-card .pill-button {
  width: 100%;
  margin-top: 1rem;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.office-card {
  overflow: hidden;
  border: 1px solid var(--ink-10);
  border-radius: 1.5rem;
  background: var(--earth-50);
}

.office-card img {
  display: block;
  width: 100%;
  height: 15.5rem;
  object-fit: cover;
}

.office-card__body {
  padding: 1.2rem;
}

.office-card__body h3 {
  margin: 0 0 0.7rem;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--jungle-950);
}

.office-card__body p {
  margin: 0.35rem 0;
  color: rgba(5, 46, 22, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.faq-item {
  padding: 1.2rem 1.25rem;
  border-radius: 1.2rem;
  background: var(--earth-50);
  border: 1px solid rgba(5, 46, 22, 0.06);
}

.faq-item h3 {
  margin: 0;
  color: var(--jungle-950);
  font-size: 1rem;
  font-weight: 700;
}

.faq-item p {
  margin: 0.55rem 0 0;
}

.page-cta {
  padding: 2rem 2.2rem;
  text-align: center;
}

.page-cta h2 {
  font-size: 2.15rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.page-cta p {
  max-width: 40rem;
  margin: 1rem auto 0;
  color: rgba(5, 46, 22, 0.72);
  line-height: 1.8;
}

.page-hero__media--tour {
  min-height: 28rem;
}

.page-hero__media--tour img {
  border-radius: inherit;
}

.departure-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.35rem;
  margin-top: 1rem;
  border-radius: 1.35rem;
  background: var(--jungle-950);
}

.departure-banner svg {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  stroke: var(--earth-400);
}

.departure-banner p {
  margin: 0 !important;
  color: rgba(245, 242, 237, 0.9) !important;
  font-size: 0.92rem;
  line-height: 1.5 !important;
}

.departure-banner strong {
  color: var(--earth-400);
}

.hero-actions--page {
  margin-top: 1.75rem;
}

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

.itinerary-day + .itinerary-day,
.itinerary-divider + .itinerary-day {
  margin-top: 0.5rem;
}

.day-label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.day-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 999px;
  background: var(--jungle-900);
  color: var(--earth-50);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
  text-align: center;
}

.day-title {
  margin: 0;
  color: var(--jungle-950);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  bottom: 0.55rem;
  left: 0.95rem;
  width: 1.5px;
  background: linear-gradient(180deg, var(--jungle-900) 0%, var(--earth-400) 100%);
  opacity: 0.22;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 0.65rem 0;
}

.timeline-dot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  margin-top: 0.15rem;
  border: 2px solid var(--earth-200);
  border-radius: 999px;
  background: var(--earth-50);
}

.timeline-dot svg {
  width: 0.85rem;
  height: 0.85rem;
  stroke: var(--jungle-800);
  stroke-width: 2.2;
}

.timeline-dot--night {
  border-color: var(--jungle-900);
  background: var(--jungle-950);
}

.timeline-dot--night svg {
  stroke: var(--earth-400);
}

.timeline-content {
  flex: 1;
  min-width: 0;
}

.timeline-time {
  display: inline-block;
  margin-bottom: 0.18rem;
  color: rgba(5, 46, 22, 0.42);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.timeline-content strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--jungle-950);
  font-size: 0.95rem;
}

.timeline-content p {
  margin: 0 !important;
  color: rgba(5, 46, 22, 0.78) !important;
  font-size: 0.97rem;
  line-height: 1.6 !important;
}

.itinerary-divider {
  height: 1px;
  margin: 1.5rem 0;
  background: var(--ink-10);
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 14rem 10rem;
  gap: 0.7rem;
  margin-top: 1.25rem;
  overflow: hidden;
  border-radius: 1.6rem;
}

.photo-slot {
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
  background: linear-gradient(135deg, var(--earth-200) 0%, var(--earth-100) 100%);
}

.photo-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-slot iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.photo-slot--main {
  grid-row: 1 / 3;
}

.section-kicker {
  margin-bottom: 0.75rem;
  color: rgba(5, 46, 22, 0.42);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.include-chip {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  border-radius: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(5, 46, 22, 0.8) !important;
}

.include-chip--yes {
  border: 1px solid rgba(6, 78, 59, 0.12);
  background: rgba(6, 95, 70, 0.07);
}

.include-chip--no {
  border: 1px solid rgba(180, 83, 9, 0.12);
  background: rgba(180, 83, 9, 0.06);
}

.chip-icon {
  flex-shrink: 0;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.1rem;
  stroke-width: 2.5;
}

.chip-icon--yes {
  stroke: var(--jungle-800);
}

.chip-icon--no {
  stroke: #b45309;
}

.pack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

.pack-grid li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 !important;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--ink-10);
  color: rgba(5, 46, 22, 0.75) !important;
  font-size: 0.92rem;
}

.pack-grid li::before {
  content: "->";
  flex-shrink: 0;
  color: var(--earth-600);
  font-size: 0.75rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.price-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--ink-10);
  border-radius: 1.5rem;
  background: var(--earth-50);
}

.price-card--featured {
  border-color: var(--jungle-900);
  background: var(--jungle-950);
}

.price-label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(5, 46, 22, 0.5);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-amount {
  display: block;
  color: var(--jungle-950);
  font-family: "Playfair Display", serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.price-pax {
  display: block;
  margin-top: 0.35rem;
  color: rgba(5, 46, 22, 0.55);
  font-size: 0.75rem;
  font-weight: 600;
}

.price-note {
  display: block;
  margin-top: 0.6rem;
  color: rgba(5, 46, 22, 0.45);
  font-size: 0.72rem;
  line-height: 1.5;
}

.price-card--featured .price-label,
.price-card--featured .price-pax,
.price-card--featured .price-note {
  color: rgba(245, 242, 237, 0.7);
}

.price-card--featured .price-amount {
  color: var(--earth-400);
}

.pricing-note {
  margin-top: 0.85rem !important;
  color: rgba(5, 46, 22, 0.52) !important;
  font-size: 0.78rem;
  line-height: 1.6 !important;
}

.highlight-list {
  display: grid;
  gap: 0.5rem;
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
}

.highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0 !important;
  color: rgba(5, 46, 22, 0.78) !important;
  font-size: 0.9rem;
  line-height: 1.5;
}

.highlight-list li::before {
  content: "*";
  flex-shrink: 0;
  margin-top: 0.25rem;
  color: var(--earth-600);
  font-size: 0.8rem;
}

.group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
}

.group-card {
  padding: 0.9rem;
  border: 1px solid var(--ink-10);
  border-radius: 1rem;
  background: var(--earth-50);
  text-align: center;
}

.gc-number {
  display: block;
  color: var(--jungle-900);
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

.gc-label {
  display: block;
  margin-top: 0.25rem;
  color: rgba(5, 46, 22, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tour-card__link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--jungle-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.top-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c1a886, #8c6a41);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.season-toggle {
  display: flex;
  gap: 0.5rem;
  width: fit-content;
  margin-top: 1.5rem;
  padding: 0.35rem;
  border: 1px solid var(--ink-10);
  border-radius: 999px;
  background: var(--earth-50);
}

.season-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(5, 46, 22, 0.5);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
}

.season-btn:hover {
  transform: translateY(-1px);
}

.season-btn.active {
  background: var(--jungle-950);
  color: var(--earth-100);
}

.season-icon {
  font-size: 1rem;
  line-height: 1;
}

.itinerary-panel {
  display: none;
}

.itinerary-panel.visible {
  display: block;
}

.season-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.season-badge--rain {
  border: 1px solid rgba(6, 78, 59, 0.2);
  background: rgba(6, 78, 59, 0.1);
  color: var(--jungle-800);
}

.season-badge--dry {
  border: 1px solid rgba(193, 168, 134, 0.35);
  background: rgba(193, 168, 134, 0.2);
  color: var(--earth-700);
}

.tl-dot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.9rem;
  height: 1.9rem;
  margin-top: 0.15rem;
  border: 2px solid var(--earth-200);
  border-radius: 999px;
  background: var(--earth-50);
}

.tl-dot svg {
  width: 0.82rem;
  height: 0.82rem;
  stroke: var(--jungle-800);
  stroke-width: 2.2;
}

.tl-dot--night {
  border-color: var(--jungle-900);
  background: var(--jungle-950);
}

.tl-dot--night svg {
  stroke: var(--earth-400);
}

.tl-dot--culture {
  border-color: var(--earth-600);
  background: rgba(193, 168, 134, 0.28);
}

.tl-dot--culture svg {
  stroke: var(--earth-700);
}

.tl-dot--wildlife {
  border-color: #6b7c3a;
  background: #eef2e0;
}

.tl-dot--wildlife svg {
  stroke: #4a5828;
}

.tl-dot--optional {
  border-style: dashed;
  border-color: rgba(5, 46, 22, 0.25);
}

.tl-body {
  flex: 1;
  min-width: 0;
}

.tl-time {
  display: inline-block;
  margin-bottom: 0.15rem;
  color: rgba(5, 46, 22, 0.38);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tl-title {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--jungle-950);
  font-size: 0.93rem;
  font-weight: 700;
}

.tl-body p {
  margin: 0 !important;
  color: rgba(5, 46, 22, 0.72) !important;
  font-size: 0.9rem;
  line-height: 1.65 !important;
}

.tl-optional-tag {
  display: inline-block;
  margin-left: 0.45rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(193, 168, 134, 0.22);
  color: var(--earth-700);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}

.itinerary-note {
  margin-top: 1.25rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(6, 78, 59, 0.16);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(6, 95, 70, 0.08), rgba(193, 168, 134, 0.08));
}

.itinerary-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--jungle-950);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.itinerary-note p {
  margin: 0 !important;
  color: rgba(5, 46, 22, 0.78) !important;
  font-size: 0.94rem;
  line-height: 1.65 !important;
}

.season-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.season-col {
  padding: 1.35rem;
  border: 1px solid var(--ink-10);
  border-radius: 1.5rem;
}

.season-col--rain {
  border-color: rgba(6, 78, 59, 0.14);
  background: rgba(6, 78, 59, 0.05);
}

.season-col--dry {
  border-color: rgba(193, 168, 134, 0.28);
  background: rgba(193, 168, 134, 0.1);
}

.season-col h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.85rem;
  color: var(--jungle-950);
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.season-col ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.season-col li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(5, 46, 22, 0.75) !important;
  font-size: 0.88rem;
  line-height: 1.45;
}

.season-col li::before {
  content: ">";
  flex-shrink: 0;
  margin-top: 0.05rem;
  color: var(--jungle-800);
  font-size: 0.75rem;
  font-weight: 800;
}

.season-col--dry li::before {
  color: var(--earth-600);
}

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

.lodge-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.lodge-slot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--earth-200);
  border-radius: 1.2rem;
  background: linear-gradient(135deg, var(--earth-200), var(--earth-100));
}

.lodge-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lodge-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(0deg, rgba(5, 46, 22, 0.7), transparent);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-cta .hero-actions {
  margin-top: 1.5rem;
}

.template-note {
  padding: 1.35rem 1.5rem;
  border: 1px dashed rgba(5, 46, 22, 0.18);
  border-radius: 1.35rem;
  background: rgba(245, 242, 237, 0.82);
}

.template-note strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--jungle-950);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(0.28rem);
  }
}

@media (max-width: 1080px) {
  .cards-grid,
  .blog-grid,
  .related-grid,
  .cards-grid--two,
  .story-grid,
  .feature-grid,
  .review-grid,
  .footer-grid,
  .culture-grid,
  .office-grid,
  .article-hero__grid,
  .article-layout,
  .page-layout,
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

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

  .stat-row {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .culture-visual {
    margin-top: 1rem;
  }

  .rating-badge {
    right: 0;
  }

  .article-sidebar {
    position: static;
  }

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

  .expedition-group__intro {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(1280px, calc(100% - 32px));
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
  }

  .mobile-nav.is-open {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    inset: 100% 0 auto;
  }

  .hero {
    min-height: 46rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .hero p {
    font-size: 1.02rem;
  }

  .article-hero {
    min-height: 36rem;
    padding: 6.25rem 0 3.25rem;
  }

  .article-hero::after {
    background:
      linear-gradient(180deg, rgba(2, 26, 12, 0.48) 0%, rgba(2, 26, 12, 0.88) 100%),
      linear-gradient(90deg, rgba(2, 26, 12, 0.82), rgba(2, 26, 12, 0.48));
  }

  .article-hero h1 {
    font-size: clamp(2.65rem, 12vw, 4.35rem);
    line-height: 0.98;
  }

  .article-hero p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .mobile-nav {
    display: none;
  }

  .section {
    padding: 5.5rem 0;
  }

  .tour-card__head {
    flex-direction: column;
  }

  .expedition-group--pattern {
    padding: 1.35rem;
    border-radius: 1.7rem;
  }

  .brand-copy strong {
    font-size: 1.55rem;
  }

  .rating-badge {
    width: 9.5rem;
    height: 9.5rem;
  }

  .facts-grid--tour,
  .pricing-grid,
  .includes-grid,
  .pack-grid,
  .group-grid,
  .season-compare,
  .facts-grid--two {
    grid-template-columns: 1fr;
  }

  .season-toggle {
    flex-direction: column;
    width: 100%;
    border-radius: 1.2rem;
  }

  .season-btn {
    justify-content: center;
  }

  .lodge-photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 10rem 10rem;
  }

  .photo-slot--main {
    grid-row: auto;
  }

  .article-body {
    padding: 1.5rem;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    min-height: 4.5rem;
    gap: 1rem;
  }

  .brand {
    gap: 0.65rem;
    min-width: 0;
  }

  .brand-mark {
    width: 2.15rem;
    height: 2.15rem;
  }

  .brand-copy strong {
    font-size: 1.45rem;
  }

  .brand-copy span {
    font-size: 0.56rem;
    letter-spacing: 0.28em;
  }

  .mobile-menu {
    padding: 0.45rem 0.1rem;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    flex-shrink: 0;
  }

  .mobile-nav__inner {
    gap: 0.35rem;
    padding: 0.65rem 0 1rem;
  }

  .mobile-nav__inner > a:not(.pill-button) {
    padding: 0.8rem 0;
    font-size: 0.82rem;
  }

  .page-hero {
    padding: 4.5rem 0 2rem;
  }

  .page-hero__media--tour {
    min-height: 16rem;
  }

  .article-hero {
    min-height: 27rem;
    padding: 5.4rem 0 2.35rem;
  }

  .article-hero .eyebrow {
    margin-bottom: 0.75rem;
  }

  .article-hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.05rem);
    line-height: 0.98;
    max-width: 100%;
  }

  .article-hero p {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .article-meta {
    gap: 0.4rem;
    margin-top: 1rem;
  }

  .article-meta span {
    padding: 0.34rem 0.62rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  .hero-actions,
  .footer-bottom div {
    width: 100%;
  }

  .hero-actions .pill-button,
  .pill-button {
    width: 100%;
  }

  .hero-content {
    padding-top: 2rem;
  }

  .section-heading h2,
  .culture-copy h2 {
    font-size: 2.45rem;
  }

  .story-card h3,
  .tour-card__head h3 {
    font-size: 1.7rem;
  }

  .rating-badge {
    position: static;
    margin: -1.5rem auto 0;
  }

  .culture-portrait {
    padding: 1rem;
  }

  .lodge-photo-strip {
    grid-template-columns: 1fr;
  }

  .article-body {
    padding: 1.2rem;
    border-radius: 1.35rem;
  }

  .article-body h2 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .article-body h3 {
    font-size: 1.45rem;
  }

  .article-body p,
  .article-body li {
    font-size: 0.96rem;
    line-height: 1.72;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .article-table-wrap {
    margin: 1rem 0 1.35rem;
    border-radius: 1rem;
    max-width: 100%;
  }

  .article-table {
    min-width: 26rem;
    font-size: 0.84rem;
  }

  .article-table th,
  .article-table td {
    padding: 0.72rem 0.68rem;
  }
}

/* =========================================================
   Ajuste visual exclusivo para el blog en español
   - No toca home/index ni páginas de tours.
   - Se activa solo con body.blog-index-page y body.blog-article-page.
   ========================================================= */
.blog-index-page .page-main,
.blog-article-page .page-main {
  padding-top: 5rem;
  background: #f7f2ea;
}

.blog-index-page .page-hero--blog {
  padding: 4.75rem 0 3.75rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(193, 168, 134, 0.24), transparent 26rem),
    linear-gradient(135deg, #f8f3eb 0%, #efe6d7 100%);
}

.blog-index-page .page-hero__copy h1 {
  max-width: 48rem;
  color: var(--jungle-950);
  text-wrap: balance;
}

.blog-index-page .page-hero__copy p {
  max-width: 46rem;
  color: rgba(5, 46, 22, 0.74);
}

.blog-index-page .page-hero__media {
  min-height: 24rem;
  border: 1px solid rgba(5, 46, 22, 0.08);
  box-shadow: 0 1.6rem 4rem rgba(5, 46, 22, 0.18);
}

.blog-index-page .blog-intro-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.blog-index-page .blog-intro-row h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--jungle-950);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.blog-index-page .blog-intro-row p {
  max-width: 36rem;
  margin: 0.75rem 0 0;
  color: rgba(5, 46, 22, 0.66);
  line-height: 1.7;
}

.blog-index-page .blog-count-badge {
  flex: 0 0 auto;
  padding: 0.62rem 1rem;
  border: 1px solid rgba(5, 46, 22, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--jungle-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-index-page .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.55rem;
  align-items: stretch;
}

.blog-index-page .blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(5, 46, 22, 0.08);
  border-radius: 1.65rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1rem 2.6rem rgba(5, 46, 22, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.blog-index-page .blog-card:hover {
  transform: translateY(-0.22rem);
  border-color: rgba(5, 46, 22, 0.18);
  box-shadow: 0 1.35rem 3.2rem rgba(5, 46, 22, 0.13);
}

.blog-index-page .blog-card__media {
  display: block;
  border-radius: 0;
  aspect-ratio: 16 / 10;
  background: #d9c7ac;
}

.blog-index-page .blog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem 1.15rem 1.05rem;
}

.blog-index-page .blog-card__body .eyebrow {
  margin-bottom: 0.55rem;
  color: #0a6b4f;
  font-size: 0.68rem;
}

.blog-index-page .blog-card__body h2 {
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.blog-index-page .blog-card__body h2 a {
  color: inherit;
  text-decoration: none;
}

.blog-index-page .blog-card__body h2 a:hover {
  color: #0a6b4f;
}

.blog-index-page .blog-card__body p {
  margin-top: 0.75rem;
  color: rgba(5, 46, 22, 0.68);
  line-height: 1.65;
}

.blog-index-page .blog-card__body .article-meta {
  margin-top: auto;
  padding-top: 1rem;
}

.blog-index-page .blog-card__body .article-meta span {
  border-color: rgba(5, 46, 22, 0.1);
  background: rgba(5, 46, 22, 0.045);
  color: rgba(5, 46, 22, 0.72);
}

.blog-article-page .article-hero {
  min-height: 38rem;
  padding: 7.25rem 0 4rem;
}

.blog-article-page .article-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 26, 12, 0.92) 0%, rgba(2, 26, 12, 0.76) 43%, rgba(2, 26, 12, 0.34) 100%),
    linear-gradient(0deg, rgba(2, 26, 12, 0.72) 0%, rgba(2, 26, 12, 0.18) 58%, rgba(2, 26, 12, 0.32) 100%);
}

.blog-article-page .article-hero__grid {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 64rem;
}

.blog-article-page .article-hero__media img {
  opacity: 0.88;
}

.blog-article-page .article-hero h1 {
  max-width: 60rem;
  color: #fffaf2;
  text-shadow: 0 0.18rem 1.2rem rgba(0, 0, 0, 0.28);
}

.blog-article-page .article-hero p {
  max-width: 50rem;
  color: rgba(255, 250, 242, 0.88);
  text-shadow: 0 0.12rem 0.8rem rgba(0, 0, 0, 0.25);
}

.blog-article-page .article-hero .article-meta span {
  border-color: rgba(255, 250, 242, 0.3);
  background: rgba(255, 250, 242, 0.16);
  color: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(10px);
}

.blog-article-page .article-body {
  border: 1px solid rgba(5, 46, 22, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 1.2rem 3rem rgba(5, 46, 22, 0.07);
}

@media (max-width: 1080px) {
  .blog-index-page .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .blog-index-page .page-hero--blog {
    padding: 3.5rem 0 2.5rem;
  }

  .blog-index-page .blog-intro-row {
    display: block;
  }

  .blog-index-page .blog-count-badge {
    display: inline-flex;
    margin-top: 1rem;
  }

  .blog-index-page .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-article-page .article-hero {
    min-height: 31rem;
    padding: 5.5rem 0 2.75rem;
  }
}
/* Blog español: guía superior de artículos */
.blog-article-page .article-guide-section {
  padding: 2rem 0 0;
}

.blog-article-page .article-guide-card {
  padding: 1.45rem;
  border: 1px solid rgba(5, 46, 22, 0.1);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 1rem 2.2rem rgba(5, 46, 22, 0.07);
}

.blog-article-page .article-guide-card h2 {
  margin: 0.25rem 0 0.9rem;
  font-family: "Playfair Display", serif;
  color: var(--jungle-950);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.blog-article-page .article-guide-card ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1.2rem;
  margin: 0;
  padding-left: 1.25rem;
}

.blog-article-page .article-guide-card li {
  color: rgba(5, 46, 22, 0.52);
  line-height: 1.45;
}

.blog-article-page .article-guide-card a {
  color: rgba(5, 46, 22, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
}

.blog-article-page .article-guide-card a:hover {
  color: var(--jungle-950);
  text-decoration: underline;
}

@media (max-width: 720px) {
  .blog-article-page .article-guide-card ol {
    grid-template-columns: 1fr;
  }
}


/* Hero de posts antiguos: mismo comportamiento visual que los posts nuevos */
.blog-article-page .article-hero--legacy::after {
  background:
    linear-gradient(90deg, rgba(2, 26, 12, 0.92) 0%, rgba(2, 26, 12, 0.76) 43%, rgba(2, 26, 12, 0.34) 100%),
    linear-gradient(0deg, rgba(2, 26, 12, 0.72) 0%, rgba(2, 26, 12, 0.18) 58%, rgba(2, 26, 12, 0.32) 100%);
}

.blog-article-page .article-hero--legacy .article-hero__grid {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 64rem;
}

.blog-article-page .article-hero--legacy .article-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-article-page .article-hero--legacy .article-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: 0.88;
}

.blog-article-page .article-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.blog-article-page .article-table-wrap > table:not(.article-table) {
  width: 100%;
  min-width: 44rem;
  border-collapse: collapse;
  color: rgba(5, 46, 22, 0.76);
  font-size: 0.94rem;
  line-height: 1.5;
}

.blog-article-page .article-table-wrap > table:not(.article-table) th,
.blog-article-page .article-table-wrap > table:not(.article-table) td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(5, 46, 22, 0.08);
  text-align: left;
  vertical-align: top;
  white-space: normal;
}

.blog-article-page .article-table-wrap > table:not(.article-table) th {
  background: var(--jungle-950);
  color: var(--earth-100);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blog-article-page .article-table-wrap > table:not(.article-table) tr:last-child td {
  border-bottom: 0;
}

.blog-article-page .article-table-wrap > table:not(.article-table) tbody tr:nth-child(even) {
  background: rgba(193, 168, 134, 0.08);
}

@media (max-width: 720px) {
  .blog-article-page .article-table-wrap > table:not(.article-table) {
    min-width: 42rem;
    font-size: 0.84rem;
  }

  .blog-article-page .article-table-wrap > table:not(.article-table) th,
  .blog-article-page .article-table-wrap > table:not(.article-table) td {
    padding: 0.72rem 0.68rem;
  }
}


/* Corrección puntual blog español: breadcrumbs visibles y hero antiguo igual al hero nuevo */
.blog-article-page .article-hero .article-hero__breadcrumbs {
  position: relative;
  z-index: 2;
  display: flex;
  margin-bottom: 1.2rem;
  color: rgba(255, 250, 242, 0.78);
}

.blog-article-page .article-hero .article-hero__breadcrumbs a,
.blog-article-page .article-hero .article-hero__breadcrumbs span {
  color: rgba(255, 250, 242, 0.78);
}

.blog-article-page .article-hero .article-hero__breadcrumbs span:last-child {
  color: rgba(255, 250, 242, 0.64);
}

@media (max-width: 560px) {
  .blog-article-page .article-hero .article-hero__breadcrumbs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }
}
