/* The Falcon Expeditions — complete redesign */

:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EBE3;
  --bg-dark: #141210;
  --ink: #1C1917;
  --muted: #78716C;
  --line: rgba(28, 25, 23, 0.12);
  --gold: #A67C2E;
  --gold-light: #C9A04A;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', system-ui, sans-serif;

  --pad: clamp(20px, 4vw, 56px);
  --section: clamp(80px, 10vw, 128px);
  --header-h: 72px;
  --header-top-pad: 14px;
  --header-total: calc(var(--header-h) + var(--header-top-pad));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html.is-loading,
html.is-loading body {
  background: var(--bg-dark);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--pad);
  box-sizing: border-box;
}

/* ---- Loader ---- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-dark);
  display: grid;
  place-items: center;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 3.5vw, 32px);
  padding: 0 var(--pad);
}

.loader__emblem {
  position: relative;
  width: clamp(132px, 32vw, 168px);
  height: clamp(132px, 32vw, 168px);
  display: grid;
  place-items: center;
  opacity: 1;
  transform: scale(1);
}

.loader__orbit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.loader__orbit-ring {
  fill: none;
  stroke: rgba(201, 160, 74, 0.35);
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.loader__logo {
  position: relative;
  z-index: 1;
  height: clamp(22px, 5vw, 28px);
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: scale(1);
}

.loader__status {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin: 0;
  opacity: 1;
}

.loader__dots::after {
  content: '';
  animation: loaderDots 1.4s steps(4, end) infinite;
}

@keyframes loaderDots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}

@media (prefers-reduced-motion: no-preference) {
  .loader.is-ready:not(.is-done) .loader__orbit-ring {
    animation: loaderRingPulse 2.4s ease-in-out infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .loader__orbit-ring {
    stroke-dashoffset: 0;
  }

  .loader__emblem,
  .loader__logo,
  .loader__status {
    opacity: 1;
    transform: none;
  }
}

@keyframes loaderRingPulse {
  0%, 100% {
    stroke: rgba(201, 160, 74, 0.28);
  }
  50% {
    stroke: rgba(201, 160, 74, 0.55);
  }
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding-top: var(--header-top-pad);
  height: calc(var(--header-h) + var(--header-top-pad));
  transition: background 0.4s var(--ease), box-shadow 0.4s;
}

.site-header:not(.is-solid)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 18, 16, 0.55) 0%, transparent 100%);
  pointer-events: none;
}

.site-header.is-solid {
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

/* Over hero — white logo & menu on dark imagery */
.site-header:not(.is-solid) .site-header__logo img {
  filter: brightness(0) invert(1);
}

.site-header:not(.is-solid) .menu-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}

.site-header:not(.is-solid) .menu-toggle .menu-toggle__text {
  color: #fff;
}

.site-header:not(.is-solid) .menu-toggle .menu-toggle__lines span {
  background: #fff;
}

.site-shell {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--pad);
  box-sizing: border-box;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  width: 100%;
}

.site-header__rail {
  height: 100%;
  display: flex;
  align-items: center;
}

.site-header__logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.site-header__logo img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  transition: filter 0.4s var(--ease);
}

.site-nav {
  display: flex;
  align-items: center;
}

.site-nav__backdrop {
  display: none;
}

.site-nav__panel {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 24px);
}

.site-nav__label,
.site-nav__contact,
.site-nav__num,
.site-nav__head,
.site-nav__close {
  display: none;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(6px, 1.2vw, 22px);
}

.site-nav__links a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(28, 25, 23, 0.88);
  padding: 8px 0;
  transition: color 0.3s;
}

.site-nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.site-nav__links a:hover {
  color: var(--ink);
}

.site-nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__cta {
  margin-left: clamp(8px, 1.5vw, 20px);
  padding: 12px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff !important;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 100px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}

.site-nav__cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(166, 124, 46, 0.35);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  position: relative;
  z-index: 210;
}

.menu-toggle__lines {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.menu-toggle__lines span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.35s var(--ease), opacity 0.35s;
  transform-origin: center;
}

.menu-toggle__text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.menu-toggle.is-open .menu-toggle__lines span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle__lines span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  color: #fff;
  overflow: hidden;
}

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

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
  height: 100%;
}

.hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  backface-visibility: hidden;
  transform: scale(1) translate3d(0, 0, 0);
  will-change: transform;
}

.hero__slide.is-animating img {
  animation: heroKenBurns 6.5s ease-out forwards;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.14) translate3d(-2.5%, -1.5%, 0);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, transparent 0%, rgba(20, 18, 16, 0.35) 100%),
    linear-gradient(105deg, rgba(20, 18, 16, 0.78) 0%, rgba(20, 18, 16, 0.42) 40%, rgba(20, 18, 16, 0.06) 68%, rgba(20, 18, 16, 0.28) 100%),
    linear-gradient(to top, rgba(20, 18, 16, 0.55) 0%, transparent 42%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.hero__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.hero__progress-bar {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.hero__inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(48px, 8vh, 80px);
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding-top: 0;
  padding-bottom: 0;
}

.hero__inner.site-shell {
  margin-inline: auto;
}

.hero__copy {
  position: relative;
  max-width: 680px;
  margin: 0;
  padding: 0 0 0 28px;
  justify-self: start;
  width: 100%;
  text-align: left;
}

.hero__copy::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-light), rgba(201, 160, 74, 0.15) 70%, transparent);
}

.hero__caption {
  display: block;
  width: fit-content;
  max-width: 100%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 160, 74, 0.35);
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.hero__caption.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.hero.is-entered .hero__caption,
.hero.is-entered .hero__title,
.hero.is-entered .hero__lead {
  will-change: opacity, transform;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6.5vw, 72px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  padding: 0;
  max-width: min(640px, 100%);
  text-align: left;
  text-wrap: balance;
  hyphens: none;
  -webkit-hyphens: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.hero__title.is-changing {
  opacity: 0;
  transform: translateY(12px);
}

.hero__copy,
.hero__aside {
  opacity: 1;
}

.hero__lead {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  max-width: min(520px, 100%);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin: 0 0 32px;
  padding: 0;
  text-align: left;
  text-wrap: pretty;
  hyphens: none;
  -webkit-hyphens: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}

.hero__lead.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

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

.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-bottom: 8px;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s;
}

.hero__scroll svg {
  animation: heroScrollBounce 2s ease-in-out infinite;
}

.hero__scroll:hover { color: #fff; }

@keyframes heroScrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__slide.is-animating img {
    animation: none;
  }

  .hero__progress-bar {
    display: none;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
  border: 1px solid transparent;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.btn--primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.btn--primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}

.btn--ghost:hover { border-color: #fff; }

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

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

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s var(--ease);
}

.link-arrow::after {
  content: '→';
  transition: transform 0.3s var(--ease);
}

.link-arrow:hover { gap: 14px; }
.link-arrow:hover::after { transform: translateX(2px); }

/* ---- Marquee ---- */
.marquee {
  position: relative;
  padding: clamp(22px, 3vw, 32px) 0;
  background:
    linear-gradient(180deg, rgba(240, 235, 227, 0.6) 0%, var(--bg-alt) 100%);
  border-block: 1px solid var(--line);
  overflow: hidden;
}

.marquee::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--pad);
  right: var(--pad);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(166, 124, 46, 0.45) 20%, rgba(166, 124, 46, 0.45) 80%, transparent);
  pointer-events: none;
}

.marquee__bar {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding-left: var(--pad);
}

.marquee__label {
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.marquee__label::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  margin-left: 16px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.55;
}

.marquee__viewport {
  flex: 1;
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee__viewport:hover .marquee__track {
  animation-play-state: paused;
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}

.marquee__track span:nth-child(even) {
  color: transparent;
  -webkit-text-stroke: 1px rgba(28, 25, 23, 0.35);
  text-stroke: 1px rgba(28, 25, 23, 0.35);
}

.marquee__track span:nth-child(3n) {
  color: var(--gold);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  font-style: normal;
}

.marquee__track span::after {
  content: '◆';
  margin-inline: clamp(28px, 4vw, 52px);
  font-size: 7px;
  font-style: normal;
  font-family: var(--font-sans);
  color: var(--gold);
  opacity: 0.45;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    gap: 12px 24px;
    padding-inline: var(--pad);
  }

  .marquee__track span::after {
    display: none;
  }

  .marquee__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* ---- Sections ---- */
.section { padding: var(--section) 0; }

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-text {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.section-text--narrow { max-width: 400px; }

/* Justified long-form copy only — not cards or short UI text */
.journal-article__body p,
.about-values__lead {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: clamp(40px, 6vw, 72px);
  flex-wrap: wrap;
}

/* ---- About ---- */
.about {
  padding: var(--section) 0;
  background: var(--bg-alt);
}

.about__shell {
  position: relative;
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.about__media {
  position: relative;
}

.about__frame {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(28, 25, 23, 0.08);
}

.about__frame img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 1s var(--ease);
}

.about__media:hover .about__frame img {
  transform: scale(1.03);
}

.about__content .section-title {
  max-width: 520px;
  margin-bottom: 16px;
}

.about__content .section-text {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 16px;
}

.about__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0 0 32px;
  padding: 0;
}

.about__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink);
}

.about__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 40px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid var(--line);
}

.about__stat {
  padding: 0;
}

.about__stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(32px, 3.5vw, 40px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}

.about__stat span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* ---- Packages horizontal scroll ---- */
.packages {
  background: var(--bg);
}

.packages__head {
  padding-top: clamp(80px, 10vw, 128px);
  padding-bottom: clamp(40px, 5vw, 64px);
  margin-bottom: 0;
}

.packages__head .section-text {
  margin-top: 16px;
  max-width: 560px;
}

.pkg-scroll {
  background: var(--bg);
  overflow: hidden;
  min-height: calc(100dvh - var(--header-total));
  padding-top: clamp(24px, 4vh, 40px);
  padding-bottom: clamp(40px, 6vh, 72px);
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
}

.pkg-scroll.is-pinned-scroll,
.places-scroll.is-pinned-scroll {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.pkg-scroll__track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 0 var(--pad);
  will-change: transform;
  align-items: stretch;
}

.pkg-card,
a.pkg-card {
  width: clamp(290px, 38vw, 460px);
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
  box-shadow: 0 2px 16px rgba(28, 25, 23, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - var(--header-total) - clamp(64px, 12vh, 112px));
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.pkg-card:hover,
a.pkg-card:hover {
  border-color: rgba(28, 25, 23, 0.12);
  box-shadow: 0 8px 28px rgba(28, 25, 23, 0.08);
}

.pkg-card__img {
  aspect-ratio: 16 / 10;
  flex-shrink: 0;
  max-height: min(42vh, 280px);
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

.pkg-card:hover .pkg-card__img { transform: scale(1.04); }

.pkg-card__body {
  padding: 26px 30px 32px;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.pkg-card__meta {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.pkg-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.15;
}

.pkg-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.pkg-card .link-arrow {
  flex-shrink: 0;
  margin-top: auto;
}

.pkg-card--cta {
  justify-content: center;
  text-align: center;
  background: #fff;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pkg-card--cta .pkg-card__body {
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1;
  min-height: 100%;
  padding: clamp(40px, 5vw, 56px) 32px;
}

.pkg-card--cta .pkg-card__meta {
  color: var(--gold);
}

.pkg-card--cta p {
  max-width: 260px;
  margin-bottom: 28px;
  flex: 0;
}

.pkg-card--cta:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.08);
}

/* ---- Destinations stack ---- */
.destinations {
  position: relative;
  padding: clamp(72px, 9vw, 112px) 0 clamp(96px, 12vw, 140px);
  background: var(--bg);
}

.destinations::before {
  content: '';
  position: absolute;
  top: 0;
  left: var(--pad);
  right: var(--pad);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
  pointer-events: none;
}

.dest-stack {
  display: grid;
  grid-template-columns: minmax(260px, 0.4fr) minmax(380px, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.dest-stack__intro {
  position: sticky;
  top: calc(var(--header-total) + 32px);
  align-self: start;
  padding-top: 8px;
}

.dest-stack__intro::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 24px;
}

.dest-stack__count {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 14px;
  border: 1px solid rgba(166, 124, 46, 0.28);
  background: rgba(166, 124, 46, 0.06);
  margin: 12px 0 20px;
}

.dest-stack__intro .section-title {
  max-width: 420px;
}

.dest-stack__intro .section-text {
  margin: 16px 0 32px;
  max-width: 420px;
}

.dest-stack__cards {
  --dest-stack-base: calc(var(--header-total) + 24px);
  --dest-stack-step: 8px;
  --dest-stack-max-offset: 56px;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.5vw, 36px);
  padding-bottom: clamp(280px, 50vh, 560px);
}

.dest-stack__card {
  position: sticky;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: clamp(340px, 42vw, 460px);
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s var(--ease);
}

.dest-stack__card:nth-child(1) { top: calc(var(--dest-stack-base) + min(0px, var(--dest-stack-max-offset))); z-index: 1; }
.dest-stack__card:nth-child(2) { top: calc(var(--dest-stack-base) + min(8px, var(--dest-stack-max-offset))); z-index: 2; }
.dest-stack__card:nth-child(3) { top: calc(var(--dest-stack-base) + min(16px, var(--dest-stack-max-offset))); z-index: 3; }
.dest-stack__card:nth-child(4) { top: calc(var(--dest-stack-base) + min(24px, var(--dest-stack-max-offset))); z-index: 4; }
.dest-stack__card:nth-child(5) { top: calc(var(--dest-stack-base) + min(32px, var(--dest-stack-max-offset))); z-index: 5; }
.dest-stack__card:nth-child(6) { top: calc(var(--dest-stack-base) + min(40px, var(--dest-stack-max-offset))); z-index: 6; }
.dest-stack__card:nth-child(7) { top: calc(var(--dest-stack-base) + min(48px, var(--dest-stack-max-offset))); z-index: 7; }
.dest-stack__card:nth-child(8) { top: calc(var(--dest-stack-base) + min(56px, var(--dest-stack-max-offset))); z-index: 8; }
.dest-stack__card:nth-child(9) { top: calc(var(--dest-stack-base) + min(64px, var(--dest-stack-max-offset))); z-index: 9; }
.dest-stack__card:nth-child(10) { top: calc(var(--dest-stack-base) + min(72px, var(--dest-stack-max-offset))); z-index: 10; }
.dest-stack__card:nth-child(11) { top: calc(var(--dest-stack-base) + min(80px, var(--dest-stack-max-offset))); z-index: 11; }
.dest-stack__card:nth-child(12) { top: calc(var(--dest-stack-base) + min(88px, var(--dest-stack-max-offset))); z-index: 12; }

.dest-stack__card:hover {
  border-color: rgba(166, 124, 46, 0.35);
}

.dest-stack__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 1s var(--ease);
  transform-origin: center center;
}

.dest-stack__card:hover .dest-stack__media {
  transform: scale(1.05);
}

.dest-stack__media::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20, 18, 16, 0.15) 0%, transparent 35%),
    linear-gradient(90deg, transparent 50%, rgba(240, 235, 227, 0.92) 100%);
  pointer-events: none;
}

.dest-stack__num {
  position: absolute;
  top: clamp(20px, 2.5vw, 28px);
  left: clamp(20px, 2.5vw, 28px);
  z-index: 2;
  font-family: var(--font-serif);
  font-size: clamp(52px, 6vw, 72px);
  font-weight: 500;
  line-height: 1;
  color: #fff;
  opacity: 0.92;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.dest-stack__body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(32px, 4vw, 48px) clamp(28px, 3.5vw, 44px);
  background: var(--bg-alt);
}

.dest-stack__tag {
  display: inline-block;
  width: fit-content;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid rgba(166, 124, 46, 0.25);
  background: rgba(166, 124, 46, 0.06);
  margin-bottom: 16px;
}

.dest-stack__body h3 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.dest-stack__body p {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 400px;
}

.dest-stack__body .link-arrow {
  margin-top: auto;
  width: fit-content;
  padding: 12px 0;
}

/* ---- Activities grid ---- */
.activities {
  background: var(--bg-dark);
  color: #fff;
  padding-bottom: var(--section);
}

.activities .section-label { color: var(--gold-light); }

.activities__head {
  margin-bottom: clamp(36px, 5vw, 56px);
}

.activities__head .section-title {
  margin-bottom: 16px;
}

.activities__intro {
  color: rgba(255, 255, 255, 0.68);
  max-width: 560px;
}

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

.activity-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease);
}

.activity-card:hover {
  border-color: rgba(201, 160, 74, 0.35);
  transform: translateY(-3px);
}

.activity-card--wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.activity-card__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center center;
  transition: transform 0.8s var(--ease);
  will-change: transform;
}

.activity-card:hover .activity-card__media {
  transform: scale(1.06);
}

.activity-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: clamp(18px, 2.5vw, 24px);
  background: linear-gradient(to top, rgba(10, 9, 8, 0.88) 0%, rgba(10, 9, 8, 0.45) 48%, transparent 100%);
}

.activity-card__body span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.activity-card__body h3 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 6px;
}

.activity-card__body p {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- Places scroll ---- */
.places {
  background: var(--bg-alt);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.places__head {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(32px, 4vw, 48px);
  margin-bottom: 0;
}

.places__head .section-text {
  margin-top: 16px;
  max-width: 520px;
}

.places-scroll {
  background: var(--bg-alt);
  overflow: hidden;
  min-height: calc(100dvh - var(--header-total));
  padding-top: clamp(16px, 3vh, 32px);
  padding-bottom: clamp(48px, 6vh, 80px);
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.places-scroll__track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 0 var(--pad);
  will-change: transform;
  align-items: stretch;
}

.place-card {
  flex: 0 0 clamp(290px, 38vw, 460px);
  width: clamp(290px, 38vw, 460px);
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(28, 25, 23, 0.05);
  transition: transform 0.5s var(--ease), box-shadow 0.35s var(--ease);
}

.place-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1) 55%);
}

.place-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 28px rgba(28, 25, 23, 0.12);
}
.place-card > * { position: relative; z-index: 1; }

.place-card span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}

.place-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.15;
}

.place-card p { font-size: 14px; opacity: 0.75; line-height: 1.6; }

.place-card--cta {
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  color: var(--ink);
  justify-content: center;
  text-align: center;
  transition: transform 0.5s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.place-card--cta::after {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.4) 55%);
}

.place-card--cta span {
  color: var(--gold);
  opacity: 1;
}

.place-card--cta h3 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 10px;
}

.place-card--cta p {
  color: var(--muted);
  opacity: 1;
}

.place-card--cta:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.08);
}

/* ---- Hotels ---- */
.hotels {
  background: var(--bg);
  position: relative;
  z-index: 2;
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(32px, 5vw, 56px);
  align-items: stretch;
}

.hotel-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-alt);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.4s var(--ease);
}

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

.hotel-card__img {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-alt);
}

.hotel-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.hotel-card__img--bustan img { object-position: center 58%; }
.hotel-card__img--anantara img { object-position: center center; }
.hotel-card__img--crowne img { object-position: center 42%; }

.hotel-card:hover .hotel-card__img img {
  transform: scale(1.04);
}

.hotel-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 24px 28px 32px;
}

.hotel-card__body span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: block;
}

.hotel-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}

.hotel-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}

.hotel-grid .hotel-card:last-child {
  grid-column: span 1;
}

/* ---- Hotels page ---- */
.hotels-page {
  padding: var(--section) 0;
  background: var(--bg);
}

.hotels-page__intro {
  max-width: 640px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.hotels-page__intro .section-text {
  margin-bottom: 0;
}

.hotels-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hotels-filters__btn {
  appearance: none;
  border: 1px solid rgba(28, 25, 23, 0.12);
  background: var(--bg-alt);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.hotels-filters__btn:hover {
  border-color: rgba(166, 124, 46, 0.35);
  color: var(--gold);
}

.hotels-filters__btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.12);
}

.hotels-filters__count {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 clamp(28px, 3.5vw, 40px);
}

.hotel-page__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.hotel-page__grid > * {
  min-width: 0;
}

.hotel-page-card[hidden] {
  display: none;
}

.hotel-page-card {
  background: var(--bg-alt);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.45s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.hotel-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 124, 46, 0.35);
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.08);
}

.hotel-page-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.hotel-page-card__img {
  position: relative;
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-alt);
}

.hotel-page-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s var(--ease);
}

.hotel-page-card:hover .hotel-page-card__img img {
  transform: scale(1.04);
}

.hotel-page-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(22px, 2.5vw, 28px);
}

.hotel-page-card__meta {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.hotel-page-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hotel-page-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}

.hotel-page-card .link-arrow {
  margin-top: auto;
  width: fit-content;
}

@media (max-width: 1200px) {
  .hotel-page__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hotel-page__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hotels-filters__btn {
    font-size: 11px;
    padding: 10px 14px;
  }

  .hotel-page__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- MICE ---- */
.mice {
  background: var(--bg-dark);
  color: #fff;
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mice .section-label {
  color: var(--gold-light);
}

.mice__layout {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.8fr);
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.mice__content {
  min-width: 0;
}

.mice__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  max-width: 520px;
}

.mice__lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin-bottom: clamp(20px, 3vw, 28px);
}

.mice__acronym {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: clamp(20px, 3vw, 28px);
  max-width: 460px;
}

.mice__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mice__actions .btn {
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.mice__letter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: clamp(12px, 1.5vw, 16px) 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.mice__letter:hover {
  border-color: rgba(201, 160, 74, 0.45);
  background: rgba(166, 124, 46, 0.08);
}

.mice__letter span {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 30px);
  font-weight: 500;
  line-height: 1;
  color: var(--gold-light);
}

.mice__letter small {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.mice__media {
  position: relative;
}

.mice__frame {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mice__frame img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transition: transform 1s var(--ease);
}

.mice__media:hover .mice__frame img {
  transform: scale(1.03);
}

.mice__caption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.mice__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.mice__feature {
  padding: clamp(18px, 2.2vw, 24px) clamp(18px, 2vw, 24px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.mice__feature:last-child {
  border-right: none;
}

.mice__feature strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  margin-bottom: 6px;
  color: #fff;
}

.mice__feature span {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

/* ---- Journal ---- */
.journal { background: var(--bg-alt); }

.journal-page {
  padding: var(--section) 0;
  background: var(--bg);
}

.journal-page__head {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.journal-page__head .section-text {
  margin-bottom: 0;
}

.journal-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.journal-page-card {
  background: var(--bg-alt);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.45s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.journal-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 124, 46, 0.35);
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.08);
}

.journal-page-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.journal-page-card__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.journal-page-card:hover .journal-page-card__img {
  transform: scale(1.04);
}

.journal-page-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(22px, 2.5vw, 28px);
}

.journal-page-card__meta {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.journal-page-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 10px;
}

.journal-page-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}

.journal-page-card .link-arrow {
  margin-top: auto;
  width: fit-content;
}

.journal-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(24px, 3vw, 32px);
}

.journal-article__meta time {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.journal-article__meta span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid rgba(166, 124, 46, 0.25);
  background: rgba(166, 124, 46, 0.06);
  color: var(--gold);
  border-radius: 100px;
}

.journal-article__body {
  max-width: 68ch;
}

.journal-article__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.25em;
}

.journal-article__body p:last-child {
  margin-bottom: 0;
}

.journal-article__cta {
  margin-top: clamp(32px, 4vw, 48px);
}

/* ---- Legal pages ---- */
.legal-page {
  padding: var(--section) 0;
  background: var(--bg);
}

.legal-page__intro {
  max-width: 720px;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.legal-page__intro .section-text {
  max-width: none;
  margin-bottom: 0;
}

.legal-page__intro .section-text strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-content {
  max-width: 720px;
}

.legal-section {
  padding-bottom: clamp(28px, 3.5vw, 36px);
  margin-bottom: clamp(28px, 3.5vw, 36px);
  border-bottom: 1px solid var(--line);
}

.legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--ink);
}

.legal-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-section li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

.legal-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.legal-schedule {
  margin-top: 8px;
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--bg-alt);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
}

.legal-schedule li strong {
  color: var(--ink);
  font-weight: 500;
}

.legal-section a,
.legal-commitment a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease);
}

.legal-section a:hover,
.legal-commitment a:hover {
  color: var(--ink);
}

.legal-commitment {
  margin-top: clamp(40px, 5vw, 56px);
  padding: clamp(28px, 3.5vw, 36px);
  background: var(--bg-alt);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
}

.legal-commitment h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--ink);
}

.legal-commitment p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.legal-commitment strong {
  color: var(--ink);
  font-weight: 500;
}

/* ---- Testimonials ---- */
.testimonials {
  padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 64px);
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.testimonials__head {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.testimonials__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-top: 12px;
}

.testimonials__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.testimonials__viewport:hover .testimonials__track {
  animation-play-state: paused;
}

.testimonials__track {
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: clamp(16px, 2vw, 24px);
  padding: 4px var(--pad) 8px;
  animation: testimonialsMarquee 55s linear infinite;
}

.testimonial-card {
  flex-shrink: 0;
  width: clamp(280px, 32vw, 360px);
  padding: clamp(24px, 3vw, 32px);
  background: var(--bg);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.testimonial-card:hover {
  border-color: rgba(166, 124, 46, 0.28);
  box-shadow: 0 12px 32px rgba(28, 25, 23, 0.06);
}

.testimonial-card__stars {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--gold);
  line-height: 1;
}

.testimonial-card__quote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
  flex: 1;
}

.testimonial-card__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.testimonial-card__meta strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-card__meta span {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes testimonialsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
  }

  .testimonials__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .testimonial-card[aria-hidden="true"] {
    display: none;
  }
}

/* ---- Partners ---- */
.partners {
  padding: clamp(56px, 7vw, 88px) 0 clamp(48px, 6vw, 72px);
  background: var(--bg);
  border-top: 1px solid var(--line);
}

.partners__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  text-align: center;
  letter-spacing: -0.02em;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.partners__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.partners__viewport:hover .partners__track {
  animation-play-state: paused;
}

.partners__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(40px, 6vw, 72px);
  padding: 8px var(--pad);
  animation: partnersMarquee 45s linear infinite;
}

.partners__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(56px, 8vw, 72px);
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 0.3s var(--ease), filter 0.3s var(--ease);
}

.partners__logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.partners__logo img {
  display: block;
  height: 100%;
  width: auto;
  max-width: clamp(120px, 18vw, 180px);
  object-fit: contain;
}

@keyframes partnersMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .partners__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
    max-width: 1100px;
    margin: 0 auto;
    gap: 32px 48px;
  }

  .partners__viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .partners__logo:nth-child(n + 12) {
    display: none;
  }
}

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: clamp(64px, 8vw, 96px) 0 clamp(28px, 4vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 1.6fr);
  gap: clamp(40px, 6vw, 88px);
  padding-bottom: clamp(40px, 5vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.site-footer__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-right: 12px;
  vertical-align: middle;
}

.site-footer__logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 20px;
}

.site-footer__brand img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  font-size: 14px;
  line-height: 1.75;
  max-width: 340px;
  color: rgba(255, 255, 255, 0.55);
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.site-footer__social a:hover {
  color: #fff;
  border-color: var(--gold-light);
  background: rgba(166, 124, 46, 0.15);
  transform: none;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.site-footer__col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.site-footer__col a,
.site-footer__col p {
  display: block;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
}

.site-footer__col a:hover {
  color: #fff;
  transform: translateX(3px);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding-top: clamp(20px, 3vw, 28px);
  flex-wrap: wrap;
}

.site-footer__copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.02em;
}

.site-footer__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.site-footer__legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
  transition: color 0.25s var(--ease);
}

.site-footer__legal a:hover {
  color: var(--gold-light);
}

.site-footer__legal a + a {
  position: relative;
}

.site-footer__legal a + a::before {
  content: '';
  position: absolute;
  left: -14px;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%);
}

/* ---- Back to top ---- */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.25s;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover { background: var(--gold); }

/* ---- Chat float (home) ---- */
.chat-float {
  position: fixed;
  bottom: 84px;
  right: 28px;
  z-index: 150;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.25s;
}

.chat-float svg {
  display: block;
  transform-origin: center;
}

.chat-float:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  color: #fff;
}

.chat-float:hover svg {
  animation: chat-icon-orbit 1.4s linear infinite;
}

@keyframes chat-icon-orbit {
  from {
    transform: rotate(0deg) translateX(5px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(5px) rotate(-360deg);
  }
}

@media (max-width: 640px) {
  .chat-float {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    right: calc(20px + env(safe-area-inset-right, 0px));
  }

  .back-top {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: calc(20px + env(safe-area-inset-right, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .activity-card__media {
    will-change: auto;
  }

  .chat-float:hover svg {
    animation: none;
  }
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

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

/* ---- Responsive ---- */
@media (min-width: 1025px) {
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 201;
    padding-top: var(--header-top-pad);
    height: calc(var(--header-h) + var(--header-top-pad));
    pointer-events: none;
    display: block;
  }

  .site-nav__panel {
    max-width: 1440px;
    margin: 0 auto;
    padding-inline: var(--pad);
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
  }

  .site-nav__links,
  .site-nav__cta {
    pointer-events: auto;
  }

  .site-header:not(.is-solid) + .site-nav .site-nav__links a {
    color: #fff;
    text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
  }

  .site-header:not(.is-solid) + .site-nav .site-nav__links a:hover {
    color: #fff;
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.55);
  }

  .site-header:not(.is-solid) + .site-nav .site-nav__links a::after {
    background: var(--gold-light);
  }

  .site-header:not(.is-solid) + .site-nav .site-nav__cta {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff !important;
    box-shadow: none;
  }

  .site-header:not(.is-solid) + .site-nav .site-nav__cta:hover {
    background: #fff;
    border-color: #fff;
    color: var(--ink) !important;
  }
}

@media (max-width: 1200px) {
  .site-nav__links a {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }

  .site-header:not(.is-solid) .menu-toggle {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
  }

  .site-header:not(.is-solid) .menu-toggle .menu-toggle__text {
    color: #fff;
  }

  .site-header:not(.is-solid) .menu-toggle .menu-toggle__lines span {
    background: #fff;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 250;
    pointer-events: none;
    visibility: hidden;
    display: block;
  }

  .site-nav.is-open {
    pointer-events: auto;
    visibility: visible;
  }

  .site-nav__backdrop {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(20, 18, 16, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity 0.45s var(--ease);
  }

  .site-nav.is-open .site-nav__backdrop {
    opacity: 1;
  }

  .site-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100%);
    height: 100%;
    max-height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + var(--header-top-pad) + 16px) var(--pad) calc(40px + env(safe-area-inset-bottom, 0px));
    background: var(--bg);
    box-shadow: -12px 0 48px rgba(20, 18, 16, 0.18);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-nav__panel::-webkit-scrollbar {
    display: none;
  }

  .site-nav.is-open .site-nav__panel {
    transform: translateX(0);
  }

  .site-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
  }

  .site-nav__close {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--ink);
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
  }

  .site-nav__close:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff;
  }

  body.nav-open .menu-toggle {
    visibility: hidden;
    pointer-events: none;
  }

  .packages__head {
    padding-top: clamp(56px, 9vw, 80px);
    padding-bottom: clamp(28px, 4vw, 36px);
  }

  .pkg-scroll,
  .places-scroll {
    min-height: calc(100dvh - var(--header-total));
    padding-top: clamp(16px, 3vh, 24px);
    padding-bottom: clamp(32px, 5vw, 48px);
    align-items: flex-start;
    overflow: hidden;
    display: flex;
  }

  .places {
    overflow: hidden;
  }

  .places__head {
    padding-top: clamp(40px, 6vw, 56px);
    padding-bottom: clamp(24px, 3.5vw, 32px);
  }

  .site-nav__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0;
  }

  .site-nav__links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__links a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-family: var(--font-serif);
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 500;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--ink);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    opacity: 0;
    transform: translateX(16px);
    transition: color 0.25s, opacity 0.4s var(--ease), transform 0.4s var(--ease);
  }

  .site-nav.is-open .site-nav__links a {
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav.is-open .site-nav__links a:nth-child(1) { transition-delay: 0.05s; }
  .site-nav.is-open .site-nav__links a:nth-child(2) { transition-delay: 0.08s; }
  .site-nav.is-open .site-nav__links a:nth-child(3) { transition-delay: 0.11s; }
  .site-nav.is-open .site-nav__links a:nth-child(4) { transition-delay: 0.14s; }
  .site-nav.is-open .site-nav__links a:nth-child(5) { transition-delay: 0.17s; }
  .site-nav.is-open .site-nav__links a:nth-child(6) { transition-delay: 0.2s; }
  .site-nav.is-open .site-nav__links a:nth-child(7) { transition-delay: 0.23s; }
  .site-nav.is-open .site-nav__links a:nth-child(8) { transition-delay: 0.26s; }
  .site-nav.is-open .site-nav__links a:nth-child(9) { transition-delay: 0.29s; }

  .site-nav__links a::after {
    display: none;
  }

  .site-nav__links a:hover {
    color: var(--gold);
  }

  .site-nav__num {
    display: inline;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--gold);
    min-width: 22px;
  }

  .site-nav__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .site-nav__contact a {
    font-size: 16px;
    color: var(--ink);
    font-weight: 500;
  }

  .site-nav__contact a:hover {
    color: var(--ink);
  }

  .site-nav__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 28px 0 0;
    padding: 16px 28px;
    font-size: 14px;
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

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

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

  .dest-stack {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
  }

  .dest-stack__intro {
    position: static;
  }

  .dest-stack__cards {
    --dest-stack-base: calc(var(--header-total) + 12px);
    --dest-stack-step: 6px;
    --dest-stack-max-offset: 42px;
    gap: clamp(16px, 3vw, 24px);
    padding-bottom: clamp(200px, 36vh, 400px);
  }

  .dest-stack__card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dest-stack__card:nth-child(1) { top: calc(var(--dest-stack-base) + min(0px, var(--dest-stack-max-offset))); }
  .dest-stack__card:nth-child(2) { top: calc(var(--dest-stack-base) + min(6px, var(--dest-stack-max-offset))); }
  .dest-stack__card:nth-child(3) { top: calc(var(--dest-stack-base) + min(12px, var(--dest-stack-max-offset))); }
  .dest-stack__card:nth-child(4) { top: calc(var(--dest-stack-base) + min(18px, var(--dest-stack-max-offset))); }
  .dest-stack__card:nth-child(5) { top: calc(var(--dest-stack-base) + min(24px, var(--dest-stack-max-offset))); }
  .dest-stack__card:nth-child(6) { top: calc(var(--dest-stack-base) + min(30px, var(--dest-stack-max-offset))); }
  .dest-stack__card:nth-child(7) { top: calc(var(--dest-stack-base) + min(36px, var(--dest-stack-max-offset))); }
  .dest-stack__card:nth-child(8) { top: calc(var(--dest-stack-base) + min(42px, var(--dest-stack-max-offset))); }
  .dest-stack__card:nth-child(9) { top: calc(var(--dest-stack-base) + min(48px, var(--dest-stack-max-offset))); }
  .dest-stack__card:nth-child(10) { top: calc(var(--dest-stack-base) + min(54px, var(--dest-stack-max-offset))); }
  .dest-stack__card:nth-child(11) { top: calc(var(--dest-stack-base) + min(60px, var(--dest-stack-max-offset))); }
  .dest-stack__card:nth-child(12) { top: calc(var(--dest-stack-base) + min(66px, var(--dest-stack-max-offset))); }

  .dest-stack__media {
    aspect-ratio: 16/10;
    min-height: auto;
  }

  .dest-stack__num {
    font-size: clamp(40px, 10vw, 52px);
  }

  .dest-stack__body {
    padding: clamp(24px, 4vw, 32px);
  }

  .activity-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .activity-card--wide { grid-column: span 2; }

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

  .mice__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
  }

  .mice__acronym {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .mice__frame img {
    aspect-ratio: 3 / 2;
    object-position: center 42%;
  }

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

  .mice__feature {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mice__feature:last-child {
    border-bottom: none;
  }

  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: clamp(32px, 5vw, 48px);
  }

  .mice-page-pillars {
    max-width: none;
  }
}

@media (max-width: 640px) {
  :root { --header-h: 64px; --header-top-pad: 10px; }

  .hero__copy {
    padding-left: 0;
  }

  .hero__copy::before {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    bottom: 32px;
  }

  .hero__aside {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    gap: 20px;
  }

  .marquee__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-inline: var(--pad);
  }

  .marquee__label::after {
    display: none;
  }

  .marquee__viewport {
    width: 100%;
  }

  .marquee__track span {
    font-size: clamp(20px, 6vw, 28px);
  }

  .hero__title { font-size: clamp(36px, 10vw, 52px); }

  .packages__head {
    padding-top: 52px;
    padding-bottom: 24px;
  }

  .places__head {
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .pkg-scroll,
  .places-scroll {
    padding-top: 20px;
    padding-bottom: clamp(28px, 6vw, 40px);
  }

  .about__stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .activity-grid { grid-template-columns: 1fr; gap: 10px; }
  .activity-card--wide { grid-column: span 1; aspect-ratio: 16/10; }
  .activity-card { min-height: 200px; }

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

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

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

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

  .hero__actions .btn {
    width: 100%;
  }

  .testimonial-card {
    width: min(88vw, 320px);
  }

  .pkg-card {
    width: min(85vw, 340px);
  }

  .pkg-card__body {
    padding: 22px 24px 28px;
  }

  .place-card {
    flex: 0 0 min(85vw, 340px);
    width: min(85vw, 340px);
    padding: 22px;
  }

  .journal-article__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

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

  .package-breadcrumb {
    font-size: 11px;
    gap: 6px;
  }

  .package-breadcrumb span:last-child {
    word-break: break-word;
  }

  .hotels-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(-1 * var(--pad));
    padding-inline: var(--pad);
    padding-bottom: 6px;
  }

  .hotels-filters::-webkit-scrollbar {
    display: none;
  }

  .hotels-filters__btn {
    flex-shrink: 0;
  }

  .site-header__logo img {
    height: 30px;
  }

  .site-footer__cols { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* ---- About page ---- */
.page-hero {
  position: relative;
  min-height: clamp(420px, 62vh, 560px);
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: var(--header-total);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, transparent 0%, rgba(20, 18, 16, 0.35) 100%),
    linear-gradient(105deg, rgba(20, 18, 16, 0.82) 0%, rgba(20, 18, 16, 0.48) 42%, rgba(20, 18, 16, 0.12) 70%, rgba(20, 18, 16, 0.32) 100%),
    linear-gradient(to top, rgba(20, 18, 16, 0.6) 0%, transparent 48%);
}

.page-hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(48px, 8vh, 72px);
}

.page-hero__copy {
  position: relative;
  max-width: 720px;
  padding-left: 28px;
  text-align: left;
}

.page-hero__copy::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-light), rgba(201, 160, 74, 0.15) 70%, transparent);
}

.page-hero__caption {
  display: block;
  width: fit-content;
  max-width: 100%;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 160, 74, 0.35);
  text-align: left;
  hyphens: none;
  -webkit-hyphens: none;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: min(640px, 100%);
  text-align: left;
  text-wrap: balance;
  hyphens: none;
  -webkit-hyphens: none;
}

.page-hero__lead {
  font-size: clamp(15px, 1.7vw, 18px);
  font-weight: 300;
  max-width: min(520px, 100%);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  margin: 0;
  text-align: left;
  text-wrap: pretty;
  hyphens: none;
  -webkit-hyphens: none;
}

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-hero--mice {
  min-height: clamp(480px, 72vh, 640px);
}

.page-hero--mice .page-hero__title {
  max-width: 680px;
}

.about-mv {
  padding: var(--section) 0;
  background: var(--bg);
}

.about-mv__head {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.about-mv__head .section-text {
  margin-bottom: 0;
}

.about-mv__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.about-mv__card {
  padding: clamp(32px, 4vw, 48px);
  background: var(--bg-alt);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.about-mv__card:hover {
  border-color: rgba(166, 124, 46, 0.35);
  box-shadow: 0 12px 40px rgba(28, 25, 23, 0.06);
}

.about-mv__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  border: 1px solid rgba(166, 124, 46, 0.35);
  border-radius: 50%;
}

.about-mv__card h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 14px;
}

.about-mv__card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  margin: 0;
}

.about-values {
  background: var(--bg-dark);
  color: #fff;
  padding: var(--section) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-values .section-label {
  color: var(--gold-light);
}

.about-values__head {
  max-width: 640px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.about-values__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}

.about-values__lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.about-values__item {
  padding: clamp(24px, 3vw, 36px) clamp(22px, 2.5vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.about-values__item:last-child {
  border-right: none;
}

.about-values__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}

.about-values__item span {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}

.about-cta {
  padding: var(--section) 0;
  background: var(--bg-alt);
}

.about-cta__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
}

.about-cta__copy {
  max-width: 560px;
}

.about-cta__copy .section-text {
  margin-bottom: 0;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1024px) {
  .about-mv__grid {
    grid-template-columns: 1fr;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
  }

  .about-values__item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .about-values__item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 640px) {
  .page-hero {
    min-height: clamp(360px, 55vh, 480px);
  }

  .page-hero--mice {
    min-height: clamp(400px, 60vh, 520px);
  }

  .page-hero__copy {
    padding-left: 0;
  }

  .page-hero__copy::before {
    display: none;
  }

  .page-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-hero__actions .btn {
    width: 100%;
  }

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

/* ---- Packages page ---- */
.pkg-page {
  padding: var(--section) 0;
  background: var(--bg);
}

.pkg-page__head {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.pkg-page__head .section-text {
  margin-bottom: 0;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}

.pkg-grid > * {
  min-width: 0;
}

.pkg-page-card {
  background: var(--bg-alt);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  transition: transform 0.45s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.pkg-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 124, 46, 0.35);
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.08);
}

.pkg-page-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.pkg-page-card__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.pkg-page-card:hover .pkg-page-card__img {
  transform: scale(1.04);
}

.pkg-page-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(22px, 2.5vw, 28px);
}

.pkg-page-card__meta {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pkg-page-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 10px;
}

.pkg-page-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 16px;
  flex: 1;
}

.pkg-page-card .link-arrow {
  margin-top: auto;
  width: fit-content;
}

/* ---- Package itinerary page ---- */
.page-hero--package .page-hero__title {
  max-width: 720px;
}

.package-layout {
  padding-block: clamp(40px, 5vw, 64px) var(--section);
}

.package-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: clamp(32px, 4vw, 48px);
}

.package-breadcrumb a {
  color: var(--muted);
  transition: color 0.25s;
}

.package-breadcrumb a:hover {
  color: var(--gold);
}

.package-breadcrumb span:last-child {
  color: var(--ink);
}

.package-layout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.package-main .section-text {
  margin-bottom: 0;
}

.package-code {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.package-code strong {
  color: var(--ink);
  font-weight: 500;
}

.package-intro {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.package-includes,
.package-places,
.package-timeline {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.package-includes h3,
.package-places h3,
.package-timeline h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 500;
  margin-bottom: 16px;
}

.package-includes ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}

.package-includes li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.5;
}

.package-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateY(-50%);
}

.package-places__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.package-places__tags span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(166, 124, 46, 0.25);
  background: rgba(166, 124, 46, 0.06);
  color: var(--gold);
  border-radius: 100px;
}

.package-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.package-timeline__list::before {
  content: '';
  position: absolute;
  left: 42px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-light), var(--line) 12%, var(--line) 88%, transparent);
}

.package-timeline__item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  align-items: start;
  padding-bottom: clamp(28px, 3vw, 36px);
}

.package-timeline__item:last-child {
  padding-bottom: 0;
}

.package-timeline__marker {
  position: relative;
  z-index: 1;
}

.package-timeline__marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gold);
  border-radius: 100px;
  white-space: nowrap;
}

.package-timeline__content h4 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 10px;
  padding-top: 0;
}

.package-timeline__content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.package-aside {
  position: sticky;
  top: calc(var(--header-total) + 24px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.package-aside__card {
  padding: clamp(24px, 3vw, 32px);
  background: var(--bg-dark);
  color: #fff;
  border-radius: 4px;
}

.package-aside__meta {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.package-aside__card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 10px;
}

.package-aside__card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 20px;
}

.package-aside__card .btn {
  width: 100%;
  margin-bottom: 14px;
}

.package-aside__phone {
  display: block;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.25s;
}

.package-aside__phone:hover {
  color: var(--gold-light);
}

.package-related {
  padding: clamp(22px, 2.5vw, 28px);
  background: var(--bg-alt);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
}

.package-related h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.package-related__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.package-related__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  align-items: center;
  color: inherit;
  transition: opacity 0.25s;
}

.package-related__item:hover {
  opacity: 0.8;
}

.package-related__img {
  aspect-ratio: 1;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
}

.package-related__item span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.package-related__item strong {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.package-not-found {
  padding: var(--section) 0;
  text-align: center;
}

.package-not-found h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 12px;
}

.package-not-found p {
  color: var(--muted);
  margin-bottom: 24px;
}

@media (max-width: 1024px) {
  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-layout__grid {
    grid-template-columns: 1fr;
  }

  .package-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .pkg-grid {
    grid-template-columns: 1fr;
  }

  .package-includes ul {
    grid-template-columns: 1fr;
  }

  .package-timeline__item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }

  .package-timeline__list::before {
    left: 32px;
  }

  .package-timeline__marker span {
    font-size: 9px;
    letter-spacing: 0.06em;
    padding: 6px 8px;
  }
}

/* ---- Contact page ---- */
.contact-page {
  padding: var(--section) 0;
  background: var(--bg-alt);
}

.contact-page__layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.contact-aside .section-title {
  margin-bottom: 16px;
}

.contact-aside .section-text {
  margin-bottom: 32px;
}

.contact-aside__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-aside__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-aside__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(166, 124, 46, 0.12);
  color: var(--gold);
}

.contact-aside__item strong {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.contact-aside__item a,
.contact-aside__item p {
  display: block;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.contact-aside__item a + a {
  margin-top: 2px;
}

.contact-aside__item a {
  transition: color 0.25s var(--ease);
}

.contact-aside__item a:hover {
  color: var(--gold);
}

.contact-aside__note {
  padding: 20px 22px;
  border-left: 2px solid var(--gold);
  background: rgba(166, 124, 46, 0.06);
}

.contact-aside__note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
}

.contact-form-wrap {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 32px rgba(28, 25, 23, 0.06);
  padding: clamp(28px, 4vw, 44px);
}

.contact-form__intro {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.contact-phone {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.contact-phone__code {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  background: rgba(166, 124, 46, 0.1);
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-right: none;
  border-radius: 4px 0 0 4px;
  white-space: nowrap;
}

.contact-phone input {
  border-radius: 0 4px 4px 0;
  flex: 1;
  min-width: 0;
}

.contact-form__section {
  border: none;
  margin: 0 0 clamp(32px, 4vw, 44px);
  padding: 0 0 clamp(32px, 4vw, 44px);
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
}

.contact-form__section:last-of-type {
  border-bottom: none;
  margin-bottom: 24px;
  padding-bottom: 0;
}

.contact-form__legend {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--ink);
  width: 100%;
}

.contact-form__step {
  flex: 0 0 auto;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 6px 10px;
  border: 1px solid rgba(166, 124, 46, 0.35);
  border-radius: 100px;
}

.contact-form__grid {
  display: grid;
  gap: 18px 20px;
}

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

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.contact-field label,
.contact-field__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-field label span,
.contact-form__hint span {
  color: var(--gold);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: 4px;
  padding: 13px 14px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-sizing: border-box;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(28, 25, 23, 0.38);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: rgba(166, 124, 46, 0.55);
  box-shadow: 0 0 0 3px rgba(166, 124, 46, 0.12);
}

.contact-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231C1917' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-field textarea {
  resize: vertical;
  min-height: 96px;
}

.contact-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.contact-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 100px;
  background: var(--bg-alt);
  border: 1px solid rgba(28, 25, 23, 0.08);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.contact-check:has(input:checked) {
  border-color: rgba(166, 124, 46, 0.45);
  background: rgba(166, 124, 46, 0.08);
}

.contact-check input {
  width: 15px;
  height: 15px;
  accent-color: var(--gold);
  margin: 0;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 24px;
  cursor: pointer;
}

.contact-consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--gold);
}

.contact-form__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}

.contact-form__actions .btn {
  min-width: 200px;
}

.contact-form__hint {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.contact-form__error {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-radius: 4px;
  background: rgba(180, 60, 50, 0.08);
  color: #9a3b32;
  font-size: 14px;
  line-height: 1.5;
}

.contact-form__success {
  text-align: center;
  padding: clamp(32px, 5vw, 56px) clamp(16px, 4vw, 32px);
}

.contact-form__success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(166, 124, 46, 0.12);
  flex-shrink: 0;
}

.contact-form__success-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.contact-form__success h3 {
  position: relative;
  z-index: 1;
  margin-top: 0;
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  margin-bottom: 12px;
}

.contact-form__success p {
  max-width: 420px;
  margin: 0 auto 28px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .contact-page__layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    order: -1;
  }
}

@media (max-width: 640px) {
  .contact-form__grid--2 {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .contact-checks {
    gap: 8px;
  }

  .contact-check {
    width: 100%;
  }

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

/* ---- MICE page ---- */
.mice-page-intro {
  padding: var(--section) 0;
  background: var(--bg-alt);
}

.mice-page-intro__top {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 1.05fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.mice-page-intro__copy,
.mice-page-intro__media {
  min-width: 0;
}

.mice-page-intro__copy .section-text:last-of-type {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.mice-page-intro__media {
  position: relative;
}

.mice-page-intro__frame {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(28, 25, 23, 0.08);
  width: 100%;
}

.mice-page-intro__frame img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1s var(--ease);
}

.mice-page-intro__media:hover .mice-page-intro__frame img {
  transform: scale(1.03);
}

.mice-page-pillars {
  max-width: 460px;
  margin-bottom: 0;
}

.mice-page-pillars .mice__letter {
  border-color: rgba(28, 25, 23, 0.1);
  background: #fff;
}

.mice-page-pillars .mice__letter:hover {
  border-color: rgba(166, 124, 46, 0.45);
  background: rgba(166, 124, 46, 0.06);
}

.mice-page-pillars .mice__letter span {
  color: var(--gold);
}

.mice-page-pillars .mice__letter small {
  color: var(--muted);
}

.mice-page-offerings {
  padding: var(--section) 0;
  background: var(--bg);
}

.mice-page-offerings__head {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.mice-page-offerings__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.mice-offering-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.mice-offering-card:hover {
  box-shadow: 0 18px 48px rgba(28, 25, 23, 0.1);
  transform: translateY(-4px);
}

.mice-offering-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.mice-offering-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.85s var(--ease);
}

.mice-offering-card:hover .mice-offering-card__media img {
  transform: scale(1.05);
}

.mice-offering-card__num {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mice-offering-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(22px, 2.5vw, 28px);
}

.mice-offering-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.mice-offering-card__body h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 12px;
}

.mice-offering-card__body p {
  flex: 1;
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 20px;
}

.mice-page-capabilities {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--bg-dark);
  color: #fff;
}

.mice-page-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.mice-page-capabilities__item {
  padding: clamp(28px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.mice-page-capabilities__item:hover {
  border-color: rgba(201, 160, 74, 0.35);
  background: rgba(166, 124, 46, 0.06);
}

.mice-page-capabilities__icon {
  display: block;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.mice-page-capabilities__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  margin-bottom: 10px;
  color: #fff;
}

.mice-page-capabilities__item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.58);
}

.mice-page-cta {
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}

@media (max-width: 1024px) {
  .mice-page-intro__top,
  .mice-page-offerings__grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .mice-page-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .mice-page-capabilities__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Destination detail page ---- */
.dest-gallery,
.dest-hotels {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.dest-hotels__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.dest-hotels__head h3 {
  margin-bottom: 0;
}

.dest-gallery h3,
.dest-hotels h3 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 500;
  margin-bottom: 16px;
}

.dest-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.dest-gallery__item {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
}

.dest-hotels__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.dest-hotels .hotel-card h4 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .dest-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 640px) {
  .dest-gallery__grid {
    grid-template-columns: 1fr;
  }

  .dest-hotels__grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Forts page ---- */
.site-header--minimal .site-header__inner {
  justify-content: space-between;
}

.page-back-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.page-back-link:hover {
  color: var(--gold);
}

.forts-page .package-breadcrumb {
  margin-bottom: clamp(24px, 3vw, 36px);
}

/* ---- Destinations subsections (forts, wadis, mountains) ---- */
.dest-subsections {
  padding: clamp(64px, 8vw, 96px) 0;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dest-subsections .section-label {
  color: var(--gold-light);
}

.dest-subsections .section-title {
  color: #fff;
}

.dest-subsections .section-text {
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
}

.dest-subsections__head {
  max-width: 640px;
}

.dest-subsection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(40px, 5vw, 56px);
}

.dest-subsection-card {
  position: relative;
  min-height: clamp(400px, 44vw, 500px);
  border-radius: 4px;
  overflow: hidden;
  display: block;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.45s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.dest-subsection-card:hover {
  transform: translateY(-6px);
  border-color: rgba(166, 124, 46, 0.4);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.dest-subsection-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s var(--ease);
}

.dest-subsection-card:hover .dest-subsection-card__bg {
  transform: scale(1.06);
}

.dest-subsection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28, 25, 23, 0.94) 0%,
    rgba(28, 25, 23, 0.55) 42%,
    rgba(28, 25, 23, 0.2) 100%
  );
  transition: opacity 0.35s var(--ease);
}

.dest-subsection-card:hover .dest-subsection-card__overlay {
  background: linear-gradient(
    to top,
    rgba(28, 25, 23, 0.96) 0%,
    rgba(28, 25, 23, 0.6) 48%,
    rgba(28, 25, 23, 0.25) 100%
  );
}

.dest-subsection-card__top {
  position: absolute;
  top: clamp(20px, 2.5vw, 28px);
  left: clamp(20px, 2.5vw, 28px);
  right: clamp(20px, 2.5vw, 28px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.dest-subsection-card__count {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -0.02em;
}

.dest-subsection-card__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(28, 25, 23, 0.35);
  backdrop-filter: blur(8px);
}

.dest-subsection-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(400px, 44vw, 500px);
  padding: clamp(24px, 3vw, 32px);
}

.dest-subsection-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 10px;
  color: #fff;
}

.dest-subsection-card__content > p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0;
}

.dest-subsection-card__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 18px;
}

.dest-subsection-card__highlights span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.link-arrow--light {
  color: var(--gold-light);
}

.link-arrow--light::after {
  color: var(--gold-light);
}

.forts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 28px);
}

.fort-card {
  background: var(--bg-alt);
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.fort-card__img {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
}

.fort-card__body {
  padding: clamp(22px, 2.5vw, 28px);
}

.fort-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
}

.fort-card__region {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.fort-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 0;
}

.fort-card__timings {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.fort-card__timings span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

@media (max-width: 1000px) {
  .forts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .dest-subsection-grid {
    grid-template-columns: 1fr;
  }

  .dest-subsection-card,
  .dest-subsection-card__content {
    min-height: clamp(340px, 70vw, 420px);
  }
}

@media (max-width: 640px) {
  .forts-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Certifications page ---- */
.cert-page .pkg-page__head {
  max-width: 640px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}

.cert-card {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(28, 25, 23, 0.08);
  border-radius: 4px;
  background: var(--bg-alt);
  overflow: hidden;
  text-align: left;
  color: inherit;
  cursor: zoom-in;
  transition: transform 0.45s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 124, 46, 0.35);
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.08);
}

.cert-card__img {
  aspect-ratio: 3/4;
  background: #fff;
  overflow: hidden;
}

.cert-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease);
}

.cert-card:hover .cert-card__img img {
  transform: scale(1.03);
}

.cert-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  padding: clamp(18px, 2.2vw, 24px);
  margin: 0;
}

body.cert-lightbox-open {
  overflow: hidden;
}

.cert-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
}

.cert-lightbox[hidden] {
  display: none;
}

.cert-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 10, 9, 0.92);
  backdrop-filter: blur(8px);
}

.cert-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 2vw, 20px);
}

.cert-lightbox__figure {
  margin: 0;
  max-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cert-lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.cert-lightbox__title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.cert-lightbox__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(28, 25, 23, 0.6);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.cert-lightbox__close:hover {
  border-color: var(--gold-light);
  background: rgba(166, 124, 46, 0.2);
}

.cert-lightbox__nav {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(28, 25, 23, 0.6);
  color: #fff;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.cert-lightbox__nav:hover {
  border-color: var(--gold-light);
  background: rgba(166, 124, 46, 0.2);
}

@media (max-width: 900px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-lightbox__dialog {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    justify-items: center;
  }

  .cert-lightbox__prev,
  .cert-lightbox__next {
    grid-row: 3;
  }

  .cert-lightbox__prev {
    justify-self: start;
  }

  .cert-lightbox__next {
    justify-self: end;
  }

  .cert-lightbox__figure {
    grid-row: 2;
  }

  .cert-lightbox__close {
    top: -52px;
    right: 50%;
    transform: translateX(50%);
  }
}

@media (max-width: 640px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .cert-lightbox {
    padding:
      max(16px, env(safe-area-inset-top, 0px))
      max(16px, env(safe-area-inset-right, 0px))
      max(16px, env(safe-area-inset-bottom, 0px))
      max(16px, env(safe-area-inset-left, 0px));
  }
}

/* ---- Responsive polish (all pages) ---- */
@media (max-width: 1024px) {
  :root {
    --section: clamp(64px, 8vw, 96px);
  }
}

@media (max-width: 640px) {
  :root {
    --pad: clamp(16px, 4vw, 24px);
    --section: clamp(56px, 12vw, 72px);
  }

  .menu-toggle__text {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    padding: 0;
    justify-content: center;
  }

  .package-aside__card h3 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .package-related__item {
    grid-template-columns: 64px 1fr;
    gap: 10px;
  }

  .mice-page-pillars {
    max-width: none;
  }
}

@media (max-width: 380px) {
  .mice__letter {
    padding: 10px 6px;
  }

  .mice__letter small {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
}

@media (pointer: coarse) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: auto !important;
  }

  .falcon-cursor {
    display: none !important;
  }
}

/* ---- Custom cursor (compass) ---- */
html.has-custom-cursor,
html.has-custom-cursor * {
  cursor: none !important;
}

html.has-custom-cursor input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
html.has-custom-cursor textarea {
  cursor: text !important;
}

.falcon-cursor {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  --cx: 50vw;
  --cy: 50vh;
  --rx: 50vw;
  --ry: 50vh;
  --ra: 0deg;
  transition: opacity 0.35s var(--ease);
}

.falcon-cursor.is-visible {
  opacity: 1;
}

.falcon-cursor.is-hidden {
  opacity: 0 !important;
}

.falcon-cursor__ring,
.falcon-cursor__dot {
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 0;
  margin-left: 0;
  will-change: transform;
  pointer-events: none;
}

.falcon-cursor__ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  transform: translate3d(var(--rx), var(--ry), 0) rotate(var(--ra));
  transition:
    width 0.35s var(--ease),
    height 0.35s var(--ease),
    margin 0.35s var(--ease),
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.falcon-cursor__tick {
  position: absolute;
  background: var(--gold);
  border-radius: 1px;
  transition: background 0.3s var(--ease);
}

.falcon-cursor__tick--n,
.falcon-cursor__tick--s {
  left: 50%;
  width: 1px;
  height: 5px;
  margin-left: -0.5px;
}

.falcon-cursor__tick--e,
.falcon-cursor__tick--w {
  top: 50%;
  width: 5px;
  height: 1px;
  margin-top: -0.5px;
}

.falcon-cursor__tick--n { top: 3px; }
.falcon-cursor__tick--s { bottom: 3px; }
.falcon-cursor__tick--e { right: 3px; }
.falcon-cursor__tick--w { left: 3px; }

.falcon-cursor__needle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 11px;
  margin: -11px 0 0 -0.75px;
  background: linear-gradient(to bottom, var(--gold-light) 0%, var(--gold) 55%, transparent 100%);
  border-radius: 1px;
  transform: rotate(calc(var(--ra) * -1));
  transform-origin: center bottom;
  transition: background 0.3s var(--ease), opacity 0.3s var(--ease);
}

.falcon-cursor__dot {
  width: 5px;
  height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate3d(var(--cx), var(--cy), 0);
  transition:
    transform 0.25s var(--ease),
    width 0.3s var(--ease),
    height 0.3s var(--ease),
    margin 0.3s var(--ease),
    background 0.3s var(--ease),
    opacity 0.3s var(--ease);
}

.falcon-cursor.is-light .falcon-cursor__ring {
  border-color: rgba(255, 255, 255, 0.85);
}

.falcon-cursor.is-light .falcon-cursor__tick {
  background: rgba(255, 255, 255, 0.9);
}

.falcon-cursor.is-light .falcon-cursor__needle {
  background: linear-gradient(to bottom, #fff 0%, var(--gold-light) 60%, transparent 100%);
}

.falcon-cursor.is-light .falcon-cursor__dot {
  background: var(--gold-light);
}

.falcon-cursor.is-hover .falcon-cursor__ring {
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  background: rgba(166, 124, 46, 0.1);
  border-color: var(--gold-light);
}

.falcon-cursor.is-hover .falcon-cursor__dot {
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
}

.falcon-cursor.is-hover.is-light .falcon-cursor__ring {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.8);
}

.falcon-cursor.is-pressed .falcon-cursor__ring {
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
}

.falcon-cursor.is-pressed .falcon-cursor__dot {
  transform: translate3d(var(--cx), var(--cy), 0) scale(0.85);
}

.falcon-cursor.is-text .falcon-cursor__ring {
  width: 2px;
  height: 22px;
  margin: -11px 0 0 -1px;
  border: none;
  border-radius: 1px;
  background: var(--gold);
}

.falcon-cursor.is-text .falcon-cursor__tick,
.falcon-cursor.is-text .falcon-cursor__needle,
.falcon-cursor.is-text .falcon-cursor__dot {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  html.has-custom-cursor,
  html.has-custom-cursor * {
    cursor: auto !important;
  }

  .falcon-cursor {
    display: none !important;
  }
}
