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

:root {
  --gold: #C79A5C;
  --gold-bright: #EAC98A;
  --gold-deep: #9C6B34;
  --copper: #C2703B;
  --rust: #9A5230;
  --sand: #F6EDDD;
  --sand-soft: #D6C4A3;
  --deep: #120D09;
  --panel: #1E170F;
  --surface: #2C2116;
  --border: #4A3624;
  --muted: #A38C6C;
  --gold-gradient: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 52%, var(--copper) 100%);
  --display: 'Fraunces', serif;
  --body: 'Manrope', sans-serif;
  --accent: 'Italiana', serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
}


.marquee-wrap {
  overflow: hidden;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--panel);
}
/* Seamless marquee: the track contains two identical runs, so the loop stays continuous. */
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
  animation: marquee-scroll 26s linear infinite;
}
.marquee-track span { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: wheat; flex: 0 0 auto; }

@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

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

/* Slim, on-theme scrollbar instead of the browser default */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--deep);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--deep);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

html {
  scroll-behavior: smooth;
  background: var(--deep);
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--sand);
  font-family: var(--body);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  cursor: pointer;
}

img {
  display: block;
}

.site-shell {
  opacity: 0;
  transition: opacity .8s ease .1s;
}

.site-shell.loaded {
  opacity: 1;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity .7s ease;
  opacity: 1;
}

.preloader.done {
  opacity: 0;
  pointer-events: none;
}

.logo-glow {
  filter: drop-shadow(0 0 12px rgba(199, 154, 92, .25));
}

.preloader-logo {
  width: 200px;
  height: auto;
  object-fit: contain;
}

.preloader-tag {
  margin: 16px 0 0;
  font-size: 12px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--muted);
}

.loader-wrap {
  width: 288px;
  position: relative;
  margin-top: 40px;
}

.loader-camel {
  position: absolute;
  width: 46px;
  top: -40px;
  left: -23px;
  transition: none;
}

.camel-img {
  display: block;
  width: 100%;
  height: auto;
  animation: camelBob .5s ease-in-out infinite;
}

.loader-line {
  height: 1px;
  background: var(--surface);
  position: relative;
}

.loader-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
}

.loader-percent {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

@keyframes camelBob {
  0%,100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-3px) rotate(-1.5deg);
  }
}

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

.narrow {
  width: min(1000px, calc(100% - 48px));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background .5s ease, border-color .5s ease, backdrop-filter .5s ease;
}

.site-header.scrolled {
  background: rgba(18, 13, 9, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90, 62, 43, .4);
}

.header-inner {
  height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 24px;
}

.brand-button,.footer-logo-button,.footer-wordmark {
  background: none;
  border: 0;
  padding: 0;
}

.header-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: opacity .2s ease;
}

.brand-button:hover .header-logo {
  opacity: .85;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 22px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 16px;
}

.nav-link {
  position: relative;
  padding-bottom: 2px;
  border: 0;
  background: none;
  color: var(--sand-soft);
  font-size: 12.5px;
  letter-spacing: .07em;
  transition: color .3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--gold);
  transition: left .3s ease, right .3s ease;
}

.nav-link:hover {
  color: var(--gold-bright);
}

.nav-link:hover::after {
  left: 0;
  right: 0;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  transition: color .3s ease, transform .3s ease, box-shadow .3s ease;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 500;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  transform: translateX(-101%);
  transition: transform .4s cubic-bezier(.22,.85,.32,1);
  z-index: 0;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(199, 154, 92, .38);
}

.btn:active {
  transform: translateY(0) scale(.98);
}

.btn span {
  position: relative;
  z-index: 1;
  transition: color .3s ease;
}

.btn-outline {
  padding: 10px 24px;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold-bright);
}

.btn-outline:hover span {
  color: var(--deep);
}

.btn-solid {
  padding: 14px 32px;
  border: 1px solid var(--gold);
  background: var(--gold-gradient);
  color: var(--deep);
}

.btn-solid::before {
  background: linear-gradient(135deg, var(--gold) 0%, var(--copper) 100%);
}

.btn.small {
  padding: 10px 20px;
  font-size: 11px;
}

.hamburger {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: .25s;
}

.mobile-menu {
  display: none;
}

.mobile-menu-backdrop {
  display: none;
}

.hero-scroll {
  height: 230vh;
}

.hero-pin {
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
  background: var(--deep);
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  filter: blur(1.8px) saturate(1.06) brightness(.97);
  transform: scale(1.015);
  transition: opacity 1.1s ease;
}

.hero-canvas.loaded {
  opacity: .88;
}

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

.hero-overlay-one {
  background: linear-gradient(to bottom, rgba(18, 13, 9, .55) 0%, rgba(18, 13, 9, .3) 40%, rgba(18, 13, 9, .75) 100%);
}

.hero-overlay-two {
  background: radial-gradient(ellipse at center, transparent 30%, rgba(18, 13, 9, .5) 100%);
}

.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  will-change: transform, opacity;
}

.hero-text-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .25s cubic-bezier(.16,.8,.24,1);
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .5em;
  color: var(--gold);
  text-transform: uppercase;
  transition: letter-spacing .5s ease, color .5s ease;
}

.hero-text:hover .eyebrow {
  letter-spacing: .62em;
  color: var(--gold-bright);
}

.hero-text h1 {
  font-family: var(--display);
  font-size: clamp(30px, 5.4vw, 60px);
  line-height: 1.15;
  font-weight: 450;
  max-width: 900px;
  margin: 0 0 20px;
  transition: text-shadow .6s ease;
  cursor: default;
}

.hero-text h1:hover {
  text-shadow: 0 0 36px rgba(234, 201, 138, .45);
}

.hero-subtitle {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--accent);
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: .06em;
}

.gold-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), var(--copper), transparent);
  margin-inline: auto;
  border-radius: var(--radius-pill);
}

.mt-32 {
  margin-top: 32px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-32 {
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.hero-btn {
  min-width: 140px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: .6;
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-indicator div {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: bounce 1.4s ease-in-out infinite;
}

.section {
  padding: 96px 0;
}

.stats-bar {
  position: relative;
  z-index: 5;
  background: var(--panel);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  padding: 0 12px;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-number {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  margin: 0;
  color: var(--sand-soft);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width:820px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }
  .stat-item:nth-child(2) {
    border-right: 0;
  }
}

.section-dark {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(199, 154, 92, .05), transparent 60%),
    var(--deep);
}

.section-panel {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(199, 154, 92, .06), transparent 60%),
    var(--panel);
}

.section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.section-heading h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 400;
  color: var(--sand);
}

.section-copy {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--sand-soft);
  font-size: 16px;
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(46px) scale(.97);
  transition: opacity .9s cubic-bezier(.16,.8,.24,1), transform .9s cubic-bezier(.16,.8,.24,1);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-left {
  transform: translateX(-64px) translateY(12px);
}

.reveal-left.visible {
  transform: translateX(0) translateY(0);
}

.reveal-right {
  transform: translateX(64px) translateY(12px);
}

.reveal-right.visible {
  transform: translateX(0) translateY(0);
}

.reveal-scale {
  transform: scale(.88);
}

.reveal-scale.visible {
  transform: scale(1);
}


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

.card-fly-in {
  animation: cardFlyIn .7s cubic-bezier(.16,.8,.24,1) backwards;
}

.delay-1 {
  transition-delay: .1s;
}

.delay-2 {
  transition-delay: .2s;
}

.delay-3 {
  transition-delay: .3s;
}

.delay-4 {
  transition-delay: .4s;
}

.delay-5 {
  transition-delay: .5s;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.destination-card,.package-card {
  min-width: 0;
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--panel);
}

.destination-card .card-img-wrap {
  height: 420px;
}

.card-img-wrap>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter .4s ease, transform .4s ease;
}

.card-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to bottom, rgba(18, 13, 9, .8), transparent);
}

.card-top p {
  margin: 0 0 4px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
}

.card-top h3 {
  margin: 0;
  color: var(--sand);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
}

.card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 13, 9, .94) 0%, rgba(18, 13, 9, .62) 50%, rgba(199, 154, 92, .1) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.card-hover-overlay p {
  margin: 0 0 16px;
  color: var(--sand-soft);
  font-size: 13px;
  line-height: 1.6;
}

.card-hover-overlay ul {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.card-hover-overlay li {
  font-size: 12px;
  color: var(--sand-soft);
}

.card-hover-overlay li::before {
  content: "◆";
  color: var(--gold);
  font-size: 7px;
  margin-right: 7px;
  vertical-align: 2px;
}

.destination-card:hover .card-img-wrap>img,.package-card:hover .card-img-wrap>img {
  filter: blur(3px);
  transform: scale(1.05);
}

.destination-card:hover .card-hover-overlay,.package-card:hover .card-hover-overlay {
  opacity: 1;
  pointer-events: auto;
}

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

.package-img {
  height: 480px;
}

.package-card h3 {
  font-size: 18px;
}

.duration {
  color: var(--gold)!important;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px!important;
  margin-bottom: 10px!important;
}

.price {
  font-family: var(--display);
  font-size: 19px!important;
  color: var(--gold-bright)!important;
  margin: 0!important;
}

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

.service-card {
  height: 380px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--panel);
}

.service-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) brightness(.3);
  transform: scale(1.1);
}

.service-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(199, 154, 92, .25);
}

.service-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}

.service-icon {
  color: var(--gold);
  margin-bottom: 16px;
  transition: transform .3s ease, color .3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  color: var(--gold-bright);
}

.service-content h3 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  color: var(--sand);
}

.service-content p {
  max-width: 230px;
  margin: 0 0 24px;
  color: var(--sand-soft);
  font-size: 13px;
  line-height: 1.65;
}

.ornament-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 16px;
}

.ornament-divider i {
  height: 1px;
  flex: 0 1 80px;
}

.ornament-divider i:first-child {
  background: linear-gradient(to right, transparent, var(--gold));
}

.ornament-divider i:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}


#experience-grid .experience-card:nth-child(1)  { grid-column: 1 / 3; grid-row: 1 / 3; }
#experience-grid .experience-card:nth-child(2)  { grid-column: 3 / 4; grid-row: 1 / 3; }
#experience-grid .experience-card:nth-child(3)  { grid-column: 4 / 5; grid-row: 1 / 2; }
#experience-grid .experience-card:nth-child(4)  { grid-column: 4 / 5; grid-row: 2 / 3; }
#experience-grid .experience-card:nth-child(5)  { grid-column: 1 / 2; grid-row: 3 / 4; }
#experience-grid .experience-card:nth-child(6)  { grid-column: 1 / 2; grid-row: 4 / 5; }
#experience-grid .experience-card:nth-child(7)  { grid-column: 2 / 3; grid-row: 3 / 5; }
#experience-grid .experience-card:nth-child(8)  { grid-column: 3 / 5; grid-row: 3 / 5; }
#experience-grid .experience-card:nth-child(9)  { grid-column: 1 / 3; grid-row: 5 / 7; }
#experience-grid .experience-card:nth-child(10) { grid-column: 3 / 4; grid-row: 5 / 6; }
#experience-grid .experience-card:nth-child(11) { grid-column: 3 / 4; grid-row: 6 / 7; }
#experience-grid .experience-card:nth-child(12) { grid-column: 4 / 5; grid-row: 5 / 7; }
#experience-grid .experience-card:nth-child(13) { grid-column: 1 / 3; grid-row: 7 / 8; }
#experience-grid .experience-card:nth-child(14) { grid-column: 3 / 5; grid-row: 7 / 8; }

.experience-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--panel);
  cursor: pointer;
}

.experience-card .exp-stage,.experience-card .exp-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.experience-card .exp-stage img {
  object-fit: cover;
  z-index: 2;
  transition: filter .5s ease, transform .5s ease;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(199, 154, 92, .6);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 10;
}

.experience-card:hover::after {
  opacity: 1;
}

.experience-card:hover .exp-stage img {
  filter: blur(4px) brightness(.55);
  transform: scale(1.06);
}

.experience-card p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  margin: 0;
  text-align: center;
  color: var(--sand);
  font-family: var(--accent);
  font-size: 24px;
  letter-spacing: .05em;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 20;
}

.experience-card:hover p {
  opacity: 1;
}

.experience-mobile {
  display: none;
}

@keyframes slideOutLeft {
  to {
    transform: translateX(-100%);
  }
}

@keyframes slideOutRight {
  to {
    transform: translateX(100%);
  }
}

@keyframes slideOutTop {
  to {
    transform: translateY(-100%);
  }
}

@keyframes slideOutBottom {
  to {
    transform: translateY(100%);
  }
}

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

.review-card {
  background: var(--panel);
  border: 1px solid var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
}

.quote {
  font-family: var(--display);
  font-size: 64px;
  line-height: .7;
  margin-bottom: 16px;
  color: var(--gold);
  opacity: .6;
}

.review-card>p {
  margin: 0 0 24px;
  color: var(--sand-soft);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
}

.review-name {
  margin: 0;
  color: var(--sand);
  font-size: 14px;
}

.review-place {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.review-dot {
  height: 8px;
  width: 8px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--surface);
  transition: all .3s;
}

.review-dot.active {
  width: 24px;
  border-radius: 999px;
  background: var(--gold);
}

.about-container {
  text-align: center;
  max-width: 1000px;
}

.about-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.about-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
}

.about-copy {
  max-width: 560px;
  margin-bottom: 48px;
}

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

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all .3s ease;
}

.contact-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(199, 154, 92, .12);
}

.contact-icon {
  color: var(--gold);
}

.contact-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  font-size: 10px;
  margin-bottom: 4px;
}

.contact-card b {
  display: block;
  color: var(--sand-soft);
  font-size: 12px;
  font-weight: 400;
  word-break: break-all;
}

.site-footer {
  padding: 64px 0;
  background: var(--deep);
  border-top: 1px solid var(--gold);
}

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

.footer-left {
  display: flex;
  justify-content: flex-start;
}

.footer-logo {
  height: 110px;
  width: auto;
}

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

.footer-wordmark {
  display: block;
  width: 100%;
  color: inherit;
}

.footer-wordmark p {
  margin: 0 0 4px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .4em;
  text-transform: uppercase;
  font-weight: 300;
}

.footer-wordmark h3 {
  margin: 0;
  color: var(--sand);
  font-family: var(--display);
  font-size: 40px;
  letter-spacing: .14em;
  font-weight: 400;
}

.footer-wordmark em {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-family: var(--accent);
  font-size: 14px;
  letter-spacing: .04em;
}

.copyright {
  margin: 0;
  color: wheat;
  font-size: 11px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.footer-right a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--muted);
  transition: color .2s ease, transform .2s ease;
}

.footer-right a:hover {
  color: var(--gold);
  transform: translateX(-2px);
}

.footer-right a svg {
  flex-shrink: 0;
  color: var(--gold);
}

.footer-right span {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.footer-right small {
  color: wheat;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 9px;
  margin-bottom: 2px;
}

.footer-right b {
  color: var(--muted);
  font-weight: 400;
  font-size: 11px;
  transition: color .2s;
}

.footer-right a:hover b {
  color: var(--gold);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 8888;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(10, 6, 4, .85);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .3s ease;
}

.modal-backdrop.show {
  opacity: 1;
}

.modal {
  width: min(100%, 512px);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  display: flex;
  flex-direction: column;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(199, 154, 92, .16);
  transform: scale(.96);
  opacity: 0;
  animation: modalIn .35s ease forwards;
}

.modal-head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.modal-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  color: var(--sand);
}

.modal-close {
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 32px;
  line-height: 1;
  transition: color .2s;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.form-stack {
  display: grid;
  gap: 16px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 10px;
}

.form-field input,.form-field select,.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  color: var(--sand);
  background: var(--surface);
  transition: border-color .2s;
}

.form-field input::placeholder,.form-field textarea::placeholder {
  color: var(--muted);
}

.form-field input:focus,.form-field select:focus,.form-field textarea:focus {
  border-color: var(--gold);
}

.form-field textarea {
  resize: none;
}

.modal-submit {
  width: 100%;
  padding: 12px;
}

.form-stack {
  transition: opacity .25s ease, transform .25s ease;
}

.form-stack-exit {
  opacity: 0;
  transform: scale(.97);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 4px 4px;
}

.form-success.show {
  display: flex;
  animation: successIn .55s cubic-bezier(.16,.8,.24,1) both;
}

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

.success-check {
  color: var(--gold);
  margin-bottom: 20px;
}

.success-check-ring {
  stroke-dasharray: 208;
  stroke-dashoffset: 208;
  animation: ringDraw .6s ease forwards;
}

.success-check-mark {
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: markDraw .4s ease forwards .55s;
}

@keyframes ringDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes markDraw {
  to {
    stroke-dashoffset: 0;
  }
}

.form-success h4 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form-success p {
  margin: 0 0 28px;
  max-width: 360px;
  color: var(--sand-soft);
  font-size: 14px;
  line-height: 1.7;
}

.success-done {
  min-width: 140px;
}

@keyframes modalIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounce {
  0%,100% {
    transform: scaleY(.7);
  }
  50% {
    transform: scaleY(1.2);
  }
}

@media (max-width:1100px) {
  .destination-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Card photos scale with the card instead of keeping the desktop's
     fixed pixel height — that's what was stretching them into tall,
     narrow slivers anywhere between the 2/3-column tablet layouts. */
  .destination-card .card-img-wrap {
    height: auto;
    aspect-ratio: 3 / 4;
  }
  .package-img {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .experience-grid {
    display: none;
  }
  .experience-mobile {
    display: grid!important;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  /* These were previously only defined inside the 820px breakpoint,
     so this 3-column tablet tier had unstyled images/captions —
     shared here so every tier that renders the mobile experience
     stack actually gets sized photos with the caption overlay. */
  .experience-mobile .mobile-exp {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1 / 1;
  }
  .experience-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .experience-mobile div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(18, 13, 9, .9), transparent);
  }
  .experience-mobile p {
    margin: 0;
    color: var(--sand);
    font-family: var(--accent);
    font-size: 15px;
  }
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:820px) {
  .container,.narrow {
    width: min(100% - 32px, 720px);
  }
  .desktop-nav,.desktop-connect {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 997;
    background: rgba(9, 6, 4, .68);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
  }
  .mobile-menu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(84vw, 340px);
    z-index: 1000;
    background: var(--panel);
    border-left: 1px solid var(--border);
    box-shadow: -24px 0 60px rgba(0, 0, 0, .45);
    align-items: stretch;
    justify-content: flex-start;
    padding: 96px 36px 40px;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.22,.85,.34,1);
  }
  .mobile-menu.open {
    transform: translateX(0);
  }
  .mobile-menu-close {
    position: absolute;
    top: 28px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: none;
    color: var(--gold);
    font-size: 20px;
    line-height: 1;
    transition: border-color .25s ease, color .25s ease, transform .25s ease;
  }
  .mobile-menu-close:hover {
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: rotate(90deg);
  }
  .mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
    width: 100%;
  }
  .mobile-menu-nav>button:not(.btn) {
    position: relative;
    border: 0;
    background: none;
    color: var(--sand);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-family: var(--display);
    font-size: 24px;
    padding-left: 0;
    transition: color .25s ease, padding-left .25s ease;
  }
  .mobile-menu-nav>button:not(.btn)::before {
    content: "";
    position: absolute;
    left: -18px;
    top: 50%;
    width: 8px;
    height: 1px;
    background: var(--gold);
    opacity: 0;
    transition: opacity .25s ease, left .25s ease;
  }
  .mobile-menu-nav>button:not(.btn):hover {
    color: var(--gold-bright);
    padding-left: 18px;
  }
  .mobile-menu-nav>button:not(.btn):hover::before {
    left: 0;
    opacity: 1;
  }
  .mobile-connect {
    margin-top: 20px;
    width: 100%;
  }
  .hero-text h1 {
    font-size: clamp(32px, 7.5vw, 52px);
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-left {
    justify-content: center;
  }
  .footer-right {
    align-items: center;
  }
  .experience-grid {
    display: none;
  }
  .experience-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .experience-mobile .mobile-exp {
    height: 220px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
  }
  .experience-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .experience-mobile div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(18, 13, 9, .9), transparent);
  }
  .experience-mobile p {
    margin: 0;
    color: var(--sand);
    font-family: var(--accent);
    font-size: 15px;
  }
}

@media (max-width:560px) {
  .section {
    padding: 80px 0;
  }
  .section-heading {
    margin-bottom: 48px;
  }
  .section-heading h2 {
    font-size: 38px;
  }
  .destination-grid,.package-grid {
    grid-template-columns: 1fr;
  }
  .destination-card .card-img-wrap {
    height: 420px;
  }
  .package-img {
    height: 480px;
  }
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-buttons {
    flex-direction: column;
    width: min(100%, 280px);
  }
  .hero-btn {
    width: 100%;
  }
  .preloader-logo {
    width: 170px;
  }
  .loader-wrap {
    width: 260px;
  }
}

.experience-card .exp-stage .experience-previous {
  z-index: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card .exp-stage .experience-current {
  z-index: 2;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .15s ease;
}

.experience-card .exp-stage .experience-current.shown {
  opacity: 1;
}



/* ==========================================================================
   RESPONSIVE HARDENING
   --------------------------------------------------------------------------
   Layout-only overrides. The hero scroll distance remains consistent and
   the existing animation/interaction selectors are intentionally preserved.
   ========================================================================== */

/* Prevent intrinsic content from forcing horizontal overflow. */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  min-width: 0;
}

main,
section,
.site-shell,
.container,
.narrow {
  min-width: 0;
}

/* Fluid media + form controls across all viewport sizes. */
img,
canvas,
svg,
video {
  max-width: 100%;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

/* A little breathing room on large displays without changing the visual system. */
.section {
  padding-block: clamp(72px, 7vw, 96px);
}

.section-heading {
  padding-inline: clamp(0px, 2vw, 20px);
}

/* Keep the hero's scroll trigger intact while using the
   browser's dynamic viewport on modern mobile browsers. */
.hero-scroll {
  height: 230vh;
}

.hero-pin {
  height: 100vh;
}

.hero-text {
  padding:
    clamp(92px, 13vh, 132px)
    clamp(18px, 5vw, 56px)
    clamp(72px, 10vh, 110px);
}

.hero-text h1 {
  width: min(100%, 900px);
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.hero-subtitle {
  max-width: min(100%, 720px);
  text-wrap: balance;
}

.hero-buttons {
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 100%;
}

.scroll-indicator {
  bottom: max(24px, env(safe-area-inset-bottom));
}

/* Header stays visually identical, but can no longer be squeezed by medium
   screens or long inline content. */
.header-inner {
  width: min(1280px, calc(100% - 32px));
  min-width: 0;
}

.header-actions {
  min-width: 0;
}

.desktop-nav {
  min-width: 0;
  flex-wrap: wrap;
}

.header-logo {
  max-width: 180px;
}

/* Medium-width desktop/tablet: prevent nav collision before the mobile menu
   is actually needed. */
@media (max-width: 980px) {
  .container,
  .narrow {
    width: min(calc(100% - 40px), 920px);
  }

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

  .hamburger {
    display: flex;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    height: 72px;
  }

  .header-actions {
    justify-self: end;
  }

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

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

  .destination-card .card-img-wrap {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .package-img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

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

  .experience-grid {
    display: none;
  }

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

  .experience-mobile .mobile-exp {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 1 / 1;
    min-width: 0;
  }

  .experience-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .experience-mobile div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(18, 13, 9, .9), transparent);
  }

  .experience-mobile p {
    margin: 0;
    color: var(--sand);
    font-family: var(--accent);
    font-size: 15px;
    line-height: 1.25;
  }

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

/* Tablet / larger phones. */
@media (max-width: 820px) {
  .container,
  .narrow {
    width: min(calc(100% - 32px), 720px);
  }

  .section-heading h2 {
    font-size: clamp(36px, 7vw, 52px);
    text-wrap: balance;
  }

  .section-copy {
    width: min(100%, 620px);
    font-size: 15px;
  }

  .stats-bar {
    padding-block: 44px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .stat-item {
    border-right: 1px solid var(--border);
  }

  .stat-item:nth-child(2n) {
    border-right: 0;
  }

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

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

  .destination-card .card-img-wrap {
    aspect-ratio: 4 / 5;
  }

  .package-img {
    aspect-ratio: 4 / 5;
  }

  .card-hover-overlay {
    padding: 20px;
  }

  .card-hover-overlay p {
    font-size: 12.5px;
  }

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

  .service-card {
    height: auto;
    min-height: 330px;
    aspect-ratio: 1 / 1.05;
  }

  .service-content {
    padding: 24px;
  }

  .service-content h3 {
    font-size: clamp(27px, 5vw, 32px);
  }

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

  .review-card {
    padding: 24px;
  }

  .about-logo {
    width: min(180px, 58vw);
    height: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .footer-left {
    justify-content: center;
  }

  .footer-right {
    align-items: center;
  }

  .footer-right span {
    text-align: center;
  }

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

  .modal-backdrop {
    align-items: flex-start;
    padding:
      max(12px, env(safe-area-inset-top))
      12px
      max(12px, env(safe-area-inset-bottom));
    overflow-y: auto;
  }

  .modal {
    width: min(100%, 560px);
    max-height: calc(100dvh - max(24px, env(safe-area-inset-top) + env(safe-area-inset-bottom)));
    margin: auto 0;
  }

  .modal-head {
    padding: 20px;
  }

  .modal-head h3 {
    font-size: clamp(21px, 5vw, 24px);
    padding-right: 12px;
  }

  .modal-body {
    padding: 20px;
    -webkit-overflow-scrolling: touch;
  }

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

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-width: 0;
    font-size: 16px;
  }
}

/* Phones. */
@media (max-width: 560px) {
  .container,
  .narrow {
    width: calc(100% - 28px);
  }

  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    width: calc(100% - 24px);
    height: 64px;
  }

  .header-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
  }

  .hamburger {
    padding: 8px 4px 8px 8px;
  }

  .hero-pin {
    min-height: 500px;
  }

  .hero-text {
    justify-content: center;
    padding:
      calc(74px + env(safe-area-inset-top))
      16px
      calc(78px + env(safe-area-inset-bottom));
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .32em;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .hero-text h1 {
    font-size: clamp(30px, 9.5vw, 46px);
    line-height: 1.08;
    width: min(100%, 520px);
    margin-bottom: 16px;
  }

  .hero-subtitle {
    font-size: clamp(15px, 4.3vw, 18px);
    line-height: 1.45;
    width: min(100%, 430px);
  }

  .gold-divider {
    width: 64px;
  }

  .hero-buttons {
    width: min(100%, 300px);
    flex-direction: column;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-btn {
    width: 100%;
    min-width: 0;
  }

  .scroll-indicator {
    bottom: max(18px, env(safe-area-inset-bottom));
  }

  .scroll-indicator span {
    font-size: 9px;
    letter-spacing: .22em;
  }

  .scroll-indicator div {
    height: 30px;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.05;
  }

  .section-copy {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.65;
  }

  .stats-bar {
    padding-block: 36px;
  }

  .stats-grid {
    row-gap: 26px;
  }

  .stat-item {
    padding-inline: 6px;
  }

  .stat-number {
    font-size: clamp(28px, 8vw, 38px);
  }

  .stat-label {
    font-size: 9px;
    line-height: 1.4;
    letter-spacing: .08em;
  }

  .destination-grid,
  .package-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .destination-grid,
  .package-grid {
    gap: 14px;
  }

  .destination-card .card-img-wrap {
    aspect-ratio: 4 / 5;
  }

  .package-img {
    aspect-ratio: 4 / 5;
  }

  .card-top {
    padding: 14px;
  }

  .card-top h3 {
    font-size: 19px;
    line-height: 1.18;
  }

  .card-hover-overlay {
    padding: 18px;
  }

  .card-hover-overlay ul {
    gap: 5px;
  }

  .card-hover-overlay li {
    font-size: 11px;
    line-height: 1.45;
  }

  .service-grid {
    gap: 14px;
  }

  .service-card {
    min-height: 320px;
    aspect-ratio: auto;
    height: 330px;
  }

  .service-content {
    padding: 22px;
  }

  .service-content p {
    width: min(100%, 280px);
    font-size: 12px;
  }

  .experience-mobile {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .experience-mobile .mobile-exp {
    aspect-ratio: 16 / 10;
  }

  .experience-mobile p {
    font-size: 15px;
  }

  .review-card {
    padding: 22px 18px;
  }

  .review-card > p {
    font-size: 13px;
  }

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

  .contact-card {
    padding: 18px 16px;
  }

  .footer-logo {
    width: min(170px, 56vw);
    height: auto;
  }

  .footer-wordmark h3 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .footer-wordmark em {
    font-size: 13px;
  }

  .mobile-menu {
    width: min(88vw, 340px);
    padding:
      calc(82px + env(safe-area-inset-top))
      28px
      max(32px, env(safe-area-inset-bottom));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu-nav {
    gap: 22px;
  }

  .mobile-menu-nav > button:not(.btn) {
    font-size: clamp(21px, 7vw, 24px);
  }

  .mobile-menu-close {
    top: max(20px, calc(env(safe-area-inset-top) + 12px));
    right: 18px;
  }

  .modal-backdrop {
    padding:
      max(8px, env(safe-area-inset-top))
      8px
      max(8px, env(safe-area-inset-bottom));
  }

  .modal {
    width: 100%;
    max-height: calc(100dvh - max(16px, env(safe-area-inset-top) + env(safe-area-inset-bottom)));
    border-radius: 16px;
  }

  .modal-head {
    padding: 16px 18px;
  }

  .modal-close {
    font-size: 28px;
    flex: 0 0 auto;
  }

  .modal-body {
    padding: 18px;
  }

  .form-stack {
    gap: 14px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-field label {
    font-size: 9px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 12px 13px;
  }

  .modal-submit {
    padding: 13px;
  }

  .form-success {
    padding-inline: 4px;
  }
}

/* Very small phones: no clipping, no oversized decorative spacing. */
@media (max-width: 380px) {
  .container,
  .narrow {
    width: calc(100% - 22px);
  }

  .header-inner {
    width: calc(100% - 18px);
  }

  .header-logo {
    height: 36px;
    max-width: 132px;
  }

  .hero-text h1 {
    font-size: clamp(28px, 10.5vw, 38px);
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-buttons {
    width: min(100%, 270px);
  }

  .section-heading h2 {
    font-size: clamp(31px, 11vw, 38px);
  }

  .card-hover-overlay {
    padding: 16px;
  }

  .service-card {
    height: 310px;
  }

  .modal-head h3 {
    font-size: 20px;
  }

  .modal-body {
    padding: 16px;
  }
}

/* Landscape phones / short viewports: preserve the hero composition instead
   of letting the browser chrome squash the headline and buttons together. */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 620px) {
  .hero-pin {
    min-height: 420px;
  }

  .hero-text {
    justify-content: center;
    padding: 68px 28px 56px;
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  .hero-text h1 {
    font-size: clamp(28px, 6vw, 42px);
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .gold-divider {
    margin-top: 18px;
  }

  .hero-buttons {
    flex-direction: row;
    width: auto;
    margin-top: 18px;
  }

  .hero-btn {
    width: auto;
    min-width: 130px;
  }

  .scroll-indicator {
    display: none;
  }

  .modal {
    max-height: calc(100dvh - 12px);
  }
}

/* Touch devices do not get stuck with desktop hover overlays. The existing
   hover animations remain untouched for mouse/trackpad users. */
@media (hover: none) and (pointer: coarse) {
  .destination-card:hover .card-img-wrap > img,
  .package-card:hover .card-img-wrap > img,
  .destination-card:hover .card-hover-overlay,
  .package-card:hover .card-hover-overlay {
    filter: none;
    transform: none;
  }

  .destination-card .card-hover-overlay,
  .package-card .card-hover-overlay {
    opacity: 1;
    pointer-events: auto;
    background: linear-gradient(
      to top,
      rgba(18, 13, 9, .94) 0%,
      rgba(18, 13, 9, .54) 58%,
      rgba(18, 13, 9, .12) 100%
    );
  }
}


/* ========================================================================== */
/* RAJASTHAN EXPERIENCE — premium extension, same Tunes of Dunes visual DNA   */
/* ========================================================================== */

#rajasthan-experience {
  scroll-margin-top: 92px;
}

.signature-title {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .26em;
  margin: 0;
  color: var(--sand);
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.03em;
  text-wrap: balance;
  cursor: default;
  isolation: isolate;
}

.signature-title span {
  position: relative;
  display: inline-block;
  transition:
    transform .55s cubic-bezier(.16, 1, .3, 1),
    color .4s ease,
    text-shadow .4s ease;
}

.signature-title span:first-child {
  font-family: var(--accent);
  font-style: italic;
  color: var(--gold-light);
  transform-origin: right center;
}

.signature-title span:last-child {
  font-family: var(--display);
  color: var(--sand);
  transform-origin: left center;
}

.signature-title::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -.28em;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--gold-light),
    var(--gold),
    transparent
  );
  transform: scaleX(.42);
  transform-origin: center;
  opacity: .58;
  transition:
    transform .6s cubic-bezier(.16, 1, .3, 1),
    opacity .45s ease;
}

.signature-title:hover span:first-child {
  color: var(--gold-light);
  transform: translateX(-4px) translateY(-2px) rotate(-1deg);
  text-shadow: 0 8px 30px rgba(199, 154, 92, .18);
}

.signature-title:hover span:last-child {
  color: #fff7e8;
  transform: translateX(4px) translateY(2px);
  text-shadow: 0 10px 34px rgba(199, 154, 92, .16);
}

.signature-title:hover::after {
  transform: scaleX(1);
  opacity: .95;
}

.rajasthan-heading {
  margin-bottom: 56px;
}

.rajasthan-heading h2 {
  letter-spacing: -.025em;
}

.rajasthan-experience-section {
  position: relative;
}

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

.rajasthan-experience-card {
  position: relative;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--panel);
  border: 1px solid rgba(199, 154, 92, .16);
  cursor: pointer;
  isolation: isolate;
  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    border-color .35s ease,
    box-shadow .45s ease;
}

.rajasthan-card-media,
.rajasthan-card-media > img,
.rajasthan-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rajasthan-card-media {
  overflow: hidden;
}

.rajasthan-card-media > img {
  object-fit: cover;
  transform: scale(1.01);
  transition:
    transform .8s cubic-bezier(.16, 1, .3, 1),
    filter .6s ease;
}

.rajasthan-card-shade {
  background:
    linear-gradient(
      180deg,
      rgba(18, 13, 9, .10) 8%,
      rgba(18, 13, 9, .22) 38%,
      rgba(18, 13, 9, .90) 100%
    );
  z-index: 1;
  transition: background .45s ease;
}


.rajasthan-card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
}

.rajasthan-card-kicker {
  margin: 0 0 8px;
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
  opacity: .88;
  transform: translateY(8px);
  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    opacity .35s ease;
}

.rajasthan-card-content h3 {
  margin: 0;
  color: var(--sand);
  font-family: var(--accent);
  font-size: clamp(27px, 2.3vw, 39px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.018em;
  text-wrap: balance;
  transition:
    transform .5s cubic-bezier(.16, 1, .3, 1),
    color .35s ease;
}

.rajasthan-card-content ul {
  display: grid;
  gap: 8px;
  max-height: 0;
  margin: 14px 0 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  color: rgba(246, 237, 221, .88);
  font-size: 12px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  transition:
    max-height .6s cubic-bezier(.16, 1, .3, 1),
    opacity .4s ease,
    transform .5s cubic-bezier(.16, 1, .3, 1);
}

.rajasthan-card-content li {
  position: relative;
  padding-left: 14px;
}

.rajasthan-card-content li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 9px;
}

.rajasthan-experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 1px solid rgba(199, 154, 92, .65);
  border-radius: inherit;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.rajasthan-experience-card:hover,
.rajasthan-experience-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(199, 154, 92, .5);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

.rajasthan-experience-card:hover::after,
.rajasthan-experience-card:focus-within::after {
  opacity: 1;
}

.rajasthan-experience-card:hover .rajasthan-card-media > img,
.rajasthan-experience-card:focus-within .rajasthan-card-media > img {
  transform: scale(1.08);
  filter: saturate(.86) brightness(.64);
}

.rajasthan-experience-card:hover .rajasthan-card-shade,
.rajasthan-experience-card:focus-within .rajasthan-card-shade {
  background:
    linear-gradient(
      180deg,
      rgba(18, 13, 9, .12) 8%,
      rgba(18, 13, 9, .30) 36%,
      rgba(18, 13, 9, .94) 100%
    );
}


.rajasthan-experience-card:hover .rajasthan-card-kicker,
.rajasthan-experience-card:focus-within .rajasthan-card-kicker {
  opacity: 1;
  transform: translateY(0);
}

.rajasthan-experience-card:hover .rajasthan-card-content h3,
.rajasthan-experience-card:focus-within .rajasthan-card-content h3 {
  color: #fff7e8;
  transform: translateY(-2px);
}

.rajasthan-experience-card:hover .rajasthan-card-content ul,
.rajasthan-experience-card:focus-within .rajasthan-card-content ul {
  max-height: 180px;
  opacity: 1;
  transform: translateY(0);
}

/* Keep the new section comfortable on the same breakpoints as the site. */
@media (max-width: 1100px) {
  .rajasthan-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rajasthan-experience-card {
    min-height: 460px;
  }

  .rajasthan-card-content h3 {
    font-size: clamp(30px, 4vw, 42px);
  }
}

@media (max-width: 640px) {
  #rajasthan-experience {
    scroll-margin-top: 78px;
  }

  .signature-title {
    font-size: clamp(41px, 13vw, 58px);
    gap: .18em;
  }

  .signature-title::after {
    left: 8%;
    right: 8%;
  }

  .rajasthan-heading {
    margin-bottom: 38px;
  }

  .rajasthan-experience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rajasthan-experience-card {
    min-height: 430px;
  }

  .rajasthan-card-content {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .rajasthan-card-content h3 {
    font-size: clamp(33px, 11vw, 47px);
  }

  .rajasthan-card-content ul {
    max-height: none;
    opacity: 1;
    transform: none;
  }

  .rajasthan-card-kicker {
    opacity: 1;
    transform: none;
  }

  .rajasthan-experience-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 380px) {
  .rajasthan-experience-card {
    min-height: 400px;
  }

  .rajasthan-card-content h3 {
    font-size: 31px;
  }

  .rajasthan-card-content ul {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signature-title span,
  .signature-title::after,
  .rajasthan-experience-card,
  .rajasthan-card-media > img,
  .rajasthan-card-shade,
  .rajasthan-card-kicker,
  .rajasthan-card-content h3,
  .rajasthan-card-content ul {
    transition: none !important;
  }
}

/* ========================================================================== */
/* RAJASTHAN EXPERIENCE — cinematic section-entry interaction                 */
/* ========================================================================== */
.rajasthan-experience-section .rajasthan-heading {
  opacity: .45;
  transform: translateY(28px);
  filter: blur(4px);
  transition:
    opacity .85s cubic-bezier(.16,1,.3,1),
    transform .85s cubic-bezier(.16,1,.3,1),
    filter .85s cubic-bezier(.16,1,.3,1);
}

.rajasthan-experience-section.is-inview .rajasthan-heading {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.rajasthan-experience-section .rajasthan-experience-card {
  --entry-order: 0;
  clip-path: inset(12% 0 0 0 round var(--radius-md));
  filter: blur(4px) saturate(.72);
  opacity: 0;
  transform: translateY(52px) scale(.965);
  transition:
    opacity .8s cubic-bezier(.16,1,.3,1),
    transform .9s cubic-bezier(.16,1,.3,1),
    clip-path 1s cubic-bezier(.16,1,.3,1),
    filter .85s ease,
    border-color .35s ease,
    box-shadow .45s ease;
  transition-delay: 0ms;
}

.rajasthan-experience-section.is-inview .rajasthan-experience-card {
  opacity: 1;
  clip-path: inset(0 0 0 0 round var(--radius-md));
  filter: blur(0) saturate(1);
  transform: translateY(0) scale(1);
  transition-delay: calc(var(--entry-order) * 120ms);
}

.rajasthan-experience-section.is-inview .rajasthan-experience-card:hover,
.rajasthan-experience-section.is-inview .rajasthan-experience-card:focus-within {
  transform: translateY(-8px) scale(1.005);
}

@media (max-width: 640px) {
  .rajasthan-experience-section .rajasthan-experience-card {
    transform: translateY(38px) scale(.975);
  }

  .rajasthan-experience-section.is-inview .rajasthan-experience-card:hover,
  .rajasthan-experience-section.is-inview .rajasthan-experience-card:focus-within {
    transform: translateY(-4px) scale(1.005);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rajasthan-experience-section .rajasthan-heading,
  .rajasthan-experience-section .rajasthan-experience-card {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
    transition: none !important;
  }
}


/* ==========================================================================
   SIGNATURE EXPERIENCES — editorial image refresh
   Images are intentionally matched to each experience; local 4K assets are
   used where the supplied library was a strong match, with researched
   Rajasthan-specific imagery filling the remaining gaps.
   ========================================================================== */

#experience-grid.experience-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 112px;
  gap: 14px;
  align-items: stretch;
}

/* New editorial / bento arrangement */
#experience-grid .experience-card:nth-child(1)  { grid-column: 1 / 7;  grid-row: 1 / 4; }
#experience-grid .experience-card:nth-child(2)  { grid-column: 7 / 10; grid-row: 1 / 4; }
#experience-grid .experience-card:nth-child(3)  { grid-column: 10 / 13; grid-row: 1 / 3; }
#experience-grid .experience-card:nth-child(4)  { grid-column: 10 / 13; grid-row: 3 / 4; }
#experience-grid .experience-card:nth-child(5)  { grid-column: 1 / 4;  grid-row: 4 / 6; }
#experience-grid .experience-card:nth-child(6)  { grid-column: 4 / 7;  grid-row: 4 / 6; }
#experience-grid .experience-card:nth-child(7)  { grid-column: 7 / 13; grid-row: 4 / 6; }
#experience-grid .experience-card:nth-child(8)  { grid-column: 1 / 7;  grid-row: 6 / 8; }
#experience-grid .experience-card:nth-child(9)  { grid-column: 7 / 10; grid-row: 6 / 8; }
#experience-grid .experience-card:nth-child(10) { grid-column: 10 / 13; grid-row: 6 / 8; }
#experience-grid .experience-card:nth-child(11) { grid-column: 1 / 5;  grid-row: 8 / 10; }
#experience-grid .experience-card:nth-child(12) { grid-column: 5 / 9;  grid-row: 8 / 9; }
#experience-grid .experience-card:nth-child(13) { grid-column: 9 / 13; grid-row: 8 / 10; }
#experience-grid .experience-card:nth-child(14) { grid-column: 5 / 9;  grid-row: 9 / 10; }

#experience-grid .experience-card {
  border-radius: clamp(12px, 1.2vw, 18px);
}

#experience-grid .experience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 7, 5, .02) 26%, rgba(10, 7, 5, .74) 100%),
    linear-gradient(90deg, rgba(199, 154, 92, .08), transparent 55%);
  opacity: .72;
  transition: opacity .45s ease;
}

#experience-grid .experience-card::after {
  border-radius: inherit;
}

#experience-grid .experience-card:hover::before {
  opacity: .95;
}

#experience-grid .experience-card .exp-stage img {
  filter: saturate(.96) contrast(1.02);
  transition:
    filter .55s ease,
    transform .7s cubic-bezier(.16, 1, .3, 1);
}

#experience-grid .experience-card:hover .exp-stage img {
  filter: blur(2.5px) brightness(.53) saturate(1.04);
  transform: scale(1.055);
}

#experience-grid .experience-card p {
  bottom: 22px;
  padding: 0 20px;
  font-size: clamp(19px, 1.7vw, 29px);
  line-height: 1.05;
  letter-spacing: .035em;
  text-shadow: 0 3px 24px rgba(0,0,0,.5);
  transform: translateY(9px);
  transition:
    opacity .4s ease,
    transform .55s cubic-bezier(.16,1,.3,1);
}

#experience-grid .experience-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Subtle visual hierarchy without changing the existing reveal mechanics. */
#experience-grid .experience-card:nth-child(1) .exp-stage img,
#experience-grid .experience-card:nth-child(7) .exp-stage img,
#experience-grid .experience-card:nth-child(11) .exp-stage img,
#experience-grid .experience-card:nth-child(14) .exp-stage img {
  object-position: center center;
}

@media (max-width: 1180px) and (min-width: 981px) {
  #experience-grid.experience-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 118px;
    gap: 13px;
  }

  #experience-grid .experience-card:nth-child(1)  { grid-column: 1 / 4; grid-row: 1 / 4; }
  #experience-grid .experience-card:nth-child(2)  { grid-column: 4 / 6; grid-row: 1 / 3; }
  #experience-grid .experience-card:nth-child(3)  { grid-column: 6 / 7; grid-row: 1 / 3; }
  #experience-grid .experience-card:nth-child(4)  { grid-column: 4 / 7; grid-row: 3 / 4; }
  #experience-grid .experience-card:nth-child(5)  { grid-column: 1 / 3; grid-row: 4 / 6; }
  #experience-grid .experience-card:nth-child(6)  { grid-column: 3 / 5; grid-row: 4 / 6; }
  #experience-grid .experience-card:nth-child(7)  { grid-column: 5 / 7; grid-row: 4 / 6; }
  #experience-grid .experience-card:nth-child(8)  { grid-column: 1 / 4; grid-row: 6 / 8; }
  #experience-grid .experience-card:nth-child(9)  { grid-column: 4 / 7; grid-row: 6 / 8; }
  #experience-grid .experience-card:nth-child(10) { grid-column: 1 / 3; grid-row: 8 / 10; }
  #experience-grid .experience-card:nth-child(11) { grid-column: 3 / 5; grid-row: 8 / 10; }
  #experience-grid .experience-card:nth-child(12) { grid-column: 5 / 7; grid-row: 8 / 9; }
  #experience-grid .experience-card:nth-child(13) { grid-column: 5 / 7; grid-row: 9 / 10; }
  #experience-grid .experience-card:nth-child(14) { grid-column: 1 / 5; grid-row: 10 / 12; }
}

@media (max-width: 980px) {
  #experience-grid {
    display: none !important;
  }

  .experience-mobile {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .experience-mobile .mobile-exp {
    position: relative;
    min-width: 0;
    height: auto !important;
    aspect-ratio: 1.24 / 1;
    overflow: hidden;
    border: 1px solid rgba(199, 154, 92, .24);
    border-radius: clamp(12px, 2vw, 18px);
    background: var(--panel);
    box-shadow: 0 14px 38px rgba(0,0,0,.14);
    isolation: isolate;
  }

  .experience-mobile .mobile-exp:nth-child(1),
  .experience-mobile .mobile-exp:nth-child(7),
  .experience-mobile .mobile-exp:nth-child(11) {
    grid-column: 1 / -1;
    aspect-ratio: 2.1 / 1;
  }

  .experience-mobile .mobile-exp::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 1px solid rgba(199, 154, 92, .52);
    border-radius: inherit;
    pointer-events: none;
  }

  .experience-mobile .mobile-exp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.97) contrast(1.02);
    transform: scale(1.001);
    transition: transform .65s cubic-bezier(.16,1,.3,1), filter .5s ease;
  }

  .experience-mobile .mobile-exp::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(10,7,5,.88), rgba(10,7,5,.08) 65%);
    pointer-events: none;
  }

  .experience-mobile .mobile-exp div {
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 18px 18px 16px;
    background: none;
  }

  .experience-mobile .mobile-exp p {
    margin: 0;
    color: var(--sand);
    font-family: var(--accent);
    font-size: clamp(17px, 2.8vw, 23px);
    line-height: 1.08;
    letter-spacing: .035em;
    text-shadow: 0 3px 22px rgba(0,0,0,.55);
  }

  .experience-mobile .mobile-exp:hover img,
  .experience-mobile .mobile-exp:focus-within img {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.03);
  }
}

@media (max-width: 640px) {
  .experience-mobile {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .experience-mobile .mobile-exp,
  .experience-mobile .mobile-exp:nth-child(1),
  .experience-mobile .mobile-exp:nth-child(7),
  .experience-mobile .mobile-exp:nth-child(11) {
    grid-column: auto;
    aspect-ratio: 1.33 / 1;
  }

  .experience-mobile .mobile-exp:nth-child(2),
  .experience-mobile .mobile-exp:nth-child(6),
  .experience-mobile .mobile-exp:nth-child(9),
  .experience-mobile .mobile-exp:nth-child(12) {
    aspect-ratio: 1.08 / 1;
  }

  .experience-mobile .mobile-exp div {
    padding: 17px 16px 15px;
  }

  .experience-mobile .mobile-exp p {
    font-size: clamp(19px, 5.8vw, 27px);
  }
}

@media (max-width: 380px) {
  .experience-mobile {
    gap: 12px;
  }

  .experience-mobile .mobile-exp {
    aspect-ratio: 1.27 / 1;
  }

  .experience-mobile .mobile-exp p {
    font-size: 18px;
  }
}
