/* ═══════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════ */
:root {
  --ink:    #0a0f1a;
  --ink-60: rgba(10,15,26,0.6);
  --ink-20: rgba(10,15,26,0.1);
  --gold:   #c9a84c;
  --gold-light: #e8d28a;
  --gold-pale: rgba(201,168,76,0.12);
  --terracotta: #c05a2a;
  --slate:  #1e3a5f;
  --mist:   #f4f1ea;
  --paper:  #faf8f3;
  --white:  #ffffff;
  --glass:  rgba(255,255,255,0.07);
  --glass-b:rgba(255,255,255,0.16);
  --on-dark: rgba(255,255,255,0.88);
  --on-dark-50: rgba(255,255,255,0.5);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-hero: 'Bebas Neue', sans-serif;
  --ease-out: cubic-bezier(0.22,1,0.36,1);
  --ease-io: cubic-bezier(0.65,0,0.35,1);
  --r: 18px;
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family: var(--font-body);
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ─── UTILITIES ─── */
.overline {
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--font-body); font-size:10px; font-weight:700;
  letter-spacing:0.22em; text-transform:uppercase; color:var(--gold);
}
.overline::before { content:''; display:block; width:28px; height:1px; background:var(--gold); }


/* ═══════════════════════════════════
   NAV — FIXED
═══════════════════════════════════ */

/* ── Hero nav (dark background) ── */
.hero-nav {
  position: absolute; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 52px; gap: 0;
  background: linear-gradient(to bottom, rgba(10,15,26,0.65) 0%, transparent 100%);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; cursor: pointer; flex-shrink: 0; z-index: 2;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(12px); background: rgba(255,255,255,0.1); flex-shrink: 0;
  align-self: center;
}
.nav-logo-mark svg { width: 20px; height: 20px; display: block; }
.nav-logo-name {
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: #ffffff !important; line-height: 1.25; letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  align-self: center;
}

/* Center the nav links using flex-1 trick — no absolute positioning */
.nav-links-center {
  flex: 1;
  display: flex; justify-content: center; align-items: center;
  gap: 34px; list-style: none;
  position: static; left: auto; transform: none;
}
.nav-links-center > li { position: relative; }
.nav-links-center > li > a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.92); text-decoration: none; opacity: 1;
  transition: color 0.2s; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  white-space: nowrap; padding: 8px 0;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.nav-links-center > li > a:hover { color: var(--gold); }
.nav-links-center a .chevron {
  width: 9px; height: 9px; flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}
.nav-links-center > li:hover > a .chevron { transform: rotate(180deg); }

/* Right side buttons */
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; z-index: 2; }

.nav-cta-pill {
  background: var(--gold); color: var(--ink); padding: 10px 22px;
  border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; border: none;
  font-family: var(--font-body); transition: all 0.2s; white-space: nowrap;
}
.nav-cta-pill:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── Search — ICON ONLY, no expanding bar ── */
.nav-search-wrap { display: flex; align-items: center; }
.nav-search {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px); display: flex; align-items: center;
  justify-content: center; cursor: pointer; color: rgba(255,255,255,0.92);
  transition: all 0.22s; flex-shrink: 0;
}
.nav-search:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(201,168,76,0.6);
  color: var(--gold);
}
/* No search bar — completely hidden */
.nav-search-bar { display: none !important; }
.nav-search-input { display: none !important; }

/* ══════════════════════════════
   DROPDOWN — JS controlled via .dd-open class
   (CSS :hover alone vanishes on mouse gap)
══════════════════════════════ */
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(8,12,22,0.97); backdrop-filter: blur(24px);
  border: 1px solid rgba(201,168,76,0.22); border-radius: 16px;
  padding: 8px 0; min-width: 270px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
  box-shadow: 0 28px 64px rgba(0,0,0,0.65);
  z-index: 500;
}
/* Invisible hover bridge: fills the gap between nav link and dropdown */
.nav-dropdown::after {
  content: ''; position: absolute; bottom: 100%; left: 0; right: 0; height: 14px;
}
/* Arrow tip */
.nav-dropdown::before {
  content: ''; position: absolute; top: -5px; left: 50%;
  width: 10px; height: 10px; background: rgba(8,12,22,0.97);
  border-left: 1px solid rgba(201,168,76,0.22);
  border-top: 1px solid rgba(201,168,76,0.22);
  transform: translateX(-50%) rotate(45deg); z-index: 1;
}
/* Open state — triggered by JS adding .dd-open to the <li> */
.nav-links-center > li.dd-open .nav-dropdown,
.nav-links-flat > li.dd-open .nav-dropdown {
  opacity: 1; pointer-events: all; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex; align-items: center; gap: 14px; padding: 11px 20px;
  cursor: pointer; transition: background 0.15s;
  color: rgba(255,255,255,0.65); font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
}
.nav-dropdown-item:hover { background: rgba(201,168,76,0.1); color: var(--gold); }
.nav-dropdown-item .flag-emoji { font-size: 20px; line-height: 1; flex-shrink: 0; }
.nav-dropdown-item .item-detail { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-item .item-country {
  font-family: var(--font-display); font-size: 17px; font-weight: 600;
  font-style: italic; text-transform: none; letter-spacing: 0;
  color: rgba(255,255,255,0.92); line-height: 1.1;
}
.nav-dropdown-item:hover .item-country { color: var(--gold-light); }
.nav-dropdown-item .item-count { font-size: 9px; letter-spacing: 0.12em; opacity: 0.4; }
.nav-dropdown-divider { height: 1px; background: rgba(201,168,76,0.12); margin: 6px 0; }
.nav-dropdown-all {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; cursor: pointer; transition: background 0.15s;
  color: var(--gold); font-size: 10px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-top: 1px solid rgba(201,168,76,0.12); margin-top: 4px;
}
.nav-dropdown-all:hover { background: rgba(201,168,76,0.08); }

/* ══════════════════════════════
   WHITE NAV (destinations / about)
══════════════════════════════ */
.white-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 52px; background: var(--white);
  border-bottom: 1px solid var(--ink-20);
  position: sticky; top: 0; z-index: 200;
}
.white-nav .nav-logo-mark { border-color: var(--ink-20); background: var(--mist); }
.white-nav .nav-logo-mark svg { stroke: var(--ink); }
.white-nav .nav-logo-name { color: var(--ink) !important; text-shadow: none; display: inline-block !important; visibility: visible !important; opacity: 1 !important; }

.white-nav .nav-links-flat {
  flex: 1; display: flex; justify-content: center; align-items: center;
  gap: 30px; list-style: none;
}
.white-nav .nav-links-flat > li { position: relative; }
.white-nav .nav-links-flat > li > a {
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink); text-decoration: none; opacity: 0.5;
  transition: opacity 0.2s, color 0.2s; cursor: pointer;
  display: flex; align-items: center; gap: 5px; padding: 6px 0;
}
.white-nav .nav-links-flat > li > a:hover { opacity: 1; }
.white-nav .nav-links-flat > li > a.active { opacity: 1; color: var(--terracotta); }
.white-nav .nav-links-flat a .chevron {
  width: 9px; height: 9px; transition: transform 0.25s var(--ease-out);
}
.white-nav .nav-links-flat > li:hover > a .chevron,
.white-nav .nav-links-flat > li.dd-open > a .chevron { transform: rotate(180deg); }

/* White nav dropdown */
.white-nav .nav-dropdown {
  background: var(--white); border-color: var(--ink-20);
  box-shadow: 0 20px 60px rgba(10,15,26,0.14);
}
.white-nav .nav-dropdown::before { background: var(--white); border-color: rgba(10,15,26,0.1); }
.white-nav .nav-dropdown-item { color: var(--ink-60); }
.white-nav .nav-dropdown-item:hover { background: var(--mist); color: var(--ink); }
.white-nav .nav-dropdown-item .item-country { color: var(--ink); }
.white-nav .nav-dropdown-item:hover .item-country { color: var(--terracotta); }
.white-nav .nav-dropdown-all { color: var(--terracotta); border-top-color: var(--ink-20); }
.white-nav .nav-dropdown-all:hover { background: var(--mist); }
.white-nav .nav-links-flat > li.dd-open .nav-dropdown {
  opacity: 1; pointer-events: all; visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out), visibility 0s linear 0s;
}
.white-nav .nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.white-nav .nav-cta-pill { background: var(--terracotta); color: #fff; }
.white-nav .nav-cta-pill:hover { background: #a84c22; }
/* White nav search */
.white-nav .nav-search {
  border-color: var(--ink-20); background: var(--mist); color: var(--ink);
}
.white-nav .nav-search:hover {
  background: var(--paper); border-color: var(--terracotta); color: var(--terracotta);
}

/* ══════════════════════════════
   HAMBURGER + MOBILE DRAWER
══════════════════════════════ */
.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center;
  width: 40px; height: 40px; cursor: pointer; gap: 5px; z-index: 200;
  border: none; background: transparent; padding: 4px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px; background: #fff;
  border-radius: 2px; transition: all 0.3s var(--ease-out); transform-origin: center;
}
.hamburger.white-ham span { background: var(--ink); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══════════════════════════════
   HERO — properly centred vertically
══════════════════════════════ */
.hero-wrap {
  position: relative; height: 100svh; height: 100vh; overflow: hidden;
  z-index: 0; min-height: 600px;
  display: flex; flex-direction: column;
}
.slide-bg { position: absolute; inset: 0; z-index: 0; }
.bg-layer {
  position: absolute; inset: 0; opacity: 0;
  transform: scale(1.06); transition: opacity 1.2s var(--ease-io), transform 8s linear;
}
.bg-layer.active { opacity: 1; transform: scale(1); }
.slide-bg::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(10,15,26,0.92) 0%, rgba(10,15,26,0.6) 45%, rgba(10,15,26,0.1) 100%);
}
.hero-scroll-indicator {
  position: absolute; left: 36px; top: 0; bottom: 0; z-index: 20;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.hero-scroll-line { width: 1px; background: rgba(255,255,255,0.18); flex: 1; max-height: 80px; }
.hero-dots { display: flex; flex-direction: column; gap: 8px; }
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.28); cursor: pointer; transition: all 0.4s var(--ease-out);
}
.hero-dot.active {
  background: var(--gold); transform: scale(1.7);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.22);
}
.hero-scroll-line-b { width: 1px; background: rgba(255,255,255,0.18); flex: 1; max-height: 80px; }
/* Hero content — flex child, vertically centred (nav is position:absolute overlay) */
.hero-content {
  position: relative;
  left: unset; top: unset; transform: none;
  flex: 1 1 auto;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 80px 80px 80px;
  max-width: 660px;
  width: 100%;
  z-index: 20;
  box-sizing: border-box;
}

.hero-overline::before { content:''; width:32px; height:1px; background:var(--gold); }
.hero-title {
  font-family:var(--font-hero); font-size:clamp(80px,11vw,150px);
  color:var(--white); line-height:0.88; letter-spacing:0.025em; margin-bottom:24px;
  transition:opacity 0.5s,transform 0.5s;
}
.hero-title.fade { opacity:0; transform:translateY(24px); }
.hero-body {
  font-size:14px; line-height:1.8; color:rgba(255,255,255,0.72);
  max-width:400px; margin-bottom:36px; transition:opacity 0.5s;
}
.hero-body.fade { opacity:0; }
.btn-cta {
  display:inline-flex; align-items:center; gap:14px;
  background:transparent; border:1px solid var(--gold);
  color:var(--white); padding:15px 30px; border-radius:3px;
  font-size:12px; font-weight:600; letter-spacing:0.14em; text-transform:uppercase;
  cursor:pointer; font-family:var(--font-body); transition:all 0.25s;
}
.btn-cta:hover { background:var(--gold); color:var(--ink); }
.btn-cta .arrow-circle {
  width:26px; height:26px; border-radius:50%; border:1px solid currentColor;
  display:flex; align-items:center; justify-content:center; font-size:13px;
}
.hero-cards {
  position:absolute; right:0; top:50%; transform:translateY(-50%);
  z-index:20; display:flex; align-items:flex-end; gap:14px;
  padding-right:52px; pointer-events:none;
}
.h-card { border-radius:16px; overflow:hidden; position:relative; flex-shrink:0; width:190px; }
.h-card-bg { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:40px; }
.h-card-scrim { position:absolute; inset:0; background:linear-gradient(to top,rgba(10,15,26,0.9) 0%,transparent 55%); }
.h-card-label {
  position:absolute; bottom:0; left:0; right:0; padding:14px 16px;
  font-family:var(--font-display); font-size:14px; font-weight:600;
  font-style:italic; color:#fff;
}
.hero-controls {
  position:absolute; bottom:36px; right:52px; z-index:20; display:flex; gap:10px;
}
.ctrl {
  width:44px; height:44px; border-radius:50%; border:1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:rgba(255,255,255,0.75); font-size:16px;
  transition:all 0.2s; backdrop-filter:blur(8px); background:var(--glass);
}
.ctrl:hover { background:var(--gold); color:var(--ink); border-color:var(--gold); }
.hero-progress {
  position:absolute; bottom:0; left:0; right:0; height:2px; background:rgba(255,255,255,0.08); z-index:20;
}
.hero-progress-bar {
  height:100%; background:var(--gold); width:0%;
  animation:progressFill 6s linear infinite;
}
@keyframes progressFill { from{width:0%;} to{width:100%;} }

/* ═══════════════════════════════════
   LOOKING FOR SECTION
═══════════════════════════════════ */
.section-title {
  font-family:var(--font-display); font-size:clamp(38px,5.5vw,62px);
  font-weight:600; color:var(--ink); line-height:1.05; letter-spacing:-0.02em;
}
.section-title em { font-style:italic; color:var(--gold); }

.looking-section { padding:90px 0 70px; background:var(--paper); }
.looking-header { text-align:center; padding:0 6%; margin-bottom:48px; }
.carousel-outer { overflow:hidden; width:100%; }
.carousel-track { display:flex; gap:16px; padding:0 6%; will-change:transform; cursor:grab; }
.carousel-track:active { cursor:grabbing; }
.cpanel {
  flex-shrink:0; width:210px; height:280px; border-radius:16px; overflow:hidden;
  position:relative; transition:transform 0.4s var(--ease-out),box-shadow 0.4s;
  box-shadow:0 8px 30px rgba(10,15,26,0.12);
}
.cpanel:hover { transform:translateY(-8px); box-shadow:0 20px 50px rgba(10,15,26,0.2); }
.cpanel-bg { width:100%; height:100%; display:flex; align-items:center; justify-content:center; font-size:52px; }
.cpanel-overlay { position:absolute; inset:0; background:linear-gradient(to top,rgba(10,15,26,0.85) 0%,transparent 50%); }
.cpanel-label {
  position:absolute; bottom:18px; left:16px; right:16px;
  font-family:var(--font-display); font-size:18px; font-weight:600;
  font-style:italic; color:#fff; letter-spacing:0.01em;
}
.carousel-controls { display:flex; justify-content:center; gap:10px; margin-top:36px; }
.car-btn {
  width:46px; height:46px; border-radius:50%;
  border:1px solid var(--ink-20); background:var(--white);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:var(--ink); font-size:16px;
  transition:all 0.2s; box-shadow:0 2px 10px rgba(10,15,26,0.06);
}
.car-btn:hover { background:var(--ink); color:var(--white); border-color:var(--ink); }

/* ═══════════════════════════════════
   COUNTRY DESTINATION SECTION
═══════════════════════════════════ */
.country-section {
  padding:100px 0 90px; background:var(--ink);
  position:relative; overflow:hidden;
  user-select:none; -webkit-user-select:none;
}
.country-section::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 70% 60% at 15% 60%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 85% 25%, rgba(30,58,95,0.35) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 50% 90%, rgba(192,90,42,0.05) 0%, transparent 70%);
}
.country-section-header {
  text-align:center; padding:0 6%; margin-bottom:60px; position:relative; z-index:1;
}
.country-section-header .overline { color:var(--gold); margin-bottom:18px; }
.country-section-title {
  font-family:var(--font-display); font-size:clamp(42px,5.5vw,72px);
  font-weight:600; color:var(--white); line-height:1.02;
  letter-spacing:-0.02em; margin-bottom:16px;
}
.country-section-title em { font-style:italic; color:var(--gold-light); }
.country-section-sub {
  font-size:14px; color:rgba(255,255,255,0.38);
  max-width:420px; margin:0 auto; line-height:1.85;
}
.drag-icon-hint {
  display:inline-flex; align-items:center; gap:6px;
  font-size:10px; letter-spacing:0.12em; text-transform:uppercase;
  color:rgba(255,255,255,0.25); margin-top:14px; font-weight:600;
}
.drag-icon-hint svg { opacity:0.4; }

.country-viewport {
  width:100%; overflow:hidden; position:relative;
  padding:20px 0 30px; cursor:grab; z-index:1;
}
.country-viewport:active { cursor:grabbing; }
.country-track {
  display:flex; gap:22px; padding:0 6%;
  transition:transform 0.65s cubic-bezier(0.22,1,0.36,1);
  will-change:transform;
}

/* Country Cards */
.country-card {
  flex-shrink:0; width:290px; height:400px;
  border-radius:22px; overflow:hidden; position:relative;
  transition:transform 0.45s var(--ease-out), box-shadow 0.45s, filter 0.45s;
  box-shadow:0 10px 40px rgba(0,0,0,0.4); cursor:pointer;
}
.country-card:hover {
  transform:translateY(-14px) scale(1.015);
  box-shadow:0 32px 80px rgba(0,0,0,0.6);
  filter:brightness(1.05);
}
.country-section.is-dragging .country-card {
  transform:none !important; box-shadow:0 10px 40px rgba(0,0,0,0.4) !important;
  transition:none; filter:none !important;
}
.ccard-gradient { position:absolute; inset:0; transition:transform 0.6s var(--ease-out); }
.country-card:hover .ccard-gradient { transform:scale(1.06); }
.ccard-pattern {
  position:absolute; inset:0; z-index:1; opacity:0.12;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255,255,255,0.06) 30px, rgba(255,255,255,0.06) 31px),
    repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(255,255,255,0.06) 30px, rgba(255,255,255,0.06) 31px);
  transition:opacity 0.4s;
}
.country-card:hover .ccard-pattern { opacity:0.2; }
.ccard-abbr {
  position:absolute; inset:0; z-index:2;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-hero); font-size:140px; font-weight:900;
  color:rgba(255,255,255,0.055); pointer-events:none;
  letter-spacing:-0.04em; line-height:1;
  transition:transform 0.6s var(--ease-out), opacity 0.4s;
}
.country-card:hover .ccard-abbr { transform:scale(1.1); opacity:0.08; }
.ccard-scrim {
  position:absolute; inset:0; z-index:3;
  background:linear-gradient(to top,rgba(6,9,18,0.98) 0%,rgba(6,9,18,0.6) 35%,rgba(6,9,18,0.15) 60%,transparent 100%);
}
.country-card::before {
  content:''; position:absolute; inset:0; z-index:4;
  background:linear-gradient(135deg,rgba(255,255,255,0.08) 0%,transparent 50%);
  opacity:0; transition:opacity 0.4s;
}
.country-card:hover::before { opacity:1; }
.ccard-top { position:absolute; top:20px; left:20px; z-index:5; display:flex; align-items:center; gap:8px; }
.ccard-top-badge {
  background:rgba(201,168,76,0.15); border:1px solid rgba(201,168,76,0.3); color:var(--gold);
  font-size:9px; font-weight:700; letter-spacing:0.18em; text-transform:uppercase;
  padding:5px 11px; border-radius:50px; backdrop-filter:blur(10px);
}
.ccard-flag {
  position:absolute; top:18px; right:18px; z-index:5;
  font-size:22px; filter:drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transition:transform 0.3s var(--ease-out);
}
.country-card:hover .ccard-flag { transform:scale(1.2) rotate(-5deg); }
.ccard-body { position:absolute; bottom:0; left:0; right:0; z-index:5; padding:26px 24px 24px; }
.ccard-tagline {
  font-size:10px; color:rgba(255,255,255,0.35); letter-spacing:0.1em;
  text-transform:uppercase; font-weight:600; margin-bottom:10px;
  opacity:0; transform:translateY(6px);
  transition:opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out); transition-delay:0.05s;
}
.country-card:hover .ccard-tagline { opacity:1; transform:translateY(0); }
.ccard-country-name {
  font-family:var(--font-display); font-size:30px; font-weight:700;
  color:var(--white); line-height:1; margin-bottom:6px; letter-spacing:0.01em;
}
.ccard-country-name span { font-style:italic; font-weight:300; opacity:0.6; font-size:22px; margin-left:4px; }
.ccard-listings { font-size:11px; font-weight:600; color:rgba(255,255,255,0.38); letter-spacing:0.06em; margin-bottom:16px; }
.ccard-dest-pills {
  display:flex; gap:6px; flex-wrap:wrap; margin-bottom:16px;
  opacity:0; transform:translateY(8px);
  transition:opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.country-card:hover .ccard-dest-pills { opacity:1; transform:translateY(0); }
.ccard-dest-pill {
  background:rgba(255,255,255,0.09); border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.65); font-size:9px; font-weight:600;
  letter-spacing:0.08em; text-transform:uppercase; padding:4px 9px;
  border-radius:4px; backdrop-filter:blur(6px);
}
.ccard-cta {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--gold); color:var(--ink);
  font-size:10px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase;
  padding:10px 20px; border-radius:50px;
  transition:all 0.3s var(--ease-out); transform:translateY(10px); opacity:0;
}
.country-card:hover .ccard-cta { opacity:1; transform:translateY(0); }
.country-section.is-dragging .ccard-cta { opacity:0 !important; }

.country-drag-hint {
  display:flex; justify-content:center; align-items:center; gap:20px;
  margin-top:40px; position:relative; z-index:1;
}
.cdrag-dots { display:flex; gap:7px; }
.cdrag-dot {
  width:7px; height:7px; border-radius:50%;
  background:rgba(255,255,255,0.18); transition:all 0.35s var(--ease-out); cursor:pointer;
}
.cdrag-dot.active { background:var(--gold); width:28px; border-radius:4px; }
.country-nav-btn {
  width:48px; height:48px; border-radius:50%;
  border:1px solid rgba(255,255,255,0.15); background:rgba(255,255,255,0.05);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; color:rgba(255,255,255,0.65); font-size:15px;
  transition:all 0.22s; backdrop-filter:blur(10px);
}
.country-nav-btn:hover { background:var(--gold); color:var(--ink); border-color:var(--gold); }

/* ─── OFFERINGS ─── */
.tailored-section { background:var(--white); padding:100px 6%; }
.tailored-header { text-align:center; max-width:720px; margin:0 auto 72px; }
.tailored-title {
  font-family:var(--font-display); font-size:clamp(42px,5.5vw,68px);
  font-weight:600; color:var(--ink); line-height:1.05;
  letter-spacing:-0.02em; margin-bottom:22px; margin-top:14px;
}
.tailored-sub { font-size:15px; line-height:1.85; color:var(--ink-60); }
.offerings-grid {
  display:grid; grid-template-columns:repeat(2,1fr); gap:2px;
  max-width:980px; margin:0 auto;
  border:2px solid var(--ink-20); border-radius:20px; overflow:hidden;
}
.offering-card { background:var(--paper); padding:44px 40px; position:relative; transition:background 0.3s; }
.offering-card::after {
  content:''; position:absolute; top:0; right:0; bottom:0; width:2px; background:var(--ink-20);
}
.offering-card:nth-child(2)::after,.offering-card:nth-child(4)::after { display:none; }
.offering-card:nth-child(1),.offering-card:nth-child(2) { border-bottom:2px solid var(--ink-20); }
.offering-card:hover { background:var(--mist); }
.offering-num { font-family:var(--font-hero); font-size:48px; color:rgba(201,168,76,0.18); line-height:1; margin-bottom:20px; }
.offering-title { font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--ink); margin-bottom:14px; letter-spacing:-0.01em; }
.offering-desc { font-size:14px; line-height:1.8; color:var(--ink-60); }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background:var(--paper); padding:100px 6%; }
.testimonials-header { text-align:center; margin-bottom:68px; }
.testimonials-masonry { display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:1180px; margin:0 auto; align-items:start; }
.tcard { background:var(--white); border-radius:16px; overflow:hidden; border:1px solid var(--ink-20); }
.tcard-visual { width:100%; aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; font-size:52px; }
.tcard-body { padding:28px 28px 24px; }
.tcard-quote { font-family:var(--font-display); font-size:18px; font-style:italic; font-weight:400; color:var(--ink); line-height:1.6; margin-bottom:16px; }
.tcard-author { font-size:11px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--gold); }
.tcard-flip { display:flex; flex-direction:column-reverse; }
.tcard-text { background:var(--ink); border-radius:16px; padding:36px 32px; }
.tcard-text .tcard-quote { color:rgba(255,255,255,0.82); font-size:20px; }
.tcard-text .tcard-author { color:var(--gold); }

/* ─── TICKER ─── */
.ticker-section {
  background:var(--ink); overflow:hidden; padding:18px 0;
  border-top:1px solid rgba(201,168,76,0.15); border-bottom:1px solid rgba(201,168,76,0.15);
}
.ticker-track { display:flex; white-space:nowrap; animation:tickerScroll 18s linear infinite; will-change:transform; }
@keyframes tickerScroll { from{transform:translateX(0);} to{transform:translateX(-50%);} }
.ticker-item {
  display:inline-flex; align-items:center; gap:18px; padding:0 28px;
  font-family:var(--font-body); font-size:11px; font-weight:600;
  letter-spacing:0.2em; text-transform:uppercase; color:rgba(255,255,255,0.45);
}
.ticker-diamond { width:5px; height:5px; background:var(--gold); transform:rotate(45deg); flex-shrink:0; }

/* ─── CTA BAND ─── */
.cta-band { background:var(--mist); padding:80px 6%; text-align:center; border-top:1px solid var(--ink-20); }
.cta-band h2 { font-family:var(--font-display); font-size:clamp(38px,5.5vw,62px); font-weight:300; color:var(--ink); line-height:1.1; margin-bottom:16px; }
.cta-band h2 em { font-style:italic; font-weight:600; }
.cta-band p { font-size:15px; color:var(--ink-60); margin-bottom:40px; }
.btn-primary {
  display:inline-flex; align-items:center; gap:12px;
  background:var(--ink); color:var(--white); padding:17px 52px;
  border-radius:3px; font-size:12px; font-weight:700; letter-spacing:0.14em;
  text-transform:uppercase; cursor:pointer; border:none;
  font-family:var(--font-body); transition:all 0.2s;
}
.btn-primary:hover { background:var(--slate); transform:translateY(-1px); }

/* ─── DESTINATIONS PAGE ─── */
.page-hero-band { background:var(--ink); padding:72px 6% 80px; position:relative; overflow:hidden; }
.page-hero-band::before {
  content:attr(data-text); position:absolute; right:-10px; top:50%; transform:translateY(-50%);
  font-family:var(--font-hero); font-size:180px; color:rgba(255,255,255,0.025); line-height:1; pointer-events:none;
}
.page-hero-band::after {
  content:''; position:absolute; bottom:0; left:6%; right:6%; height:1px;
  background:linear-gradient(to right,transparent,var(--gold),transparent);
}
.page-hero-title { font-family:var(--font-display); font-size:clamp(42px,6vw,72px); font-weight:300; color:var(--white); line-height:1.04; letter-spacing:-0.02em; margin-bottom:18px; margin-top:14px; }
.page-hero-title em { font-style:italic; font-weight:600; }
.page-hero-sub { font-size:15px; line-height:1.85; color:rgba(255,255,255,0.5); max-width:480px; }

.filter-bar { padding:20px 6%; background:var(--white); border-bottom:1px solid var(--ink-20); display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.filter-label { font-size:10px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; color:var(--ink-60); margin-right:6px; }
.filter-pill { padding:7px 18px; border-radius:2px; font-size:11px; font-weight:600; letter-spacing:0.06em; text-transform:uppercase; border:1px solid var(--ink-20); color:var(--ink-60); background:var(--white); cursor:pointer; transition:all 0.2s; }
.filter-pill:hover { border-color:var(--ink); color:var(--ink); }
.filter-pill.active { background:var(--ink); color:var(--white); border-color:var(--ink); }

.destinations-section { padding:60px 6% 90px; background:var(--paper); }
.section-meta { display:flex; align-items:center; justify-content:space-between; margin-bottom:42px; }
.section-count { font-size:12px; color:var(--ink-60); letter-spacing:0.06em; }
.dest-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.dest-card { background:var(--white); border-radius:12px; overflow:hidden; border:1px solid var(--ink-20); transition:transform 0.3s var(--ease-out),box-shadow 0.3s; cursor:pointer; }
.dest-card:hover { transform:translateY(-7px); box-shadow:0 28px 60px rgba(10,15,26,0.14); }
.dest-card-img { width:100%; height:230px; display:flex; align-items:center; justify-content:center; font-size:60px; position:relative; overflow:hidden; }
.dest-card-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(10,15,26,0.75) 0%,transparent 55%); }
.dest-card-tag { position:absolute; top:16px; left:16px; z-index:2; background:var(--gold); color:var(--ink); font-size:9px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; padding:4px 12px; border-radius:2px; }
.dest-card-rating { position:absolute; top:16px; right:16px; z-index:2; background:rgba(255,255,255,0.14); color:#fff; font-size:11px; font-weight:600; padding:4px 10px; border-radius:2px; border:1px solid rgba(255,255,255,0.22); backdrop-filter:blur(6px); }
.dest-card-body { padding:24px 24px 20px; }
.dest-card-name { font-family:var(--font-display); font-size:26px; font-weight:700; color:var(--ink); margin-bottom:4px; letter-spacing:-0.01em; line-height:1.1; }
.dest-card-region { font-size:10px; font-weight:700; color:var(--gold); letter-spacing:0.14em; text-transform:uppercase; margin-bottom:12px; }
.dest-card-desc { font-size:13px; line-height:1.72; color:var(--ink-60); margin-bottom:20px; }
.dest-card-footer { display:flex; align-items:center; justify-content:space-between; padding-top:16px; border-top:1px solid var(--ink-20); }
.dest-card-price-label { font-size:9px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--ink-60); }
.dest-card-price-val { font-family:var(--font-display); font-size:24px; font-weight:700; color:var(--ink); }
.dest-card-price-val span { font-size:12px; color:var(--ink-60); font-weight:400; font-family:var(--font-body); }
.dest-card-btn { background:transparent; color:var(--ink); padding:9px 20px; border-radius:2px; font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; cursor:pointer; border:1px solid var(--ink-20); transition:all 0.2s; }
.dest-card-btn:hover { background:var(--ink); color:var(--white); }

/* ─── BOOKING ─── */
.cta-section { background:var(--ink); padding:90px 6%; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; top:-100px; right:-100px; width:450px; height:450px; border-radius:50%; background:radial-gradient(circle,rgba(201,168,76,0.08) 0%,transparent 70%); pointer-events:none; }
.cta-inner { max-width:860px; margin:0 auto; text-align:center; position:relative; z-index:2; }
.cta-sparkle { font-size:22px; margin-bottom:18px; display:block; color:var(--gold); }
.cta-title { font-family:var(--font-display); font-size:clamp(36px,5.5vw,60px); font-weight:300; color:var(--white); line-height:1.08; margin-bottom:16px; }
.cta-title em { font-style:italic; font-weight:600; }
.cta-sub { font-size:14px; color:rgba(255,255,255,0.45); margin-bottom:52px; }
.booking-bar { background:var(--white); border-radius:12px; overflow:hidden; box-shadow:0 30px 80px rgba(0,0,0,0.3); }
.booking-row { display:flex; align-items:stretch; border-bottom:1px solid var(--ink-20); }
.booking-field { flex:1; padding:20px 24px; border-right:1px solid var(--ink-20); min-width:0; }
.booking-field:last-child { border-right:none; }
.booking-field-label { font-size:9px; font-weight:700; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:8px; display:flex; align-items:center; gap:4px; }
.req-star { color:var(--terracotta); }
.booking-field input { border:none; outline:none; background:transparent; font-family:var(--font-body); font-size:15px; font-weight:500; color:var(--ink); width:100%; }
.booking-field input::placeholder { color:rgba(10,15,26,0.28); font-weight:400; font-size:14px; }
.booking-field.people select { appearance:none; -webkit-appearance:none; font-family:var(--font-body); font-size:14px; font-weight:500; color:var(--ink); width:100%; cursor:pointer; border:1px solid var(--ink-20); border-radius:6px; padding:7px 30px 7px 10px; background:var(--paper) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230a0f1a' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 8px center; outline:none; }
.booking-field.error { background:#fff9f7; }
.booking-field.error input { border-bottom:2px solid var(--terracotta); }
.field-error-msg { font-size:10px; color:var(--terracotta); margin-top:5px; font-weight:600; display:none; }
.booking-field.error .field-error-msg { display:block; }
.booking-cta-row { padding:28px 32px; text-align:center; background:var(--paper); }
.booking-submit { background:var(--ink); color:var(--white); border:none; padding:17px 72px; border-radius:3px; font-family:var(--font-body); font-size:13px; font-weight:700; letter-spacing:0.14em; text-transform:uppercase; cursor:pointer; transition:all 0.2s; }
.booking-submit:hover { background:var(--slate); transform:translateY(-1px); }
.booking-submit:disabled { background:#aab; cursor:not-allowed; transform:none; }
.booking-success { display:none; margin-top:28px; background:rgba(255,255,255,0.05); border:1px solid rgba(201,168,76,0.4); border-radius:12px; padding:32px 40px; text-align:center; }
.booking-success.visible { display:block; animation:fadeUp 0.45s var(--ease-out) forwards; }
.booking-success-icon { font-size:32px; margin-bottom:14px; display:block; }
.booking-success-text { font-size:15px; line-height:1.85; color:rgba(255,255,255,0.82); max-width:560px; margin:0 auto; }
.booking-success-text strong { color:var(--gold); }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px);} to{opacity:1;transform:translateY(0);} }

/* ─── ABOUT PAGE ─── */
.about-hero-band { background:var(--ink); padding:84px 6% 96px; position:relative; overflow:hidden; }
.about-hero-band::before { content:'ABOUT'; position:absolute; right:-10px; top:50%; transform:translateY(-50%); font-family:var(--font-hero); font-size:220px; color:rgba(255,255,255,0.025); line-height:1; pointer-events:none; }
.about-hero-band::after { content:''; position:absolute; bottom:0; left:6%; right:6%; height:1px; background:linear-gradient(to right,transparent,var(--gold),transparent); }
.about-hero-title { font-family:var(--font-display); font-size:clamp(44px,7vw,84px); font-weight:300; color:var(--white); line-height:1.02; letter-spacing:-0.02em; margin-bottom:26px; margin-top:16px; }
.about-hero-title em { font-style:italic; font-weight:600; color:rgba(255,255,255,0.65); }
.about-hero-sub { font-size:16px; line-height:1.8; color:rgba(255,255,255,0.55); max-width:540px; }
.founder-section { padding:100px 6%; background:var(--white); display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; max-width:1200px; margin:0 auto; }
.founder-title { font-family:var(--font-display); font-size:clamp(34px,4.5vw,52px); font-weight:600; color:var(--ink); line-height:1.1; letter-spacing:-0.02em; margin-bottom:28px; margin-top:16px; }
.founder-body { font-size:15px; line-height:1.9; color:var(--ink-60); }
.founder-body p+p { margin-top:18px; }
.founder-body strong { color:var(--ink); font-weight:600; }
.founder-quote-card { background:var(--ink); border-radius:20px; padding:52px 48px; position:relative; overflow:hidden; }
.founder-quote-card::before { content:'\201C'; font-family:var(--font-display); font-size:200px; line-height:0.8; color:rgba(201,168,76,0.15); position:absolute; top:24px; left:28px; pointer-events:none; }
.founder-quote-text { font-family:var(--font-display); font-size:clamp(20px,2.5vw,28px); font-style:italic; font-weight:400; color:rgba(255,255,255,0.88); line-height:1.5; position:relative; z-index:1; margin-bottom:32px; }
.founder-stat-row { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; border-top:1px solid rgba(255,255,255,0.12); padding-top:28px; }
.founder-stat { text-align:center; }
.founder-stat-num { font-family:var(--font-hero); font-size:44px; color:var(--gold); line-height:1; margin-bottom:6px; }
.founder-stat-label { font-size:10px; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.4); }
.motto-section { background:var(--paper); padding:90px 6%; text-align:center; overflow:hidden; }
.motto-text { font-family:var(--font-hero); font-size:clamp(56px,10vw,120px); color:var(--ink); line-height:0.92; letter-spacing:0.04em; }
.motto-text span { color:var(--gold); }
.motto-sub { font-size:15px; color:var(--ink-60); margin-top:30px; line-height:1.75; max-width:580px; margin-left:auto; margin-right:auto; }
.beliefs-section { background:var(--white); padding:100px 6%; }
.beliefs-header { text-align:center; margin-bottom:68px; }
.beliefs-title { font-family:var(--font-display); font-size:clamp(36px,5vw,56px); font-weight:600; color:var(--ink); line-height:1.1; letter-spacing:-0.02em; margin-top:14px; }
.beliefs-grid { display:grid; grid-template-columns:repeat(6,1fr); gap:20px; max-width:1100px; margin:0 auto; }
.beliefs-grid .belief-card:nth-child(1){grid-column:1/3;} .beliefs-grid .belief-card:nth-child(2){grid-column:3/5;} .beliefs-grid .belief-card:nth-child(3){grid-column:5/7;} .beliefs-grid .belief-card:nth-child(4){grid-column:2/4;} .beliefs-grid .belief-card:nth-child(5){grid-column:4/6;}
.belief-card { background:var(--paper); border-radius:16px; padding:40px 34px; border:1px solid var(--ink-20); transition:transform 0.3s,box-shadow 0.3s; position:relative; overflow:hidden; }
.belief-card:hover { transform:translateY(-5px); box-shadow:0 20px 50px rgba(10,15,26,0.1); }
.belief-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform 0.3s var(--ease-out); }
.belief-card:hover::after { transform:scaleX(1); }
.belief-number { font-family:var(--font-hero); font-size:52px; color:rgba(201,168,76,0.16); line-height:1; margin-bottom:14px; }
.belief-title { font-size:15px; font-weight:700; color:var(--ink); margin-bottom:12px; }
.belief-desc { font-size:13px; line-height:1.78; color:var(--ink-60); }
.team-section { background:var(--paper); padding:100px 6%; text-align:center; }
.team-title { font-family:var(--font-display); font-size:clamp(34px,4.5vw,52px); font-weight:600; color:var(--ink); line-height:1.1; margin-bottom:14px; margin-top:14px; }
.team-sub { font-size:15px; color:var(--ink-60); max-width:460px; margin:0 auto 56px; line-height:1.75; }
.founders-row { display:flex; justify-content:center; gap:36px; flex-wrap:wrap; }
.founder-chip { display:flex; flex-direction:column; align-items:center; gap:14px; width:150px; }
.founder-avatar { width:78px; height:78px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-family:var(--font-hero); font-size:26px; color:#fff; }
.av-1{background:linear-gradient(135deg,var(--slate),#1a3a6e);} .av-2{background:linear-gradient(135deg,var(--terracotta),#8b3a1a);} .av-3{background:linear-gradient(135deg,#1a5c36,#2a8c55);} .av-4{background:linear-gradient(135deg,#4a1a7e,#8b4aae);}
.founder-chip-name { font-size:14px; font-weight:700; color:var(--ink); }
.founder-chip-role { font-size:11px; color:var(--ink-60); }

/* ─── FOOTER ─── */
.site-footer { background:var(--ink); border-top:1px solid rgba(201,168,76,0.25); padding:68px 6% 36px; }
.footer-inner { display:flex; justify-content:space-between; align-items:flex-start; max-width:1200px; margin:0 auto; gap:60px; }
.footer-logo-box { display:inline-flex; align-items:center; gap:12px; border:1px solid rgba(201,168,76,0.3); border-radius:8px; padding:12px 20px; margin-bottom:26px; }
.footer-logo-svg { width:24px; height:24px; }
.footer-logo-text { font-family:var(--font-display); font-size:14px; font-weight:600; color:var(--white); line-height:1.3; }
.footer-tagline { font-size:13px; line-height:1.85; color:rgba(255,255,255,0.4); max-width:310px; }
.footer-right { text-align:right; }
.footer-social-title { font-size:10px; font-weight:700; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:20px; }
.footer-socials { display:flex; gap:10px; justify-content:flex-end; margin-bottom:28px; }
.social-icon { width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:700; text-decoration:none; color:#fff; transition:transform 0.2s,opacity 0.2s; }
.social-icon:hover { transform:translateY(-3px); opacity:0.85; }
.si-ig { background:radial-gradient(circle at 30% 107%,#fdf497 0%,#fd5949 45%,#d6249f 60%,#285AEB 90%); }
.si-li { background:#0a66c2; }
.footer-contact { font-size:14px; color:rgba(255,255,255,0.8); font-weight:500; margin-bottom:8px; }
.footer-offices { font-size:12px; color:rgba(255,255,255,0.32); letter-spacing:0.04em; }
.footer-bottom { text-align:center; margin-top:52px; padding-top:22px; border-top:1px solid rgba(255,255,255,0.07); font-size:12px; color:rgba(255,255,255,0.25); letter-spacing:0.04em; }


/* ═══════════════════════════════════
   WORDPRESS COMPATIBILITY FIXES
═══════════════════════════════════ */

/* Remove WP admin bar body padding that pushes hero down */

/* Ensure country section always has dark background - WP resets can strip it */
.country-section,
.tt-theme .country-section,
body .country-section {
  background: #0a0f1a !important;
  display: block;
  width: 100%;
}

/* Ensure country viewport renders with correct height */
.country-viewport {
  min-height: 460px;
  display: block;
  width: 100%;
}

/* Fix country track — must be flex, WP themes can reset display */
.country-track {
  display: flex !important;
  flex-wrap: nowrap;
  min-height: 420px;
}

/* Country cards must render with correct dimensions in WP context */
.country-card {
  display: block !important;
  flex-shrink: 0;
  min-width: 200px;
}

/* WP may inject .entry-content wrappers — neutralise them */
.tt-theme .entry-content,
.tt-theme .entry,
.tt-theme article,
.tt-theme #content,
.tt-theme #primary,
.tt-theme .site-content,
.tt-theme #main {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  float: none !important;
  width: 100% !important;
}

/* Strip WP page wrappers */
.tt-theme .page,
.tt-theme .hentry {
  margin: 0;
  padding: 0;
}

/* Ensure page switching works — hidden pages must be completely hidden */
.page { display: none !important; }
.page.active { display: block !important; }

/* ═══════════════════════════════════
   ADDITIONAL WP + RESPONSIVE FIXES
═══════════════════════════════════ */

/* WP admin bar pushes content — compensate */
body.admin-bar .hero-nav { top: 32px; }
body.admin-bar .white-nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .hero-nav { top: 46px; }
  body.admin-bar .white-nav { top: 46px; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE OVERRIDE — complete rewrite, appended last
   Overrides everything above for screens ≤ 768px
═══════════════════════════════════════════════════════ */

/* ─────────────────────────────────────
   NAV — all screen sizes taper down
───────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-nav  { padding: 14px 32px; }
  .white-nav { padding: 12px 32px; }
  .nav-links-center { gap: 22px; }
  .nav-links-flat   { gap: 18px; }
  .nav-links-center > li > a,
  .nav-links-flat   > li > a { font-size: 10px; letter-spacing: 0.1em; }
}
@media (max-width: 900px) {
  .nav-links-center { gap: 14px; }
  .nav-links-center > li > a { font-size: 9.5px; }
}

/* ─────────────────────────────────────
   768px — TABLET / MOBILE BREAKPOINT
───────────────────────────────────── */
@media (max-width: 768px) {

  /* ══ NAV BAR ══ */

  /* Hide desktop-only items */
  .nav-links-center,
  .nav-links-flat,
  .nav-search,
  .nav-search-wrap,
  .nav-cta-pill { display: none !important; }

  /* Show hamburger */
  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    width: 44px !important;
    height: 44px !important;
    cursor: pointer !important;
    gap: 5px !important;
    border: none !important;
    background: transparent !important;
    padding: 6px !important;
    flex-shrink: 0 !important;
  }

  /* Nav bar: logo LEFT, hamburger RIGHT */
  .hero-nav {
    position: absolute !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    z-index: 200 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 20px !important;
    gap: 0 !important;
    background: linear-gradient(to bottom, rgba(10,15,26,0.75) 0%, transparent 100%) !important;
  }

  .white-nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 12px 20px !important;
    gap: 0 !important;
  }

  /* nav-right: only hamburger visible on mobile */
  .hero-nav  .nav-right,
  .white-nav .nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    flex-shrink: 0 !important;
    margin-left: 0 !important;
  }

  /* Logo stays left, natural flex order */
  .nav-logo {
    flex-shrink: 0 !important;
  }

  /* ══ HERO SECTION ══ */

  .hero-wrap {
    position: relative !important;
    width: 100% !important;
    height: 100svh !important;
    min-height: 580px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
  }

  /* Background covers full hero */
  .slide-bg {
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
  }

  .slide-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(10,15,26,0.55) 0%,
      rgba(10,15,26,0.75) 50%,
      rgba(10,15,26,0.92) 100%
    ) !important;
  }

  /* Hide desktop-only side elements */
  .hero-scroll-indicator { display: none !important; }

  /* ── HERO CARDS — show as small icon strip below text ── */
  .hero-cards {
    position: relative !important;
    top: unset !important;
    right: unset !important;
    transform: none !important;
    padding: 0 24px 0 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    z-index: 10 !important;
    pointer-events: none !important;
    flex-shrink: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* sits just below hero-content inside the flex column */
    padding-bottom: 72px !important;
  }

  /* Smaller cards on mobile — square icon tiles */
  .h-card {
    width: 90px !important;
    height: 90px !important;
    border-radius: 14px !important;
    flex-shrink: 0 !important;
  }

  .h-card-bg {
    font-size: 34px !important;
    font-family: 'Apple Color Emoji','Segoe UI Emoji','Noto Color Emoji','Twemoji Mozilla',sans-serif !important;
  }

  /* Hide label on small cards — not enough room */
  .h-card-label { display: none !important; }

  /* Hero content: flex child, centered vertically */
  .hero-content {
    position: relative !important;
    /* clear all desktop absolute positioning */
    left:      unset !important;
    right:     unset !important;
    top:       unset !important;
    bottom:    unset !important;
    transform: none !important;
    /* flex layout */
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    /* spacing: top clears the nav bar (~60px), bottom clears controls */
    padding: 72px 24px 20px !important;
    max-width: 100% !important;
    width: 100% !important;
    z-index: 10 !important;
    box-sizing: border-box !important;
  }

  .hero-title {
    font-size: clamp(44px, 12vw, 72px) !important;
    line-height: 0.92 !important;
    margin-bottom: 16px !important;
    letter-spacing: 0.02em !important;
  }

  .hero-body {
    font-size: 13.5px !important;
    line-height: 1.75 !important;
    max-width: 100% !important;
    margin-bottom: 28px !important;
    color: rgba(255,255,255,0.78) !important;
  }

  .btn-cta {
    padding: 13px 24px !important;
    font-size: 11px !important;
    gap: 12px !important;
  }

  .hero-controls {
    position: absolute !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 20 !important;
  }

  .ctrl { width: 40px !important; height: 40px !important; font-size: 14px !important; }

  .hero-progress { height: 3px !important; }

  /* ══ CONTENT SECTIONS ══ */

  .looking-section  { padding: 60px 0 40px; }
  .looking-header   { padding: 0 5%; margin-bottom: 32px; }
  .section-title    { font-size: clamp(28px,8vw,44px); }
  .cpanel           { width: 175px; height: 245px; }

  .country-section       { padding: 64px 0 56px; }
  .country-section-title { font-size: clamp(32px,8.5vw,52px); }
  .country-section-sub   { font-size: 13px; padding: 0 6%; }
  .country-card          { width: 230px; height: 340px; }
  .ccard-country-name    { font-size: 24px; }
  .ccard-country-name span { font-size: 18px; }

  .tailored-section  { padding: 60px 5%; }
  .tailored-header   { margin-bottom: 40px; }
  .tailored-title    { font-size: clamp(30px,8vw,46px); }
  .offerings-grid    { grid-template-columns: 1fr; border: none; border-radius: 0; gap: 0; }
  .offering-card     { border: 1px solid var(--ink-20) !important; border-radius: 12px !important; margin-bottom: 12px; }
  .offering-card:last-child { margin-bottom: 0; }
  .offering-card::after { display: none; }

  .testimonials-section { padding: 60px 5%; }
  .testimonials-header  { margin-bottom: 40px; }
  .testimonials-masonry { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-masonry > div:nth-child(2) { margin-top: 0 !important; }
  .tcard-quote { font-size: 16px; }
  .tcard-body  { padding: 22px 20px; }
  .tcard-text  { padding: 28px 22px; }
  .tcard-text .tcard-quote { font-size: 18px; }

  .cta-band    { padding: 56px 5%; }
  .cta-band h2 { font-size: clamp(30px,8vw,46px); }

  .page-hero-band  { padding: 56px 5% 64px; }
  .page-hero-band::before { display: none; }
  .page-hero-title { font-size: clamp(36px,9vw,56px); }
  .page-hero-sub   { font-size: 13px; }

  .filter-bar { padding: 16px 5%; gap: 8px; overflow-x: auto; flex-wrap: nowrap; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-pill { padding: 7px 14px; font-size: 10px; flex-shrink: 0; }

  .destinations-section { padding: 36px 5% 60px; }
  .dest-grid      { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .dest-card-img  { height: 185px; font-size: 46px; }
  .dest-card-name { font-size: 20px; }
  .dest-card-desc { font-size: 12px; }
  .dest-card-price-val { font-size: 20px; }

  .cta-section  { padding: 60px 5%; }
  .cta-title    { font-size: clamp(28px,7.5vw,44px); }
  .booking-row  { flex-direction: column; }
  .booking-field { min-width: 100%; border-right: none; border-bottom: 1px solid var(--ink-20); padding: 18px 20px; }
  .booking-field:last-child { border-bottom: none; }
  .booking-cta-row { padding: 20px 20px; }
  .booking-submit  { width: 100%; padding: 16px; }

  .about-hero-band   { padding: 56px 5% 68px; }
  .about-hero-band::before { display: none; }
  .about-hero-title  { font-size: clamp(36px,9vw,56px); }
  .about-hero-sub    { font-size: 14px; }
  .founder-section   { grid-template-columns: 1fr; gap: 36px; padding: 60px 5%; }
  .founder-quote-card { padding: 36px 28px; }
  .founder-quote-text { font-size: clamp(17px,4.5vw,22px); }
  .founder-stat-row  { gap: 10px; }
  .founder-stat-num  { font-size: 36px; }
  .motto-section { padding: 64px 5%; }
  .motto-text    { font-size: clamp(48px,13vw,80px); }
  .beliefs-section { padding: 60px 5%; }
  .beliefs-grid  { grid-template-columns: 1fr 1fr; gap: 12px; }
  .beliefs-grid .belief-card:nth-child(n) { grid-column: auto; }
  .belief-card   { padding: 26px 20px; }
  .team-section  { padding: 60px 5%; }
  .founders-row  { gap: 20px; }

  .site-footer   { padding: 48px 5% 28px; }
  .footer-inner  { flex-direction: column; gap: 36px; }
  .footer-right  { text-align: left; }
  .footer-socials { justify-content: flex-start; }
  .footer-bottom  { margin-top: 36px; font-size: 11px; }
}

/* ─────────────────────────────────────
   480px — SMALL PHONES
───────────────────────────────────── */
@media (max-width: 480px) {
  .hero-wrap { min-height: 560px !important; }

  .hero-content {
    padding: 68px 20px 70px !important;
  }

  .hero-title {
    font-size: clamp(38px, 11vw, 58px) !important;
    line-height: 0.9 !important;
    margin-bottom: 14px !important;
  }

  .hero-body {
    font-size: 13px !important;
    margin-bottom: 24px !important;
  }

  .btn-cta { padding: 12px 20px !important; font-size: 10.5px !important; gap: 10px !important; }
  .btn-cta .arrow-circle { width: 22px !important; height: 22px !important; font-size: 11px !important; }

  .hero-controls { right: 16px !important; bottom: 16px !important; }

  .looking-section  { padding: 52px 0 36px; }
  .section-title    { font-size: clamp(26px,9vw,38px); }
  .cpanel           { width: 160px; height: 225px; }
  .cpanel-label     { font-size: 15px; }

  .country-section       { padding: 52px 0 44px; }
  .country-section-title { font-size: clamp(28px,9.5vw,44px); }
  .country-card          { width: 210px; height: 310px; }
  .ccard-country-name    { font-size: 22px; }
  .ccard-country-name span { font-size: 16px; }

  .offering-card { padding: 26px 20px; }
  .offering-num  { font-size: 38px; }
  .offering-title { font-size: 18px; }
  .offering-desc  { font-size: 13px; }

  .tcard-visual { font-size: 40px; }

  .dest-grid     { grid-template-columns: 1fr; gap: 14px; }
  .dest-card-img { height: 200px; font-size: 52px; }
  .dest-card-name { font-size: 22px; }

  .cta-section  { padding: 48px 5%; }
  .booking-submit { font-size: 12px; }
  .booking-success { padding: 24px 18px; }
  .booking-success-text { font-size: 13px; }

  .cta-band    { padding: 48px 5%; }
  .cta-band h2 { font-size: clamp(26px,9vw,40px); }
  .btn-primary { padding: 15px 36px; font-size: 11px; }

  .founder-quote-card { padding: 28px 22px; }
  .founder-stat-row   { gap: 8px; }
  .founder-stat-num   { font-size: 32px; }
  .founder-stat-label { font-size: 9px; }
  .motto-text  { font-size: clamp(44px,16vw,68px); }
  .beliefs-grid { grid-template-columns: 1fr; }
  .founder-chip { width: 120px; }
  .founder-avatar { width: 64px; height: 64px; font-size: 22px; }

  .filter-bar { gap: 6px; }
  .filter-label { display: none; }

  .footer-logo-box  { padding: 10px 14px; }
  .footer-logo-text { font-size: 12px; }
  .footer-tagline   { font-size: 12px; }
}

/* ─────────────────────────────────────
   380px — VERY SMALL PHONES
───────────────────────────────────── */
@media (max-width: 380px) {
  .hero-nav,
  .white-nav { padding: 10px 14px !important; }

  .hero-content { padding: 64px 16px 60px !important; }

  .hero-title {
    font-size: clamp(34px, 12vw, 52px) !important;
    line-height: 0.9 !important;
  }

  .nav-logo-name  { font-size: 12px; }
  .nav-logo-mark  { width: 36px; height: 36px; }
  .nav-logo-mark svg { width: 17px; height: 17px; }

  .country-card { width: 195px; height: 290px; }
  .cpanel       { width: 150px; height: 210px; }
  .dest-card-img { height: 180px; }

  .mobile-nav-links > li > a { font-size: 22px; padding: 14px 0; }
  .mob-sub-links a { font-size: 15px; }
  .mobile-nav-close { top: 14px !important; right: 14px !important; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE DRAWER — full-screen slide-in menu
═══════════════════════════════════════════════════════ */
.mobile-nav-drawer {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 80px 32px 48px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
  overflow-y: auto;
}
.mobile-nav-drawer.open {
  transform: translateX(0);
  pointer-events: all;
}

/* Logo inside drawer */
.mobile-nav-logo {
  position: absolute; top: 22px; left: 22px;
  display: flex; align-items: center; gap: 10px;
}
.mobile-nav-logo-mark {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.mobile-nav-logo-mark svg { width: 18px; height: 18px; }
.mobile-nav-logo-name {
  font-family: var(--font-display); font-size: 13px;
  font-weight: 600; color: var(--white); line-height: 1.3;
}

/* Close button — top-right */
.mobile-nav-close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); border: none;
  border-radius: 50%; color: rgba(255,255,255,0.8);
  font-size: 18px; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.2s;
}
.mobile-nav-close:active { background: rgba(255,255,255,0.18); }

/* Nav link list */
.mobile-nav-links {
  list-style: none;
  display: flex; flex-direction: column; flex: 1;
}
.mobile-nav-links li {
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav-links > li > a {
  display: flex; align-items: center;
  padding: 16px 0; min-height: 58px;
  font-family: var(--font-display); font-size: 26px; font-weight: 600;
  color: rgba(255,255,255,0.65); text-decoration: none;
  cursor: pointer; transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-links > li > a:active { color: var(--gold); }

/* Global Destinations sub-trigger */
.mob-dropdown-trigger {
  justify-content: space-between;
}
.mob-dropdown-trigger::after {
  content: '▾';
  font-size: 16px; opacity: 0.45;
  transition: transform 0.25s, opacity 0.25s;
  flex-shrink: 0;
}
.mob-dropdown-trigger.sub-open::after {
  transform: rotate(180deg); opacity: 1;
}

/* Sub-links */
.mob-sub-links {
  display: none; flex-direction: column; gap: 0;
  padding: 4px 0 14px 14px;
}
.mob-sub-links.open { display: flex; }
.mob-sub-links a {
  font-family: var(--font-display); font-size: 17px; font-weight: 500;
  color: rgba(255,255,255,0.45); padding: 11px 0; min-height: 44px;
  display: flex; align-items: center;
  cursor: pointer; text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s;
}
.mob-sub-links a:active { color: var(--gold); }

/* CTA button inside drawer */
.mobile-nav-cta {
  margin-top: 32px;
  background: var(--gold); color: var(--ink);
  border: none; border-radius: 4px;
  width: 100%; min-height: 52px; padding: 15px 32px;
  font-family: var(--font-body); font-size: 12px;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-cta:active { opacity: 0.85; }
