:root {
  --ink: #101615;
  --soft-ink: #34403d;
  --muted: #68736f;
  --paper: #fbfaf7;
  --white: #ffffff;
  --stone: #f7f6f2;
  --line: rgba(16, 22, 21, 0.12);
  --forest: #000000;
  --leaf: #5f5f5f;
  --river: #4a4a4a;
  --saffron: #2b2b2b;
  --gold: #8a8a8a;
  --shadow: 0 26px 80px rgba(16, 22, 21, 0.14);
  --display-font: "Plus Jakarta Sans", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  width: 100%;
  overflow-x: hidden;
}

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

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid white;
  outline-offset: 3px;
  box-shadow: 0 0 0 5px #173f3a;
}

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 16px clamp(28px, 6vw, 96px);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.scrolled,
.site-header.open,
.site-header.inner-header {
  color: var(--ink);
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header.scrolled,
.site-header.inner-header {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand img {
  display: block;
  width: 154px;
  height: 64px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
  transition: width 180ms ease, height 180ms ease, filter 180ms ease;
}

.site-header.scrolled .brand img,
.site-header.open .brand img,
.site-header.inner-header .brand img {
  width: 138px;
  height: 54px;
  filter: none;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a,
.header-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

.site-nav a {
  position: relative;
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: 0 17px;
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

.site-header.scrolled .header-cta,
.site-header.open .header-cta,
.site-header.inner-header .header-cta {
  border-color: var(--line);
  background: var(--ink);
  color: white;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 128px clamp(28px, 6vw, 96px) 76px;
  color: white;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.58), rgba(7, 14, 13, 0.24) 48%, rgba(7, 14, 13, 0.04)),
    linear-gradient(0deg, rgba(7, 14, 13, 0.3), rgba(7, 14, 13, 0) 42%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: none;
  transition: opacity 700ms ease;
  animation: heroFade 18s infinite;
}

.hero-slide.active {
  opacity: 1;
  transform: none;
}

.hero-slide:nth-child(2) {
  animation-delay: 3.6s;
}

.hero-slide:nth-child(3) {
  animation-delay: 7.2s;
}

.hero-slide:nth-child(4) {
  animation-delay: 10.8s;
}

.hero-slide:nth-child(5) {
  animation-delay: 14.4s;
}

.hero.js-slider-ready .hero-slide {
  animation: none;
}

@keyframes heroFade {
  0%,
  17% {
    opacity: 1;
  }

  22%,
  95% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: white;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: white;
}

.hero-content h1 {
  margin-top: 0;
  color: white;
  font-size: clamp(1.75rem, 3vw, 3.35rem);
  line-height: 1;
  font-family: "Poppins", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

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

h1 {
  margin: 0;
  max-width: 1000px;
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 3vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 8px 0 0;
  color: white;
  max-width: 660px;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.25;
  font-family: "Josefin Sans", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (min-width: 981px) {
  .hero-content {
    max-width: min(920px, calc(100vw - 192px));
  }

  .hero-content h1,
  .hero-kicker {
    white-space: nowrap;
  }
}

.hero-copy {
  margin: 0;
  max-width: 670px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Josefin Sans", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  font-weight: 300;
  letter-spacing: 0.025em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero .button {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.8rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 0.94rem;
  font-weight: 850;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: white;
  background: var(--saffron);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.quick-contact {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 6vw, 96px);
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 750;
}

.quick-contact .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.quick-contact .social-link svg {
  width: 18px;
  height: 18px;
}

.quick-contact .social-link rect,
.quick-contact .social-link circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-contact .social-link path {
  fill: currentColor;
}

.hero-slider-controls {
  position: absolute;
  z-index: 4;
  right: clamp(28px, 6vw, 96px);
  bottom: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-arrow,
.hero-dots button {
  appearance: none;
  border: 0;
  color: white;
  cursor: pointer;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-arrow::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 14px auto;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(2px, -2px);
}

.hero-arrow.next::before {
  transform: rotate(225deg) translate(2px, -2px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
}

.hero-dots button.active {
  width: 24px;
  background: white;
}

.section-pad {
  padding: clamp(68px, 8vw, 112px) clamp(28px, 6vw, 96px);
}

.section-heading {
  max-width: 1040px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 760px;
}

.heading-note {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.intro {
  background: var(--paper);
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.home-what-we-do {
  background: var(--paper);
  padding-top: clamp(42px, 5vw, 64px);
}

.home-what-we-do .section-heading {
  max-width: 940px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.home-what-we-do .trip-types {
  gap: clamp(18px, 2.8vw, 32px);
  align-items: stretch;
}

.home-what-we-do .trip-types article {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid rgba(16, 22, 21, 0.1);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 54px rgba(16, 22, 21, 0.07);
  min-height: 0;
  padding-bottom: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-what-we-do .trip-types article::after {
  display: none;
}

.home-what-we-do .trip-types article:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 68px rgba(16, 22, 21, 0.11);
}

.home-what-we-do .trip-types h3 {
  position: static;
  max-width: none;
  margin-bottom: 14px;
  padding: 0 0 14px;
  border-bottom: 2px solid var(--saffron);
  color: var(--ink);
  background: transparent;
  backdrop-filter: none;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
}

.home-what-we-do .trip-types img {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: 0;
  aspect-ratio: 1.18 / 1;
  filter: saturate(1.04) contrast(1.02);
}

.home-what-we-do .trip-types div {
  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 26px;
  border-radius: 0;
  background: white;
  box-shadow: none;
}

.home-what-we-do .trip-types p {
  max-width: 28rem;
  margin: 0;
  color: var(--soft-ink);
  font-size: 0.98rem;
  line-height: 1.58;
}

.home-what-we-do .tour-link {
  min-height: auto;
  margin-top: 24px;
  padding: 0;
  border-radius: 0;
  color: var(--forest);
  background: transparent;
  font-size: 0.8rem;
}

.home-what-we-do .tour-link::after {
  display: block;
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  margin-bottom: 38px;
}

.intro-layout .section-heading {
  margin-bottom: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.03rem;
}

.intro-copy p {
  margin: 0 0 16px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.tour-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  background: var(--forest);
  color: white;
}

.tour-teaser h2 {
  color: white;
}

.tour-teaser p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
}

.home-tour-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 4.8vw, 58px) clamp(32px, 6vw, 88px);
  background: var(--stone);
  border-top: 1px solid var(--line);
}

.home-tour-cta h2 {
  max-width: 720px;
  font-size: clamp(1.8rem, 3.5vw, 3.8rem);
}

.home-tour-cta .eyebrow {
  color: black;
}

.story-band .eyebrow {
  color: black;
}

.contact .eyebrow {
  color: black;
}

.about-copy .eyebrow {
  color: black;
}

.home-tour-cta p:not(.eyebrow) {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.home-what-we-do,
.home-what-we-do .trip-types article,
.home-what-we-do .trip-types div,
.vision-grid article,
.insight-grid article,
.people-grid article,
.faq-list details,
.departure-list article,
.summary-grid article,
.tour-highlights,
.flow-stack article,
.similar-tour-card,
.enquiry-form {
  color: black;
}

.home-what-we-do .trip-types h3,
.home-what-we-do .trip-types p,
.home-what-we-do .tour-link,
.vision-grid h3,
.vision-grid p,
.insight-grid h3,
.insight-grid p,
.people-grid h3,
.people-grid p,
.people-grid span,
.faq-list summary,
.faq-list p,
.departure-list h3,
.departure-list p,
.departure-list span,
.departure-list a,
.summary-grid span,
.summary-grid strong,
.tour-highlights h3,
.tour-highlights li,
.flow-stack h3,
.flow-stack p,
.similar-tour-card h3,
.similar-tour-card p,
.similar-tour-card span,
.similar-tour-card a,
.enquiry-form span,
.enquiry-form label {
  color: black;
}

.page-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(28px, 6vw, 96px) 72px;
  color: white;
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.5), rgba(7, 14, 13, 0.08)),
    url("assets/images/tours/active-interactive-authentic-tours-in-northeast-india-v4.webp") center 50% / cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.52), rgba(7, 14, 13, 0.1)),
    url("https://pub-3d943afeed9643318d31712e02ebf613.r2.dev/region/region.jpg") center / cover;
}

.about-page-hero {
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.54), rgba(7, 14, 13, 0.09)),
    url("assets/hero/about-north-by-northeast-journeys.webp") center 50% / cover;
}

.departures-hero {
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.52), rgba(7, 14, 13, 0.1)),
    url("assets/hero/fixed-departure-tours-northeast-india.webp") center 48% / cover;
}

.destination-hero {
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.54), rgba(7, 14, 13, 0.1)),
    url("assets/hero/Travel-destinations-northeast-india.webp") center 50% / cover;
}

.destination-multi-state-hero {
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.54), rgba(7, 14, 13, 0.1)),
    url("assets/hero/Destinations-Northeast-India-multistate-tours.webp") center 50% / cover;
}

.faq-hero {
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.54), rgba(7, 14, 13, 0.1)),
    url("assets/hero/Travels-in-north-east-india.webp") center 50% / cover;
}

.thank-you-hero {
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.5), rgba(7, 14, 13, 0.08)),
    url("assets/images/thank-you.webp") center 50% / cover;
}

.assam-hero {
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.54), rgba(7, 14, 13, 0.1)),
    url("assets/hero/Assam-Tours-Northeast-India.webp") center 52% / cover;
}

.meghalaya-hero {
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.54), rgba(7, 14, 13, 0.1)),
    url("assets/hero/Meghalaya-tours-northeast-india.webp") center 50% / cover;
}

.arunachal-hero {
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.54), rgba(7, 14, 13, 0.1)),
    url("assets/hero/Arunachal-Pradesh-tours-northeast-india.webp") center 50% / cover;
}

.nagaland-hero {
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.54), rgba(7, 14, 13, 0.1)),
    url("assets/hero/Nagaland-tours-northeast-india.webp") center 50% / cover;
}

.page-hero div {
  max-width: 820px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 5rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 1.5vw, 1.25rem);
}

.trip-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trip-types article,
.tour-card,
.region-panels article,
.testimonial-grid article,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(16, 22, 21, 0.06);
}

.trip-types article {
  position: relative;
}

.trip-types img {
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
}

.trip-types div {
  padding: 24px;
}

.trip-types p,
.region-panels p,
.testimonial-grid p,
.tour-card p {
  color: var(--muted);
}

.region {
  color: white;
  background: var(--forest);
}

.region .eyebrow,
.region h2,
.region h3 {
  color: white;
}

.region .eyebrow {
  color: white;
}

.catalog-heading {
  max-width: none;
  display: block;
}

.filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 24px;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.catalog-heading .filters {
  justify-content: flex-start;
}

.filter {
  flex: 0 0 auto;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--ink);
  background: var(--white);
  font-weight: 850;
  cursor: pointer;
}

.filter.active {
  color: white;
  border-color: var(--forest);
  background: var(--forest);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.departure-empty {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 750;
}

.tour-card {
  display: grid;
  grid-template-rows: auto 1fr;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.tour-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.tour-card-media {
  position: relative;
}

.tour-card-media img {
  width: 100%;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
}

.tour-catalog .tour-card-media img,
.state-grid .tour-card-media img {
  height: auto;
  aspect-ratio: 16 / 11;
}

.tour-catalog .tour-card-media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.tour-catalog .tour-card-media img {
  height: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.tour-card .body {
  padding: 20px;
}

.tour-card .tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--river);
  background: rgba(251, 250, 247, 0.94);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tour-card p {
  margin: 9px 0 0;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.tour-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft-ink);
  background: var(--paper);
  font-size: 0.74rem;
  font-weight: 800;
}

.tour-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 900;
}

.tour-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.62fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.about-story img {
  width: 100%;
  aspect-ratio: 0.86 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.about-copy p:not(.eyebrow),
.responsibility p,
.insight-grid p,
.vision-grid p {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-vision {
  background: var(--stone);
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
}

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

.vision-grid article,
.insight-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 44px rgba(16, 22, 21, 0.05);
}

.people-section {
  background: var(--stone);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.people-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 44px rgba(16, 22, 21, 0.05);
}

.people-grid img {
  width: 100%;
  aspect-ratio: 16 / 14;
  object-fit: cover;
}

.people-grid article > div {
  padding: 24px;
}

.people-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--saffron);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.people-grid h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.people-grid p {
  color: var(--muted);
}

.destination-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  max-width: 1080px;
}

.destination-intro-grid p,
.destination-stories p,
.state-grid p,
.destination-detail p,
.destination-cta p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.destination-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.52fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.faq-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.faq-section {
  background: var(--stone);
}

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

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 22, 21, 0.05);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  color: var(--ink);
  font-weight: 800;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  max-width: 820px;
  color: var(--muted);
}

.faq-topics {
  background: var(--paper);
}

.home-planning-guides .tour-card:hover {
  transform: none;
  box-shadow: none;
}

.faq-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-topic-grid .tour-card h3 {
  font-size: 0.78rem;
}

.faq-topic-grid .tour-card p {
  color: var(--muted);
}

.planning-guides .faq-topic-grid {
  grid-auto-rows: 1fr;
}

.planning-guides .faq-topic-grid .tour-card {
  height: 100%;
}

.planning-guides .faq-topic-grid .tour-card-media {
  aspect-ratio: 16 / 12;
  overflow: hidden;
}

.planning-guides .faq-topic-grid .tour-card-media img {
  aspect-ratio: 16 / 12;
  height: 100%;
  object-fit: cover;
}

.planning-guides .faq-topic-grid .tour-card .body {
  display: flex;
  flex-direction: column;
}

.planning-guides .faq-topic-grid .tour-link {
  margin-top: auto;
}

.destination-states {
  background: var(--stone);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.state-grid h3 {
  font-size: 0.92rem;
}

.destination-stories {
  background: var(--paper);
}

.destination-stories article {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-bottom: clamp(34px, 5vw, 62px);
  border-bottom: 1px solid var(--line);
}

.destination-stories article + article {
  margin-top: clamp(34px, 5vw, 62px);
}

.destination-stories article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.destination-stories article:nth-child(even) img {
  order: 2;
}

.destination-stories img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 18px 48px rgba(16, 22, 21, 0.12);
}

.destination-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: var(--forest);
}

.destination-cta h2,
.destination-cta .eyebrow {
  color: white;
}

.destination-cta .eyebrow {
  color: white;
}

.destination-cta p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.74);
}

.responsibility {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  color: white;
  background: var(--forest);
}

.responsibility h2 {
  color: white;
}

.responsibility p {
  color: rgba(255, 255, 255, 0.74);
}

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

.responsibility-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.responsibility-list span {
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 1.6rem;
}

.insights {
  background: var(--paper);
}

.departures-intro {
  background: var(--paper);
}

.departure-list {
  display: grid;
  gap: 16px;
}

.departure-list article {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  box-shadow: 0 16px 44px rgba(16, 22, 21, 0.05);
}

.departure-list img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.departure-list img {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 11;
  align-self: center;
}

.departure-list div {
  display: grid;
  align-content: center;
  padding: 24px 24px 24px 0;
}

.departure-list span {
  margin-bottom: 10px;
  color: var(--saffron);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.departure-list p {
  color: var(--muted);
}

.departure-list a {
  width: fit-content;
  margin-top: 8px;
  color: var(--forest);
  font-weight: 900;
}

.tour-detail-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px clamp(28px, 6vw, 96px) 72px;
  color: white;
  overflow: hidden;
}

.tour-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 14, 13, 0.54), rgba(7, 14, 13, 0.16) 54%, rgba(7, 14, 13, 0.04)),
    linear-gradient(0deg, rgba(7, 14, 13, 0.3), rgba(7, 14, 13, 0) 50%);
}

.tour-detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-detail-copy {
  position: relative;
  z-index: 2;
  max-width: 880px;
  color: white;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.tour-detail-copy h1 {
  margin: 0 0 14px;
  color: white;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 0.98;
}

.tour-detail-copy .eyebrow,
.tour-detail-copy .back-link,
.tour-detail-copy .hero-kicker {
  color: white;
}

.tour-detail-copy .hero-kicker {
  margin: 0;
  font-size: clamp(1rem, 1.85vw, 1.5rem);
  font-family: "Josefin Sans", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  font-size: 0.86rem;
  font-weight: 850;
}

.back-link::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.tour-summary {
  padding-top: 28px;
  padding-bottom: 28px;
  background: var(--paper);
}

.summary-grid,
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.summary-grid article,
.spec-grid article {
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.summary-grid span,
.spec-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-grid strong,
.spec-grid strong {
  color: white;
  font-size: 1.05rem;
}

.spec-layout {
  display: grid;
  gap: 24px;
}

.spec-layout-with-map {
  grid-template-columns: minmax(0, 1.8fr) minmax(240px, 0.95fr);
  align-items: stretch;
}

.spec-layout-with-map .spec-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spec-map-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.spec-map-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.summary-grid {
  background: var(--line);
  border: 1px solid var(--line);
}

.summary-grid article {
  background: white;
}

.summary-grid span {
  color: var(--saffron);
}

.summary-grid strong {
  color: var(--ink);
}

.tour-detail-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(34px, 6vw, 86px);
}

.tour-main-copy {
  max-width: 850px;
}

.tour-main-copy p:not(.eyebrow),
.tour-enquiry p {
  color: var(--muted);
  font-size: 1.06rem;
}

.tour-highlights {
  position: sticky;
  top: 108px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 44px rgba(16, 22, 21, 0.06);
}

.tour-highlights ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tour-highlights li {
  position: relative;
  padding-left: 22px;
  color: var(--soft-ink);
}

.tour-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--saffron);
}

.tour-specs {
  background: var(--forest);
  color: white;
}

.tour-specs h2 {
  color: white;
}

.tour-specs.section-pad,
.tour-enquiry.section-pad,
.tour-contact-form.section-pad {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

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

.tour-specs .section-heading .eyebrow {
  margin: 0 0 10px;
}

.tour-specs .eyebrow,
.tour-specs h2,
.tour-specs h3,
.tour-specs p,
.tour-specs li,
.tour-specs span,
.tour-specs strong,
.tour-specs .section-heading p,
.tour-specs .spec-grid article,
.tour-specs .spec-grid article * {
  color: white;
}

.journey-flow {
  background: var(--paper);
}

.flow-stack {
  display: grid;
  gap: 14px;
  max-width: none;
}

.flow-stack article {
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 44px rgba(16, 22, 21, 0.05);
}

.flow-stack h3 {
  max-width: none;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(0.9rem, 1.35vw, 1.15rem);
  text-transform: none;
}

.flow-stack p {
  max-width: none;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.tour-enquiry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  background: var(--stone);
}

.tour-gallery {
  background: var(--paper);
}

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

.gallery-item {
  appearance: none;
  aspect-ratio: 14 / 16;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 14 / 16;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(5, 10, 9, 0.88);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: 86vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 21px;
  width: 18px;
  height: 2px;
  background: white;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.tour-contact-form {
  background: var(--stone);
}

.similar-tours {
  background: var(--paper);
  padding-top: clamp(34px, 5vw, 58px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

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

.similar-tour-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(16, 22, 21, 0.05);
}

.similar-tour-card img {
  width: 100%;
  height: 100%;
  min-height: 118px;
  object-fit: cover;
}

.similar-tour-card div {
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px 16px 14px 18px;
}

.similar-tour-card span {
  color: var(--saffron);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.similar-tour-card h3 {
  margin: 0;
  font-size: 0.84rem;
}

.similar-tour-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.similar-tour-card a {
  width: fit-content;
  color: var(--forest);
  font-size: 0.86rem;
  font-weight: 900;
}

.enquiry-form {
  display: grid;
  gap: 18px;
  max-width: 920px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 44px rgba(16, 22, 21, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.enquiry-form label,
.enquiry-form span {
  display: block;
}

.enquiry-form span {
  margin-bottom: 8px;
  color: var(--soft-ink);
  font-size: 0.86rem;
  font-weight: 850;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.enquiry-form textarea {
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  outline: 2px solid rgba(198, 111, 61, 0.24);
  border-color: var(--saffron);
}

.tour-contact-form .enquiry-form {
  max-width: 100%;
  gap: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.tour-contact-form .form-grid {
  gap: 16px;
}

.tour-contact-form .enquiry-form span {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.tour-contact-form .enquiry-form input,
.tour-contact-form .enquiry-form textarea,
.tour-contact-form .enquiry-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid #d4d0c8;
  border-radius: 10px;
  padding: 13px 14px;
  color: #403d38;
  background: #fdfbf8;
  font: inherit;
  box-sizing: border-box;
}

.tour-contact-form .enquiry-form select {
  appearance: auto;
}

.tour-contact-form .enquiry-form textarea {
  min-height: 112px;
}

.tour-contact-form .form-full {
  grid-column: 1 / -1;
}

.tour-contact-form .form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 1rem;
}


.tour-contact-form .enquiry-form input::placeholder,
.tour-contact-form .enquiry-form textarea::placeholder {
  color: #706d67;
}

.tour-contact-form .enquiry-form input:focus,
.tour-contact-form .enquiry-form textarea:focus,
.tour-contact-form .enquiry-form select:focus {
  outline: 2px solid rgba(198, 111, 61, 0.24);
  border-color: var(--saffron);
}

.region-intro {
  max-width: 920px;
  margin-bottom: 38px;
}

.region-intro p:last-child {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.1rem;
}

.region-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.region-panels img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.region-panels h3,
.region-panels p {
  margin-left: 22px;
  margin-right: 22px;
}

.region-panels h3 {
  margin-top: 22px;
}

.region-panels p {
  margin-bottom: 24px;
}

.region-at-glance {
  grid-template-columns: 1fr;
  gap: clamp(42px, 6vw, 76px);
}

.region-at-glance article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding-bottom: clamp(34px, 5vw, 62px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  box-shadow: none;
}

.region-at-glance article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.region-at-glance article:nth-child(even) img {
  order: -1;
}

.region-at-glance img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.2 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24);
}

.region-at-glance h3,
.region-at-glance p {
  margin-left: 0;
  margin-right: 0;
}

.region-at-glance h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 2.3vw, 2.2rem);
  line-height: 1;
  text-transform: none;
}

.region-at-glance p {
  max-width: 780px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.region-at-glance p:last-child {
  margin-bottom: 0;
}

.story-band {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: 650px;
  background: var(--ink);
  color: white;
}

.story-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-band div {
  align-self: center;
  padding: clamp(46px, 6vw, 88px);
}

.story-band h2 {
  color: white;
}

.story-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.06rem;
}

.testimonials {
  background: var(--paper);
}

.testimonial-carousel {
  width: 100%;
  overflow: hidden;
}

.testimonial-grid {
  display: flex;
  gap: 18px;
  transition: transform 0.55s ease;
  will-change: transform;
}

.testimonial-grid article {
  flex: 0 0 calc((100% - 36px) / 3);
  padding: 26px;
}

.testimonial-grid img {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 999px;
  object-fit: cover;
}

.testimonial-grid .trip-name {
  color: var(--saffron);
  font-weight: 850;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  gap: 38px;
  align-items: center;
  background: rgba(251, 250, 247, 1);
}

.contact > div:first-child p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact .enquiry-form {
  margin-top: 26px;
  max-width: 100%;
}

.contact-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.contact-card a,
.contact-card p {
  display: block;
  margin: 0 0 18px;
  font-size: 1.08rem;
  font-weight: 850;
}

.contact-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 750;
}

.contact-socials {
  display: flex;
  gap: 14px;
  margin: 2px 0 20px;
}

.contact-card .contact-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
}

.contact-socials svg {
  width: 19px;
  height: 19px;
}

.contact-socials rect,
.contact-socials circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-socials path {
  fill: currentColor;
}

.contact-map {
  grid-column: 1 / -1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 44px rgba(16, 22, 21, 0.08);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 430px);
  border: 0;
}

.contact-map .tour-link {
  display: inline-flex;
  margin: 18px 22px 22px;
}

.contact-map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.contact-map-link .tour-link {
  margin: 0;
}

.contact-map-link .map-link-icon {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  fill: #4285f4;
}

.contact-map-link .map-link-icon circle {
  fill: white;
}

.back-to-top-wrap {
  display: flex;
  justify-content: center;
  padding: 0 20px 28px;
}

.back-to-top {
  border: 1px solid rgba(14, 21, 19, 0.14);
  background: white;
  color: var(--forest);
  padding: 12px 20px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(16, 22, 21, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(16, 22, 21, 0.12);
  background: rgba(202, 162, 88, 0.08);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 56px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.76);
  background: #0e1513;
}

.site-footer img {
  width: 210px;
  height: auto;
  max-width: 72vw;
}

.site-footer p {
  max-width: 560px;
  margin: 0;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  max-width: 100%;
  color: white;
  font-weight: 850;
}

.site-footer .footer-socials {
  gap: 14px;
  font-size: 0.82rem;
}

.site-footer .footer-socials svg {
  width: 40px;
  height: 40px;
}

.site-footer .footer-socials rect,
.site-footer .footer-socials circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .footer-socials path {
  fill: currentColor;
}

.site-footer a {
  text-align: center;
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-header.open .site-nav {
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-header.open .site-nav a {
    padding: 12px;
  }

  .trip-types,
  .region-panels,
  .region-at-glance article,
  .contact,
  .story-band,
  .intro-layout,
  .tour-teaser,
  .home-tour-cta,
  .tour-detail-content,
  .tour-enquiry,
  .about-story,
  .responsibility,
  .destination-intro-grid,
  .destination-detail,
  .destination-stories article,
  .destination-cta,
  .people-grid,
  .departure-list article {
    grid-template-columns: 1fr;
  }

  .testimonial-grid article {
    flex-basis: calc((100% - 18px) / 2);
  }

  .departure-list div {
    padding: 24px;
  }

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

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

  .region-at-glance article:nth-child(even) img {
    order: 0;
  }

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

  .tour-contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .vision-grid,
  .insight-grid,
  .state-grid,
  .faq-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-stories article:nth-child(even) img {
    order: 0;
  }

  .tour-highlights {
    position: static;
  }

  .catalog-heading {
    align-items: start;
    flex-direction: column;
  }

  .filters {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 132px;
    height: 56px;
  }

  .site-header.scrolled .brand img,
  .site-header.open .brand img,
  .site-header.inner-header .brand img {
    width: 122px;
    height: 50px;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 116px;
    padding-bottom: 132px;
  }

  .hero-media {
    transform: scale(1.01);
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(7, 14, 13, 0.62), rgba(7, 14, 13, 0.22)),
      linear-gradient(0deg, rgba(7, 14, 13, 0.36), rgba(7, 14, 13, 0) 52%);
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4.1rem);
  }

  .quick-contact {
    display: none;
  }

  .hero-slider-controls {
    left: 20px;
    right: auto;
    bottom: 46px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    max-width: 310px;
    margin-top: 26px;
  }

  .section-pad {
    padding-left: 24px;
    padding-right: 24px;
  }

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

  .testimonial-grid article {
    flex-basis: 100%;
  }

  .story-band {
    min-height: auto;
  }

  .story-band img {
    height: 340px;
  }

  .tour-detail-hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-left: 24px;
    padding-right: 24px;
  }

  .page-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-slide,
  .tour-detail-hero > img,
  .hero-focus-right-mobile {
    object-position: center center;
  }

  .page-hero,
  .about-hero,
  .about-page-hero {
    background-position: center center;
  }

  .summary-grid,
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .spec-layout-with-map {
    grid-template-columns: 1fr;
  }

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

  .similar-tour-grid {
    grid-template-columns: 1fr;
  }

  .similar-tour-card {
    grid-template-columns: 1fr;
  }

  .similar-tour-card img {
    height: 180px;
  }

  .similar-tour-card div {
    padding: 20px;
  }

  .vision-grid,
  .insight-grid,
  .state-grid,
  .faq-topic-grid {
    grid-template-columns: 1fr;
  }
}

.home-what-we-do .section-heading,
.home-what-we-do .section-heading h2,
.home-what-we-do .section-heading p,
.home-what-we-do .trip-types h3,
.home-what-we-do .trip-types p,
.home-what-we-do .tour-link,
.departures-intro h1,
.departures-intro h2,
.departures-intro h3,
.departures-intro p,
.departure-list h3,
.departure-list p,
.departure-list span,
.departure-list a,
.destination-intro-grid h1,
.destination-intro-grid h2,
.destination-intro-grid h3,
.destination-intro-grid p,
.destination-states .eyebrow,
.destination-states h2,
.destination-states .section-heading p,
.destination-detail .eyebrow,
.destination-detail h2,
.destination-detail h3,
.destination-detail p,
.destination-detail li,
.destination-stories h3,
.destination-stories p,
.state-grid h3,
.state-grid p,
.state-grid .tour-meta span,
.state-grid .tour-link,
.about-story .eyebrow,
.about-story h2,
.about-story p,
.about-vision .eyebrow,
.about-vision h2,
.about-vision .heading-note,
.vision-grid h3,
.vision-grid p,
.people-section .eyebrow,
.people-section h2,
.people-section .section-heading p,
.people-grid h3,
.people-grid p,
.people-grid span,
.testimonials .eyebrow,
.testimonials h2,
.testimonial-grid p,
.testimonial-grid .trip-name,
.faq-section .eyebrow,
.faq-section h2,
.faq-section .section-heading p,
.faq-list summary,
.faq-list p,
.faq-list p a,
.faq-topics .eyebrow,
.faq-topics h2,
.faq-topics .section-heading p,
.tour-catalog .eyebrow,
.tour-catalog h2,
.tour-catalog .heading-note,
.tour-catalog .tour-count,
.tour-catalog .tour-meta span,
.tour-detail-content .eyebrow,
.tour-detail-content h2,
.tour-detail-content h3,
.tour-detail-content p,
.tour-detail-content li,
.journey-flow .eyebrow,
.journey-flow h2,
.journey-flow .section-heading p,
.journey-flow h3,
.journey-flow p,
.journey-flow li,
.tour-enquiry .eyebrow,
.tour-enquiry h2,
.tour-enquiry p,
.tour-enquiry a,
.tour-gallery .eyebrow,
.tour-gallery h2,
.tour-gallery .section-heading p,
.tour-contact-form .eyebrow,
.tour-contact-form h2,
.tour-contact-form .section-heading p,
.tour-contact-form label,
.faq-topic-grid .tour-card h3,
.faq-topic-grid .tour-card p,
.tour-card h3,
.tour-card p,
.tour-card .tag {
  color: black;
}

.tour-teaser,
.tour-teaser .eyebrow,
.tour-teaser h2,
.tour-teaser p,
.tour-teaser a,
.destination-cta,
.destination-cta .eyebrow,
.destination-cta h2,
.destination-cta p,
.destination-cta a,
.responsibility,
.responsibility .eyebrow,
.responsibility h2,
.responsibility p,
.responsibility li,
.tour-specs,
.tour-specs .eyebrow,
.tour-specs h2,
.tour-specs h3,
.tour-specs p,
.tour-specs li,
.tour-specs span,
.tour-specs strong,
.story-band,
.story-band .eyebrow,
.story-band h2,
.story-band p,
.story-band a {
  color: white;
}
