/* ============================================================
   CRYPTIC GATEWAYS — Shared Design System
   Travel to Transform · Luxury Tourism
   ============================================================ */

:root {
  /* Brand palette */
  --emerald-deep:   #0B1612;
  --emerald-black:  #121E19;
  --emerald-night:  #17221C;
  --emerald-mist:   #1F2D26;

  --gold-light:     #F2CD81;
  --gold-classic:   #E4B35D;
  --gold-warm:      #C89B4B;
  --gold-bronze:    #766843;
  --gold-deep:      #4A3F28;

  --ivory:          #F4EBD9;
  --parchment:      #E8DEC6;
  --smoke:          #8D9591;
  --ash:            #5D6661;

  --gold-gradient:  linear-gradient(135deg, #F2CD81 0%, #E4B35D 35%, #C89B4B 70%, #766843 100%);
  --gold-gradient-text: linear-gradient(135deg, #F2CD81 0%, #E4B35D 50%, #C89B4B 100%);

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

  --container: 1320px;
  --container-wide: 1480px;
  --gutter: clamp(20px, 4vw, 60px);
  --section-pad: clamp(80px, 10vw, 140px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--gold-classic); color: var(--emerald-deep); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ivory);
  background: var(--emerald-black);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---------- Typography ---------- */
.display, h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
h1 { font-size: clamp(54px, 8vw, 112px); }
h2 { font-size: clamp(36px, 5.5vw, 68px); font-weight: 300; }
h3 { font-size: clamp(26px, 3vw, 38px); }
h4 { font-size: clamp(20px, 2.2vw, 26px); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-classic);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-classic);
  display: inline-block;
}
.eyebrow.center::before { display: none; }
.eyebrow.center { justify-content: center; text-align: center; }

.gold-text {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.italic-accent {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 300;
  color: var(--gold-light);
}

p { font-size: clamp(15px, 1.05vw, 17px); color: rgba(244, 235, 217, 0.78); }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn-gold { background: var(--gold-gradient); color: var(--emerald-deep); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -16px rgba(228, 179, 93, 0.55); }
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(228, 179, 93, 0.5);
}
.btn-outline:hover {
  background: rgba(228, 179, 93, 0.08);
  border-color: var(--gold-classic);
}
.btn .arrow { transition: transform 0.4s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   Header (with search + dropdown — asiadmc.com inspiration)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s ease;
  background: linear-gradient(180deg, rgba(11, 22, 18, 0.6) 0%, rgba(11, 22, 18, 0) 100%);
}
.site-header.scrolled {
  background: rgba(11, 22, 18, 0.94);
  padding: 12px 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(228, 179, 93, 0.12);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { height: 54px; width: auto; transition: height 0.3s ease; }
.site-header.scrolled .brand img { height: 44px; }

.header-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(228, 179, 93, 0.25);
  background: rgba(11, 22, 18, 0.4);
  max-width: 360px;
  width: 100%;
  transition: all 0.3s ease;
}
.header-search:focus-within {
  border-color: var(--gold-classic);
  background: rgba(11, 22, 18, 0.6);
}
.header-search svg { width: 16px; height: 16px; color: var(--gold-bronze); flex-shrink: 0; }
.header-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 13px;
  width: 100%;
  letter-spacing: 0.04em;
}
.header-search input::placeholder { color: rgba(244, 235, 217, 0.5); }

.nav { display: flex; align-items: center; gap: 30px; }
.nav-item {
  position: relative;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 235, 217, 0.82);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-item:hover, .nav-item.active { color: var(--gold-light); }
.nav-item::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-classic);
  transition: width 0.3s ease;
}
.nav-item:hover::after, .nav-item.active::after { width: 100%; }
.nav-item .caret { font-size: 8px; opacity: 0.6; }

.nav-dropdown {
  position: relative;
}
/* Invisible bridge so cursor can travel from trigger to menu without losing hover */
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 18px;
  z-index: 99;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 640px;
  background: var(--emerald-deep);
  border: 1px solid rgba(228, 179, 93, 0.18);
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 8px;
}
.nav-dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 9px 14px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(244, 235, 217, 0.85);
  font-weight: 400;
  border-left: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  color: var(--gold-light);
  background: rgba(228, 179, 93, 0.06);
  border-left-color: var(--gold-classic);
  padding-left: 18px;
}
.dropdown-menu a.dropdown-view-all {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(228, 179, 93, 0.15);
  border-left: none;
  text-align: center;
  color: var(--gold-classic);
  letter-spacing: 0.18em;
  font-size: 11px;
  text-transform: uppercase;
}
.dropdown-menu a.dropdown-view-all:hover {
  border-left: none;
  padding-left: 14px;
  color: var(--gold-light);
}

.header-cta { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-cta .btn { padding: 12px 22px; font-size: 11px; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-light);
  font-size: 26px;
  cursor: pointer;
  padding: 6px;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--emerald-deep);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  padding: 100px 30px 40px;
}
.mobile-drawer.open { opacity: 1; pointer-events: auto; }
.mobile-drawer a {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ivory);
  font-weight: 300;
}
.mobile-drawer a:hover { color: var(--gold-light); }
.mobile-drawer .close {
  position: absolute;
  top: 24px; right: 28px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--gold-light);
  cursor: pointer;
}

/* ============================================================
   HERO — Bold ASIADMC.com energy, luxury palette
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 110px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 22, 18, 0.55) 0%, rgba(11, 22, 18, 0.4) 40%, rgba(11, 22, 18, 0.9) 100%);
  z-index: 2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  animation: heroSlowZoom 24s ease-out infinite alternate;
}
@keyframes heroSlowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.16); }
}

/* ---------- Hero slideshow (5 rotating images, 3s each) ---------- */
.hero-slideshow .hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(1.1);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  animation: heroSlideZoom 8s ease-out infinite alternate;
}
.hero-slideshow .hero-slide.active {
  opacity: 1;
  z-index: 1;
}
@keyframes heroSlideZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  padding: 60px 0 60px;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(64px, 11vw, 168px);
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin-bottom: 36px;
  animation: rise 1.4s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero h1 .accent {
  font-style: italic;
  font-weight: 300;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 300;
  line-height: 1.55;
  max-width: 660px;
  color: rgba(244, 235, 217, 0.88);
  margin-bottom: 44px;
  animation: rise 1.4s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: rise 1.4s 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-eyebrow {
  margin-bottom: 28px;
  animation: rise 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

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

.hero-scroll { display: none !important; }

/* Image fallback — any broken image gets a branded gradient placeholder */
img {
  background:
    linear-gradient(135deg, rgba(228, 179, 93, 0.12) 0%, rgba(118, 104, 67, 0.08) 100%),
    var(--emerald-night);
}
.dest-card img, .place-image img, .journey-image img, .news-image img, .hero-bg img, .essence-image img, .split-image img {
  background:
    linear-gradient(135deg, rgba(228, 179, 93, 0.15) 0%, rgba(11, 22, 18, 1) 100%);
}

/* Compact page hero (interior pages) */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 130px;
  padding-bottom: 60px;
}
.page-hero h1 {
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  margin-bottom: 22px;
}
.page-hero-sub {
  font-size: clamp(16px, 1.2vw, 19px);
  max-width: 640px;
  color: rgba(244, 235, 217, 0.85);
  margin-bottom: 32px;
}

/* ============================================================
   Stats counter (asiadmc-inspired)
   ============================================================ */
.stats-row {
  background: var(--emerald-deep);
  border-top: 1px solid rgba(228, 179, 93, 0.12);
  border-bottom: 1px solid rgba(228, 179, 93, 0.12);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 60px 0;
}
.stat-item {
  text-align: center;
  border-right: 1px solid rgba(228, 179, 93, 0.15);
  padding: 0 20px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 235, 217, 0.7);
}

/* ============================================================
   Section + Trust strip
   ============================================================ */
section { position: relative; }
.section-pad { padding: var(--section-pad) 0; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 70px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 17px; line-height: 1.7; }

.trust-strip {
  background: var(--emerald-deep);
  padding: 26px 0;
  border-top: 1px solid rgba(228, 179, 93, 0.1);
  border-bottom: 1px solid rgba(228, 179, 93, 0.1);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.trust-label { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-bronze); }
.trust-items { display: flex; gap: clamp(28px, 4vw, 60px); flex-wrap: wrap; }
.trust-item { font-family: var(--serif); font-style: italic; font-size: 17px; color: rgba(244, 235, 217, 0.72); }

/* ============================================================
   Essence (about)
   ============================================================ */
.essence { background: var(--emerald-black); position: relative; overflow: hidden; }
.essence::before {
  content: "";
  position: absolute;
  top: 10%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(228, 179, 93, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.essence-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.essence-text .eyebrow { margin-bottom: 26px; }
.essence-text h2 { font-weight: 300; margin-bottom: 30px; }
.essence-text p { margin-bottom: 22px; font-size: 17px; line-height: 1.8; }
.essence-text p:last-child { margin-bottom: 0; }

.essence-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.essence-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.92); }
.essence-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(228, 179, 93, 0.3);
  transform: translate(20px, 20px);
  pointer-events: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 100px;
  border-top: 1px solid rgba(228, 179, 93, 0.15);
  border-bottom: 1px solid rgba(228, 179, 93, 0.15);
}
.value-item {
  padding: 38px 24px;
  text-align: center;
  border-right: 1px solid rgba(228, 179, 93, 0.15);
  transition: background 0.4s ease;
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: rgba(228, 179, 93, 0.04); }
.value-num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold-classic); margin-bottom: 12px; }
.value-title { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--ivory); line-height: 1.25; }

/* ============================================================
   Services rows
   ============================================================ */
.services { background: var(--emerald-deep); }
.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 1.2fr 0.8fr 60px;
  gap: 30px;
  align-items: center;
  padding: 44px 0;
  border-top: 1px solid rgba(228, 179, 93, 0.15);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}
.service-row:last-child { border-bottom: 1px solid rgba(228, 179, 93, 0.15); }
.service-row::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--gold-gradient);
  opacity: 0.05;
  transition: width 0.5s ease;
}
.service-row:hover::before { width: 100%; }
.service-row:hover .service-arrow { transform: translateX(8px); color: var(--gold-light); }
.service-num { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--gold-bronze); }
.service-title { font-family: var(--serif); font-size: clamp(26px, 2.6vw, 36px); font-weight: 400; color: var(--ivory); line-height: 1.15; }
.service-desc { font-size: 15px; line-height: 1.6; color: rgba(244, 235, 217, 0.7); }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 11px; border: 1px solid rgba(228, 179, 93, 0.3); color: var(--gold-classic); }
.service-arrow { font-size: 22px; color: var(--gold-bronze); transition: all 0.4s ease; text-align: right; }

/* ============================================================
   Destinations grid
   ============================================================ */
.destinations { background: var(--emerald-black); overflow: hidden; }
.dest-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}
.dest-card.large { grid-column: span 5; aspect-ratio: 4 / 5; }
.dest-card.medium { grid-column: span 4; }
.dest-card.tall { grid-column: span 3; aspect-ratio: 3 / 5; }
.dest-card.wide { grid-column: span 7; aspect-ratio: 16 / 11; }
.dest-card.small { grid-column: span 5; aspect-ratio: 16 / 11; }
.dest-card.third { grid-column: span 4; aspect-ratio: 4 / 5; }
.dest-card.half { grid-column: span 6; aspect-ratio: 16 / 10; }
.dest-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  filter: brightness(0.78) saturate(1.05);
}
.dest-card:hover img { transform: scale(1.08); }
.dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11, 22, 18, 0.9) 100%);
  pointer-events: none;
}
.dest-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 32px;
  z-index: 2;
  color: var(--ivory);
}
.dest-content .eyebrow { font-size: 10px; color: var(--gold-light); margin-bottom: 10px; }
.dest-content .eyebrow::before { background: var(--gold-light); }
.dest-name { font-family: var(--serif); font-size: clamp(24px, 2.4vw, 34px); font-weight: 400; line-height: 1.05; margin-bottom: 6px; }
.dest-tagline { font-family: var(--serif); font-style: italic; font-size: 15px; color: rgba(244, 235, 217, 0.85); font-weight: 300; }
.dest-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s ease;
}
.dest-card:hover .dest-cta { opacity: 1; transform: translateY(0); }
.dest-view-all { text-align: center; margin-top: 60px; }

/* Country-specific compact card */
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.place-card {
  background: var(--emerald-night);
  border: 1px solid rgba(228, 179, 93, 0.12);
  overflow: hidden;
  transition: all 0.5s ease;
}
.place-card:hover { border-color: rgba(228, 179, 93, 0.4); transform: translateY(-6px); }
.place-image { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.place-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.place-card:hover .place-image img { transform: scale(1.06); }
.place-body { padding: 28px; }
.place-meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-bronze); margin-bottom: 10px; }
.place-name { font-family: var(--serif); font-size: 26px; font-weight: 400; margin-bottom: 12px; line-height: 1.15; }
.place-desc { font-size: 14px; line-height: 1.65; color: rgba(244, 235, 217, 0.72); margin-bottom: 16px; }
.place-link { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-classic); display: inline-flex; align-items: center; gap: 8px; }
.place-link:hover { color: var(--gold-light); }

/* ============================================================
   Journey cards
   ============================================================ */
.journeys { background: var(--emerald-deep); }
.journeys::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 179, 93, 0.35), transparent);
}
.journey-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.journey-card {
  background: var(--emerald-night);
  border: 1px solid rgba(228, 179, 93, 0.12);
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex; flex-direction: column;
}
.journey-card:hover { border-color: rgba(228, 179, 93, 0.4); transform: translateY(-6px); }
.journey-image { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.journey-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.journey-card:hover .journey-image img { transform: scale(1.05); }
.journey-badge {
  position: absolute;
  top: 18px; left: 18px;
  padding: 6px 12px;
  background: rgba(11, 22, 18, 0.85);
  border: 1px solid var(--gold-classic);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  backdrop-filter: blur(8px);
}
.journey-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.journey-meta { display: flex; gap: 18px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-bronze); margin-bottom: 14px; }
.journey-title { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 12px; line-height: 1.15; }
.journey-desc { font-size: 14px; line-height: 1.65; color: rgba(244, 235, 217, 0.7); margin-bottom: 22px; flex-grow: 1; }
.journey-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid rgba(228, 179, 93, 0.12); }
.journey-price { font-family: var(--serif); font-size: 13px; font-style: italic; color: var(--gold-bronze); }
.journey-price strong { font-style: normal; font-weight: 400; font-size: 20px; color: var(--gold-light); letter-spacing: 0.02em; }
.journey-link { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-classic); display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s ease; }
.journey-link:hover { gap: 12px; }

/* ============================================================
   Why us
   ============================================================ */
.why-us { background: var(--emerald-black); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: start; }
.why-intro h2 { font-weight: 300; margin-bottom: 26px; }
.why-intro p { font-size: 17px; line-height: 1.75; margin-bottom: 30px; }
.why-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(228, 179, 93, 0.18);
  margin-top: 40px;
}
.stat {
  padding: 28px 0;
  border-bottom: 1px solid rgba(228, 179, 93, 0.18);
  border-right: 1px solid rgba(228, 179, 93, 0.18);
  padding-right: 20px;
}
.stat:nth-child(even) { border-right: none; padding-left: 24px; }
.stat-bignum {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.why-list { display: flex; flex-direction: column; gap: 36px; }
.why-card {
  padding: 32px;
  border: 1px solid rgba(228, 179, 93, 0.15);
  background: linear-gradient(180deg, rgba(228, 179, 93, 0.025), transparent);
  position: relative;
  transition: all 0.4s ease;
}
.why-card:hover { border-color: rgba(228, 179, 93, 0.4); transform: translateX(6px); }
.why-card-num { font-family: var(--serif); font-style: italic; font-size: 12px; color: var(--gold-bronze); margin-bottom: 12px; }
.why-card h3 { font-weight: 400; font-size: 26px; margin-bottom: 12px; color: var(--gold-light); }
.why-card p { font-size: 15px; line-height: 1.7; }

/* ============================================================
   Process
   ============================================================ */
.process { background: var(--emerald-deep); }
.process::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 179, 93, 0.35), transparent);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 179, 93, 0.3) 30%, rgba(228, 179, 93, 0.3) 70%, transparent);
  z-index: 0;
}
.process-step { position: relative; z-index: 1; }
.process-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-classic);
  background: var(--emerald-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 22px;
}
.process-step h4 { font-weight: 400; font-size: 22px; margin-bottom: 10px; color: var(--ivory); }
.process-step p { font-size: 14px; line-height: 1.65; color: rgba(244, 235, 217, 0.7); }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--emerald-black); position: relative; overflow: hidden; }
.testimonials::before {
  content: "❝";
  position: absolute;
  top: 60px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 220px;
  line-height: 1;
  color: rgba(228, 179, 93, 0.08);
  pointer-events: none;
}
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 50px; margin-top: 40px; }
.testi-card {
  padding: 50px 40px;
  border: 1px solid rgba(228, 179, 93, 0.18);
  background: linear-gradient(180deg, rgba(228, 179, 93, 0.04), transparent);
}
.testi-stars { color: var(--gold-classic); letter-spacing: 4px; font-size: 15px; margin-bottom: 24px; }
.testi-quote { font-family: var(--serif); font-style: italic; font-size: clamp(20px, 1.8vw, 24px); font-weight: 300; line-height: 1.55; color: var(--ivory); margin-bottom: 30px; }
.testi-author { display: flex; align-items: center; gap: 16px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--emerald-deep);
}
.testi-name { font-size: 15px; font-weight: 500; color: var(--ivory); }
.testi-loc { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-bronze); margin-top: 2px; }

/* ============================================================
   Press / CTA banner / Inquiry / Contact / Footer / News
   ============================================================ */
.press {
  background: var(--emerald-deep);
  padding: 70px 0;
  border-top: 1px solid rgba(228, 179, 93, 0.12);
  border-bottom: 1px solid rgba(228, 179, 93, 0.12);
}
.press-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.press-label { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--gold-bronze); }
.press-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(30px, 5vw, 60px); align-items: center; }
.press-logos span { font-family: var(--serif); font-size: clamp(20px, 2.2vw, 28px); font-style: italic; color: rgba(244, 235, 217, 0.5); transition: color 0.3s ease; cursor: default; }
.press-logos span:hover { color: var(--gold-light); }

.cta-banner { position: relative; overflow: hidden; background: var(--emerald-night); padding: var(--section-pad) 0; }
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1469474968028-56623f02e42e?auto=format&fit=crop&w=2000&q=80');
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.cta-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11, 22, 18, 0.85), rgba(11, 22, 18, 0.95)); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.cta-inner h2 { font-weight: 300; margin-bottom: 26px; }
.cta-inner p { font-size: 17px; line-height: 1.7; margin-bottom: 38px; }
.cta-inner .btn { margin: 0 8px 12px; }

.inquiry { background: var(--emerald-black); }
.inquiry-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.inquiry-text h2 { font-weight: 300; margin-bottom: 24px; }
.inquiry-text p { font-size: 16px; line-height: 1.7; margin-bottom: 30px; }
.inquiry-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.inquiry-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: rgba(244, 235, 217, 0.85); }
.inquiry-list li::before { content: "✦"; color: var(--gold-classic); font-size: 14px; margin-top: 3px; flex-shrink: 0; }

.form-card {
  background: linear-gradient(180deg, rgba(228, 179, 93, 0.03), transparent);
  border: 1px solid rgba(228, 179, 93, 0.18);
  padding: clamp(30px, 4vw, 50px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.field { margin-bottom: 20px; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-bronze); margin-bottom: 10px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(11, 22, 18, 0.6);
  border: 1px solid rgba(228, 179, 93, 0.2);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-classic);
  background: rgba(11, 22, 18, 0.8);
}
.field textarea { min-height: 120px; resize: vertical; }
.field select {
  appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23C89B4B' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.field option { background: var(--emerald-black); color: var(--ivory); }
.form-card button { width: 100%; margin-top: 10px; }
.form-note { font-size: 12px; color: rgba(244, 235, 217, 0.5); text-align: center; margin-top: 16px; font-style: italic; font-family: var(--serif); }

.contact { background: var(--emerald-deep); }
.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.contact-card {
  padding: 36px 24px; text-align: center;
  border: 1px solid rgba(228, 179, 93, 0.15);
  transition: all 0.4s ease;
}
.contact-card:hover { border-color: var(--gold-classic); background: rgba(228, 179, 93, 0.03); transform: translateY(-4px); }
.contact-icon { font-family: var(--serif); font-style: italic; font-size: 30px; color: var(--gold-classic); margin-bottom: 18px; }
.contact-card h4 { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; font-family: var(--sans); font-weight: 500; color: var(--gold-bronze); margin-bottom: 14px; }
.contact-card p, .contact-card a { font-size: 15px; line-height: 1.55; color: var(--ivory); font-weight: 300; }
.contact-card a:hover { color: var(--gold-light); }

/* News / Journal */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.news-card {
  border: 1px solid rgba(228, 179, 93, 0.12);
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex; flex-direction: column;
}
.news-card:hover { border-color: rgba(228, 179, 93, 0.4); transform: translateY(-6px); }
.news-image { aspect-ratio: 4 / 3; overflow: hidden; }
.news-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.news-card:hover .news-image img { transform: scale(1.06); }
.news-body { padding: 28px; flex-grow: 1; display: flex; flex-direction: column; }
.news-date { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-bronze); margin-bottom: 12px; }
.news-title { font-family: var(--serif); font-size: 24px; font-weight: 400; margin-bottom: 12px; line-height: 1.2; }
.news-excerpt { font-size: 14px; line-height: 1.65; color: rgba(244, 235, 217, 0.72); flex-grow: 1; margin-bottom: 18px; }

.site-footer {
  background: var(--emerald-deep);
  padding: 90px 0 30px;
  border-top: 1px solid rgba(228, 179, 93, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand img { height: 64px; margin-bottom: 24px; }
.footer-brand p { font-size: 15px; line-height: 1.7; color: rgba(244, 235, 217, 0.7); max-width: 320px; margin-bottom: 24px; }
.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 26px;
}
.social-links { display: flex; gap: 14px; }
.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(228, 179, 93, 0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold-classic);
  transition: all 0.3s ease;
}
.social-links a:hover { background: var(--gold-gradient); color: var(--emerald-deep); border-color: transparent; transform: translateY(-3px); }

.footer-col h5 { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-classic); margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(244, 235, 217, 0.75); transition: color 0.3s ease, padding 0.3s ease; }
.footer-col a:hover { color: var(--gold-light); padding-left: 5px; }

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(228, 179, 93, 0.12);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.footer-copy { font-size: 13px; color: rgba(244, 235, 217, 0.55); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(244, 235, 217, 0.55); }
.footer-legal a:hover { color: var(--gold-light); }

/* Long content (about, country detail) */
.prose {
  max-width: 800px;
  margin: 0 auto;
}
.prose p { font-size: 17px; line-height: 1.85; margin-bottom: 24px; }
.prose h3 { font-size: 32px; margin-top: 50px; margin-bottom: 20px; color: var(--gold-light); }
.prose h4 { font-size: 24px; margin-top: 36px; margin-bottom: 14px; }

.split-section { background: var(--emerald-black); }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split-grid.reverse { direction: rtl; }
.split-grid.reverse > * { direction: ltr; }
.split-image { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { font-weight: 300; margin-bottom: 24px; }
.split-text p { font-size: 17px; line-height: 1.8; margin-bottom: 18px; }
.split-text .eyebrow { margin-bottom: 22px; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1200px) {
  .header-inner { grid-template-columns: auto auto auto; }
  .header-search { display: none; }
  .nav { gap: 22px; }
  .dropdown-menu {
    width: 460px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1100px) {
  .essence-grid, .why-grid, .inquiry-grid, .split-grid { grid-template-columns: 1fr; }
  .split-grid.reverse { direction: ltr; }
  .journey-cards, .places-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .value-item:nth-child(2n) { border-right: none; }
  .value-item { border-bottom: 1px solid rgba(228,179,93,0.15); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dest-card, .dest-card.large, .dest-card.medium, .dest-card.tall, .dest-card.wide, .dest-card.small, .dest-card.third, .dest-card.half {
    grid-column: span 6;
    aspect-ratio: 4 / 5;
  }
  .testi-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 50px 1fr 40px; gap: 20px; }
  .service-desc, .service-tags { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-bottom: 1px solid rgba(228,179,93,0.15); padding-bottom: 30px; margin-bottom: 30px; }
}
@media (max-width: 720px) {
  .nav, .header-cta .btn { display: none; }
  .mobile-toggle { display: block; }
  .hero-content { padding: 60px 0 40px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .journey-cards, .places-grid, .news-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(228,179,93,0.15); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .dest-card, .dest-card.large, .dest-card.medium, .dest-card.tall, .dest-card.wide, .dest-card.small, .dest-card.third, .dest-card.half { grid-column: span 12; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr; padding: 40px 0; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(228,179,93,0.15); padding: 24px 0; }
  .stat-item:last-child { border-bottom: none; }
}
