/* ═══════════════════════════════════════════
   RESET & VARIABLES
   ═══════════════════════════════════════════ */
:root {
  --charcoal: #1C1E21;
  --charcoal-warm: #2A2C2F;
  --graphite: #3A3D42;
  --slate: #5C6068;
  --silver: #8B8F96;
  --mist: #B4B8BE;
  --pearl: #E8E4DE;
  --cream: #F5F2EC;
  --ivory: #FAF8F4;
  --white: #FEFDFB;
  --amber: #C4903D;
  --amber-light: #D9A94F;
  --amber-glow: #EED49A;
  --amber-pale: #F7EDDA;
  --forest: #2D5A3D;
  --forest-light: #3E7A52;
  --wine: #7A2B3A;
  --navy: #1E3254;
  --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', -apple-system, sans-serif;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--sans); color: var(--charcoal);
  background: var(--ivory); overflow-x: hidden; line-height: 1.6;
}
::selection { background: var(--amber); color: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(44px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes shimmer {
  0% { background-position: -300% center; }
  100% { background-position: 300% center; }
}
@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  10% { transform: translate(-2%,-3%); }
  30% { transform: translate(3%,2%); }
  50% { transform: translate(-1%,1%); }
  70% { transform: translate(2%,-2%); }
  90% { transform: translate(-3%,3%); }
}

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }
.reveal.d5 { transition-delay: .5s; }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.wrap-sm { max-width: 960px; margin: 0 auto; padding: 0 28px; }
.wrap-xs { max-width: 720px; margin: 0 auto; padding: 0 28px; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
.t-label {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--amber);
}
.t-label.light { color: var(--amber-glow); }
.t-label.muted { color: var(--silver); }

.t-display {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 4.8rem); line-height: 1.05;
  letter-spacing: -.02em; color: var(--white);
}

.t-heading {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12;
  letter-spacing: -.015em; color: var(--charcoal);
}

.t-sub {
  font-family: var(--sans); font-size: 1.05rem; font-weight: 400;
  color: var(--slate); line-height: 1.78; max-width: 580px;
}

.t-body {
  font-size: .92rem; color: var(--slate); line-height: 1.75;
}

/* Decorative rule */
.rule {
  width: 48px; height: 1.5px; background: var(--amber);
  margin: 22px 0; display: block;
}
.rule.center { margin: 22px auto; }
.rule.light { background: var(--amber-glow); }
.text-center { text-align: center; }
.centered { margin-left: auto; margin-right: auto; }

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  height: 68px; padding: 0 28px;
  background: rgba(28,30,33,.88); backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(196,144,61,.08);
  transition: background .4s;
}
.nav-inner {
  max-width: 1220px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo {
  height: 38px; width: auto;
  filter: brightness(0) invert(1);
}
.nav-mark {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 16px; font-weight: 600;
  color: var(--amber-light);
  transition: all .3s;
}
.nav-mark:hover { background: var(--amber); color: var(--charcoal); }
.nav-name {
  font-family: var(--serif); font-size: 19px; font-weight: 500;
  color: var(--white); letter-spacing: .3px;
}
.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-tag {
  font-size: 11.5px; color: rgba(255,255,255,.75);
  letter-spacing: .8px; text-transform: uppercase; font-weight: 600;
}
.nav-contact {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 22px; font-family: var(--sans); font-size: 12px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.88); background: transparent;
  border: 1.5px solid rgba(255,255,255,.25); border-radius: 3px;
  cursor: pointer; transition: all .3s;
}
.nav-contact:hover {
  border-color: var(--amber); color: var(--amber-glow);
  background: rgba(196,144,61,.08); transform: translateY(-1px);
}
.nav-cta {
  padding: 10px 26px; font-family: var(--sans); font-size: 12px;
  font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--charcoal); background: var(--amber);
  border: none; border-radius: 3px; cursor: pointer;
  transition: all .3s;
}
.nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════ */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 4px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.88); font-family: var(--sans);
  font-size: 12px; font-weight: 600; letter-spacing: .5px;
  cursor: pointer; transition: all .3s;
}
.lang-btn:hover {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2);
}
.lang-btn .fi {
  width: 18px; height: 14px; border-radius: 2px;
  display: inline-block;
}
.lang-btn svg { opacity: .6; transition: transform .2s; }
.lang-dropdown.open + .lang-btn svg,
.lang-switcher:has(.lang-dropdown.open) .lang-btn svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 150px; padding: 6px 0;
  background: var(--charcoal-warm); border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px; box-shadow: 0 12px 36px rgba(0,0,0,.35);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s var(--ease);
  z-index: 1000;
}
.lang-dropdown.open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-option {
  display: flex; align-items: center; gap: 10px;
  width: 100%; padding: 9px 16px; border: none; background: none;
  color: rgba(255,255,255,.78); font-family: var(--sans);
  font-size: 13px; font-weight: 500; cursor: pointer;
  transition: all .15s; text-align: left;
}
.lang-option:hover {
  background: rgba(255,255,255,.06); color: #fff;
}
.lang-option.active {
  color: var(--amber-glow);
}
.lang-option .fi {
  width: 20px; height: 15px; border-radius: 2px;
  display: inline-block; box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

/* ═══════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  padding: 160px 28px 120px;
  background: var(--charcoal);
  min-height: 100vh; display: flex; align-items: center;
}

/* Hero background photo with gradient overlay */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(28,30,33,.92) 0%, rgba(28,30,33,.75) 35%, rgba(28,30,33,.3) 65%, rgba(28,30,33,.15) 100%),
    url("images/image-01.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Film-grain texture overlay */
.hero::before {
  content: ''; position: absolute; inset: -50%;
  background-image: url("images/image-02.svg");
  background-size: 256px 256px;
  animation: grain 8s steps(10) infinite;
  pointer-events: none; z-index: 2;
}

/* Gradient orbs */
.hero-orb {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-orb.a {
  width: 700px; height: 700px; top: -20%; right: -15%;
  background: radial-gradient(circle, rgba(196,144,61,.07) 0%, transparent 65%);
}
.hero-orb.b {
  width: 500px; height: 500px; bottom: -10%; left: -10%;
  background: radial-gradient(circle, rgba(45,90,61,.04) 0%, transparent 65%);
}
/* Diagonal accent */
.hero-diag {
  position: absolute; width: 1px; height: 140%;
  top: -20%; right: 28%;
  background: linear-gradient(180deg, transparent 0%, rgba(196,144,61,.06) 40%, rgba(196,144,61,.06) 60%, transparent 100%);
  transform: rotate(12deg); transform-origin: top center;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 1220px; margin: 0 auto; width: 100%;
}

/* Trust bar */
.hero-trust {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px;
  animation: fadeUp .9s var(--ease-out) both;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 100px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(4px);
  font-size: 11.5px; font-weight: 600; letter-spacing: .6px;
  color: rgba(255,255,255,.8); text-transform: uppercase;
}
.trust-pill .dot {
  width: 5px; height: 5px; border-radius: 50%;
}
.dot.gold { background: var(--amber-light); }
.dot.green { background: var(--forest-light); }
.dot.red { background: #c25d6a; }

.hero-h1 {
  animation: fadeUp .9s .12s var(--ease-out) both;
}
.hero-h1 em {
  font-style: italic;
  background: linear-gradient(90deg, var(--amber-glow), var(--amber-light), var(--amber-glow));
  background-size: 300% auto;
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 5s linear infinite;
}

.hero-tagline {
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400; font-style: italic;
  color: var(--amber-glow); margin-top: 18px;
  animation: fadeUp .9s .22s var(--ease-out) both;
}

.hero-desc {
  font-size: clamp(.95rem, 1.6vw, 1.08rem);
  color: rgba(255,255,255,.85); max-width: 560px;
  line-height: 1.78; margin-top: 20px;
  animation: fadeUp .9s .32s var(--ease-out) both;
}

.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 40px;
  animation: fadeUp .9s .42s var(--ease-out) both;
}

/* Primary CTA */
.cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 17px 38px; background: var(--amber); color: var(--charcoal);
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: all .3s var(--ease);
  box-shadow: 0 2px 12px rgba(196,144,61,.15);
}
.cta-primary:hover {
  background: var(--amber-light); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(196,144,61,.25);
}
.cta-primary svg { transition: transform .3s; }
.cta-primary:hover svg { transform: translateX(3px); }

.cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 34px; background: transparent;
  color: rgba(255,255,255,.88); border: 1.5px solid rgba(255,255,255,.25);
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  letter-spacing: .6px; text-transform: uppercase;
  border-radius: 4px; cursor: pointer; transition: all .3s;
}
.cta-ghost:hover {
  border-color: rgba(255,255,255,.35); color: #fff;
  background: rgba(255,255,255,.04);
}

/* Stats row */
.hero-stats {
  display: flex; flex-wrap: wrap; margin-top: 72px;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,.06);
  animation: fadeUp .9s .55s var(--ease-out) both;
}
.h-stat {
  padding: 8px 36px 8px 0; min-width: 130px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.h-stat:last-child { border-right: none; }
.h-stat-num {
  font-family: var(--serif); font-size: 2.6rem;
  font-weight: 500; color: var(--amber-glow); line-height: 1;
  letter-spacing: -.02em;
}
.h-stat-lbl {
  font-size: 11.5px; color: rgba(255,255,255,.7);
  margin-top: 6px; letter-spacing: .3px; font-weight: 500;
}

/* ═══════════════════════════════════════════
   VISUAL NOTE BOXES
   ═══════════════════════════════════════════ */
.vnote {
  margin-top: 18px; padding: 14px 18px; border-radius: 6px;
  font-size: 12px; font-style: italic; line-height: 1.65;
  color: var(--silver); border: 1px dashed var(--pearl);
  background: linear-gradient(135deg, rgba(245,242,236,.6), rgba(254,253,251,.8));
}
.vnote.dark {
  color: rgba(255,255,255,.72);
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.02);
}

/* ═══════════════════════════════════════════
   SECTION 2: DESTINATION TRIPTYCH
   ═══════════════════════════════════════════ */
.sec-destinations {
  padding: 110px 28px; background: var(--ivory);
  position: relative;
}
.sec-destinations::after {
  content: ''; position: absolute; bottom: 0; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--pearl), transparent);
}

.dest-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 56px;
}


/* Destination card photo backgrounds */
.dest-card {
  position: relative; padding: 44px 36px 40px;
  border: 1px solid var(--pearl);
  border-right: none; transition: all .5s var(--ease);
  overflow: hidden; cursor: default;
  min-height: 520px;
}
.dest-card .dest-img {
  position: absolute; top: 0; left: 0; right: 0;
  height: 220px; overflow: hidden;
}
.dest-card .dest-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
  filter: saturate(.75) brightness(.9);
}
.dest-card:hover .dest-img img {
  transform: scale(1.05);
  filter: saturate(.9) brightness(.95);
}
.dest-card .dest-img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--ivory), transparent);
}
.dest-card .dest-body-wrap {
  position: relative; z-index: 1;
  padding-top: 230px;
}
.dest-card:last-child { border-right: 1px solid var(--pearl); }
.dest-card:hover {
  background: var(--white);
  box-shadow: 0 20px 60px rgba(28,30,33,.06);
  z-index: 2;
}

.dest-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; transform: scaleX(0); transition: transform .5s var(--ease);
  transform-origin: left;
}
.dest-card:hover::before { transform: scaleX(1); }
.dest-card.uk::before { background: var(--navy); }
.dest-card.paris::before { background: var(--wine); }
.dest-card.madrid::before { background: var(--amber); }

.dest-num {
  font-family: var(--serif); font-size: 4.5rem; font-weight: 400;
  color: var(--pearl); line-height: 1; margin-bottom: 20px;
  transition: color .4s;
}
.dest-card:hover .dest-num { color: var(--amber-pale); }

.dest-flag {
  display: inline-block; margin-bottom: 14px;
}
.dest-flag .fi {
  width: 32px; height: 24px; border-radius: 3px;
  display: inline-block; box-shadow: 0 1px 4px rgba(0,0,0,.18);
}

.dest-title {
  font-family: var(--serif); font-size: 1.65rem; font-weight: 500;
  color: var(--charcoal); line-height: 1.2; margin-bottom: 6px;
}
.dest-cities {
  font-size: .75rem; font-weight: 600; letter-spacing: .7px;
  text-transform: uppercase; color: var(--amber); margin-bottom: 10px;
}
.dest-subtitle {
  font-family: var(--serif); font-size: 1rem; font-weight: 400;
  font-style: italic; color: var(--silver); margin-bottom: 18px;
}
.dest-body {
  font-size: .88rem; color: var(--slate); line-height: 1.8;
}

.dest-features {
  margin-top: 22px; list-style: none;
}
.dest-features li {
  display: flex; align-items: baseline; gap: 8px;
  font-size: .84rem; color: var(--slate); line-height: 1.65;
  padding: 5px 0;
}
.dest-features li::before {
  content: '—'; color: var(--amber); font-weight: 600; flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   SECTION 3: EARLY BIRD PRIORITY
   ═══════════════════════════════════════════ */
.sec-earlybird {
  padding: 0;
  position: relative; overflow: hidden;
  background: var(--charcoal);
  min-height: 680px;
}
.sec-earlybird::before {
  content: ''; position: absolute; inset: -50%;
  background-image: url("images/image-03.svg");
  background-size: 256px; animation: grain 6s steps(8) infinite;
  pointer-events: none; z-index: 0;
}

.eb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}
.eb-left {
  padding: 90px 60px 90px 60px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--charcoal);
  position: relative; z-index: 2;
}
.eb-right {
  position: relative; overflow: hidden;
  min-height: 480px;
  background: linear-gradient(135deg, rgba(42,44,47,1) 0%, rgba(28,30,33,1) 100%);
  border-left: 1px solid rgba(196,144,61,0.15);
}
.eb-right-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
}
.eb-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,30,33,0.35) 0%, rgba(28,30,33,0.05) 100%);
}
.eb-card-wrap {
  position: relative; z-index: 2;
  height: 100%; display: flex; align-items: center; justify-content: center;
  padding: 60px 48px;
}
@media (max-width: 860px) {
  .eb-inner { grid-template-columns: 1fr; }
  .eb-left { padding: 60px 28px; }
  .eb-right { min-height: 520px; }
  .eb-card-wrap { padding: 40px 24px; }
}url('images/image-04.jpg');
  background-size: cover; background-position: center;
}
.eb-right-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(28,30,33,0.55) 0%, rgba(28,30,33,0.1) 100%);
}
.eb-card-wrap {
  position: relative; z-index: 2;
  height: 100%; display: flex; align-items: center; justify-content: center;
  padding: 60px 44px;
}
@media (max-width: 860px) {
  .eb-inner { grid-template-columns: 1fr; }
  .eb-left { padding: 60px 28px; }
  .eb-right { min-height: 480px; }
  .eb-card-wrap { padding: 40px 24px; }
}

.eb-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border-radius: 3px;
  background: rgba(196,144,61,.1); border: 1px solid rgba(196,144,61,.2);
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--amber-glow);
  margin-bottom: 24px;
}

.eb-heading {
  font-family: var(--serif); font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 500; color: var(--white); line-height: 1.15;
  margin-bottom: 18px;
}

.eb-desc {
  font-size: .95rem; color: rgba(255,255,255,.8); line-height: 1.78;
}

.eb-points {
  list-style: none; margin-top: 16px;
}
.eb-points li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .9rem; color: rgba(255,255,255,.85); line-height: 1.6;
}
.eb-points li:last-child { border-bottom: none; }
.eb-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: rgba(196,144,61,.08); border: 1px solid rgba(196,144,61,.12);
}

.eb-card {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px; padding: 44px 36px; text-align: center;
  backdrop-filter: blur(8px);
}
.eb-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--amber-glow); margin-bottom: 22px;
}
.eb-card-heading {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 500;
  color: var(--white); line-height: 1.25; margin-bottom: 14px;
}
.eb-card-text {
  font-size: .88rem; color: rgba(255,255,255,.78); line-height: 1.72;
  margin-bottom: 28px;
}
.eb-card-note {
  font-size: .78rem; color: rgba(255,255,255,.65);
  margin-top: 18px; line-height: 1.5;
}

/* ═══════════════════════════════════════════
   SECTION 4: TRUSTED GUARDIAN
   ═══════════════════════════════════════════ */
.sec-guardian {
  padding: 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.guardian-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  align-items: stretch;
}
.guardian-photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  margin: 20px 0 20px 20px;
  border-radius: 12px;
  border: 4px solid var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.guardian-photo-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  border-radius: 12px;
}
.guardian-mobile { display: none; }
.guardian-desktop { display: block; }
.guardian-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 60%);
}
.guardian-content {
  padding: 80px 60px 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.guardian-content .t-label { margin-bottom: 10px; }
.guardian-content .t-heading { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 8px; }
.guardian-content .t-sub { font-size: .92rem; margin-bottom: 32px; color: var(--muted); line-height: 1.7; }
.guard-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin-top: 0;
}
@media (max-width: 860px) {
  .guardian-wrap { grid-template-columns: 1fr; }
  .guardian-photo { min-height: 0; aspect-ratio: 16/9; margin: 0; border-radius: 0; border: none; box-shadow: none; }
  .guardian-photo-img { background-size: contain; background-position: center center; background-repeat: no-repeat; background-color: #f5f3ef; }
  .guardian-content { padding: 56px 28px; }
  .guardian-desktop { display: none; }
  .guardian-mobile { display: block; border-radius: 0; }
}

.guard-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 0; border-bottom: 1px solid var(--pearl);
}
.guard-item:last-child { border-bottom: none; }
.guard-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: var(--cream); border: 1px solid var(--pearl);
}
.guard-title {
  font-size: .95rem; font-weight: 700; color: var(--charcoal); margin-bottom: 5px;
}
.guard-text {
  font-size: .86rem; color: var(--slate); line-height: 1.72;
}

/* ═══════════════════════════════════════════
   SECTION 5: SAFETY
   ═══════════════════════════════════════════ */
.sec-safety {
  padding: 0;
  background: linear-gradient(180deg, var(--cream), var(--ivory));
  overflow: hidden;
}
.safety-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.safety-hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.safety-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 30%,
    rgba(245,242,236,0.6) 75%,
    var(--cream) 100%
  );
}
.safety-body {
  padding: 60px 28px 100px;
}
.safety-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
@media (max-width: 860px) {
  .safety-hero { height: 320px; }
  .safety-body { padding: 40px 20px 72px; }
}

.safety-card {
  background: var(--white); border: 1px solid var(--pearl);
  border-radius: 14px; padding: 36px 30px;
  box-shadow: 0 6px 24px rgba(0,0,0,.025);
}
.safety-row {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--pearl);
}
.safety-row:last-child { border-bottom: none; }
.safety-emoji { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.safety-label { font-weight: 700; font-size: .88rem; color: var(--charcoal); margin-bottom: 3px; }
.safety-desc { font-size: .82rem; color: var(--slate); line-height: 1.6; }

/* ═══════════════════════════════════════════
   SECTION 6: ELITE EXPERIENCE
   ═══════════════════════════════════════════ */
.sec-experience {
  padding: 100px 28px;
  background: linear-gradient(135deg, var(--charcoal-warm), var(--charcoal));
  position: relative; overflow: hidden;
}
.sec-experience::before {
  content: ''; position: absolute; inset: -50%;
  background-image: url("images/image-05.svg");
  background-size: 256px; animation: grain 7s steps(8) infinite;
  pointer-events: none;
}

.exp-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 48px; position: relative; z-index: 1;
}
.exp-item {
  padding: 24px 22px; border-radius: 8px;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.05);
  display: flex; gap: 14px; align-items: flex-start;
  transition: all .35s var(--ease);
}
.exp-item:hover {
  background: rgba(255,255,255,.06); border-color: rgba(196,144,61,.12);
  transform: translateY(-3px);
}
.exp-emoji { font-size: 22px; line-height: 1; flex-shrink: 0; }
.exp-text { font-size: .88rem; color: rgba(255,255,255,.85); line-height: 1.65; }

/* ═══════════════════════════════════════════
   SECTION 7: FORM
   ═══════════════════════════════════════════ */
.sec-form {
  padding: 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
}
.sec-form-bg {
  position: absolute; inset: 0;
  background-image: url('images/image-06.jpg');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}
.sec-form-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(18,19,21,0.72) 0%,
    rgba(18,19,21,0.80) 50%,
    rgba(18,19,21,0.75) 100%
  );
  z-index: 1;
}

.form-card {
  background: var(--white); border-radius: 16px;
  padding: 48px 42px; max-width: 560px; margin: 0 auto;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
  position: relative; z-index: 2;
}
.form-title {
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
  color: var(--charcoal); text-align: center; margin-bottom: 8px;
}
.form-subtitle {
  font-size: .88rem; color: var(--silver); text-align: center;
  line-height: 1.6; margin-bottom: 32px;
}

.fg { margin-bottom: 16px; }
.fg label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: .4px; color: var(--graphite); margin-bottom: 6px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--pearl); border-radius: 5px;
  font-family: var(--sans); font-size: 14.5px; color: var(--charcoal);
  background: var(--white); outline: none; transition: border-color .3s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--amber); }
.fg input::placeholder, .fg textarea::placeholder { color: var(--mist); }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.form-btn {
  width: 100%; padding: 16px; margin-top: 8px;
  background: var(--amber); color: var(--charcoal);
  font-family: var(--sans); font-size: 13px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  border: none; border-radius: 4px; cursor: pointer;
  transition: all .3s;
  box-shadow: 0 2px 12px rgba(196,144,61,.15);
}
.form-btn:hover {
  background: var(--amber-light); transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(196,144,61,.2);
}

.form-trust {
  font-size: .76rem; color: var(--silver); text-align: center;
  line-height: 1.65; margin-top: 18px;
}

/* Success */
.success-state {
  display: none; text-align: center; padding: 48px 36px;
  background: var(--white); border-radius: 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
  max-width: 480px; margin: 0 auto; position: relative; z-index: 2;
}
.success-state.active { display: block; }
.success-check {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--forest-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  padding: 36px 28px; background: #161719;
  border-top: 1px solid rgba(255,255,255,.04); text-align: center;
}
.footer-brand {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-logo {
  height: 30px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .5;
}
.footer p { font-size: .76rem; color: rgba(255,255,255,.6); line-height: 1.6; }
.footer p + p { margin-top: 6px; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .dest-grid { grid-template-columns: 1fr; gap: 0; }
  .dest-card { border-right: 1px solid var(--pearl); border-bottom: none; min-height: auto; }
  .dest-card:last-child { border-bottom: 1px solid var(--pearl); }
  .dest-card .dest-img { height: 200px; }
  .eb-inner { grid-template-columns: 1fr; }
  .guard-grid { grid-template-columns: 1fr; }
  .safety-grid { grid-template-columns: 1fr; gap: 36px; }
  .nav-logo { height: 28px; }
  .nav-right { gap: 16px; }
  .nav-contact { padding: 8px 16px; font-size: 11px; }
  .nav-cta { padding: 8px 18px; font-size: 11px; }
}
@media (max-width: 640px) {
  .hero { padding: 130px 20px 80px; }
  .t-display { font-size: 2.4rem; }
  .nav-tag { display: none; }
  .nav-logo { display: none; }
  .nav-contact { padding: 8px; border-radius: 50%; }
  .nav-contact-label { display: none; }
  .nav { height: 56px; padding: 0 16px; }
  .nav-cta { padding: 8px 16px; font-size: 11px; letter-spacing: .5px; }
  .h-stat { padding: 8px 20px 8px 0; }
  .hero-stats { gap: 8px; }
  .fg-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 22px; }
  .dest-num { font-size: 3rem; }
  .lang-btn { padding: 6px 10px; font-size: 11px; }
  #langBtnLabel { display: none; }
}
