:root {
  --purple: #6947f2;
  --purple-dark: #5636d6;
  --coral: #f26656;
  --midnight: #0e0b2b;
  --paper: #f7f5f1;
  --border: #e6e1d8;
  --divider: #f0ede6;
  --dashed: #c9c2b4;
  --sun: #ffc24b;
  --max-w: 1440px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--midnight);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.lang-en { font-family: "Manrope", sans-serif; }

a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--coral); }
::selection { background: var(--coral); color: #fff; }

.serif { font-family: "Instrument Serif", serif; font-style: italic; }

.wrap { max-width: var(--max-w); margin: 0 auto; }

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

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(247,245,241,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: clamp(14px,3vw,44px);
  padding: 16px clamp(20px,4vw,56px);
}
.site-header .brand { display: flex; align-items: center; gap: 11px; color: var(--midnight); }
.site-header .brand svg { width: 34px; height: 34px; }
.site-header .brand span { font-size: 15px; font-weight: 800; letter-spacing: .005em; }
.site-nav { display: none; gap: clamp(14px,2vw,30px); font-size: 14px; font-weight: 600; }
.site-nav a { color: var(--midnight); }
.header-right { margin-inline-start: auto; display: flex; align-items: center; gap: 14px; }
.header-phone { font-size: 13px; font-weight: 600; opacity: .6; white-space: nowrap; }
.lang-switch {
  border: 1px solid var(--border); background: #fff; color: var(--midnight);
  font-size: 12px; font-weight: 700; padding: 8px 12px; border-radius: 999px; cursor: pointer;
}
.nav-toggle {
  display: grid; place-items: center; width: 36px; height: 36px;
  border: 1px solid var(--border); background: #fff; border-radius: 8px; cursor: pointer;
}
.nav-toggle svg { width: 18px; height: 18px; }

@media (min-width: 900px) {
  .site-nav { display: flex; }
  .nav-toggle { display: none; }
}

.mobile-nav {
  display: none; flex-direction: column; gap: 2px; padding: 10px clamp(20px,4vw,56px) 16px;
  background: var(--paper); border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 10px 4px; font-size: 14px; font-weight: 700; color: var(--midnight); border-bottom: 1px solid var(--divider); }

/* ---------- Arrow plate (signature CTA shape) ---------- */
.arrow-plate {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  padding: 13px 20px; border: none; cursor: pointer; position: relative;
  border-radius: 7px 0 0 7px; font-family: inherit; line-height: 1;
}
[dir="rtl"] .arrow-plate { border-radius: 0 7px 7px 0; }
.arrow-plate .cap {
  position: absolute; inset-inline-start: 100%; top: 0; bottom: 0; width: 19px;
}
[dir="rtl"] .arrow-plate .cap { transform: scaleX(-1); }
.arrow-plate .cap svg { width: 100%; height: 100%; display: block; }
.arrow-plate.small { padding: 8px 12px; font-size: 10px; gap: 10px; }
.arrow-plate.small .cap { width: 13px; }
.arrow-plate.big { padding: 17px 22px; font-size: 12px; }
.arrow-plate.big .cap { width: 25px; }

.arrow-icon { display: inline-block; }
[dir="rtl"] .arrow-icon.flip { transform: scaleX(-1); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--midnight); overflow: hidden; }
.hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, rgba(14,11,43,.94) 0%, rgba(14,11,43,.74) 42%, rgba(14,11,43,.15) 100%);
}
[dir="rtl"] .hero-scrim { background: linear-gradient(-100deg, rgba(14,11,43,.94) 0%, rgba(14,11,43,.74) 42%, rgba(14,11,43,.15) 100%); }
.hero-inner {
  position: relative; z-index: 2; display: flex; gap: clamp(20px,3vw,44px);
  padding: clamp(28px,4.5vw,64px) clamp(20px,4vw,56px) clamp(90px,10vw,132px);
  align-items: stretch; flex-wrap: wrap;
}
.route-rail { flex: none; width: clamp(26px,3vw,40px); display: flex; flex-direction: column; align-items: center; gap: 10px; padding-top: 6px; }
.route-rail .n1 { color: var(--coral); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.route-rail .dot1 { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); }
.route-rail .line { flex: 1; width: 1px; background: linear-gradient(to bottom, var(--coral) 0%, rgba(255,255,255,.28) 22%, rgba(255,255,255,.28) 100%); }
.route-rail .dot2 { width: 7px; height: 7px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.5); }
.route-rail .n2 { color: #fff; opacity: .4; font-size: 10px; font-weight: 800; letter-spacing: .16em; }

.hero-copy { flex: 1 1 380px; min-width: 0; display: flex; flex-direction: column; gap: clamp(16px,2.4vw,28px); justify-content: center; }
.hero-badge-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; padding: 8px 13px;
}
.hero-badge-note { color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; opacity: .55; }
.hero-title { margin: 0; color: #fff; font-size: clamp(34px,5.6vw,80px); font-weight: 800; line-height: .96; letter-spacing: -.04em; }
.hero-title .hl { color: var(--coral); }
.hero-subtitle { margin: 0; color: #fff; font-size: clamp(14px,1.4vw,18px); line-height: 1.6; max-width: 460px; opacity: .8; }
.hero-stats { display: flex; gap: clamp(18px,3vw,40px); flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.16); padding-top: clamp(14px,2vw,24px); }
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat b { color: #fff; font-size: clamp(19px,2.4vw,30px); font-weight: 800; letter-spacing: -.025em; }
.hero-stat span { color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .5; }

.hero-trending { flex: 1 1 280px; min-width: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 14px; max-width: 400px; }
.hero-trending > .label { color: #fff; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; opacity: .5; }
.trend-list { display: flex; flex-direction: column; gap: 10px; }
.trend-item {
  display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16); padding: 12px; backdrop-filter: blur(6px);
  transition: background .2s ease;
}
.trend-item:hover { background: rgba(255,255,255,.14); }
.trend-thumb { width: 56px; height: 56px; flex: none; border-radius: 4px; overflow: hidden; background: linear-gradient(135deg,#241d5c,#0e0b2b); display: grid; place-items: center; }
.trend-thumb span { font-size: 9px; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.4); text-transform: uppercase; }
.trend-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.trend-info b { color: #fff; font-size: 15px; font-weight: 700; letter-spacing: -.01em; }
.trend-info span { color: #fff; font-size: 11px; font-weight: 600; opacity: .6; letter-spacing: .04em; }
.trend-arrow { margin-inline-start: auto; width: 18px; height: 18px; flex: none; color: var(--coral); }

/* ---------- Search bar ---------- */
.search-wrap { padding: 0 clamp(20px,4vw,56px); margin-top: clamp(-64px,-6vw,-48px); position: relative; z-index: 5; }
.search-card { background: #fff; border: 1px solid var(--border); box-shadow: 0 26px 70px -34px rgba(14,11,43,.42); }
.search-tabs { display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--divider); padding: 0 clamp(16px,2.4vw,28px); overflow-x: auto; }
.search-tab {
  font-size: 12px; font-weight: 600; letter-spacing: .1em; padding: 16px 0; opacity: .45;
  background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; font-family: inherit;
  white-space: nowrap; color: var(--midnight);
}
.search-tab.active { font-weight: 700; opacity: 1; color: var(--purple); border-bottom-color: var(--purple); }
.search-hint { margin-inline-start: auto; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .35; white-space: nowrap; display: none; }
@media (min-width: 640px) { .search-hint { display: block; } }

.search-fields { padding: clamp(16px,2.4vw,26px) clamp(16px,2.4vw,28px); display: flex; gap: clamp(12px,1.6vw,22px); align-items: flex-end; flex-wrap: wrap; }
.field-point { flex: 1 1 150px; min-width: 140px; display: flex; gap: 12px; align-items: flex-start; }
.field-point .dotwrap { flex: none; display: flex; flex-direction: column; align-items: center; gap: 4px; padding-top: 20px; }
.field-point .dot { width: 9px; height: 9px; border-radius: 50%; }
.field-point .info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field-point .info .lbl { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .45; }
.field-point .info .lbl.coral { color: var(--coral); opacity: 1; }
.field-point .info .val { font-size: clamp(16px,1.8vw,21px); font-weight: 700; letter-spacing: -.015em; border: none; background: none; font-family: inherit; color: var(--midnight); width: 100%; padding: 0; }

.field-connector { flex: none; display: flex; align-items: center; gap: 8px; padding-bottom: 6px; }
.field-connector .dashline { width: clamp(16px,3vw,40px); height: 1px; background: repeating-linear-gradient(to right, var(--dashed) 0 4px, transparent 4px 8px); }
.field-connector .arrow-icon { width: 26px; height: 26px; color: var(--coral); }

.field-plain { flex: 1 1 110px; min-width: 100px; display: flex; flex-direction: column; gap: 6px; }
.field-plain.bordered { border-inline-start: 1px solid var(--divider); padding-inline-start: clamp(14px,1.6vw,22px); }
.field-plain .lbl { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .45; }
.field-plain .val { font-size: clamp(14px,1.6vw,18px); font-weight: 700; }

/* ---------- Section shells ---------- */
.section { padding: clamp(56px,8vw,110px) clamp(20px,4vw,56px) 0; }
.section-head { display: flex; align-items: flex-end; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(24px,3vw,40px); }
.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--purple); }
.section-title { margin: 8px 0 0; font-size: clamp(26px,4vw,52px); font-weight: 800; letter-spacing: -.035em; line-height: 1; }
.section-link {
  margin-inline-start: auto; display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  border-bottom: 1.5px solid var(--midnight); padding-bottom: 6px; color: var(--midnight);
}
.section-link svg { width: 18px; height: 18px; }

/* ---------- Destinations ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,240px),1fr)); gap: clamp(14px,1.6vw,20px); }
.dest-card {
  position: relative; aspect-ratio: .78; overflow: hidden; background: var(--midnight);
  opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease;
}
.dest-card.in-view { opacity: 1; transform: translateY(0); }
.dest-card .photo { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .5s ease; }
.dest-card:hover .photo { transform: scale(1.05); }
.dest-card .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,11,43,.85) 0%, rgba(14,11,43,0) 55%); pointer-events: none; }
.dest-card .info { position: absolute; inset-inline: 0; bottom: 0; padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.dest-card .route-badge { align-self: flex-start; }
.dest-card .city { color: #fff; font-size: clamp(19px,2.2vw,27px); font-weight: 800; letter-spacing: -.02em; line-height: 1.05; }
.dest-card .meta { color: #fff; font-size: 13px; font-weight: 600; opacity: .85; }

/* ---------- Journeys ---------- */
.journeys-panel { background: var(--midnight); color: #fff; padding: clamp(26px,4vw,60px); display: flex; flex-direction: column; gap: clamp(26px,4vw,48px); }
.journeys-panel .section-title { color: #fff; }
.journeys-tagline { margin-inline-start: auto; font-size: clamp(18px,2.4vw,32px); opacity: .75; }
.route-strip { display: flex; align-items: center; gap: clamp(8px,1.4vw,18px); flex-wrap: wrap; }
.route-strip .stop { display: flex; flex-direction: column; gap: 5px; }
.route-strip .stop .code { font-size: 11px; font-weight: 700; letter-spacing: .16em; opacity: .5; }
.route-strip .stop .city { font-size: clamp(17px,2.4vw,30px); font-weight: 800; letter-spacing: -.025em; }
.route-strip .seg { flex: 1 1 34px; min-width: 24px; height: 1px; background: rgba(255,255,255,.22); }
.route-strip .arrow-icon { width: 20px; height: 20px; color: var(--coral); flex: none; }

.itinerary-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,200px),1fr)); gap: clamp(14px,1.6vw,18px); }
.itin-card { border: 1px solid rgba(255,255,255,.16); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.itin-card .days { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--sun); }
.itin-card .ttl { font-size: 16px; font-weight: 700; }
.itin-card .body { font-size: 13px; line-height: 1.55; opacity: .7; }
.itin-price { background: var(--purple); padding: 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.itin-price .n { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .8; }
.itin-price .p { font-size: clamp(20px,2.6vw,30px); font-weight: 800; letter-spacing: -.025em; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,220px),1fr)); gap: clamp(14px,1.6vw,20px); }
.service-card { background: #fff; border: 1px solid var(--border); padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.service-card svg { width: 24px; height: 24px; color: var(--purple); }
.service-card .ttl { font-size: 17px; font-weight: 800; letter-spacing: -.015em; }
.service-card .body { margin: 0; font-size: 14px; line-height: 1.6; opacity: .7; }
.service-cta { background: var(--purple); color: #fff; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; gap: 20px; }
.service-cta .lbl { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; opacity: .8; }
.service-cta .headline { font-size: clamp(20px,2.4vw,29px); line-height: 1.1; }

/* ---------- Contact ---------- */
.contact-panel { background: #fff; border: 1px solid var(--border); padding: clamp(26px,4vw,48px); display: grid; grid-template-columns: 1fr; gap: clamp(24px,3vw,40px); }
@media (min-width: 860px) { .contact-panel { grid-template-columns: 1fr 1.2fr; } }
.contact-copy .section-title { margin-top: 8px; }
.contact-copy p { font-size: 15px; line-height: 1.7; opacity: .75; max-width: 380px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 520px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-field label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .55; margin-bottom: 6px; }
.form-field input, .form-field textarea {
  width: 100%; border: 1px solid var(--border); background: var(--paper); padding: 12px 14px;
  font-family: inherit; font-size: 14px; color: var(--midnight); border-radius: 2px;
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--purple); outline-offset: 1px; }
.form-alert { padding: 12px 16px; font-size: 13.5px; font-weight: 600; border: 1px solid transparent; }
.form-alert.ok { background: #eafaf3; color: #0f7a4d; border-color: #b9ecd5; }
.form-alert.err { background: #fdeceb; color: #b3261e; border-color: #f6c6c2; }
.contact-submit { align-self: flex-start; }

/* ---------- Footer ---------- */
.site-footer { margin-top: clamp(56px,8vw,110px); background: var(--midnight); color: #fff; padding: clamp(30px,5vw,64px) clamp(20px,4vw,56px); display: flex; flex-direction: column; gap: clamp(24px,3vw,40px); }
.footer-top { display: flex; gap: clamp(24px,4vw,64px); flex-wrap: wrap; align-items: flex-start; }
.footer-brand { display: flex; flex-direction: column; gap: 16px; flex: 1 1 240px; min-width: 0; }
.footer-brand .brand { display: flex; align-items: center; gap: 11px; }
.footer-brand .brand svg { width: 32px; height: 32px; }
.footer-brand .brand span { font-size: 15px; font-weight: 800; }
.footer-brand p { margin: 0; font-size: 14px; line-height: 1.6; opacity: .6; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; flex: 1 1 130px; font-size: 14px; }
.footer-col .hd { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; opacity: .45; }
.footer-col a, .footer-col span { color: #fff; opacity: .8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); padding-top: 22px; display: flex; gap: 16px; flex-wrap: wrap; justify-content: space-between; font-size: 12px; opacity: .5; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
