:root {
  --brown: #2b160d;
  --brown-2: #442417;
  --terracotta: #b85f32;
  --orange: #d88a3d;
  --gold: #c99a45;
  --sand: #f5ead8;
  --cream: #fffaf2;
  --ivory: #fff5e5;
  --teal: #1f6f68;
  --ink-soft: rgba(43, 22, 13, 0.72);
  --line: rgba(43, 22, 13, 0.14);
  --white-line: rgba(255, 250, 242, 0.22);
  --shadow-soft: 0 18px 45px rgba(43, 22, 13, 0.13);
  --shadow-strong: 0 28px 72px rgba(43, 22, 13, 0.22);
  --radius: 8px;
  --container: 1180px;
  --font-heading: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Poppins", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--font-body);
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(201, 154, 69, 0.14), transparent 24rem),
    linear-gradient(135deg, rgba(255, 250, 242, 0.96), rgba(245, 234, 216, 0.78));
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

main {
  min-height: 70vh;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 104px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-band {
  background: var(--sand);
}

.section-dark {
  background: var(--brown);
  color: var(--cream);
}

.patterned {
  overflow: hidden;
}

.patterned::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  background-image:
    linear-gradient(45deg, transparent 46%, rgba(184, 95, 50, 0.55) 47%, rgba(184, 95, 50, 0.55) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(201, 154, 69, 0.5) 47%, rgba(201, 154, 69, 0.5) 53%, transparent 54%);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.section-header {
  display: grid;
  gap: 16px;
  max-width: 780px;
  margin-bottom: 42px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header.split {
  max-width: none;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.6fr);
  align-items: end;
  column-gap: 48px;
}

.section-header h1,
.section-header h2,
.page-hero h1,
.hero h1,
.final-cta h2,
.modal-content h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.section-header h2 {
  font-size: 3.3rem;
}

.section-header p,
.page-hero p,
.hero p,
.final-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-dark .section-header p,
.section-dark .final-cta p {
  color: rgba(255, 250, 242, 0.76);
}

.mini-title {
  margin: 0 0 8px;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button {
  --button-bg: var(--brown);
  --button-color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-color);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  box-shadow: 0 14px 28px rgba(43, 22, 13, 0.16);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 18px 36px rgba(43, 22, 13, 0.24);
}

.button-primary {
  --button-bg: linear-gradient(135deg, var(--terracotta), var(--orange) 58%, var(--gold));
  --button-color: #fffaf2;
}

.button-outline {
  --button-bg: transparent;
  --button-color: var(--brown);
  border-color: rgba(43, 22, 13, 0.24);
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--terracotta);
  color: var(--terracotta);
}

.button-light {
  --button-bg: var(--cream);
  --button-color: var(--brown);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  font-weight: 800;
}

.text-link::after {
  content: "→";
  transition: transform .25s var(--ease);
}

.text-link:hover::after {
  transform: translateX(4px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 100;
  width: min(1240px, calc(100% - 28px));
  height: 78px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 10px 16px 10px 18px;
  border: 1px solid transparent;
  color: var(--cream);
  transition: top .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-open {
  top: 10px;
  border-color: rgba(43, 22, 13, 0.1);
  background: rgba(255, 250, 242, 0.9);
  color: var(--brown);
  box-shadow: 0 16px 48px rgba(43, 22, 13, 0.14);
  backdrop-filter: blur(18px);
}

.brand-link img {
  width: 210px;
  height: 56px;
  object-fit: cover;
  object-position: center;
}

.footer-brand img {
  width: 190px;
  height: auto;
  max-width: 100%;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.9);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(43, 22, 13, 0.14);
}

.footer-brand > a:first-child {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.site-header.is-scrolled .brand-link,
.site-header.menu-open .brand-link {
  background: transparent;
  box-shadow: none;
}

.desktop-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
  font-weight: 800;
}

.desktop-nav a,
.mobile-nav a {
  position: relative;
}

.desktop-nav a::after,
.mobile-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  transition: transform .28s var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after,
.mobile-nav a:hover::after,
.mobile-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.16);
  border: 1px solid rgba(255, 250, 242, 0.32);
  color: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .28s var(--ease);
}

.site-header.is-scrolled .nav-cta,
.site-header.menu-open .nav-cta {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--cream);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 242, 0.38);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.14);
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2px auto;
  background: currentColor;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}

.site-header.is-scrolled .menu-toggle,
.site-header.menu-open .menu-toggle {
  border-color: rgba(43, 22, 13, 0.2);
  background: rgba(43, 22, 13, 0.05);
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(43, 22, 13, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.96);
  color: var(--brown);
  box-shadow: var(--shadow-strong);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}

.site-header.menu-open .mobile-nav {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-cta {
  display: inline-flex;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brown);
  color: var(--cream);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
  background: var(--brown);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, var(--cream));
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: slowPan 18s ease-in-out infinite alternate;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 22, 13, 0.82) 0%, rgba(43, 22, 13, 0.54) 46%, rgba(43, 22, 13, 0.18) 100%),
    linear-gradient(180deg, rgba(43, 22, 13, 0.25), rgba(43, 22, 13, 0.42));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  align-items: center;
  gap: 52px;
  padding: 130px 0 72px;
}

.hero-copy {
  animation: heroIn .9s var(--ease) both;
}

.hero h1 {
  max-width: 740px;
  font-size: 5.15rem;
  text-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.hero p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 250, 242, 0.86);
  font-size: 1.18rem;
}

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

.hero-arch {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 999px 999px var(--radius) var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.1), rgba(255, 250, 242, 0.03)),
    rgba(43, 22, 13, 0.18);
  box-shadow: inset 0 0 0 16px rgba(255, 250, 242, 0.05), 0 34px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(5px);
  overflow: hidden;
  animation: archIn 1.1s var(--ease) .15s both;
}

.hero-arch::before {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 999px 999px var(--radius) var(--radius);
  border: 1px solid rgba(201, 154, 69, 0.48);
}

.hero-arch::after {
  content: "";
  position: absolute;
  inset: auto 26px 28px;
  height: 42%;
  background:
    radial-gradient(ellipse at bottom, rgba(216, 138, 61, 0.36), transparent 64%),
    linear-gradient(180deg, transparent, rgba(43, 22, 13, 0.64));
  border-radius: 999px 999px var(--radius) var(--radius);
}

.hero-stats {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.stat-card {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(255, 250, 242, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.13);
  backdrop-filter: blur(14px);
}

.stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 250, 242, 0.82);
  font-size: 0.85rem;
  font-weight: 700;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -36px;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(43, 22, 13, 0.12);
  box-shadow: var(--shadow-soft);
}

.trust-strip-inner div {
  padding: 22px 20px;
  background: rgba(255, 250, 242, 0.92);
}

.trust-strip-inner strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.1;
}

.trust-strip-inner span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.feature-tour,
.destination-card,
.icon-card,
.experience-card,
.contact-card,
.value-item,
.legal-content,
.tour-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.78);
  box-shadow: var(--shadow-soft);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}

.feature-tour:hover,
.destination-card:hover,
.icon-card:hover,
.experience-card:hover,
.contact-card:hover,
.value-item:hover,
.tour-card:hover {
  border-color: rgba(184, 95, 50, 0.34);
  box-shadow: var(--shadow-strong);
}

.feature-tour {
  overflow: hidden;
}

.feature-tour img,
.destination-card img,
.experience-card img,
.tour-media img,
.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.feature-tour:hover img,
.destination-card:hover img,
.experience-card:hover img,
.tour-card:hover .tour-media img {
  transform: scale(1.07);
}

.feature-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.feature-media span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(43, 22, 13, 0.76);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.feature-body {
  padding: 22px;
}

.feature-body h3,
.destination-card h3,
.icon-card h3,
.experience-card h3,
.contact-card h2,
.value-item h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.65rem;
  line-height: 1.08;
}

.feature-body p,
.destination-card p,
.icon-card p,
.experience-card p,
.contact-card p,
.value-item p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.feature-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.feature-meta span,
.included-row span,
.tour-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.feature-list,
.tour-highlights,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}

.feature-list li,
.tour-highlights li,
.check-list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.feature-list svg,
.tour-highlights svg,
.check-list svg,
.tour-meta svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--terracotta);
}

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

.destination-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  color: var(--cream);
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(43, 22, 13, 0.84));
}

.destination-card .destination-content {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
}

.destination-card p {
  color: rgba(255, 250, 242, 0.82);
}

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

.icon-card,
.value-item {
  padding: 26px;
}

.icon-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 95, 50, 0.16), rgba(201, 154, 69, 0.24));
  color: var(--terracotta);
}

.icon-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.experience-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  color: var(--cream);
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 22, 13, 0.04), rgba(43, 22, 13, 0.76));
}

.experience-card .experience-content {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 2;
}

.experience-card p {
  color: rgba(255, 250, 242, 0.8);
}

.tripadvisor-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(245, 234, 216, 0.9)),
    var(--sand);
}

.tripadvisor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(45deg, transparent 46%, rgba(184, 95, 50, 0.42) 47%, rgba(184, 95, 50, 0.42) 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, rgba(201, 154, 69, 0.38) 47%, rgba(201, 154, 69, 0.38) 53%, transparent 54%);
  background-size: 38px 38px;
}

.tripadvisor-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.tripadvisor-panel {
  position: relative;
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 420px;
  padding: 34px;
  border: 1px solid rgba(255, 250, 242, 0.18);
  border-radius: var(--radius);
  background: var(--brown);
  color: var(--cream);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.tripadvisor-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(45deg, transparent 47%, rgba(201, 154, 69, 0.42) 48%, rgba(201, 154, 69, 0.42) 52%, transparent 53%),
    linear-gradient(-45deg, transparent 47%, rgba(245, 234, 216, 0.18) 48%, rgba(245, 234, 216, 0.18) 52%, transparent 53%);
  background-size: 34px 34px;
}

.tripadvisor-panel > * {
  position: relative;
  z-index: 1;
}

.tripadvisor-logo {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  object-fit: contain;
}

.tripadvisor-logo-row,
.tripadvisor-card-top,
.tripadvisor-carousel-head,
.tripadvisor-carousel-controls {
  display: flex;
  align-items: center;
}

.tripadvisor-logo-row {
  gap: 10px;
  color: var(--cream);
  font-weight: 900;
}

.tripadvisor-logo-row .tripadvisor-logo {
  width: 32px;
  height: 32px;
}

.tripadvisor-panel h2 {
  margin: 0;
  font-size: 2.85rem;
  line-height: 1;
  font-weight: 900;
}

.tripadvisor-panel p:not(.mini-title) {
  margin: 0;
  color: rgba(255, 250, 242, 0.78);
  font-weight: 800;
}

.tripadvisor-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tripadvisor-rating span {
  width: 23px;
  height: 23px;
  border: 1px solid #00aa6c;
  border-radius: 50%;
  background: #00aa6c;
}

.tripadvisor-rating-small span {
  width: 14px;
  height: 14px;
}

.tripadvisor-review-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(43, 22, 13, 0.14);
  border-radius: 999px;
  background: var(--cream);
  color: var(--brown);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 14px 28px rgba(43, 22, 13, 0.16);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease), color .28s var(--ease), background .28s var(--ease);
}

.tripadvisor-review-button:hover,
.tripadvisor-review-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(184, 95, 50, 0.42);
  color: var(--terracotta);
  box-shadow: 0 18px 36px rgba(43, 22, 13, 0.22);
}

.tripadvisor-panel .tripadvisor-review-button {
  justify-self: start;
  margin-top: 4px;
}

.tripadvisor-cards {
  min-width: 0;
  display: grid;
  gap: 18px;
}

.tripadvisor-carousel-head {
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.tripadvisor-carousel-head h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  line-height: 1.05;
}

.tripadvisor-carousel-controls {
  gap: 8px;
}

.tripadvisor-carousel-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(43, 22, 13, 0.16);
  border-radius: 50%;
  background: var(--cream);
  color: var(--brown);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease), opacity .25s var(--ease);
}

.tripadvisor-carousel-arrow:hover,
.tripadvisor-carousel-arrow:focus-visible {
  transform: translateY(-2px);
  border-color: var(--terracotta);
  background: var(--brown);
  color: var(--cream);
}

.tripadvisor-carousel-arrow:disabled {
  cursor: default;
  opacity: 0.42;
  transform: none;
  background: rgba(255, 250, 242, 0.72);
  color: var(--ink-soft);
}

.tripadvisor-carousel-viewport {
  overflow: hidden;
  padding-bottom: 8px;
}

.tripadvisor-carousel-track {
  display: flex;
  gap: 18px;
  transition: transform .48s var(--ease);
  will-change: transform;
}

.tripadvisor-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 326px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.9);
  box-shadow: var(--shadow-soft);
}

.tripadvisor-card-top {
  justify-content: space-between;
  gap: 16px;
}

.tripadvisor-card-top strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 900;
}

.tripadvisor-card-top span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.tripadvisor-card h4 {
  margin: 16px 0 8px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.08;
}

.tripadvisor-card p {
  flex: 1;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.tripadvisor-card a {
  align-self: start;
  color: var(--terracotta);
  font-weight: 900;
}

.tripadvisor-card a:hover,
.tripadvisor-card a:focus-visible {
  color: var(--brown);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background:
    linear-gradient(135deg, rgba(43, 22, 13, 0.92), rgba(184, 95, 50, 0.85)),
    var(--brown);
  color: var(--cream);
}

.final-cta .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  align-items: center;
  gap: 36px;
}

.final-cta h2 {
  font-size: 3.6rem;
}

.final-cta p {
  margin-top: 16px;
  max-width: 700px;
  color: rgba(255, 250, 242, 0.78);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
}

.tripadvisor-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  max-width: 320px;
  padding: 0 16px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.1);
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.25;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}

.tripadvisor-page-link:hover,
.tripadvisor-page-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--cream);
  background: rgba(255, 250, 242, 0.18);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 24px;
  background: #1e0f09;
  color: var(--cream);
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at center, transparent 38%, rgba(255, 250, 242, 0.8) 39%, rgba(255, 250, 242, 0.8) 41%, transparent 42%),
    linear-gradient(45deg, transparent 47%, rgba(216, 138, 61, 0.7) 48%, rgba(216, 138, 61, 0.7) 52%, transparent 53%);
  background-size: 60px 60px, 34px 34px;
}

.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(150px, 0.65fr) minmax(180px, 0.78fr) minmax(210px, 0.8fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 250, 242, 0.72);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.trust-link,
.footer-social-link {
  color: var(--gold);
  font-weight: 800;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  width: fit-content;
  max-width: 100%;
  padding: 0 15px;
  border: 1px solid rgba(201, 154, 69, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.08);
  color: var(--cream);
  line-height: 1.2;
  transition: transform .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), color .28s var(--ease);
}

.footer-social-link > span[aria-hidden="true"] {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.14);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  background: rgba(255, 250, 242, 0.14);
  color: var(--cream);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
}

.footer-column h2 {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}

.footer-column a,
.footer-column span,
.footer-bottom a,
.footer-bottom p,
.footer-bottom span {
  color: rgba(255, 250, 242, 0.7);
  font-size: 0.94rem;
}

.footer-links a {
  width: fit-content;
}

.footer-column a:hover,
.footer-bottom a:hover {
  color: var(--cream);
}

.footer-contact {
  gap: 12px;
}

.footer-contact-list {
  display: grid;
  gap: 8px;
}

.footer-contact-text {
  display: grid;
  gap: 2px;
  width: fit-content;
  max-width: 100%;
  color: rgba(255, 250, 242, 0.72);
  line-height: 1.35;
}

.footer-contact-text strong {
  color: var(--cream);
  font-size: 0.88rem;
  font-weight: 900;
}

.footer-contact-text span {
  overflow-wrap: anywhere;
}

.footer-contact-text:hover strong,
.footer-contact-text:focus-visible strong,
.footer-contact-text:hover span,
.footer-contact-text:focus-visible span {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 250, 242, 0.12);
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  padding: 124px 0 78px;
  overflow: hidden;
  background: var(--brown);
  color: var(--cream);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(43, 22, 13, 0.76), rgba(43, 22, 13, 0.44), rgba(43, 22, 13, 0.16)),
    var(--page-image);
  background-size: cover;
  background-position: var(--page-position, center);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: linear-gradient(180deg, transparent, var(--cream));
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  max-width: 820px;
  font-size: 4.8rem;
}

.page-hero p {
  max-width: 760px;
  margin-top: 20px;
  color: rgba(255, 250, 242, 0.84);
  font-size: 1.16rem;
}

.tours-page-hero {
  min-height: 380px;
  padding: 110px 0 52px;
}

.tours-toolbar {
  position: relative;
  z-index: 5;
  margin-top: -44px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.filter-tab {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(43, 22, 13, 0.16);
  border-radius: 999px;
  background: transparent;
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 800;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}

.filter-tab:hover,
.filter-tab.is-active {
  border-color: var(--brown);
  background: var(--brown);
  color: var(--cream);
}

.tour-count {
  margin-left: auto;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tours-list-section {
  padding-top: 46px;
}

.tours-list-section .section-header {
  margin-bottom: 30px;
}

.tour-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.72fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 28px;
}

.tour-intro h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1.02;
}

.tour-intro p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.tour-card {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1fr);
  min-height: 370px;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.tour-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.tour-media span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.88);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 900;
}

.tour-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.tour-body h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.05;
}

.tour-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tour-summary,
.tour-modal-category {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.93rem;
  line-height: 1.55;
}

.tour-highlights {
  display: grid;
  gap: 8px;
}

.tour-highlights li {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.included-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.included-row span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(201, 154, 69, 0.14);
  color: var(--brown);
}

.tour-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.tour-actions .button {
  min-height: 44px;
  padding-inline: 16px;
  font-size: 0.86rem;
}

.tour-modal,
.tour-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 24px);
  background: rgba(30, 15, 9, 0.72);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  transition: opacity .28s var(--ease), visibility .28s var(--ease);
  visibility: hidden;
}

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

.modal-shell,
.tour-modal-content {
  position: relative;
  width: min(1080px, 100%);
  height: min(840px, calc(100svh - 48px));
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  opacity: 0;
  transform: translateY(16px) scale(.98);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

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

.modal-close,
.tour-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  font-size: 1.7rem;
  line-height: 1;
  transition: transform .24s var(--ease), background .24s var(--ease);
}

.modal-close:hover,
.modal-close:focus-visible,
.tour-modal-close:hover,
.tour-modal-close:focus-visible {
  transform: rotate(8deg) scale(1.04);
  background: var(--terracotta);
}

.modal-media,
.tour-modal-image {
  min-height: 100%;
  background: var(--brown);
}

.tour-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content,
.tour-modal-body {
  overflow: auto;
  min-height: 0;
  padding: 34px;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}

.modal-kicker {
  margin: 0 0 10px;
  color: var(--terracotta);
  font-size: 0.85rem;
  font-weight: 900;
}

.modal-content h2 {
  font-size: 2.8rem;
}

.modal-content h3 {
  margin: 24px 0 8px;
  font-family: var(--font-heading);
  font-size: 1.55rem;
}

.modal-content p {
  margin: 0;
  color: var(--ink-soft);
}

.modal-content ol,
.modal-content ul {
  margin: 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.tour-modal-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 14px;
  padding-left: 0 !important;
  list-style: none;
}

.modal-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.modal-cta-stack,
.tour-modal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
}

.modal-whatsapp {
  margin-top: 0;
}

.tripadvisor-modal-link,
.tour-modal-tripadvisor {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(184, 95, 50, 0.26);
  border-radius: 999px;
  background: rgba(184, 95, 50, 0.08);
  color: var(--terracotta);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.2;
  transition: transform .24s var(--ease), color .24s var(--ease), border-color .24s var(--ease), background .24s var(--ease);
}

.tripadvisor-modal-link:hover,
.tripadvisor-modal-link:focus-visible,
.tour-modal-tripadvisor:hover,
.tour-modal-tripadvisor:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(184, 95, 50, 0.46);
  background: rgba(184, 95, 50, 0.13);
  color: var(--brown);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.story-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 999px 999px var(--radius) var(--radius);
  box-shadow: var(--shadow-strong);
}

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

.story-copy h2,
.mission-panel h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 3.35rem;
  line-height: 1.02;
}

.story-copy p {
  color: var(--ink-soft);
}

.mission-panel {
  padding: 54px;
  border-radius: var(--radius);
  background: var(--brown);
  color: var(--cream);
  box-shadow: var(--shadow-strong);
}

.mission-panel p {
  margin: 14px 0 0;
  color: rgba(255, 250, 242, 0.78);
  font-size: 1.16rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 34px;
  align-items: start;
}

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

.contact-card {
  padding: 24px;
}

.contact-card .icon-mark {
  margin-bottom: 12px;
}

.contact-form-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 250, 242, 0.86);
  box-shadow: var(--shadow-soft);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(43, 22, 13, 0.16);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--brown);
  padding: 12px 14px;
  outline: none;
  transition: border-color .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease);
}

.form-field textarea {
  resize: vertical;
  min-height: 132px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 4px rgba(184, 95, 50, 0.13);
  background: var(--cream);
}

.contact-form .button {
  grid-column: 1 / -1;
  justify-self: start;
}

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

.trust-item {
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 250, 242, 0.62);
}

.trust-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  line-height: 1.05;
}

.trust-item span {
  color: var(--ink-soft);
}

.tripadvisor-trust-card {
  display: grid;
  gap: 12px;
  border-left-color: var(--terracotta);
  background:
    linear-gradient(135deg, rgba(184, 95, 50, 0.12), rgba(201, 154, 69, 0.18)),
    rgba(255, 250, 242, 0.8);
  box-shadow: var(--shadow-soft);
}

.tripadvisor-trust-card .tripadvisor-card-top {
  align-items: flex-start;
}

.tripadvisor-trust-card > span {
  display: block;
  margin: 0;
}

.tripadvisor-trust-card .tripadvisor-review-button {
  justify-self: start;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(184, 95, 50, 0.28);
  border-radius: 999px;
  background: var(--cream);
  color: var(--terracotta);
  font-size: 0.86rem;
  font-weight: 900;
  gap: 8px;
  box-shadow: 0 12px 26px rgba(43, 22, 13, 0.08);
  transition: transform .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.tripadvisor-trust-card .tripadvisor-review-button:hover,
.tripadvisor-trust-card .tripadvisor-review-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--terracotta);
  color: var(--brown);
  box-shadow: 0 16px 32px rgba(43, 22, 13, 0.14);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.82);
}

.faq-item button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--brown);
  padding: 0 20px;
  text-align: left;
  font-weight: 900;
}

.faq-item button span {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 154, 69, 0.18);
  transition: transform .25s var(--ease);
}

.faq-item.is-open button span {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s var(--ease);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer div {
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
}

.legal-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.86);
}

.legal-nav a {
  color: var(--ink-soft);
  font-weight: 800;
}

.legal-nav a:hover {
  color: var(--terracotta);
}

.legal-content {
  padding: 42px;
}

.legal-content h2 {
  margin: 34px 0 8px;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.08;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content ul {
  padding-left: 20px;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 50%;
  background: var(--brown);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

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

@keyframes slowPan {
  from {
    transform: scale(1.04) translateX(-1%);
  }
  to {
    transform: scale(1.08) translateX(1.5%);
  }
}

@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes archIn {
  from {
    opacity: 0;
    transform: translateY(36px) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .hero-inner,
  .story-grid,
  .contact-layout,
  .tripadvisor-layout,
  .modal-shell {
    grid-template-columns: 1fr;
  }

  .hero-arch {
    min-height: 360px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 4rem;
  }

  .featured-grid,
  .experience-grid,
  .why-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .departure-grid,
  .trust-grid,
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .tripadvisor-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .modal-media,
  .tour-modal-image {
    height: min(320px, 36svh);
    min-height: 230px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .site-header {
    width: calc(100% - 18px);
    height: 68px;
    gap: 12px;
    padding: 8px 10px 8px 12px;
  }

  .site-header:not(.is-scrolled):not(.menu-open) .menu-toggle {
    border-color: rgba(255, 250, 242, 0.8);
    background: rgba(255, 250, 242, 0.92);
    color: var(--brown);
  }

  .brand-link img {
    width: 190px;
    height: 54px;
  }

  .footer-brand img {
    width: 170px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 114px 0 54px;
    gap: 34px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3.05rem;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .final-cta .container,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .final-cta .button {
    width: 100%;
  }

  .final-cta-actions {
    justify-content: stretch;
    align-items: stretch;
    flex-direction: column;
  }

  .tripadvisor-page-link {
    width: 100%;
    max-width: none;
  }

  .hero-arch {
    min-height: 330px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .stat-card {
    min-height: 78px;
    padding: 12px;
  }

  .stat-card strong {
    font-size: 1.7rem;
  }

  .section-header.split,
  .final-cta .container,
  .legal-wrap,
  .tour-intro {
    grid-template-columns: 1fr;
  }

  .section-header h2,
  .story-copy h2,
  .mission-panel h2,
  .final-cta h2 {
    font-size: 2.6rem;
  }

  .featured-grid,
  .departure-grid,
  .experience-grid,
  .why-grid,
  .values-grid,
  .trust-grid,
  .contact-form,
  .modal-columns {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 22px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

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

  .tour-media {
    min-height: 250px;
  }

  .tour-body h2 {
    font-size: 1.8rem;
  }

  .filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .filter-tab {
    flex: 0 0 auto;
  }

  .tour-count {
    display: none;
  }

  .modal-shell,
  .tour-modal-content {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .tour-modal,
  .tour-modal-overlay {
    align-items: start;
    padding: 12px;
  }

  .modal-media,
  .tour-modal-image {
    height: 220px;
    min-height: 220px;
  }

  .modal-content,
  .tour-modal-body,
  .legal-content,
  .mission-panel,
  .tripadvisor-panel,
  .tripadvisor-card {
    padding: 26px;
  }

  .modal-content,
  .tour-modal-body {
    overflow: visible;
    min-height: auto;
  }

  .tour-modal-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tour-modal-actions .button,
  .tour-modal-tripadvisor {
    width: 100%;
  }

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

  .modal-content h2 {
    font-size: 2.25rem;
  }

  .tripadvisor-carousel-head {
    display: grid;
    align-items: start;
  }

  .tripadvisor-card {
    flex-basis: 100%;
    min-height: auto;
  }

  .tripadvisor-panel {
    min-height: auto;
  }

  .tripadvisor-panel h2 {
    font-size: 2.35rem;
  }

  .footer-bottom {
    display: grid;
    justify-items: start;
    margin-top: 34px;
  }

  .site-footer {
    padding: 46px 0 22px;
  }

  .footer-brand p {
    max-width: none;
    margin-top: 14px;
    line-height: 1.5;
  }

  .footer-column {
    gap: 8px;
  }

  .footer-column h2 {
    margin-bottom: 6px;
    font-size: 1.35rem;
  }

  .footer-column a,
  .footer-column span,
  .footer-bottom p,
  .footer-bottom span {
    font-size: 0.9rem;
  }

  .footer-contact {
    display: grid;
    gap: 10px;
  }

  .footer-contact h2 {
    margin-bottom: 0;
  }

  .footer-contact-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .footer-contact-text {
    width: 100%;
  }

  .footer-contact .footer-social-link {
    width: fit-content;
    max-width: 100%;
  }

  .legal-nav {
    position: static;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .section-header h2,
  .story-copy h2,
  .mission-panel h2,
  .final-cta h2 {
    font-size: 2.25rem;
  }

  .trust-strip-inner,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-arch {
    min-height: 460px;
  }

  .feature-media {
    height: 210px;
  }

  .tripadvisor-carousel-controls {
    justify-content: space-between;
  }

  .tripadvisor-review-button,
  .tripadvisor-page-link,
  .tripadvisor-modal-link {
    width: 100%;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-social-link {
    min-height: 40px;
  }

  .footer-grid {
    gap: 18px;
  }

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

  .modal-close,
  .tour-modal-close {
    top: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
