/* ============================================================
   THE GARANT — Homepage (preview-redesign)
   Palette:
     --ink       #0B0A08  background
     --ink-2     #111010  panels
     --ink-3     #070605  darker panels
     --gold      #C9A24B
     --champagne #E8CC82
     --cream     #F4EDE1
   ============================================================ */

:root {
  --ink: #0B0A08;
  --ink-2: #111010;
  --ink-3: #070605;
  --gold: #C9A24B;
  --champagne: #E8CC82;
  --cream: #F4EDE1;
  --cream-dim: rgba(244, 237, 225, 0.68);
  --cream-faint: rgba(244, 237, 225, 0.48);
  --hairline: rgba(244, 237, 225, 0.10);
  --hairline-gold: rgba(201, 162, 75, 0.28);

  --f-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max: 1280px;
  --gutter: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: #fff;
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.h1 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: #fff;
}
.h2 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #fff;
  margin-top: 16px;
}
.h2 em, .hero__title em, .newsletter__title em, .coming-soon__text em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 400;
}
.lede {
  font-family: var(--f-sans);
  font-size: 20px;
  line-height: 1.55;
  color: var(--cream);
  max-width: 620px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-sans); font-weight: 500;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s ease;
  white-space: nowrap;
}
.btn--gold {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
}
.btn--gold:hover {
  color: var(--ink);
  background: var(--champagne);
  border-color: var(--champagne);
  box-shadow: 0 0 0 1px rgba(232, 204, 130, 0.25), 0 8px 40px -10px rgba(232, 204, 130, 0.55);
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  border-bottom: 1px solid var(--hairline-gold);
  padding-bottom: 6px; transition: all 0.3s ease;
}
.link-arrow:hover { color: var(--champagne); border-color: var(--champagne); }
.link-arrow .arr { transition: transform 0.35s ease; }
.link-arrow:hover .arr { transform: translateX(6px); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { position: relative; }

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 40px; margin-bottom: 72px;
}
.section-head .left { max-width: 680px; }
.section-head .eyebrow { margin-bottom: 20px; display: block; }
.section-head__sub { font-size: 16px; max-width: 380px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 22px 0;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(11, 10, 8, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--hairline);
  padding: 12px 0;
}
.header.is-hidden { transform: translateY(-100%); }
.header__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.brand { display: inline-flex; align-items: center; }
.brand__logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s ease, opacity 0.3s ease;
}
.header.is-scrolled .brand__logo { height: 44px; }
.brand__logo--footer { height: 80px; opacity: 0.88; }

.nav {
  display: flex; align-items: center; gap: 36px;
}
.nav a {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream); position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.nav a::after {
  content: ''; position: absolute; left: 50%; right: 50%; bottom: 0;
  height: 1px; background: var(--gold);
  transition: all 0.35s ease;
}
.nav a:hover { color: var(--champagne); }
.nav a:hover::after { left: 0; right: 0; }
.nav a.is-active { color: #fff; }
.nav a.is-active::after { left: 0; right: 0; background: var(--gold); }

.header__right {
  display: flex; align-items: center; justify-content: flex-end; gap: 16px;
}
.lang {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream);
  padding: 10px 14px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.lang:hover { border-color: var(--gold); color: var(--champagne); }
.lang svg { width: 10px; height: 10px; }

.hamburger {
  display: none;
  width: 40px; height: 40px; border-radius: 50%;
  background: transparent; border: 1px solid var(--hairline);
  color: var(--cream); cursor: pointer;
  align-items: center; justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.hamburger:hover { border-color: var(--gold); color: var(--champagne); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(11, 10, 8, 0.96);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
  opacity: 0; pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; transform: none; }
.mobile-menu__close {
  position: absolute; top: 22px; right: 28px;
  width: 40px; height: 40px; border-radius: 50%;
  background: transparent; border: 1px solid var(--hairline);
  color: var(--cream); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.3s ease, color 0.3s ease;
}
.mobile-menu__close:hover { border-color: var(--gold); color: var(--champagne); }
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.mobile-menu__nav a {
  font-family: var(--f-serif);
  font-size: 32px; font-weight: 400; line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--cream);
  padding: 6px 0;
  position: relative;
  transition: color 0.25s ease;
}
.mobile-menu__nav a:hover,
.mobile-menu__nav a.is-active { color: var(--champagne); font-style: italic; }
.mobile-menu__cta { margin-top: 12px; }
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 110px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 90%, rgba(58, 40, 20, 0.55) 0%, transparent 60%),
    linear-gradient(180deg, #1a120a 0%, #0f0b07 55%, #050403 100%);
  overflow: hidden;
}
.hero__bg-layer {
  position: absolute; inset: 0;
  pointer-events: none;
  will-change: transform;
}
.hero__bg-layer--sun {
  background:
    radial-gradient(ellipse 55% 40% at 78% 30%, rgba(232, 204, 130, 0.28) 0%, rgba(201, 162, 75, 0.14) 30%, transparent 60%),
    radial-gradient(circle at 78% 30%, rgba(232, 204, 130, 0.12) 0%, transparent 25%);
}
.hero__bg-layer--grain {
  background-image: repeating-linear-gradient(
    -28deg,
    rgba(58, 45, 26, 0.22) 0px,
    rgba(58, 45, 26, 0.22) 1px,
    transparent 1px,
    transparent 6px
  );
  mix-blend-mode: overlay;
  opacity: 0.5;
}
.hero__bg-stars {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  will-change: transform;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,10,8,0) 0%, rgba(11,10,8,0.25) 55%, rgba(11,10,8,0.85) 100%),
    linear-gradient(90deg, rgba(11,10,8,0.55) 0%, rgba(11,10,8,0.15) 55%, rgba(11,10,8,0) 100%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 2; width: 100%; display: flex; justify-content: center; }
.hero__content { max-width: 780px; margin: 0 auto; text-align: center; }
.hero__eyebrow { display: flex; justify-content: center; }
.hero__cta { margin-left: auto; margin-right: auto; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: ''; display: block; width: 40px; height: 1px; background: var(--gold);
}
.hero__title { margin-bottom: 28px; }
.hero__sub { margin-bottom: 40px; }

.hero__cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 16px; font-weight: 600; letter-spacing: 0.02em;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}
.hero__cta:hover {
  background: var(--champagne);
  box-shadow: 0 12px 40px -12px rgba(201, 162, 75, 0.55);
  transform: translateY(-1px);
}
.hero__cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.chatbar {
  display: flex; align-items: center;
  background: rgba(11, 10, 8, 0.55);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(244, 237, 225, 0.18);
  border-radius: 999px;
  padding: 10px 10px 10px 28px;
  max-width: 640px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.chatbar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 75, 0.25), 0 10px 50px -20px rgba(201, 162, 75, 0.5);
}
.chatbar input {
  flex: 1;
  background: transparent; border: 0; outline: 0;
  color: #fff;
  font-family: var(--f-sans); font-size: 15px;
  padding: 18px 16px 18px 0;
}
.chatbar input::placeholder { color: var(--cream-faint); }
.chatbar__send {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); border: 0; cursor: pointer;
  display: grid; place-items: center;
  color: var(--ink);
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.chatbar__send:hover {
  background: var(--champagne);
  box-shadow: 0 0 0 6px rgba(232, 204, 130, 0.12);
  transform: translateX(2px);
}

.chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 22px;
}
.chip {
  font-size: 12px; letter-spacing: 0.06em;
  color: var(--cream);
  padding: 9px 16px;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: rgba(11, 10, 8, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}
.chip:hover {
  border-color: var(--gold); color: var(--champagne);
  background: rgba(201, 162, 75, 0.08);
}
.chip--event {
  border-color: var(--hairline-gold);
  color: var(--champagne);
  background: rgba(201, 162, 75, 0.06);
}

.trustbar {
  position: absolute; left: 0; right: 0; bottom: 44px;
  z-index: 2;
  display: flex; justify-content: center; align-items: center; gap: 28px;
  font-size: 10.5px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--cream-dim);
}
.trustbar span { display: inline-flex; align-items: center; gap: 10px; }
.trustbar .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); opacity: 0.7; }
.trustbar .star { color: var(--gold); font-size: 12px; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 140px 0 100px; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.card {
  position: relative;
  padding: 56px 40px 48px;
  border-right: 1px solid var(--hairline);
  transition: background 0.4s ease;
}
.card:last-child { border-right: 0; }
.card::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0.12); transform-origin: left center;
  transition: transform 0.5s ease;
}
.card:hover { background: rgba(201, 162, 75, 0.03); }
.card:hover::before { transform: scaleX(1); }

.card--featured { background: rgba(201, 162, 75, 0.06); }
.card--featured::before { transform: scaleX(1); background: var(--gold); }
.card--featured .card__icon { color: var(--champagne); }
.card--featured .card__eyebrow { color: var(--gold); }
.card--featured:hover { background: rgba(201, 162, 75, 0.1); }

.card__icon {
  width: 44px; height: 44px; color: var(--gold);
  margin-bottom: 48px;
}
.card__eyebrow {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 16px;
}
.card__title {
  font-family: var(--f-serif);
  font-size: 30px; line-height: 1.1; font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
}
.card__body {
  font-size: 15px; line-height: 1.6;
  color: var(--cream-dim);
  margin-bottom: 32px;
  max-width: 320px;
}

.coming-soon {
  margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 24px 32px;
  border: 1px dashed var(--hairline-gold);
  border-radius: 2px;
  background: rgba(201, 162, 75, 0.02);
}
.coming-soon__left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.coming-soon__badge {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  padding: 6px 10px;
  border: 1px solid var(--hairline-gold);
  border-radius: 2px;
}
.coming-soon__text {
  font-family: var(--f-serif); font-size: 20px; color: var(--cream);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: 100px 0 140px; }
.how__head {
  flex-direction: column; align-items: flex-start;
  justify-content: flex-start; margin-bottom: 96px;
}
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 46px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-gold) 10%, var(--hairline-gold) 90%, transparent);
}
.step {
  text-align: left;
  padding: 0 28px;
  position: relative;
}
.step__num {
  display: grid; place-items: center;
  width: 92px; height: 92px; border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--hairline-gold);
  color: var(--gold);
  font-family: var(--f-serif); font-size: 22px; font-style: italic;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.step__icon {
  color: var(--gold);
  width: 28px; height: 28px;
  margin-bottom: 18px;
}
.step__title {
  font-family: var(--f-serif);
  font-size: 30px; line-height: 1.1; font-weight: 400;
  margin-bottom: 14px;
}
.step__body {
  font-size: 15px; line-height: 1.6;
  color: var(--cream-dim);
  max-width: 320px;
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations {
  padding: 100px 0;
  background: var(--ink-3);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.dest-scroll {
  position: relative;
  display: flex; gap: 24px;
  overflow-x: auto;
  padding: 0 var(--gutter) 40px;
  margin: 0 calc(var(--gutter) * -1);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.dest-scroll::-webkit-scrollbar { display: none; }

.dest {
  position: relative;
  flex: 0 0 320px;
  height: 440px;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  scroll-snap-align: start;
  isolation: isolate;
}
.dest__img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
  z-index: 1;
}
.dest:hover .dest__img { transform: scale(1.08); }
.dest::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,10,8,0) 38%, rgba(11,10,8,0.55) 70%, rgba(11,10,8,0.92) 100%);
  z-index: 2;
}
.dest__tag {
  position: absolute; top: 20px; left: 20px; z-index: 3;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  padding: 6px 12px;
  border: 1px solid var(--hairline-gold);
  background: rgba(11, 10, 8, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 2px;
}
.dest__meta {
  position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 3;
  transition: transform 0.45s ease;
}
.dest__name {
  font-family: var(--f-serif); font-size: 34px; line-height: 1; font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.dest__sub {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream-dim);
}
.dest__cta {
  position: absolute; left: 24px; bottom: 28px; z-index: 4;
  color: var(--champagne);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; transform: translateY(12px);
  transition: all 0.45s ease;
}
.dest:hover .dest__meta { transform: translateY(-36px); }
.dest:hover .dest__cta { opacity: 1; transform: translateY(0); }

.dest-controls {
  display: flex; gap: 10px; margin-top: 10px;
}
.dest-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: transparent; border: 1px solid var(--hairline);
  color: var(--cream); cursor: pointer;
  display: grid; place-items: center;
  transition: all 0.3s ease;
}
.dest-btn:hover { border-color: var(--gold); color: var(--champagne); }

/* ============================================================
   PARTNERS STRIP
   ============================================================ */
.partners {
  padding: 80px 0;
  background: var(--ink);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.partners__inner {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  text-align: center;
}
.partners__label {
  display: block;
  color: var(--cream-faint);
}
.partners__row {
  display: flex; align-items: center; justify-content: center;
  gap: 36px; flex-wrap: wrap;
}
.partners__logo {
  font-family: var(--f-serif); font-size: 22px;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
  font-style: italic;
  opacity: 0.75;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.partners__logo:hover { opacity: 1; color: var(--champagne); }
.partners__dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--gold); opacity: 0.5;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #0e0c09 0%, #0a0907 100%);
  overflow: hidden;
}
.newsletter::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 162, 75, 0.07) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(232, 204, 130, 0.05) 0%, transparent 50%),
    repeating-linear-gradient(45deg, rgba(201, 162, 75, 0.015) 0px, rgba(201, 162, 75, 0.015) 1px, transparent 1px, transparent 6px);
}
.newsletter__inner {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 720px; margin: 0 auto;
}
.newsletter__eyebrow { display: block; margin-bottom: 18px; }
.newsletter__title {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(36px, 4.4vw, 56px); line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.newsletter__sub {
  font-size: 16px; color: var(--cream-dim);
  margin: 0 auto 40px;
  max-width: 520px;
}
.news-form {
  display: flex; align-items: center;
  background: rgba(11, 10, 8, 0.6);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 8px 8px 8px 28px;
  max-width: 520px; margin: 0 auto;
  transition: border-color 0.3s ease;
}
.news-form:focus-within { border-color: var(--gold); }
.news-form input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: #fff; font-family: var(--f-sans); font-size: 14px;
  padding: 16px 12px 16px 0;
}
.news-form input::placeholder { color: var(--cream-faint); }
.news-form button {
  font-family: var(--f-sans); font-weight: 500;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 999px;
  color: var(--ink); background: var(--gold);
  border: 0; cursor: pointer;
  transition: all 0.3s ease;
}
.news-form button:hover {
  background: var(--champagne);
  box-shadow: 0 0 0 1px rgba(232, 204, 130, 0.25), 0 8px 40px -10px rgba(232, 204, 130, 0.55);
}
.news-form__hint {
  margin-top: 18px;
  font-size: 12px; letter-spacing: 0.08em; color: var(--champagne);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 140px 0 120px; }
.faq__inner { max-width: 760px; margin: 0 auto; }
.faq__head { text-align: center; }
.faq__eyebrow { display: block; margin-bottom: 18px; }
.faq__list { margin-top: 60px; }
.faq-item { border-top: 1px solid var(--hairline); }
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item__head {
  width: 100%; background: transparent; border: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 4px;
  cursor: pointer;
  text-align: left;
  color: #fff;
  font-family: var(--f-serif); font-size: 22px; line-height: 1.3;
  font-weight: 400;
  transition: color 0.3s ease;
}
.faq-item__head:hover { color: var(--champagne); }
.faq-item__icon {
  width: 22px; height: 22px; flex-shrink: 0;
  color: var(--gold);
  position: relative;
  margin-left: 32px;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: ''; position: absolute; background: currentColor;
  transition: transform 0.3s ease;
}
.faq-item__icon::before {
  left: 0; right: 0; top: 50%; height: 1px; transform: translateY(-0.5px);
}
.faq-item__icon::after {
  top: 0; bottom: 0; left: 50%; width: 1px; transform: translateX(-0.5px);
}
.faq-item.is-open .faq-item__icon::after { transform: translateX(-0.5px) scaleY(0); }
.faq-item__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.faq-item__body-inner {
  padding: 0 4px 32px;
  color: var(--cream-dim);
  font-size: 16px; line-height: 1.65;
  max-width: 640px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050403;
  border-top: 1px solid var(--hairline);
  padding: 100px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 80px;
}
.footer__col h4 {
  font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}
.footer__col a {
  display: block;
  font-size: 14px; color: var(--cream-dim);
  padding: 7px 0;
  transition: color 0.3s ease;
}
.footer__col a:hover { color: var(--champagne); }
.footer__tag {
  font-family: var(--f-serif);
  font-size: 18px; line-height: 1.45;
  color: var(--cream);
  margin: 20px 0 28px;
  max-width: 280px;
  font-style: italic;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  color: var(--cream);
  padding: 0;
  transition: all 0.3s ease;
}
.footer__social a:hover { border-color: var(--gold); color: var(--champagne); }
.footer__lang { margin-top: 20px; }
.soon-tag { color: var(--cream-faint); font-size: 10px; letter-spacing: 0.2em; margin-left: 6px; }

.footer__bottom {
  border-top: 1px solid var(--hairline);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.1em;
  color: var(--cream-faint);
}
.footer__bottom-links { display: flex; gap: 28px; }
.footer__bottom-links a:hover { color: var(--champagne); }

/* ============================================================
   Reveal-on-scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s ease, transform 0.95s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --gutter: 40px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-head__sub { max-width: 100%; }
}

@media (max-width: 900px) {
  :root { --gutter: 18px; }
  .header { padding: 16px 0; }
  .header__row { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
  .nav { display: none; }
  .hamburger { display: inline-flex; }
  .header__right { gap: 10px; justify-content: flex-end; flex-shrink: 0; }
  .header__right .btn--gold { display: none; }
  .lang { padding: 8px 12px; font-size: 10px; letter-spacing: .2em; }
  .lang svg { width: 9px; height: 9px; }
  .hamburger { width: 40px; height: 40px; }
  .cards, .quotes, .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .card, .quote { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .card:last-child, .quote:last-child { border-bottom: 0; }
  .step { padding: 24px 0; border-bottom: 1px solid var(--hairline); }
  .step:last-child { border-bottom: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .coming-soon { flex-direction: column; align-items: flex-start; }
  .hero { padding: 110px 0 70px; min-height: auto; }
  .trustbar { position: static; margin-top: 32px; padding-bottom: 10px; }
  .features, .how, .destinations, .testimonials, .faq, .newsletter { padding: 80px 0; }
  .brand__logo { height: 44px; }
  .header.is-scrolled .brand__logo { height: 36px; }
}

@media (max-width: 560px) {
  :root { --gutter: 14px; }
  .hero { padding: 100px 0 60px; }
  .h1 { font-size: clamp(34px, 9vw, 46px); line-height: 1.12; }
  .lede { font-size: 16px; line-height: 1.6; }
  .hero__title { margin-bottom: 20px; }
  .chatbar { padding: 5px 5px 5px 14px; }
  .chatbar input { font-size: 14px; padding: 12px 8px 12px 0; min-width: 0; }
  .chatbar__send { width: 42px; height: 42px; flex-shrink: 0; }
  .hero__cta { padding: 15px 24px; font-size: 14px; width: 100%; max-width: 100%; }
  .chips { gap: 8px; }
  .chip { font-size: 11px; padding: 7px 12px; }
  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .quote, .card { padding: 40px 24px; }
  .dest { flex: 0 0 280px; height: 400px; }
  .press { gap: 24px; }
  .press__logo { font-size: 16px; }
  .coming-soon { padding: 20px 20px; }
  .coming-soon__text { font-size: 17px; }
}

/* ============================================================
   STATIC MODE (screenshot only) — body.is-static
   ============================================================ */
body.is-static .hero { min-height: auto; padding: 160px 0 100px; }
body.is-static .trustbar { position: static; margin-top: 40px; padding-bottom: 10px; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bg-img { transform: scale(1.02); }
}

/* ============================================================
   RTL — Arabic home
   ============================================================ */
html[dir="rtl"] body {
  font-family: 'Noto Naskh Arabic', 'Amiri', 'Inter', sans-serif;
}
html[dir="rtl"] .h1,
html[dir="rtl"] .h2,
html[dir="rtl"] .hero__title,
html[dir="rtl"] .eyebrow,
html[dir="rtl"] .newsletter__title,
html[dir="rtl"] .footer__title {
  font-family: 'Amiri', 'Noto Naskh Arabic', 'Playfair Display', serif;
  letter-spacing: normal;
}
html[dir="rtl"] em,
html[dir="rtl"] .hero__title em,
html[dir="rtl"] .newsletter__title em,
html[dir="rtl"] .h1 em,
html[dir="rtl"] .h2 em {
  font-style: normal;
}
html[dir="rtl"] .hero__chip,
html[dir="rtl"] .partners__row,
html[dir="rtl"] .steps {
  direction: rtl;
}
html[dir="rtl"] .faq-item__head {
  flex-direction: row-reverse;
}
html[dir="rtl"] .news-form {
  direction: rtl;
}
html[dir="rtl"] .footer__cols {
  direction: rtl;
}
