/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Josefin Sans', sans-serif;
  background: #132841;
  color: #fff;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* =============================================
   TOKENS
   ============================================= */
:root {
  --navy: #132841;
  --navy-dark: #0a192f;
  --navy-mid: #0c1f33;
  --teal: #3ABDC5;
  --white: #ffffff;

  /* ── Cinematic luxury + gold (premium-cinematic) ── */
  --ink:          #0A1623;   /* near-black navy for cinematic zones */
  --ink-2:        #0F2030;   /* lifted ink for sections */
  --ink-3:        #14273A;   /* card surface on ink */
  --gold:         #C9A961;   /* primary gold accent */
  --gold-light:   #E6C988;   /* hover / highlight gold */
  --gold-deep:    #A88B4A;   /* pressed / shadow gold */
  --gold-soft:    rgba(201,169,97,0.12);
  --gold-line:    rgba(201,169,97,0.32);
  --gold-line-soft: rgba(201,169,97,0.16);

  --font-display: 'Cormorant Garamond', 'Montserrat', Georgia, serif; /* serif for headlines */
  --font-display-sans: 'Montserrat', sans-serif;                       /* UI labels, buttons */
  --font-body: 'Josefin Sans', sans-serif;
  --font-nav: 'Inter', sans-serif;

  --ease-cinema:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft:    cubic-bezier(0.4, 0, 0.2, 1);
  --reveal-dur:   0.9s;
  --reveal-dist:  28px;

  --section-pad-y: clamp(80px, 10vw, 140px);
  --max-w:         1180px;
  --max-w-prose:   680px;
}

/* =============================================
   SHARED COMPONENTS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  border-radius: 27px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.4s var(--ease-cinema), color 0.4s var(--ease-cinema), transform 0.4s var(--ease-cinema), box-shadow 0.4s var(--ease-cinema);
  white-space: nowrap;
}

.btn--white {
  background: #fff;
  color: var(--ink);
}
.btn--white:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,169,97,0.28), 0 6px 18px rgba(0,0,0,0.35);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Gold-filled premium button (opt-in) */
.btn--gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  color: var(--ink);
  font-weight: 600;
  border: 1px solid var(--gold-deep);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 34px rgba(201,169,97,0.35), 0 4px 14px rgba(0,0,0,0.4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  text-align: center;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 72px;
}

.section-divider {
  width: 100%;
  max-width: 720px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-line) 50%, transparent 100%);
  border: none;
}

/* Gold eyebrow label — premium section intro */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  padding: 0 0 0 28px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}
.eyebrow--centered {
  padding: 0 28px;
  text-align: center;
}
.eyebrow--centered::before {
  left: 0;
  width: 20px;
}
.eyebrow--centered::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  gap: 24px;
  transition: background 0.5s var(--ease-cinema), backdrop-filter 0.5s var(--ease-cinema);
}
.nav.is-scrolled {
  background: rgba(10,22,35,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-line-soft);
}

.nav__logo img {
  height: 44px;
  width: auto;
  transition: filter 0.5s var(--ease-cinema);
}
.nav__logo:hover img { filter: drop-shadow(0 2px 14px rgba(201,169,97,0.4)); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav__item { position: relative; }

.nav__link {
  font-family: var(--font-nav);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  opacity: 0.88;
  white-space: nowrap;
  letter-spacing: 0.04em;
  transition: opacity 0.4s var(--ease-cinema), color 0.4s var(--ease-cinema);
  padding: 6px 2px;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease-cinema);
}
.nav__link:hover { opacity: 1; color: var(--gold-light); }
.nav__link:hover::after { transform: scaleX(1); }

.nav__link--caret::after {
  content: ' ▾';
  font-size: 11px;
  background: none;
  transform: none;
  width: auto;
  height: auto;
}
.nav__link--caret:hover::after { color: var(--gold-light); }

/* Dropdown */
.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 14px;
  background: transparent;
  list-style: none;
  min-width: 220px;
  z-index: 200;
}

.nav__dropdown li {
  background: rgba(10,22,35,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
  border-left: 1px solid var(--gold-line-soft);
  border-right: 1px solid var(--gold-line-soft);
}

.nav__dropdown li:first-child { border-radius: 6px 6px 0 0; border-top: 1px solid var(--gold-line-soft); }
.nav__dropdown li:last-child  { border-radius: 0 0 6px 6px; border-bottom: 1px solid var(--gold-line-soft); }

.nav__item--dropdown:hover .nav__dropdown { display: block; }

.nav__dropdown li a {
  display: block;
  padding: 12px 18px;
  font-family: var(--font-nav);
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease-cinema), background 0.3s var(--ease-cinema), padding-left 0.3s var(--ease-cinema);
}
.nav__dropdown li a:hover {
  background: rgba(201,169,97,0.08);
  color: var(--gold-light);
  padding-left: 24px;
}
.nav__dropdown li + li {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.nav__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s var(--ease-cinema), border-color 0.4s var(--ease-cinema), transform 0.4s var(--ease-cinema);
}
.nav__social:hover {
  background: var(--gold-soft);
  border-color: var(--gold-line);
  transform: translateY(-2px);
}
.nav__social svg { width: 16px; height: 16px; }

/* ── Hamburger button ── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1000;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  flex-direction: column;
  background: rgba(13,27,40,0.98);
  padding: 100px 32px 40px;
  overflow-y: auto;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.nav__mobile.is-open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}

/* Scenic split layout — opt-in via .nav__mobile--scenic */
.nav__mobile--scenic {
  flex-direction: row;
  background: #0d1b28;
  padding: 0;
  overflow: hidden;
}
.nav__mobile--scenic .nav__mobile-pane {
  flex: 0 0 62%;
  display: flex;
  flex-direction: column;
  padding: 96px 32px 40px;
  overflow-y: auto;
}
.nav__mobile--scenic .nav__mobile-scene {
  flex: 1;
  position: relative;
  overflow: hidden;
}
.nav__mobile--scenic .nav__mobile-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.nav__mobile--scenic.is-open .nav__mobile-scene img {
  transform: scale(1.06);
}
.nav__mobile--scenic .nav__mobile-scene::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0d1b28 0%, rgba(13,27,40,0.2) 35%, transparent 100%);
}
@media (max-width: 340px) {
  .nav__mobile--scenic .nav__mobile-scene { display: none; }
  .nav__mobile--scenic .nav__mobile-pane { flex: 1; }
}

.nav__mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.nav__mobile-item {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav__mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-display-sans);
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: color 0.4s var(--ease-cinema);
}
.nav__mobile-link:hover { color: var(--gold-light); }

.nav__mobile-link .caret {
  font-size: 14px;
  transition: transform 0.4s var(--ease-cinema);
  opacity: 0.5;
}
.nav__mobile-item.is-open .caret { transform: rotate(180deg); }
.nav__mobile-item.is-open > .nav__mobile-link { color: var(--gold); }

/* Mobile sub-menu */
.nav__mobile-sub {
  display: none;
  flex-direction: column;
  gap: 0;
  margin: 0 -32px;
  padding: 0;
  background: rgba(201,169,97,0.04);
  border-top: 1px solid var(--gold-line-soft);
}
.nav__mobile-item.is-open .nav__mobile-sub { display: flex; }

.nav__mobile-sub li { list-style: none; }

.nav__mobile-sub a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.3s var(--ease-cinema), background 0.3s var(--ease-cinema);
}
.nav__mobile-sub a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease-cinema);
}
.nav__mobile-sub a:hover {
  color: #fff;
  background: rgba(201,169,97,0.06);
}
.nav__mobile-sub a:hover::before { opacity: 1; }

/* Mobile Book Now CTA — gold-filled premium button */
.nav__mobile-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 16px 0;
  text-align: center;
  font-family: var(--font-display-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 60%, var(--gold-deep) 100%);
  border: 1px solid var(--gold-deep);
  border-radius: 40px;
  text-decoration: none;
  transition: transform 0.4s var(--ease-cinema), box-shadow 0.4s var(--ease-cinema);
}
.nav__mobile-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(201,169,97,0.35);
}

/* Mobile socials row */
.nav__mobile-socials {
  display: flex;
  gap: 16px;
  padding-top: 32px;
}
.nav__mobile-socials .nav__social {
  width: 44px;
  height: 44px;
}
.nav__mobile-socials .nav__social svg { width: 20px; height: 20px; }


@media (max-width: 900px) {
  .nav__links  { display: none; }
  .nav__socials { display: none; }
  .nav__hamburger { display: flex; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* slow cinematic Ken-Burns drift */
  animation: hero-kenburns 24s ease-out infinite alternate;
  will-change: transform;
}

@keyframes hero-kenburns {
  0%   { transform: scale(1.08) translate3d(0, 0, 0); }
  100% { transform: scale(1.16) translate3d(-1.5%, -1.5%, 0); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,22,35,0.55) 0%, rgba(10,22,35,0.10) 38%, rgba(10,22,35,0.92) 100%),
    linear-gradient(90deg, rgba(10,22,35,0.35) 0%, transparent 30%, transparent 70%, rgba(10,22,35,0.35) 100%);
}

.hero__headline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(64px, 13vw, 180px);
  font-weight: 500;
  color: #fbf9f9;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 2px 40px rgba(0,0,0,0.45);
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.4s var(--ease-cinema), transform 0.4s var(--ease-cinema);
  animation: scroll-drift 2.6s var(--ease-cinema) infinite;
}
.hero__scroll:hover { border-color: var(--gold); transform: scale(1.06); }
.hero__scroll svg { width: 18px; height: 18px; stroke: var(--gold-light); }

@keyframes scroll-drift {
  0%   { transform: translateY(0); opacity: 0.7; }
  50%  { transform: translateY(8px); opacity: 1; }
  100% { transform: translateY(0); opacity: 0.7; }
}

/* =============================================
   DESTINATION CARDS
   ============================================= */
.destinations {
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy-dark) 100%);
  padding-top: 32px;
  padding-bottom: 24px;
  overflow: hidden;
}

.cards-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-inline: 20px;
  scroll-padding-inline: 20px;
}

@media (max-width: 899px) {
  .cards-track {
    gap: 16px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }
}
.cards-track::-webkit-scrollbar { display: none; }

.card {
  position: relative;
  width: 60vw;
  min-width: 60vw;
  flex-shrink: 0;
  height: 70vh;
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: center;
  cursor: pointer;
  transition: transform 0.6s var(--ease-cinema), box-shadow 0.6s var(--ease-cinema);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-cinema), filter 0.6s var(--ease-cinema);
  filter: saturate(0.92) contrast(1.04);
}
.card:hover img { transform: scale(1.06); filter: saturate(1) contrast(1.06); }

.card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,22,35,0) 0%,
    rgba(10,22,35,0.15) 45%,
    rgba(10,22,35,0.82) 100%
  );
  transition: background 0.6s var(--ease-cinema);
}
.card:hover .card__overlay {
  background: linear-gradient(
    180deg,
    rgba(10,22,35,0.05) 0%,
    rgba(10,22,35,0.28) 45%,
    rgba(10,22,35,0.88) 100%
  );
}

/* gold hairline that draws across the bottom on hover */
.card::after {
  content: '';
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition: transform 0.7s var(--ease-cinema), opacity 0.5s var(--ease-cinema);
  z-index: 3;
}
.card:hover::after { transform: scaleX(1); opacity: 1; }

.card__name {
  position: absolute;
  bottom: 24px;
  left: 22px;
  right: 22px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(24px, 5.5vw, 38px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  z-index: 2;
  text-shadow: 0 2px 18px rgba(0,0,0,0.5);
}

/* Dots */
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 18px 0 32px;
  position: relative;
  z-index: 1;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.4s var(--ease-cinema), transform 0.4s var(--ease-cinema), box-shadow 0.4s var(--ease-cinema);
  flex-shrink: 0;
}
.dot:hover { background: rgba(201,169,97,0.5); }
.dot--active {
  background: var(--gold);
  transform: scale(1.25);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

/* =============================================
   EXPERIENCE THE WORLD
   ============================================= */
.experience {
  background: linear-gradient(180deg, var(--ink) 0%, var(--navy-dark) 100%);
  padding: var(--section-pad-y) 5%;
}

.experience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}

.exp-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  height: 100%;
}

.exp-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  text-transform: capitalize;
  letter-spacing: -0.01em;
}

.exp-card__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
}

.exp-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-cinema), filter 0.6s var(--ease-cinema);
  filter: saturate(0.92) contrast(1.04);
}
.exp-card:hover .exp-card__img img { transform: scale(1.05); filter: saturate(1) contrast(1.06); }

.exp-card__desc {
  font-size: 15px;
  line-height: 1.75;
  text-align: center;
  color: rgba(255,255,255,0.72);
  flex: 1;
}

/* =============================================
   HERO CINEMATIC ENTRANCE
   ============================================= */

.hero__overlay { opacity: 1; }
.hero__headline {
  opacity: 0;
  animation: hero-headline-in 1.4s var(--ease-cinema) 0.3s forwards;
}
.hero__scroll {
  opacity: 0;
  animation: hero-headline-in 1s var(--ease-cinema) 1.1s forwards, scroll-drift 2.6s var(--ease-cinema) 2.1s infinite;
}

@keyframes hero-headline-in {
  0%   { opacity: 0; transform: translateY(24px); letter-spacing: 0.12em; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 0.02em; }
}


/* =============================================
   MEET THE ESCAPERS
   ============================================= */
/* ── Why Travel With Us ── */
.why-us {
  background: var(--ink);
  border-top: 1px solid var(--gold-line-soft);
  padding: var(--section-pad-y) 5%;
}
.why-us__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-us__eyebrow {
  font-family: var(--font-display-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}
.why-us__headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.why-us__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--gold-line-soft);
  border-radius: 14px;
  padding: 36px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.5s var(--ease-cinema), background 0.5s var(--ease-cinema), transform 0.5s var(--ease-cinema);
}
.why-us__card:hover {
  border-color: var(--gold-line);
  background: rgba(201,169,97,0.05);
  transform: translateY(-4px);
}
.why-us__icon {
  width: 44px;
  height: 44px;
  color: var(--gold);
}
.why-us__card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
}
.why-us__card-body {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}
@media (max-width: 860px) {
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why-us__grid { grid-template-columns: 1fr; }
}

/* ── Escape The 9-5 CTA ── */
.escape-cta {
  background: radial-gradient(ellipse at center, var(--ink-2) 0%, var(--ink) 70%);
  border-top: 1px solid var(--gold-line-soft);
  border-bottom: 1px solid var(--gold-line-soft);
  padding: var(--section-pad-y) 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.escape-cta__inner { max-width: 620px; }
.escape-cta__eyebrow {
  font-family: var(--font-display-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.escape-cta__headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.escape-cta__sub {
  font-family: var(--font-body);
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 36px;
}
.escape-cta__btn { font-family: var(--font-display-sans); font-size: 15px; font-weight: 600; padding: 16px 44px; }

.escapers {
  background: linear-gradient(180deg, var(--navy-dark) 0%, var(--ink) 100%);
  padding: var(--section-pad-y) 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--gold-line-soft);
}

.escapers .section-title { margin-bottom: 4px; }

.escapers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: var(--max-w);
  width: 100%;
  margin: 28px 0;
}

.escaper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.escaper__img {
  width: 100%;
  max-width: 544px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}
.escaper__img::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--gold-line-soft);
  border-radius: 6px;
  pointer-events: none;
  transition: box-shadow 0.5s var(--ease-cinema);
}
.escaper__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s var(--ease-cinema), filter 0.6s var(--ease-cinema);
  filter: saturate(0.92) contrast(1.05);
}
.escaper:hover .escaper__img img { transform: scale(1.05); filter: saturate(1) contrast(1.08); }
.escaper:hover .escaper__img::after { box-shadow: inset 0 0 0 1px var(--gold-line); }

.escaper__name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--gold-light);
  text-align: center;
  letter-spacing: 0.01em;
}

.escaper__bio {
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
  color: rgba(255,255,255,0.78);
  max-width: 440px;
  padding: 0 24px 16px;
}

.escaper__credential {
  padding: 0 24px 24px;
  color: var(--gold);
  font-style: italic;
}

/* =============================================
   LATEST BLOGS
   ============================================= */
.blogs {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: var(--section-pad-y) 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--gold-line-soft);
}

.blogs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: var(--max-w);
  width: 100%;
  margin-bottom: 48px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 16px;
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 6px;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-cinema), filter 0.6s var(--ease-cinema);
  filter: saturate(0.92) contrast(1.04);
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); filter: saturate(1) contrast(1.06); }

.blog-card__desc {
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.blog-card__tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.tag {
  display: inline-block;
  padding: 6px 22px;
  border-radius: 27px;
  border: 1px solid var(--gold-line);
  font-family: var(--font-display-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  transition: background 0.4s var(--ease-cinema), border-color 0.4s var(--ease-cinema);
}
.tag:hover { background: var(--gold-soft); border-color: var(--gold); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  overflow: hidden;
}

.footer__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,22,35,0.88) 0%, rgba(10,22,35,0.94) 100%);
}

.footer__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-pad-y) 5% 40px;
  gap: 0;
}

.footer__headline {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.footer__sub {
  font-family: var(--font-body);
  font-size: 18px;
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  line-height: 1.7;
}

.footer__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 620px;
  margin-bottom: 56px;
}

.footer__input {
  width: 100%;
  padding: 16px 28px;
  border-radius: 30px;
  border: 1px solid var(--gold-line);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-family: var(--font-body);
  font-size: 17px;
  outline: none;
  transition: border-color 0.4s var(--ease-cinema), background 0.4s var(--ease-cinema), box-shadow 0.4s var(--ease-cinema);
}
.footer__input::placeholder { color: rgba(255,255,255,0.5); }
.footer__input:focus {
  border-color: var(--gold);
  background: rgba(201,169,97,0.06);
  box-shadow: 0 0 0 4px var(--gold-soft);
}

.footer__logo {
  margin-bottom: 56px;
}
.footer__logo img {
  height: 160px;
  width: auto;
  filter: drop-shadow(0 4px 24px rgba(201,169,97,0.18));
}

.footer__rule {
  width: 100%;
  max-width: 1520px;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-line) 50%, transparent 100%);
  margin-bottom: 0;
}

.footer__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 1520px;
  background: rgba(10,22,35,0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 28px 48px;
  margin-bottom: 0;
}

.footer__contact-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0 32px;
}

.footer__contact-divider {
  width: 1px;
  height: 90px;
  background: var(--gold-line-soft);
  flex-shrink: 0;
}

.footer__contact-label {
  font-family: var(--font-display-sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer__contact-value {
  font-family: var(--font-display-sans);
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  transition: color 0.4s var(--ease-cinema);
}
.footer__contact-value:hover { color: var(--gold-light); }

.footer__socials {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display-sans);
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 500;
  color: #fff;
  transition: color 0.4s var(--ease-cinema);
}
.footer__social-link:hover { color: var(--gold-light); }

.footer__rule--bottom {
  margin-top: 0;
  margin-bottom: 0;
}

.footer__bottom {
  width: 100%;
  max-width: 1520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

.footer__bottom a { transition: color 0.4s var(--ease-cinema); }
.footer__bottom a:hover { color: var(--gold-light); }

.footer__bottom-links {
  display: flex;
  gap: 40px;
}
.footer__bottom-links a:hover { color: var(--gold-light); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .experience__grid,
  .blogs__grid { gap: 28px; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }

  .experience__grid,
  .blogs__grid { grid-template-columns: 1fr; max-width: 480px; }

  .escapers__grid { grid-template-columns: 1fr; max-width: 480px; }

  .footer__contact { flex-direction: column; gap: 28px; }
  .footer__contact-divider { width: 120px; height: 1px; }

  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer__bottom-links { justify-content: center; }
}

@media (max-width: 600px) {
  .nav { padding: 14px 20px; }
  .nav__logo img { height: 38px; }

  .hero__headline { font-size: clamp(52px, 18vw, 100px); }

  .experience, .escapers, .blogs { padding: 56px 5%; }

  .footer__contact { padding: 24px 20px; }
  .footer__socials { flex-direction: column; gap: 14px; }
}

@media (min-width: 900px) {
  .card {
    width: 320px;
    min-width: 320px;
    aspect-ratio: 3/4;
  }
}

/* =============================================
   CINEMATIC SYSTEM — reveal, parallax, utilities
   ============================================= */

/* Scroll-driven reveals. Add `data-reveal` (or .reveal) to any element.
   Stagger children with `data-reveal-stagger` on a parent. */
[data-reveal],
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-dist));
  transition:
    opacity var(--reveal-dur) var(--ease-cinema),
    transform var(--reveal-dur) var(--ease-cinema);
  will-change: opacity, transform;
}
[data-reveal].is-revealed,
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* Variants */
[data-reveal="fade"] { transform: none; }
[data-reveal="scale"] { transform: translateY(var(--reveal-dist)) scale(0.97); }
[data-reveal="scale"].is-revealed { transform: none; }
[data-reveal="left"]  { transform: translateX(calc(-1 * var(--reveal-dist))); }
[data-reveal="right"] { transform: translateX(var(--reveal-dist)); }
[data-reveal="left"].is-revealed,
[data-reveal="right"].is-revealed { transform: none; }

/* Stagger: children get incremental delay via JS setting --reveal-i */
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(var(--reveal-dist));
  transition:
    opacity var(--reveal-dur) var(--ease-cinema),
    transform var(--reveal-dur) var(--ease-cinema);
  transition-delay: calc(var(--reveal-i, 0) * 90ms);
  will-change: opacity, transform;
}
[data-reveal-stagger].is-revealed > * {
  opacity: 1;
  transform: none;
}

/* Subtle parallax for hero/section background layers.
   JS sets --parallax-y on scroll; element translates by it. */
[data-parallax] {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Cinematic hero modifier — letterbox + deeper overlay for city pages */
.hero--cinematic {
  height: 100vh;
  height: 100svh;
  min-height: 600px;
}
.hero--cinematic .hero__overlay {
  background:
    linear-gradient(180deg, rgba(10,22,35,0.45) 0%, rgba(10,22,35,0.08) 35%, rgba(10,22,35,0.92) 100%);
}
.hero--cinematic .hero__bg {
  animation: hero-kenburns 30s ease-out infinite alternate;
}

/* Gold hairline utility */
.hairline-gold {
  width: 100%;
  max-width: 720px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-line) 50%, transparent 100%);
  border: none;
  margin: 0 auto;
}

/* Underline-on-hover for inline links in body copy */
.u-underline-gold {
  background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.5s var(--ease-cinema), color 0.4s var(--ease-cinema);
}
.u-underline-gold:hover {
  background-size: 100% 1px;
  color: var(--gold-light);
}

/* Cinematic section rhythm helper */
.section-cinema {
  padding: var(--section-pad-y) 5%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Vignette overlay for full-bleed image sections */
.vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(10,22,35,0.55) 100%);
  pointer-events: none;
}

/* =============================================
   REDUCED MOTION — disable all cinematic motion
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal],
  .reveal,
  [data-reveal-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__bg,
  .hero--cinematic .hero__bg { animation: none !important; }
  [data-parallax] { transform: none !important; }
}
