@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");

:root {
  --ink: #172126;
  --muted: #5c6870;
  --line: #d9ded8;
  --paper: #f7f5ef;
  --white: #ffffff;
  --green: #214739;
  --green-2: #2f6a56;
  --rust: #b6532e;
  --gold: #d59d41;
  --sky: #d8edf0;
  --shadow: 0 18px 50px rgba(23, 33, 38, 0.14);
  --hero-height: clamp(260px, 29vw, 390px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  -ms-overflow-style: none;
  color: var(--ink);
  background: var(--paper);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.5;
}

body::-webkit-scrollbar {
  display: none;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2vw, 26px);
  min-height: 92px;
  padding: 8px clamp(18px, 4vw, 56px);
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.header-scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  border-bottom-color: rgba(23, 33, 38, 0.12) !important;
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  line-height: 0;
}

.brand img {
  width: clamp(98px, 10vw, 138px);
  max-height: 76px;
  aspect-ratio: 406 / 298;
  height: auto;
  object-fit: contain;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 1.8vw, 24px);
  min-width: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-header:not(.header-scrolled) .nav-links,
.site-header:not(.header-scrolled) .phone-link {
  color: var(--white);
}

.phone-link {
  flex: 0 0 auto;
  color: var(--rust);
  font-size: 1.06rem;
  font-weight: 700;
}

.tour-detail-page {
  padding-top: 108px;
}

.hero {
  position: relative;
  height: var(--hero-height);
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 410px);
  align-items: end;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 70px) 30px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(12, 18, 20, 0.52), rgba(12, 18, 20, 0.22) 52%, rgba(12, 18, 20, 0.1)),
    linear-gradient(0deg, rgba(12, 18, 20, 0.28), rgba(12, 18, 20, 0.02) 42%);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image[data-managed="cms"] {
  opacity: 0;
  transition: opacity 180ms ease;
}

.hero-image[data-managed="cms"].hero-image-ready {
  opacity: 1;
}

.hero-content,
.quick-book {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 780px;
  color: var(--white);
}

.home-hero {
  place-items: center;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.home-hero .hero-content {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: clamp(38px, 6vw, 78px) clamp(18px, 4vw, 56px) 0;
  align-self: center;
  justify-self: center;
}

.home-hero .hero-search {
  margin-inline: auto;
}

.home-hero h1 {
  width: 100%;
  max-width: none;
  margin: 0 auto 34px;
  font-size: clamp(1.9rem, 3.4vw, 3.6rem);
  line-height: 1;
  white-space: nowrap;
}

.home-hero .hero-content > p {
  margin-inline: auto;
}

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

.hero .eyebrow {
  color: var(--gold);
}

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

h1 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: clamp(3.1rem, 8vw, 7.7rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.hero-content p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.45vw, 1.12rem);
}

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

.hero-search {
  width: min(100%, 520px);
  margin-top: 28px;
}

.hero-search input {
  min-height: 48px;
  padding: 11px 18px;
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-size: 0.94rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
}

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

.button.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.button.full {
  width: 100%;
}

.quick-book,
.booking-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 33, 38, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quick-book {
  align-self: end;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(213, 157, 65, 0.5);
  outline-offset: 2px;
}

.destination-hero {
  height: var(--hero-height);
  min-height: 0;
}

.destination-hero {
  place-items: center;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.destination-hero .hero-content {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding: clamp(38px, 6vw, 78px) clamp(18px, 4vw, 56px) 0;
  align-self: center;
  justify-self: center;
}

.destination-hero .hero-search {
  margin-inline: auto;
}

.destination-hero h1 {
  width: 100%;
  max-width: none;
  margin: 0 auto 34px;
  font-size: clamp(1.9rem, 3.4vw, 3.6rem);
  line-height: 1;
  white-space: nowrap;
}

.destination-hero .hero-content > p {
  margin-inline: auto;
}

.controls {
  text-align: center;
  justify-items: center;
  gap: 10px;
}

.controls h2 {
  margin-bottom: 26px;
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
}

.controls > div {
  width: 100%;
}

.tour-filters {
  display: grid;
  width: min(100%, 980px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 0;
  text-align: left;
}

.tour-filters label {
  margin-bottom: 0;
  color: var(--ink);
}

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

.contact-form {
  position: static;
  width: min(100%, 820px);
  max-width: none;
  margin-inline: auto;
}

.contact-section {
  display: block;
  padding: 28px clamp(18px, 5vw, 70px) 76px;
  background: var(--white);
}

.contact-section .contact-form {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-form textarea {
  min-height: 280px;
}

.contact-form label {
  color: var(--ink);
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  border-color: #cfd6d1;
}

.contact-faq {
  border-top: 1px solid var(--line);
}

.contact-hero {
  place-items: center;
  grid-template-columns: 1fr;
  height: var(--hero-height);
  min-height: 0;
  padding-block: 30px;
  text-align: center;
}

.contact-hero .hero-content {
  max-width: none;
}

.contact-hero h1 {
  margin: 0 auto;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
  padding: 26px clamp(18px, 5vw, 70px) 44px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
}

.about-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-carousel {
  position: relative;
  width: calc(100% + (clamp(18px, 5vw, 70px) * 2) - 48px);
  margin-left: calc((clamp(18px, 5vw, 70px) * -1) + 24px);
  background: inherit;
  border-radius: 8px;
}

.about-viewport {
  overflow: hidden;
  background: inherit;
  border-radius: 8px;
}

.about-track {
  display: flex;
  gap: 12px;
  background: inherit;
  transition: transform 180ms ease;
}

.about-track img {
  flex: 0 0 calc((100% - 24px) / 3);
  width: calc((100% - 24px) / 3);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 9px;
  padding-top: 16px;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  background: #b7c3bd;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--rust);
  transform: scale(1.18);
}

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

.trust-strip div {
  padding: 22px clamp(18px, 4vw, 46px);
  background: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--green);
  font-size: 1.35rem;
}

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

.section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 70px);
  padding: 78px clamp(18px, 5vw, 70px);
}

.intro {
  align-items: center;
  grid-template-columns: 1fr;
  gap: 18px;
  padding-top: 22px;
}

.intro h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
}

.intro > p {
  margin-bottom: 18px;
  max-width: 940px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro .about-carousel {
  margin-top: 0;
}

.trust-panel,
.content-blocks,
.reviews-section,
.faq-section {
  padding: 44px clamp(18px, 5vw, 70px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.trust-panel:empty,
.content-blocks:empty,
.reviews-section:empty,
.faq-section:empty {
  display: none;
}

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

.trust-panel p,
.reviews-section p,
.faq-section p {
  margin: 0;
}

.trust-item,
.review-card,
.faq-item {
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-item {
  color: var(--green);
  font-weight: 700;
}

.reviews-section,
.content-blocks,
.faq-section {
  display: grid;
  gap: 18px;
}

.reviews-section h2,
.content-blocks h2,
.faq-section h2 {
  margin: 0;
  color: var(--rust);
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
}

.content-block {
  display: grid;
  gap: 8px;
  max-width: 980px;
}

.content-block p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.review-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

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

.review-card strong,
.faq-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.review-card p,
.faq-item p {
  color: var(--muted);
}

.elfsight-reviews {
  position: relative;
  gap: 14px;
  padding-top: 34px;
  padding-bottom: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(247, 245, 239, 0.96)),
    var(--paper);
  border-top: 1px solid rgba(182, 83, 46, 0.16);
  border-bottom: 1px solid var(--line);
}

.reviews-heading {
  display: grid;
  gap: 6px;
  width: min(100%, 1260px);
  margin: 0 auto;
}

.reviews-heading p {
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.elfsight-reviews h2 {
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.65rem);
  text-align: left;
}

.reviews-widget-shell {
  position: relative;
  width: min(100%, 1260px);
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.reviews-loading {
  display: grid;
  min-height: 72px;
  place-items: center;
  color: var(--muted);
  background: linear-gradient(90deg, #f7f5ef, #ffffff, #f7f5ef);
  background-size: 220% 100%;
  border: 1px dashed var(--line);
  border-radius: 8px;
  font-weight: 700;
  animation: reviewLoading 1.8s ease-in-out infinite;
}

.reviews-widget-shell.loaded .reviews-loading {
  display: none;
}

.reviews-widget-shell > div {
  width: 100%;
}

@keyframes reviewLoading {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 220% 0;
  }
}

.reviews-widget-shell iframe,
.reviews-widget-shell [class*="Widget"],
.reviews-widget-shell [class*="widget"] {
  max-width: 100% !important;
}

.reviews-widget-shell [class*="Pagination"],
.reviews-widget-shell [class*="pagination"],
.reviews-widget-shell [class*="Bullets"],
.reviews-widget-shell [class*="bullets"] {
  display: none !important;
}

.review-widget-arrow-hidden {
  display: none !important;
}

.review-widget-dot-hidden {
  display: none !important;
}

.review-summary-hidden {
  display: none !important;
}

.section-intro {
  max-width: 780px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 1.05rem;
}

.featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 70px) 76px;
}

.featured article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.featured img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.featured div {
  padding: 22px;
}

.featured h2 {
  font-size: 1.75rem;
}

.featured p:not(.eyebrow) {
  color: var(--muted);
}

.controls {
  align-items: end;
  padding-top: 22px;
  padding-bottom: 36px;
  background: var(--white);
  border-top: 1px solid var(--line);
  grid-template-columns: 1fr;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.search-panel {
  display: grid;
  gap: 14px;
}

.search-label {
  margin: 0;
}

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 26px;
  align-items: start;
  padding: 0 clamp(18px, 5vw, 70px) 86px;
  background: var(--white);
}

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

.tour-count {
  display: none;
}

.tour-sections {
  display: grid;
  gap: 54px;
}

.tour-category-section {
  display: grid;
  gap: 18px;
}

.tour-category-section > h3 {
  margin: 0;
  color: var(--rust);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 700;
  text-align: left;
}

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

.tour-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease;
}

.tour-card:hover,
.tour-card:focus-visible {
  transform: translateY(-2px);
}

.tour-card.flash {
  background: transparent;
}

.tour-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--line);
  border-radius: 8px;
}

.tour-card h3,
.tour-card p {
  padding-inline: 0;
}

.tour-card h3 {
  margin: 8px 0 2px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.24;
}

.tour-card-price,
.price {
  margin: 0;
  padding-bottom: 0;
  color: var(--green);
  font-size: 1.08rem;
  font-weight: 400;
}

.tour-card-price strong,
.price {
  font-weight: 700;
}

.tour-card-price span {
  font-weight: 400;
}

.tour-card-price del {
  position: relative;
  display: block;
  width: max-content;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
}

.tour-card-price del::after {
  position: absolute;
  top: 50%;
  left: -3px;
  width: calc(100% + 6px);
  height: 2px;
  content: "";
  background: var(--ink);
  transform: rotate(-7deg);
  transform-origin: center;
}

.tour-card-price.flash-price strong {
  display: block;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.18;
}

.tour-detail-page {
  background: var(--white);
}

.product-shell {
  width: min(100% - 36px, 1120px);
  margin-inline: auto;
  padding: 28px 0 74px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 30px;
  align-items: start;
}

.product-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 18px;
  font-weight: 700;
}

.product-carousel {
  display: grid;
  gap: 12px;
}

.gallery-frame {
  position: relative;
}

.main-gallery-image {
  width: 100%;
  height: min(38vw, 390px);
  object-fit: cover;
}

.gallery-thumbs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.gallery-thumb {
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
}

.gallery-thumb.active {
  color: var(--white);
  background: var(--rust);
  border-color: var(--rust);
}

.product-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 36px;
  height: 56px;
  color: var(--white);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
  transform: translateY(-50%);
}

.product-carousel-btn.prev {
  left: 10px;
}

.product-carousel-btn.next {
  right: 10px;
}

.gallery-dashes {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.gallery-dash {
  width: 34px;
  height: 4px;
  padding: 0;
  background: rgba(255, 255, 255, 0.62);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.gallery-dash.active {
  background: var(--rust);
}

.product-content {
  padding-top: 30px;
}

.product-content h1 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  font-weight: 700;
  line-height: 1.05;
  white-space: normal;
}

.product-content h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.65rem;
}

.product-content p {
  color: var(--ink);
}

.product-content a {
  color: #006f9f;
  text-decoration: underline;
  font-weight: 700;
}

.product-price-line {
  margin-bottom: 24px;
  font-size: 1.1rem;
  font-weight: 400;
}

.product-price-line span:first-child {
  color: var(--rust);
}

.booking-widget {
  position: sticky;
  top: 112px;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 0;
}

.booking-widget h2 {
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.booking-iframe-widget {
  padding: 0;
  background: #fff;
}

.booking-iframe-shell {
  overflow: visible;
  margin: 0;
  background: #fff;
  border: 0;
  border-radius: 0;
}

.booking-iframe-shell iframe {
  display: block;
  width: 100%;
  min-height: 650px;
  background: #fff;
  border: 0;
  color-scheme: light;
}

.widget-price {
  color: var(--rust);
  font-size: 1.25rem;
  font-weight: 700;
}

.widget-phone {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
}

.included-list {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.booking-card {
  position: sticky;
  top: 92px;
}

.booking-card h2 {
  font-size: 2rem;
}

.estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 12px;
  padding: 16px;
  background: var(--green);
  border-radius: 8px;
  color: var(--white);
}

.estimate span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  font-weight: 700;
}

.estimate strong {
  font-size: 1.55rem;
}

.fine-print {
  color: var(--muted);
  font-size: 0.86rem;
}

.details {
  background: linear-gradient(180deg, var(--paper), #edf5f2);
}

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 90px;
  padding: 20px 20px 20px 72px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps li::before {
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--rust);
  border-radius: 50%;
  counter-increment: steps;
  content: counter(steps);
  font-weight: 700;
}

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

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

details {
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 34px clamp(18px, 5vw, 70px);
  color: var(--ink);
  background: #aac6dc;
  border-top: 0;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #000;
  font-weight: 700;
}

.site-footer a {
  color: var(--ink);
  font-weight: 700;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #000;
  background: transparent;
  border: 0;
}

.social-links svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.hidden {
  display: none;
}

.hidden-search {
  display: none;
}

@media (max-width: 1060px) {
  .hero,
  .tour-layout,
  .product-layout,
  .about-section,
  .section {
    grid-template-columns: 1fr;
  }

  .quick-book,
  .booking-card {
    max-width: 620px;
  }

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

  .booking-card {
    position: static;
  }

  .booking-widget {
    position: static;
  }
}

@media (max-width: 900px) {
  .about-track img {
    flex-basis: 82%;
    width: 82%;
  }
}


@media (max-width: 760px) {
  .site-header {
    position: fixed;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    min-height: 86px;
    padding: 8px 14px;
  }

  .brand img {
    width: 84px;
    max-height: 62px;
  }

  .header-main {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
  }

  .nav-links {
    width: 100%;
    max-width: calc(100vw - 124px);
    overflow-x: auto;
    padding-bottom: 4px;
    gap: 14px;
    font-size: 0.78rem;
    scrollbar-width: none;
  }

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

  .phone-link {
    font-size: 0.9rem;
  }

  .hero {
    height: clamp(330px, 86vw, 430px);
    min-height: auto;
    padding: 112px 16px 28px;
  }

  .home-hero h1,
  .destination-hero h1,
  .contact-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(1.7rem, 8vw, 2.55rem);
    line-height: 1.06;
    white-space: normal;
  }

  .home-hero .hero-content,
  .destination-hero .hero-content {
    padding: 34px 0 0;
  }

  .hero-search {
    width: min(100%, 420px);
  }

  .hero-search input {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 0.95rem;
  }

  .trust-strip,
  .tour-grid,
  .featured,
  .tour-filters,
  .trust-panel,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 46px 18px;
  }

  .controls h2,
  .about-copy h2 {
    font-size: clamp(1.35rem, 6vw, 1.8rem);
  }

  .section-intro {
    margin-bottom: 28px;
    font-size: 0.98rem;
  }

  .tour-grid {
    gap: 26px;
  }

  .tour-card h3 {
    margin-top: 10px;
    font-size: 1.05rem;
  }

  .tour-image {
    aspect-ratio: 3 / 2;
  }

  .tour-layout {
    padding: 0 18px 58px;
  }

  .about-section {
    gap: 26px;
    padding: 26px 18px 38px;
  }

  .about-carousel {
    width: 100%;
    margin-left: 0;
  }

  .about-track img {
    flex-basis: 88%;
    width: 88%;
    aspect-ratio: 3 / 2;
  }

  .contact-section {
    padding: 24px 18px 58px;
  }

  .contact-form textarea {
    min-height: 220px;
  }

  .tour-detail-page {
    padding-top: 92px;
  }

  .product-shell {
    width: min(100% - 28px, 1120px);
    padding-top: 18px;
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .main-gallery-image {
    height: clamp(230px, 68vw, 340px);
  }

  .product-content {
    padding-top: 4px;
  }

  .product-content h1 {
    font-size: clamp(1.45rem, 6vw, 1.9rem);
  }

  .booking-widget {
    padding: 18px;
  }

  .booking-iframe-shell iframe {
    min-height: 720px;
  }

  .gallery-dash {
    width: 28px;
  }

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

@media (max-width: 420px) {
  .brand img {
    width: 74px;
  }

  .nav-links {
    max-width: calc(100vw - 108px);
    font-size: 0.72rem;
  }

  .phone-link {
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 104px;
  }
}
