:root {
  --bonanza: #345C32;
  --bonanza-dark: #345C32;
  --leaf: #345C32;
  --ink: #000000;
  --muted: #000000;
  --mist: #EDE8D0;
  --white: #EDE8D0;
  --sun: #000000;
  --accent: #DD700B;
  --line: rgba(52, 92, 50, 0.2);
  --radius: 8px;
  --shadow: 0 22px 60px rgba(52, 92, 50, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -90px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--bonanza);
  font-weight: 900;
}

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

.photo-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
}

.photo-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image: var(--photo);
  background-attachment: scroll;
  background-position: center;
  background-size: cover;
}

.photo-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: none;
}

.section-video {
  position: absolute;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-section:has(.section-video)::before,
.photo-section:has(.section-video)::after {
  display: none;
}

.hero-photo {
  --photo: url("../img/10-d_0_0.jpg");
}

.manu-photo {
  --photo: url("../img/prog-reservada_0_0.jpg");
}

.lodge-photo {
  --photo: url("../img/r7d6n_1.jpg");
}

.clean-section {
  background:
    linear-gradient(135deg, rgba(237, 232, 208, 0.98), rgba(237, 232, 208, 0.78)),
    var(--white);
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.topbar.is-scrolled {
  color: var(--ink);
  background: rgba(237, 232, 208, 0.95);
  box-shadow: 0 12px 34px rgba(52, 92, 50, 0.1);
  backdrop-filter: blur(12px);
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 3px clamp(18px, 5vw, 74px);
  color: rgba(237, 232, 208, 0.82);
  font-size: 14px;
  font-weight: 700;
}

.top-strip-extra {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.topbar.is-scrolled .top-strip {
  color: var(--muted);
}

.secondary-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 42px);
  padding: 3px clamp(18px, 5vw, 74px);
  color: rgba(237, 232, 208, 0.9);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  border-top: 1px solid rgba(237, 232, 208, 0.18);
  border-bottom: 1px solid rgba(237, 232, 208, 0.18);
}

.secondary-nav > .contextual-region,
.secondary-nav > .region,
.secondary-nav .block,
.secondary-nav .content,
.secondary-nav .menu {
  display: contents;
}

.secondary-nav ul,
#mainMenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.secondary-nav li,
#mainMenu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.secondary-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.top-strip a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

.secondary-nav a:hover,
.secondary-nav a:focus {
  color: var(--sun);
}

.topbar.is-scrolled .secondary-nav {
  color: var(--muted);
  border-color: var(--line);
}

.main-header {
  padding: 4px clamp(18px, 5vw, 74px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 900;
}

.brand:hover,
.brand:focus {
  color: inherit;
}

.brand img {
  width: min(290px, 68vw);
  height: auto;
  padding: 7px 10px;
  border-radius: var(--radius);
  background: rgba(237, 232, 208, 0.88);
}

.navbar-toggler {
  border-color: currentColor;
}

.topbar-search {
  margin-right: 18px;
}

#mainMenu {
  align-items: center;
}

#mainMenu > .contextual-region,
#mainMenu > .region,
#mainMenu .block,
#mainMenu .content {
  display: contents;
}

#mainMenu ul {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 0;
}

.theme-help {
  padding: 18px clamp(18px, 6vw, 86px);
  background: var(--white);
}

.nav-link {
  color: inherit;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--sun);
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 18px !important;
  border-radius: var(--radius);
  color: var(--white) !important;
  background: var(--bonanza);
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 190px clamp(18px, 7vw, 96px) 72px;
}

.hero-content {
  width: min(620px, 100%);
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(237, 232, 208, 0.28);
  border-radius: var(--radius);
  background: rgba(52, 92, 50, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 14px;
  color: var(--bonanza);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  flex: 0 0 42px;
  background: var(--accent);
}

.photo-section .eyebrow {
  color: var(--white);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  color: #000000;
  font-size: 18px;
  line-height: 1.75;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(46px, 6.8vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  position: relative;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 18px;
  background: var(--accent);
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

.hero p {
  max-width: 590px;
  color: rgba(237, 232, 208, 0.9);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn-bonanza {
  --bs-btn-color: #EDE8D0;
  --bs-btn-bg: var(--bonanza);
  --bs-btn-border-color: var(--bonanza);
  --bs-btn-hover-color: #EDE8D0;
  --bs-btn-hover-bg: var(--bonanza-dark);
  --bs-btn-hover-border-color: var(--bonanza-dark);
  min-height: 48px;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-weight: 900;
}

.hero-badge {
  position: absolute;
  right: clamp(18px, 7vw, 96px);
  bottom: 90px;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(237, 232, 208, 0.36);
  border-radius: 50%;
  background: rgba(52, 92, 50, 0.78);
  text-align: center;
  backdrop-filter: blur(10px);
}

.hero-badge strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}

.hero-badge span {
  font-size: 13px;
  font-weight: 800;
}

.intro-strip,
.tours-section,
.why,
.contact {
  padding: 86px clamp(18px, 6vw, 86px);
}

.intro-strip {
  background: var(--white);
}

.intro-strip p {
  color: #000000;
}

.front-block-region {
  margin-top: 34px;
}

.front-reviews-region,
.front-certification-region,
.reason-grid.front-block-region {
  min-height: 120px;
  padding: 24px;
  border: 1px dashed rgba(52, 92, 50, 0.24);
  border-radius: var(--radius);
  background: rgba(237, 232, 208, 0.42);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 12px;
  padding: 0 clamp(18px, 6vw, 86px) 86px;
  background: var(--white);
}

.photo-mosaic figure {
  position: relative;
  min-height: 290px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-mosaic .mosaic-large {
  grid-row: span 2;
}

.photo-mosaic > .contextual-region,
.photo-mosaic > .region,
.photo-mosaic .block,
.photo-mosaic .views-element-container,
.photo-mosaic .view,
.photo-mosaic .view-content {
  display: contents;
}

.photo-mosaic .contextual-region,
.photo-mosaic .views-element-container,
.photo-mosaic .view,
.photo-mosaic .view-content,
.photo-mosaic .views-row {
  height: 100%;
}

.photo-mosaic .views-row {
  min-height: 290px;
}

.photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-mosaic figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(52, 92, 50, 0.72);
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.section-title {
  max-width: 760px;
  margin-bottom: 34px;
}

.tour-slider {
  --tour-gap: 24px;
  position: relative;
  overflow: hidden;
  margin-inline: calc(clamp(18px, 6vw, 86px) * -1);
  padding: 8px clamp(18px, 6vw, 86px) 18px;
}

.tour-slider::before,
.tour-slider::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(50px, 9vw, 140px);
  pointer-events: none;
}

.tour-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(237, 232, 208, 0));
}

.tour-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), rgba(237, 232, 208, 0));
}

.tour-track {
  --loop-distance: 0px;
  display: flex;
  width: max-content;
  gap: var(--tour-gap);
  animation: tour-slide 34s linear infinite;
  will-change: transform;
}

.tour-slider:hover .tour-track {
  animation-play-state: paused;
}

@keyframes tour-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(var(--loop-distance) * -1));
  }
}

.tour-card {
  flex: 0 0 clamp(290px, 30vw, 430px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(52, 92, 50, 0.1);
}

.tour-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
}

.tour-info {
  padding: 24px;
}

.tour-info span {
  color: var(--bonanza);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-info p {
  margin-bottom: 0;
  color: #000000;
  font-weight: 800;
}

.tour-card-link {
  margin-top: 18px;
}

.tour-card-link a,
.summary-card a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--bonanza);
  font-size: 14px;
  font-weight: 900;
}

.tour-card-list {
  flex: initial;
  width: 100%;
}

.tour-content .tour-card-list + .tour-card-list {
  margin-top: 18px;
}

.service-link-card img {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  border-radius: var(--radius);
}

.service-link-card a {
  color: var(--white);
}

.manu {
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 90px clamp(18px, 6vw, 86px);
}

.glass-panel {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(237, 232, 208, 0.3);
  border-radius: var(--radius);
  background: rgba(52, 92, 50, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.glass-panel p {
  color: rgba(237, 232, 208, 0.86);
}

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

.reason-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(237, 232, 208, 0.84);
}

.reason-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--bonanza);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}

.reason-grid p {
  color: #000000;
}

.wide-photo {
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 90px clamp(18px, 6vw, 86px);
}

.wide-photo div {
  max-width: 720px;
}

.wide-copy {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(237, 232, 208, 0.28);
  border-radius: var(--radius);
  background: rgba(52, 92, 50, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.reviews-section {
  padding: 78px clamp(18px, 6vw, 86px);
  background: #ffffff;
}

.reviews-block + .reviews-block,
.certification-block {
  margin-top: 54px;
}

.reviews-block > h2,
.certification-block h2 {
  margin-bottom: 30px;
  text-align: center;
  color: var(--ink);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.1;
  text-transform: uppercase;
}

.reviews-block > h2::after,
.certification-block h2::after {
  margin-inline: auto;
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding: 24px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(52, 92, 50, 0.07);
}

.review-summary h3,
.review-summary p {
  margin: 0;
}

.review-summary h3 {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 20px;
}

.review-summary p {
  margin-top: 6px;
  color: #000000;
  font-size: 20px;
}

.review-summary small {
  color: var(--muted);
  font-size: 12px;
}

.brand-dot {
  display: inline-grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--bonanza);
  font-size: 9px;
  font-weight: 900;
}

.google-word {
  color: var(--bonanza);
  font-weight: 900;
}

.stars {
  color: var(--sun);
  font-weight: 900;
  letter-spacing: 1px;
}

.review-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
}

.tripadvisor-button {
  background: var(--bonanza);
}

.google-button {
  background: var(--bonanza);
}

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

.review-card {
  min-height: 276px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(52, 92, 50, 0.07);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.reviewer img,
.avatar-fallback {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 50%;
}

.reviewer img {
  object-fit: cover;
}

.avatar-fallback {
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: var(--bonanza);
  font-size: 13px;
  font-weight: 900;
}

.google-avatar {
  background: var(--sun);
}

.blue-avatar {
  background: var(--bonanza);
}

.reviewer strong,
.reviewer small {
  display: block;
}

.reviewer strong {
  color: var(--ink);
  font-size: 14px;
}

.reviewer small {
  color: var(--muted);
  font-size: 12px;
}

.review-card .stars {
  margin-bottom: 6px;
  line-height: 1;
}

.review-card h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.review-card p {
  margin-bottom: 8px;
  color: #000000;
  line-height: 1.45;
}

.review-card a {
  margin-top: auto;
  color: var(--muted);
  font-weight: 800;
}

.google-cards .review-card a {
  color: var(--bonanza);
}

.review-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--bonanza);
  font-weight: 900;
}

.certification-block {
  padding-top: 18px;
}

.certification-logos {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.certification-logos span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: var(--radius);
  background: #ffffff;
  filter: grayscale(1);
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.certification-logos span:hover,
.certification-logos span:focus-within {
  filter: grayscale(0);
  box-shadow: 0 14px 34px rgba(52, 92, 50, 0.12);
  transform: translateY(-2px);
}

.certification-logos img {
  width: 100%;
  max-width: 120px;
  max-height: 58px;
  object-fit: contain;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
  min-height: 720px;
  color: var(--white);
  background:
    linear-gradient(
      to bottom,
      rgba(52, 92, 50, 0.06) 0%,
      rgba(52, 92, 50, 0.28) 44%,
      rgba(52, 92, 50, 0.74) 78%,
      #345C32 100%
    ),
    url("../img/Manu_National_Park-71.jpg") center / cover;
}

.contact-copy p {
  color: #ffffff;
  font-weight: 700;
}

.contact .eyebrow {
  color: var(--white);
}

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

.info-button {
  display: grid;
  min-height: 166px;
  align-content: space-between;
  padding: 22px;
  border: 1px solid rgba(237, 232, 208, 0.24);
  border-radius: var(--radius);
  background: rgba(237, 232, 208, 0.16);
  box-shadow: 0 14px 38px rgba(52, 92, 50, 0.24);
  backdrop-filter: blur(10px);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.info-button:hover {
  border-color: rgba(237, 232, 208, 0.5);
  box-shadow: 0 18px 48px rgba(52, 92, 50, 0.34);
  transform: translateY(-3px);
}

.info-button span {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-button strong {
  display: block;
  margin: 22px 0 8px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.16;
}

.info-button small {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.45;
}

.info-button p,
.info-button ul,
.info-button ol {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.55;
}

.info-button p + p,
.info-button ul + p,
.info-button p + ul {
  margin-top: 10px;
}

.info-button ul,
.info-button ol {
  padding-left: 18px;
}

.info-button li + li {
  margin-top: 6px;
}

.info-button a {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.info-button a:hover,
.info-button a:focus {
  color: var(--white);
}

.social-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.social-list i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 6vw, 86px);
  color: var(--white);
  background: #345C32;
  font-weight: 800;
}

.review-button,
.info-button,
.footer a {
  min-height: 44px;
}

.tour-hero {
  min-height: 380px;
  display: grid;
  align-items: end;
  padding: 220px clamp(18px, 6vw, 86px) 44px;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(52, 92, 50, 0.88) 0%,
      rgba(52, 92, 50, 0.62) 46%,
      rgba(52, 92, 50, 0.18) 100%
    ),
    url("../img/Banner.jpg") center / cover;
}

.tour-hero-copy {
  width: min(1040px, 100%);
  padding: clamp(18px, 2.4vw, 28px);
  border: 1px solid rgba(237, 232, 208, 0.28);
  border-radius: var(--radius);
  background: rgba(52, 92, 50, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.tour-hero-copy h1 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 64px);
}

.tour-hero-copy p {
  color: var(--white);
}

.breadcrumb-trail {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(237, 232, 208, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumb-trail a {
  color: var(--white);
}

.breadcrumb-trail span::before {
  content: "/";
  margin-right: 8px;
  color: var(--accent);
}

.tour-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.tour-detail-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: 86px clamp(18px, 6vw, 86px);
}

.tour-summary {
  position: sticky;
  top: 150px;
  align-self: start;
  display: grid;
  gap: 12px;
}

.summary-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(237, 232, 208, 0.82);
}

.summary-card span,
.itinerary-list span {
  display: block;
  margin-bottom: 7px;
  color: var(--bonanza);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.summary-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--bonanza);
  font-weight: 900;
}

.tour-content {
  display: grid;
  gap: 44px;
}

.tour-field-image {
  margin: 0;
}

.tour-field-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tour-field-image figcaption {
  margin-top: 10px;
  color: var(--bonanza);
  font-size: 14px;
  font-weight: 900;
}

.tour-section {
  max-width: 920px;
}

.tour-section h2 {
  max-width: 780px;
}

.tour-note,
.booking-panel {
  margin-top: 26px;
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius);
  background: rgba(52, 92, 50, 0.08);
}

.tour-note p {
  margin-bottom: 0;
}

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

.itinerary-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(237, 232, 208, 0.82);
}

.itinerary-list h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

.itinerary-list p {
  margin-bottom: 0;
}

.split-lists {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: none;
}

.split-lists > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.split-lists ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
}

.booking-panel {
  max-width: none;
  color: var(--white);
  background: #345C32;
}

.booking-panel p {
  color: var(--white);
}

@media (max-width: 992px) {
  .photo-section::before {
    background-attachment: scroll;
  }

  .topbar {
    color: var(--ink);
    background: rgba(237, 232, 208, 0.96);
  }

  .top-strip {
    color: var(--muted);
  }

  .secondary-nav {
    justify-content: flex-start;
    overflow-x: auto;
    color: var(--muted);
    background: rgba(237, 232, 208, 0.72);
    border-color: var(--line);
    scrollbar-width: none;
  }

  .secondary-nav::-webkit-scrollbar {
    display: none;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 200px;
  }

  .hero-badge {
    position: static;
    margin-top: 32px;
  }

  .photo-mosaic,
  .reason-grid,
  .review-cards,
  .contact,
  .info-actions,
  .tour-hero,
  .tour-detail-layout,
  .split-lists {
    grid-template-columns: 1fr;
  }

  .tour-summary {
    position: static;
  }

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

  .photo-mosaic .mosaic-large {
    grid-row: span 1;
  }
}

@media (min-width: 621px) and (max-width: 992px) {
  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 620px) {
  .top-strip {
    flex-direction: column;
    gap: 4px;
  }

  .secondary-nav {
    gap: 18px;
    padding: 6px 18px;
    font-size: 14px;
  }

  .main-header {
    padding: 4px 18px;
  }

  .hero {
    padding: 200px 18px 54px;
  }

  .hero-content {
    padding: 22px;
  }

  h1 {
    font-size: clamp(40px, 15vw, 62px);
  }

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

  .intro-strip,
  .tours-section,
  .why,
  .reviews-section,
  .contact,
  .manu,
  .wide-photo,
  .tour-detail-layout {
    padding: 56px 18px;
  }

  .tour-hero {
    min-height: 420px;
    padding: 230px 18px 42px;
  }


  .review-summary {
    align-items: stretch;
    flex-direction: column;
  }

  .review-button {
    width: 100%;
  }

  .photo-mosaic {
    grid-template-rows: none;
    padding: 0 18px 56px;
  }

  .photo-mosaic figure,
  .tour-card img {
    height: 360px;
  }

  .tour-slider {
    --tour-gap: 16px;
  }

  .tour-track {
    animation-duration: 24s;
  }

  .tour-card {
    flex-basis: min(82vw, 340px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .tour-track {
    animation: none;
  }
}
