:root {
  --green-950: #0b6f32;
  --green-900: #168a3e;
  --green-700: #2eb650;
  --green-500: #69dc70;
  --green-100: #f0fff2;
  --pumpkin: #ff8a00;
  --pumpkin-dark: #e36f00;
  --white: #ffffff;
  --ink: #14201b;
  --muted: #61706a;
  --line: rgba(20, 32, 27, 0.14);
  --shadow: 0 24px 80px rgba(11, 111, 50, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(105, 220, 112, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(105, 220, 112, 0.035) 1px, transparent 1px),
    var(--white);
  background-size: 46px 46px;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--green-950);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(var(--max), calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 18px 70px rgba(11, 111, 50, 0.14);
  backdrop-filter: blur(18px);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(11, 111, 50, 0.9);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 70px rgba(11, 111, 50, 0.2);
}

.brand,
.header-actions,
.main-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  animation: markPulse 3.8s ease-in-out infinite;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
}

.main-nav {
  justify-content: center;
  gap: 20px;
  font-size: 0.92rem;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.22);
}

.main-nav a:hover {
  color: var(--white);
}

.header-actions {
  gap: 10px;
}

.language-select {
  min-height: 40px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 8px;
}

.language-select option {
  color: var(--ink);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.32) 48%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
}

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

.btn:hover::after {
  transform: translateX(120%);
}

.btn-primary,
.btn-small {
  color: var(--green-950);
  background: var(--pumpkin);
  box-shadow: 0 14px 30px rgba(255, 138, 0, 0.3);
}

.btn-primary:hover,
.btn-small:hover {
  background: #ff9b38;
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.86rem;
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 14px);
  margin-top: -72px;
  padding: 150px max(24px, calc((100vw - var(--max)) / 2)) 56px;
  overflow: clip;
  color: var(--white);
  background: var(--green-950);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 111, 50, 0.76) 0%, rgba(11, 111, 50, 0.42) 44%, rgba(11, 111, 50, 0.16) 100%),
    linear-gradient(180deg, rgba(11, 111, 50, 0.08) 0%, rgba(11, 111, 50, 0.72) 100%);
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 980px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pumpkin);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  letter-spacing: 0;
}

.hero-title {
  display: grid;
  max-width: 980px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 10vw, 10.4rem);
  font-weight: 700;
  line-height: 0.82;
  text-wrap: balance;
}

.hero-title-accent {
  color: #ffe15a;
  font-style: italic;
  font-weight: 500;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  display: grid;
  grid-template-columns: 84px minmax(0, 260px);
  gap: 14px;
  align-items: center;
  max-width: 390px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.hero-panel img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.35;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--white);
}

.trust-strip div {
  position: relative;
  min-height: 148px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(105, 220, 112, 0.24), transparent 42%),
    var(--green-700);
  color: var(--white);
}

.trust-strip div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-500), var(--pumpkin), transparent);
  transform: translateX(-100%);
  animation: scanLine 4.8s ease-in-out infinite;
}

.trust-strip strong {
  display: block;
  color: var(--pumpkin-dark);
  font-size: 2rem;
  line-height: 1;
}

.trust-strip span {
  display: block;
  max-width: 230px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.section,
.gallery-section,
.final-cta {
  padding: 110px max(24px, calc((100vw - var(--max)) / 2));
}

.split,
.about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 56px;
  align-items: center;
}

.section-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.section-copy .btn {
  margin-top: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-grid article,
.testimonial-track article,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(11, 111, 50, 0.08);
}

.feature-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  overflow: hidden;
}

.feature-grid article::before,
.route-track article::before,
.testimonial-track article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(105, 220, 112, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.feature-grid article:hover::before,
.route-track article:hover::before,
.testimonial-track article:hover::before {
  opacity: 1;
}

.feature-grid span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--pumpkin);
  font-weight: 900;
}

.feature-grid p,
.route-track p,
.testimonial-track p,
.faq-list p {
  color: var(--muted);
  line-height: 1.6;
}

.route {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(105, 220, 112, 0.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(105, 220, 112, 0.09) 1px, transparent 1px),
    var(--green-900);
  background-size: 42px 42px, 42px 42px, auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
}

.route .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.route-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.route-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 27px;
  height: 2px;
  background: linear-gradient(90deg, var(--pumpkin), rgba(255, 138, 0, 0));
}

.route-track article {
  position: relative;
  padding-top: 72px;
  padding-right: 14px;
  transition: transform 220ms ease;
}

.route-track article:hover {
  transform: translateY(-4px);
}

.route-track span {
  position: absolute;
  top: 14px;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--pumpkin);
  border: 6px solid var(--green-950);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.46);
  animation: routePulse 2.8s ease-out infinite;
}

.route-track p {
  color: rgba(255, 255, 255, 0.68);
}

.activity-plan {
  background: var(--white);
}

.activity-plan .section-heading p:not(.eyebrow) {
  max-width: 760px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.activity-grid article {
  position: relative;
  min-height: 270px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(105, 220, 112, 0.1), transparent 45%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(11, 111, 50, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.activity-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 52px rgba(11, 111, 50, 0.11);
}

.activity-grid span {
  display: inline-flex;
  margin-bottom: 54px;
  color: var(--pumpkin);
  font-weight: 950;
}

.activity-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.activity-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.about {
  background: var(--green-100);
}

.about-media img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brand-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(220px, 100%);
  margin: 6px 0 10px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-card img {
  width: 100%;
  height: auto;
}

.language-tours {
  padding: 100px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--white);
}

.language-tours .section-heading {
  margin-inline: auto;
  text-align: center;
}

.language-tours .section-heading h2 {
  max-width: 920px;
  margin-inline: auto;
}

.language-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.language-card {
  position: relative;
  display: grid;
  min-height: 230px;
  overflow: hidden;
  color: var(--white);
  border-radius: 18px;
  text-decoration: none;
  box-shadow: 0 22px 60px rgba(11, 111, 50, 0.12);
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.language-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 72px rgba(11, 111, 50, 0.18);
}

.language-card::before,
.language-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.language-card::before {
  background:
    linear-gradient(90deg, rgba(11, 111, 50, 0.76), rgba(11, 111, 50, 0.28)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38));
}

.language-card::after {
  background: linear-gradient(110deg, transparent 0%, rgba(105, 220, 112, 0.24) 48%, transparent 64%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.language-card:hover::after {
  transform: translateX(120%);
}

.language-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.language-card:hover img {
  transform: scale(1.08);
}

.language-card-content {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  text-align: center;
}

.language-card strong {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.language-card em {
  display: inline-grid;
  place-items: center;
  min-height: 52px;
  padding: 0 30px;
  color: var(--green-950);
  background: var(--pumpkin);
  border-radius: 999px;
  font-style: normal;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(255, 138, 0, 0.3);
}

.gallery-section {
  overflow: clip;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(11, 111, 50, 0.1);
}

.gallery img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 3;
  object-position: center 28%;
}

.gallery img:nth-child(2) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery img:nth-child(3) {
  grid-column: span 1;
  grid-row: span 2;
}

.gallery img:nth-child(4) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery img:nth-child(5),
.gallery img:nth-child(6) {
  grid-column: span 1;
  grid-row: span 1;
}

.gallery img:nth-child(7),
.gallery img:nth-child(8),
.gallery img:nth-child(9) {
  grid-column: span 1;
  grid-row: span 1;
}

.testimonials {
  background:
    linear-gradient(90deg, rgba(105, 220, 112, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(105, 220, 112, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, #f8fff9, var(--white));
  background-size: 38px 38px, 38px 38px, auto;
  color: var(--ink);
}

.testimonials .section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.review-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: -18px 0 28px;
}

.review-summary span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  color: var(--green-950);
  background: var(--green-100);
  border: 1px solid rgba(11, 111, 50, 0.14);
  border-radius: 999px;
  font-weight: 800;
}

.testimonial-marquee {
  position: relative;
  overflow: hidden;
  margin-inline: calc(max(24px, (100vw - var(--max)) / 2) * -1);
  padding: 8px 0 12px;
}

.testimonial-marquee::before,
.testimonial-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(130px, 18vw);
  pointer-events: none;
}

.testimonial-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.testimonial-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.testimonial-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-inline: max(24px, calc((100vw - var(--max)) / 2));
  animation: reviewMarquee 42s linear infinite;
}

.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-track article {
  position: relative;
  flex: 0 0 clamp(320px, 31vw, 440px);
  min-height: 300px;
  padding: 28px;
  color: var(--ink);
  overflow: hidden;
}

.review-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--green-950);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.stars {
  margin-top: 20px;
  color: var(--pumpkin);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.testimonial-track p {
  min-height: 128px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.testimonial-track strong {
  display: block;
  margin-top: 18px;
  color: var(--green-900);
}

.testimonial-track small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.faq {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--green-950);
  font-weight: 900;
}

.final-cta {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(11, 111, 50, 0.82), rgba(11, 111, 50, 0.62)),
    url("assets/photos/12-photo-2025-01-07-13-59-46.webp") center / cover;
}

.final-cta div {
  max-width: 880px;
}

.final-cta .btn {
  margin-top: 28px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-950);
}

.site-footer strong {
  color: var(--pumpkin);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  overflow: hidden;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(11, 111, 50, 0.24);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 54px rgba(11, 111, 50, 0.3);
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

[data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .hero-content h1,
.motion-ready .section-heading h2 {
  animation: titleGlow 6s ease-in-out infinite;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes scanLine {
  0%,
  28% {
    transform: translateX(-100%);
  }

  58%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes routePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.5);
  }

  72%,
  100% {
    box-shadow: 0 0 0 16px rgba(255, 138, 0, 0);
  }
}

@keyframes markPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 138, 0, 0);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(255, 138, 0, 0.18);
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(105, 220, 112, 0);
  }

  50% {
    text-shadow: 0 0 28px rgba(105, 220, 112, 0.24);
  }
}

@keyframes reviewMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .brand-mark,
  .hero-bg img,
  .route-track span,
  .trust-strip div::after,
  .testimonial-track,
  .motion-ready .hero-content h1,
  .motion-ready .section-heading h2 {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    margin-top: -118px;
    padding-top: 200px;
  }

  .trust-strip,
  .split,
  .about,
  .feature-grid,
  .activity-grid,
  .route-track,
  .language-card-grid {
    grid-template-columns: 1fr 1fr;
  }

  .route-track::before {
    display: none;
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery img,
  .gallery img:nth-child(n) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 680px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
  }

  .brand {
    flex: 1;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }

  .btn-small {
    flex: 1;
  }

  .hero {
    min-height: 100svh;
    margin-top: -162px;
    padding: 228px 18px 34px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(11, 111, 50, 0.64) 0%, rgba(11, 111, 50, 0.86) 70%),
      linear-gradient(90deg, rgba(11, 111, 50, 0.28), rgba(11, 111, 50, 0.28));
  }

  .hero-bg img {
    object-position: 58% center;
  }

  h1 {
    font-size: clamp(3.15rem, 17vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

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

  .hero-panel {
    justify-self: stretch;
    grid-template-columns: 72px 1fr;
    margin-top: 28px;
  }

  .hero-panel img {
    width: 72px;
    height: 72px;
  }

  .trust-strip,
  .split,
  .about,
  .feature-grid,
  .activity-grid,
  .route-track,
  .language-card-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-marquee {
    margin-inline: -18px;
  }

  .testimonial-track {
    padding-inline: 18px;
  }

  .testimonial-track article {
    flex-basis: min(84vw, 360px);
  }

  .language-tours {
    padding: 76px 18px;
  }

  .language-card {
    min-height: 210px;
  }

  .trust-strip div {
    min-height: auto;
    padding: 22px;
  }

  .section,
  .gallery-section,
  .final-cta {
    padding: 76px 18px;
  }

  .feature-grid article {
    min-height: auto;
  }

  .feature-grid span,
  .activity-grid span {
    margin-bottom: 26px;
  }

  .activity-grid article {
    min-height: auto;
  }

  .route-track article {
    padding-top: 48px;
  }

  .route-track span {
    top: 2px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 220px;
    gap: 10px;
  }

  .gallery img,
  .gallery img:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery img:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .site-footer {
    display: grid;
  }
}
