:root {
  --bg: #f9f5ee;
  --ink: #1f2f2a;
  --muted: #51635e;
  --primary: #0f766e;
  --accent: #e27d4a;
  --card: #ffffff;
  --line: #d8cdc0;
  --shadow: 0 14px 30px rgba(23, 35, 31, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #020304;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-brand {
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  text-align: center;
}

.loader-main {
  margin: 0;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  font-size: clamp(2.5rem, 10vw, 8rem);
  letter-spacing: 0.03em;
  background-image:
    linear-gradient(140deg, rgba(13, 164, 192, 0.88), rgba(253, 237, 198, 0.86) 48%, rgba(56, 140, 74, 0.9));
  background-size: 200% 200%;
  background-position: 0% 50%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: loaderRise 0.9s ease-out both, loaderTextureShift 4s linear infinite;
}

.loader-sub {
  margin: 0;
  margin-top: 0.15rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(0.85rem, 2.1vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.78em;
  margin-right: -0.78em;
  color: #f2f4f6;
  opacity: 0.94;
  animation: loaderRise 1.1s ease-out both;
}

.loader-line {
  width: min(15rem, 56vw);
  height: 1px;
  margin-top: 0.3rem;
  background: rgba(108, 153, 165, 0.35);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, #8cc8d8, transparent);
  animation: loaderSweep 1.4s ease-in-out infinite;
}

.loader-meta {
  margin: 0;
  margin-top: 0.05rem;
  font-size: clamp(0.48rem, 0.9vw, 0.65rem);
  letter-spacing: 0.34em;
  color: #477484;
  opacity: 0.75;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes loaderRise {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes loaderSweep {
  0% {
    transform: translateX(-100%);
  }

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

@keyframes loaderTextureShift {
  0% {
    background-position: 0% 50%, center;
  }

  100% {
    background-position: 100% 50%, center;
  }
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 15% 10%, rgba(226, 125, 74, 0.14), transparent 40%),
    radial-gradient(circle at 85% 20%, rgba(15, 118, 110, 0.15), transparent 42%),
    linear-gradient(160deg, #f7f0e5 0%, #f2f8f5 45%, #f7f2eb 100%);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Prata", serif;
  line-height: 1.2;
}

p {
  margin: 0;
}

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

.site-header {
  position: absolute;
  top: 0.9rem;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 3vw;
  animation: navLiftIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

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

.brand-text {
  font-family: "Anton", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 2rem);
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-hot {
  color: #ff8a1f;
}

.brand-cool {
  color: #27b4ff;
  margin-left: 0.2rem;
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.9rem;
  background: rgba(14, 19, 24, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.68rem 1.8rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  overflow: hidden;
}

.main-nav::before {
  content: "";
  position: absolute;
  inset: -45% auto auto -20%;
  width: 42%;
  height: 180%;
  background: linear-gradient(130deg, rgba(47, 206, 255, 0.3), rgba(47, 206, 255, 0));
  transform: rotate(8deg);
  pointer-events: none;
  opacity: 0.7;
}

.main-nav:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
  border-color: rgba(78, 198, 255, 0.34);
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.42rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2fceff, #ffc36b);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.main-nav a:hover {
  color: #4ec6ff;
  transform: translateY(-3px);
  text-shadow: 0 0 14px rgba(78, 198, 255, 0.55);
}

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

.main-nav a.is-active {
  color: #2fceff;
  transform: translateY(-2px);
  text-shadow: 0 0 12px rgba(47, 206, 255, 0.6);
}

.main-nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

@keyframes navLiftIn {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navMenuLift {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.header-tools {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.lang-pill,
.call-pill {
  border: 0;
  border-radius: 999px;
  padding: 0.68rem 1rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.lang-pill {
  background: rgba(35, 42, 50, 0.82);
  color: #d6e5ef;
}

.call-pill {
  background: linear-gradient(140deg, #2fceff, #1377ff);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.45rem;
  height: 2px;
  background: #f2f7fb;
  margin: 4px 0;
}

main {
  padding: 0 0 4rem;
}

.hero-showcase {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: end;
  gap: 1.5rem;
  padding: 7.5rem 5vw 3.2rem;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(3, 8, 14, 0.08) 0%, rgba(3, 8, 14, 0.76) 100%),
    url("assets/MH4.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 16%, rgba(246, 189, 105, 0.22), transparent 38%);
}

.hero-content,
.hero-gallery,
.social-rail {
  position: relative;
  z-index: 1;
}

.hero-gallery-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: end;
  gap: 0.55rem;
}

.hero-gallery-arrow {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(7, 18, 30, 0.55);
  color: #f4f8fc;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-gallery-arrow:hover {
  transform: translateY(-1px);
  background: rgba(35, 157, 231, 0.7);
}

.hero-kicker {
  color: #44c8ff;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
}

.hero-kicker::before {
  content: "";
  width: 2.9rem;
  height: 2px;
  background: #ff8b22;
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

.hero-showcase h1 {
  margin-top: 0.75rem;
  font-family: "Anton", sans-serif;
  font-size: clamp(3rem, 8.2vw, 7.2rem);
  letter-spacing: 0.01em;
  line-height: 0.95;
  max-width: 7.2ch;
  text-transform: capitalize;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.lead {
  margin-top: 1rem;
  max-width: 38ch;
  color: rgba(243, 246, 250, 0.9);
  font-size: 1.07rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

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

.btn-hero {
  background: linear-gradient(140deg, #ff9a1f, #ff6e00);
  padding: 0.9rem 1.9rem;
}

.watch-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: transparent;
  border: 0;
  color: #f4f8fb;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.watch-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: inline-grid;
  place-items: center;
  font-size: 0.8rem;
  padding-left: 2px;
}

.hero-gallery {
  display: flex;
  gap: 0.7rem;
  align-items: end;
  justify-content: end;
  padding-bottom: 0.25rem;
}

.hero-tile {
  width: min(10.8vw, 10rem);
  min-width: 4.8rem;
  height: min(27vh, 13rem);
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.33);
}

.hero-tile-active {
  border: 2px solid #25c8ff;
  box-shadow: 0 0 0 2px rgba(37, 200, 255, 0.3), 0 14px 30px rgba(0, 0, 0, 0.38);
}

.social-rail {
  position: absolute;
  right: 1.1rem;
  top: 45%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.55rem;
}

.social-rail a {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #f3f7fa;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  background: rgba(8, 18, 29, 0.35);
}

.social-link {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.social-link i {
  font-size: 1rem;
}

.social-facebook {
  background: #1877f2;
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.social-instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0%, #fa7e1e 30%, #d62976 55%, #962fbf 75%, #4f5bd5 100%);
  border-color: rgba(255, 255, 255, 0.55);
  color: #ffffff;
}

.social-tiktok {
  background: #111111;
  border-color: rgba(255, 255, 255, 0.55);
  color: #25f4ee;
  text-shadow: 1px 0 #fe2c55;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.32);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-small {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1.3rem;
  box-shadow: var(--shadow);
  transform: rotate(-1.5deg);
}

.hero-card h2 {
  font-size: 1.4rem;
}

.hero-card ul {
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  margin: 0.55rem 0;
  color: var(--muted);
}

.price {
  font-weight: 700;
  color: var(--primary);
}

.services-showcase,
.tours-section,
.activities-section {
  margin-top: 0;
  position: relative;
  color: #f3f7fb;
}

.services-showcase {
  padding-top: 4.5rem;
  padding-bottom: 3.2rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(3, 8, 12, 0.2) 0%, rgba(3, 8, 12, 0.86) 60%),
    url("assets/BG2.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.section-kicker {
  margin: 0;
  color: #ff8a22;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.73rem;
  font-weight: 700;
}

.services-showcase h2,
.tours-section h2,
.activities-section h2 {
  margin-top: 0.55rem;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.03em;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
}

.section-copy {
  margin: 1.05rem auto 0;
  max-width: 52rem;
  color: rgba(230, 238, 246, 0.86);
  font-size: 1.05rem;
  line-height: 1.6;
}

.service-strip {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.7rem;
  scroll-snap-type: x mandatory;
}

.svc-card {
  flex: 0 0 min(22.5vw, 17rem);
  min-width: 11rem;
  height: 18rem;
  border-radius: 1rem;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: flex-start;
  text-align: left;
  padding: 1.1rem;
  scroll-snap-align: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 10, 16, 0.06), rgba(4, 10, 16, 0.82));
  transition: background 0.35s ease;
}

.svc-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(82, 207, 255, 0.7);
}

.svc-card:hover::before {
  background: linear-gradient(180deg, rgba(4, 10, 16, 0.03), rgba(4, 10, 16, 0.74));
}

.svc-card h3,
.svc-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.svc-card p {
  margin-top: 0.3rem;
  font-family: "Sora", sans-serif;
  font-size: 0.83rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(233, 240, 248, 0.88);
}

.view-services {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.4rem;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 22, 30, 0.56);
  color: #f3f7fc;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.services-watermark {
  position: absolute;
  left: 50%;
  bottom: 0.35rem;
  transform: translateX(-50%);
  margin: 0;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(4rem, 15vw, 15rem);
  line-height: 0.85;
  letter-spacing: 0.03em;
  color: rgba(195, 239, 255, 0.14);
  pointer-events: none;
}

.tours-section {
  padding-top: 4.2rem;
  padding-bottom: 3.4rem;
  text-align: center;
  background:
    radial-gradient(circle at 10% 50%, rgba(14, 146, 186, 0.32), transparent 35%),
    radial-gradient(circle at 95% 50%, rgba(14, 146, 186, 0.22), transparent 35%),
    #060b10;
}

.tour-filter {
  margin: 1.3rem auto 0;
  padding: 0.3rem;
  width: fit-content;
  border-radius: 999px;
  background: rgba(42, 49, 57, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  gap: 0.3rem;
}

.tour-filter button {
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  background: transparent;
  color: rgba(228, 236, 243, 0.82);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.tour-filter button.is-active {
  background: linear-gradient(140deg, #ff9723, #ff6f00);
  color: #fff;
}

.tour-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tour-card {
  min-height: 21rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 7, 12, 0.1), rgba(2, 7, 12, 0.86));
  transition: background 0.35s ease;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
  border-color: rgba(82, 207, 255, 0.7);
}

.tour-card:hover::before {
  background: linear-gradient(180deg, rgba(2, 7, 12, 0.05), rgba(2, 7, 12, 0.78));
}

.tour-card:hover .tour-cta {
  background: linear-gradient(140deg, #2fceff, #1377ff);
  border-color: rgba(255, 255, 255, 0.45);
}

.tour-card > * {
  position: relative;
  z-index: 1;
}

.tour-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: rgba(22, 28, 34, 0.82);
  color: #e6edf5;
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
}

.tour-card h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  text-transform: capitalize;
  letter-spacing: 0.02em;
  font-size: 1.7rem;
}

.tour-card p {
  margin: 0.2rem 0 0;
  color: rgba(231, 239, 247, 0.88);
  font-size: 0.86rem;
}

.tour-cta {
  margin-top: 0.9rem;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(26, 35, 44, 0.64);
  color: #edf3fb;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.tour-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(31, 119, 255, 0.28);
}

.tour-modal {
  position: fixed;
  inset: 0;
  z-index: 112;
  display: grid;
  place-items: center;
  background: rgba(5, 9, 14, 0.62);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.tour-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.tour-modal-panel {
  width: min(92vw, 47rem);
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #121821;
  box-shadow: 0 28px 60px rgba(4, 8, 14, 0.54);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  transform: translateY(24px) scale(0.96);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.3s ease;
  position: relative;
}

.tour-modal.is-open .tour-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.tour-modal-close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 12, 18, 0.62);
  color: rgba(235, 241, 247, 0.92);
  font: inherit;
  font-size: 1.18rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.tour-modal-image {
  min-height: 19rem;
  background-size: cover;
  background-position: center;
  position: relative;
}

.tour-modal-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 9, 14, 0.05), rgba(5, 9, 14, 0.46));
}

.tour-modal-content {
  padding: 1.45rem 1.2rem 1.1rem;
  color: #eff4f9;
  display: grid;
  align-content: start;
  gap: 0.75rem;
}

.tour-modal-kicker {
  margin: 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #57d7ff;
  font-weight: 700;
}

.tour-modal-content h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(1.8rem, 4.4vw, 2.8rem);
}

.tour-modal-desc {
  margin: 0;
  color: rgba(224, 232, 241, 0.88);
  font-size: 0.95rem;
  line-height: 1.45;
}

.tour-modal-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.8rem;
}

.tour-modal-features li {
  color: rgba(223, 232, 240, 0.92);
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.tour-modal-features li::before {
  content: "";
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: #2bc9ff;
  box-shadow: 0 0 0 3px rgba(43, 201, 255, 0.15);
}

.tour-modal-book {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border-radius: 0.65rem;
  border: 0;
  padding: 0.86rem 1rem;
  background: linear-gradient(140deg, #ff9723, #ff6f00);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tour-modal-book:hover {
  box-shadow: 0 10px 22px rgba(255, 111, 0, 0.3);
}

.activities-section {
  padding-top: 4.2rem;
  padding-bottom: 3.6rem;
  text-align: center;
  background:
    radial-gradient(circle at 10% 50%, rgba(14, 146, 186, 0.32), transparent 35%),
    radial-gradient(circle at 95% 50%, rgba(14, 146, 186, 0.22), transparent 35%),
    #060b10;
}

.activities-section h2 span {
  color: #27b7ff;
}

.activity-strip {
  margin-top: 1.8rem;
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.7rem;
  scroll-snap-type: x mandatory;
}

.activity-card {
  flex: 0 0 min(23vw, 18rem);
  min-width: 12rem;
  min-height: 23rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: 0.95rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  scroll-snap-align: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.activity-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 11, 18, 0.08), rgba(4, 11, 18, 0.84));
  transition: background 0.35s ease;
}

.activity-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(82, 207, 255, 0.7);
}

.activity-card:hover::before {
  background: linear-gradient(180deg, rgba(4, 11, 18, 0.05), rgba(4, 11, 18, 0.75));
}

.service-strip::-webkit-scrollbar,
.activity-strip::-webkit-scrollbar {
  height: 8px;
}

.service-strip::-webkit-scrollbar-thumb,
.activity-strip::-webkit-scrollbar-thumb {
  background: rgba(93, 124, 144, 0.6);
  border-radius: 999px;
}

@media (min-width: 1200px) {
  .tour-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 991px) and (max-width: 1199px) {
  .tour-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tour-card {
    min-height: 19rem;
  }
}

.activity-card > * {
  position: relative;
  z-index: 1;
}

.activity-tag {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: rgba(83, 96, 110, 0.72);
  border-radius: 999px;
  padding: 0.33rem 0.62rem;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.activity-card h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  color: #ff8b21;
  letter-spacing: 0.03em;
  font-size: 1.65rem;
}

.activity-card p {
  margin: 0.4rem 0 0;
  color: rgba(233, 240, 247, 0.92);
  font-size: 0.9rem;
}

.guest-reviews {
  margin-top: 0;
  padding: 4rem 5vw;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.4rem;
  align-items: stretch;
  background:
    linear-gradient(180deg, rgba(7, 11, 16, 0.96), rgba(12, 18, 25, 0.98)),
    url("footer.jpeg");
  background-size: cover;
  background-position: center;
}

.guest-media {
  min-height: 32rem;
  border-radius: 1.3rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.guest-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 9, 16, 0.08), rgba(2, 9, 16, 0.5));
}

.guest-media-pill {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 1;
  background: rgba(11, 24, 33, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.7rem;
  padding: 0.65rem 0.85rem;
  display: grid;
  gap: 0.1rem;
}

.guest-media-pill strong {
  color: #f3f7fb;
  font-size: 0.82rem;
}

.guest-media-pill span {
  color: #79d0a3;
  font-size: 0.72rem;
}

.guest-content {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.guest-content h2 {
  margin-top: 0.4rem;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.03em;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  color: #f2f6fb;
}

.guest-content h2 span {
  color: #ff8b21;
}

.guest-content .section-copy {
  margin: 0;
  color: rgba(234, 241, 247, 0.82);
  max-width: 47ch;
}

.review-strip {
  margin-top: 0.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(14rem, 1fr));
  gap: 0.9rem;
}

.review-card {
  background: #131a22;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  padding: 0.95rem;
  color: #f4f7fa;
  min-height: 13.6rem;
  display: grid;
  align-content: start;
  gap: 0.65rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(7, 12, 18, 0.28);
}

.review-head {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.review-avatar {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 50%;
  background: linear-gradient(140deg, #ff9b28, #ff6b00);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.review-head h3 {
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  margin: 0;
}

.review-head p {
  margin: 0.15rem 0 0;
  font-size: 0.7rem;
  color: rgba(217, 226, 234, 0.7);
}

.review-stars {
  margin: 0;
  color: #ff9526;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.review-copy {
  margin: 0;
  color: rgba(230, 238, 245, 0.88);
  font-size: 0.83rem;
  line-height: 1.5;
}

.review-action {
  margin-top: 0.2rem;
  width: fit-content;
  padding: 0.72rem 1.3rem;
  border-radius: 999px;
  background: linear-gradient(140deg, #ff9723, #ff6f00);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 111, 0, 0.32);
}

.review-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  background: rgba(6, 10, 16, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.review-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.review-modal-panel {
  width: min(92vw, 25rem);
  background: #141a22;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.1rem;
  padding: 1.1rem;
  color: #f4f8fc;
  position: relative;
  box-shadow: 0 24px 54px rgba(5, 8, 14, 0.5);
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.28s ease;
}

.review-modal.is-open .review-modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.review-modal-close {
  position: absolute;
  right: 0.7rem;
  top: 0.65rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(239, 244, 249, 0.9);
  font: inherit;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.review-modal-panel h3 {
  margin: 0;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 2rem;
  line-height: 0.95;
}

.review-modal-sub {
  margin: 0.45rem 0 0;
  color: rgba(216, 226, 236, 0.78);
  font-size: 0.86rem;
}

.review-modal-form {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.85rem;
}

.review-modal-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: rgba(223, 232, 240, 0.85);
}

.review-modal-form input,
.review-modal-form textarea {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #1e2631;
  color: #f2f7fb;
  border-radius: 0.55rem;
  padding: 0.65rem 0.75rem;
}

.review-modal-form input::placeholder,
.review-modal-form textarea::placeholder {
  color: rgba(187, 201, 215, 0.55);
}

.review-modal-form input:focus,
.review-modal-form textarea:focus {
  outline: 2px solid rgba(255, 143, 38, 0.3);
  border-color: rgba(255, 143, 38, 0.7);
}

.review-rating-group p {
  margin: 0;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: rgba(223, 232, 240, 0.85);
}

.review-stars-input {
  margin-top: 0.35rem;
  display: flex;
  gap: 0.25rem;
}

.review-star {
  border: 0;
  background: transparent;
  color: rgba(126, 139, 150, 0.95);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, color 0.2s ease;
}

.review-star.is-active {
  color: #ff8b21;
}

.review-star:hover {
  transform: scale(1.1);
}

.review-submit {
  margin-top: 0.25rem;
  border: 0;
  border-radius: 0.7rem;
  background: linear-gradient(140deg, #ff9723, #ff6f00);
  color: #fff;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.76rem 1rem;
  cursor: pointer;
}

body.is-modal-open {
  overflow: hidden;
}

.captured-moments {
  margin-top: 0;
  padding: 4rem 5vw;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 10, 16, 0.86), rgba(5, 10, 16, 0.86)),
    url("main load.jpeg");
  background-size: cover;
  background-position: center;
  color: #f3f7fb;
}

.captured-head h2 {
  margin-top: 0.55rem;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.03em;
  font-size: clamp(2.6rem, 7vw, 5.4rem);
  color: #ff8b21;
}

.captured-head .section-copy {
  color: rgba(224, 235, 245, 0.86);
}

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

.moment-card {
  min-height: 19rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-size: cover;
  background-position: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.moment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.38);
}

.stats,
.destinations,
.experiences,
.packages,
.testimonials,
.book {
  margin-top: 4.7rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.stats article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 1rem;
  text-align: center;
}

.stats h3 {
  font-size: 1.55rem;
  color: var(--primary);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  max-width: 20ch;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.card {
  min-height: 16rem;
  border-radius: 1rem;
  color: #fff;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 16, 14, 0.15) 10%, rgba(9, 16, 14, 0.65) 100%);
}

.card h3,
.card p {
  position: relative;
  z-index: 1;
}

.card-1 { background-image: linear-gradient(140deg, #56a392, #1f5f56); }
.card-2 { background-image: linear-gradient(140deg, #f09e63, #af562b); }
.card-3 { background-image: linear-gradient(140deg, #5f8eb2, #275779); }
.card-4 { background-image: linear-gradient(140deg, #769f69, #365638); }

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

.timeline article {
  padding: 1.2rem;
  border-radius: 0.95rem;
  background: #fff;
  border: 1px solid var(--line);
}

.timeline span {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--accent);
  font-weight: 700;
}

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

.package-grid article {
  background: #fff;
  border-radius: 0.95rem;
  border: 1px solid var(--line);
  padding: 1.2rem;
}

.package-grid p {
  margin: 0.7rem 0;
  color: var(--muted);
}

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

.testimonials blockquote {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.4rem;
  color: #32403d;
}

.testimonials cite {
  display: block;
  margin-top: 0.9rem;
  color: var(--muted);
  font-style: normal;
}

.book {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.4rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(140deg, #fffcf8, #f3f9f6);
}

.booking-form {
  display: grid;
  gap: 0.8rem;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

input,
textarea {
  border: 1px solid #cbc0b4;
  border-radius: 0.7rem;
  padding: 0.7rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(15, 118, 110, 0.2);
  border-color: var(--primary);
}

.form-note {
  min-height: 1.4rem;
  color: var(--primary);
  font-size: 0.9rem;
}

main > section:not(.hero-showcase) {
  padding-left: 5vw;
  padding-right: 5vw;
}

.site-footer {
  margin-top: 3.2rem;
  padding: 2.2rem 5vw 1.4rem;
  color: #d2d8e2;
  background:
    linear-gradient(180deg, rgba(6, 9, 13, 0.96), rgba(4, 7, 10, 0.98)),
    url("footer.jpeg");
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wordmark {
  margin: 0;
  text-align: center;
  font-family: "Anton", sans-serif;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 10vw, 8rem);
  letter-spacing: 0.02em;
  line-height: 0.9;
  background-image: linear-gradient(130deg, #cba878, #8e6e49 55%, #d3ba92), url("main load.jpeg");
  background-size: 160% 160%, cover;
  background-position: center;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.78;
}

.footer-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 1.3rem;
}

.footer-grid h3,
.footer-grid h4 {
  font-family: "Sora", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f2f6fb;
  margin-bottom: 0.75rem;
}

.footer-grid h3 {
  font-size: 1.5rem;
  letter-spacing: 0;
  text-transform: none;
}

.footer-grid section {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.footer-grid p,
.footer-grid a {
  color: rgba(214, 220, 228, 0.85);
  font-size: 0.95rem;
}

.footer-grid a:hover {
  color: #50c9ff;
}

.footer-socials {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.6rem;
}

.footer-socials a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  color: #f0f6fc;
}

.footer-socials a i {
  font-size: 1rem;
}

.footer-bottom {
  margin-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom a {
  color: #4ac9ff;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 990px) {
  .site-header {
    top: 0.65rem;
    padding: 0 4vw;
  }

  .main-nav {
    gap: 1rem;
    padding: 0.55rem 1rem;
  }

  .hero-showcase {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    align-items: end;
    padding-top: 7rem;
  }

  .hero-gallery {
    justify-content: flex-start;
  }

  .hero-gallery-wrap {
    justify-content: flex-start;
  }

  .hero-tile {
    width: min(20vw, 8.5rem);
  }

  .social-rail {
    display: none;
  }

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

  .svc-card {
    flex-basis: 14rem;
    height: 16rem;
  }

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

  .activity-card {
    flex-basis: 15rem;
    min-height: 20rem;
  }

  .guest-reviews {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .guest-media {
    min-height: 22rem;
  }

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

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

  .stats,
  .destination-grid,
  .timeline,
  .package-grid,
  .testimonials,
  .book {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .loader-main {
    letter-spacing: 0.02em;
  }

  .loader-sub {
    letter-spacing: 0.42em;
    margin-right: -0.42em;
  }

  .loader-meta {
    letter-spacing: 0.24em;
  }

  .site-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.5rem;
  }

  .brand-text {
    font-size: 1.08rem;
  }

  .header-tools {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
    z-index: 22;
  }

  .main-nav {
    position: absolute;
    right: 3.8vw;
    top: calc(100% + 0.5rem);
    width: min(20rem, 90vw);
    background: rgba(8, 13, 19, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.8rem;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav.open {
    display: flex;
    animation: navMenuLift 0.32s ease-out both;
  }

  .hero-showcase {
    min-height: 90vh;
    padding-top: 6.6rem;
  }

  .hero-showcase h1 {
    font-size: clamp(2.5rem, 14vw, 4.2rem);
  }

  .lead {
    font-size: 0.96rem;
  }

  .hero-gallery {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.6rem;
  }

  .hero-gallery-wrap {
    align-items: center;
  }

  .hero-tile {
    flex: 0 0 5.8rem;
    height: 8.5rem;
    scroll-snap-align: start;
  }

  .services-showcase,
  .tours-section,
  .activities-section {
    padding-top: 3.2rem;
    padding-bottom: 2.5rem;
  }

  .section-copy {
    font-size: 0.93rem;
  }

  .services-watermark {
    font-size: clamp(3rem, 20vw, 6.5rem);
  }

  .tour-filter {
    width: 100%;
    justify-content: center;
  }

  .tour-filter button {
    padding: 0.62rem 0.8rem;
    font-size: 0.72rem;
  }

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

  .tour-card {
    min-height: 18rem;
  }

  .tour-modal-panel {
    width: min(93vw, 24rem);
    grid-template-columns: 1fr;
  }

  .tour-modal-image {
    min-height: 11rem;
  }

  .tour-modal-content {
    padding: 1rem;
  }

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

  .svc-card,
  .activity-card {
    flex-basis: 13.4rem;
  }

  .service-strip,
  .activity-strip {
    gap: 0.8rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.75rem;
  }

  .svc-card {
    min-width: 12.2rem;
    height: 15.2rem;
  }

  .activity-card {
    min-width: 12.8rem;
    min-height: 18.8rem;
  }

  .guest-reviews,
  .captured-moments {
    padding-top: 3.2rem;
    padding-bottom: 2.6rem;
  }

  .guest-media {
    min-height: 17rem;
  }

  .guest-content h2 {
    font-size: clamp(2.1rem, 12vw, 3.4rem);
  }

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

  .review-card {
    min-height: auto;
  }

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

  .moment-card {
    min-height: 15rem;
  }

  .review-modal-panel {
    width: min(93vw, 23rem);
    padding: 1rem;
  }

  .review-modal-panel h3 {
    font-size: 1.7rem;
  }

  .stats,
  .destination-grid,
  .timeline,
  .package-grid,
  .testimonials,
  .book {
    grid-template-columns: 1fr;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .main-nav,
  .main-nav.open,
  .main-nav a,
  .main-nav a::after,
  .svc-card,
  .svc-card::before,
  .tour-card,
  .tour-card::before,
  .tour-cta,
  .activity-card,
  .activity-card::before {
    transition: none;
    animation: none;
  }
}
