/* ===========================================================================
   EmyLux Express — design system
   Brand: gold + deep ink (logo), cream paper. DM Sans titles / Manrope text.
   =========================================================================== */

:root {
  --ink: #11161f;
  --ink-2: #1b2230;
  --ink-3: #2a3342;
  --gold: #c9a24b;
  --gold-2: #e6c77a;
  --gold-deep: #a8842f;
  --cream: #faf7f0;
  --cream-2: #f4eee1;
  --paper: #ffffff;
  --text: #1b2230;
  --muted: #5b6472;
  --muted-2: #8a93a3;
  --line: rgba(17, 22, 31, .1);
  --line-2: rgba(17, 22, 31, .06);
  --wa: #25d366;
  --wa-deep: #1da851;
  --ok: #1f9d55;
  --err: #d8453b;

  --gold-grad: linear-gradient(135deg, #e6c77a 0%, #c9a24b 45%, #a8842f 100%);
  --ink-grad: linear-gradient(160deg, #1b2230 0%, #11161f 100%);

  --shadow-sm: 0 1px 2px rgba(17, 22, 31, .06), 0 2px 8px rgba(17, 22, 31, .05);
  --shadow: 0 8px 30px rgba(17, 22, 31, .12);
  --shadow-lg: 0 24px 60px rgba(17, 22, 31, .22);
  --shadow-gold: 0 12px 30px rgba(168, 132, 47, .28);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --container: 1180px;

  --font-head: 'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --header-h: 76px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink); }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 6vw, 72px) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--gold-grad); border-radius: 2px; }
.section-head { max-width: 720px; margin: 0 auto clamp(34px, 5vw, 54px); }
.section-head.center { text-align: center; }
h2.h-section { font-size: clamp(1.8rem, 4vw, 2.7rem); margin-top: 12px; }
.lead { color: var(--muted); font-size: 1.08rem; margin-top: 14px; }
.gold-text { color: var(--gold-deep); }

/* ---------- buttons ---------- */
.btn {
  --pad-y: 15px; --pad-x: 26px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px; font-family: var(--font-head); font-weight: 600;
  font-size: 1rem; line-height: 1; letter-spacing: -.01em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap; will-change: transform;
}
.btn svg { width: 19px; height: 19px; }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--gold { background: var(--gold-grad); color: #2a1f06; box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(168, 132, 47, .4); }
.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #06351c; }
.btn--wa:hover { background: var(--wa-deep); color: #fff; transform: translateY(-2px); }
.btn--ghost { background: rgba(255, 255, 255, .08); color: #fff; border: 1.5px solid rgba(255, 255, 255, .35); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255, 255, 255, .16); border-color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn--lg { --pad-y: 18px; --pad-x: 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn--sm { --pad-y: 11px; --pad-x: 18px; font-size: .92rem; }

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, .96); -webkit-backdrop-filter: saturate(140%) blur(14px); backdrop-filter: saturate(140%) blur(14px);
  box-shadow: 0 2px 20px rgba(17, 22, 31, .08);
  transition: background .3s ease, box-shadow .3s ease, height .3s ease;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; width: 100%; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 61px; height: 61px; object-fit: contain; display: block; }
.header.is-solid { background: rgba(255, 255, 255, .92); backdrop-filter: saturate(140%) blur(14px); box-shadow: 0 2px 20px rgba(17, 22, 31, .1); height: 70px; }
.header.is-solid .nav__link { color: var(--text); }
.header.is-solid .lang__btn { color: var(--text); border-color: var(--line); }
.header.is-solid .burger span { background: var(--ink); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__link { font-weight: 600; font-size: .98rem; color: var(--text); position: relative; transition: color .2s; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--gold-grad); border-radius: 2px; transition: width .25s ease; }
.nav__link:hover { color: var(--gold-deep); }
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; }
.lang { display: inline-flex; border-radius: 999px; overflow: hidden; border: 1.5px solid var(--line); }
.header.is-solid .lang { border-color: var(--line); }
.lang__btn { padding: 7px 13px; font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--text); transition: background .2s, color .2s; }
.lang__btn.is-active { background: var(--gold-grad); color: #2a1f06; }

.burger { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.burger span { width: 22px; height: 2.3px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(7.3px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7.3px) rotate(-45deg); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 55; background: var(--ink-grad); color: #fff; padding: calc(var(--header-h) + 20px) 26px 40px; transform: translateX(100%); transition: transform .34s cubic-bezier(.4, 0, .2, 1); display: flex; flex-direction: column; gap: 6px; overflow-y: auto; }
.drawer.is-open { transform: translateX(0); }
.drawer a { font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; padding: 15px 4px; border-bottom: 1px solid rgba(255, 255, 255, .1); display: flex; align-items: center; justify-content: space-between; }
.drawer a span.arrow { color: var(--gold-2); }
.drawer__cta { margin-top: auto; display: grid; gap: 12px; padding-top: 24px; }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding-top: calc(var(--header-h) + 30px); padding-bottom: 60px; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(11, 15, 22, .9) 0%, rgba(11, 15, 22, .74) 38%, rgba(11, 15, 22, .38) 70%, rgba(11, 15, 22, .25) 100%); }
.hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(11, 15, 22, .75) 0%, rgba(11, 15, 22, 0) 36%); }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; width: 100%; }
.hero__eyebrow { color: var(--gold-2); }
.hero__eyebrow::before { background: var(--gold-2); }
.hero h1 { font-size: clamp(2.3rem, 6vw, 4rem); line-height: 1.04; color: #fff; margin-top: 16px; white-space: pre-line; text-shadow: 0 2px 30px rgba(0, 0, 0, .3); }
.hero h1 em { font-style: normal; color: var(--gold-2); position: relative; }
.hero__sub { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: rgba(255, 255, 255, .9); margin-top: 20px; max-width: 33ch; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 999px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .2); backdrop-filter: blur(6px); font-size: .9rem; font-weight: 600; }
.chip svg { width: 16px; height: 16px; color: var(--gold-2); }
.hero__trust { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: .92rem; color: rgba(255, 255, 255, .82); }
.hero__stars { color: var(--gold-2); letter-spacing: 2px; }

/* booking card */
.booking { background: rgba(255, 255, 255, .93); -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%); color: var(--text); border-radius: var(--radius-lg); padding: clamp(22px, 3vw, 30px); box-shadow: var(--shadow-lg); border: 1px solid rgba(255, 255, 255, .6); position: relative; }
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) { .booking { background: rgba(255, 255, 255, .98); } }
.booking::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1.5px; background: var(--gold-grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .55; pointer-events: none; }
.booking__title { font-size: 1.5rem; }
.booking__sub { color: var(--muted); font-size: .95rem; margin-top: 4px; margin-bottom: 18px; }
.field { margin-bottom: 13px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .84rem; color: var(--ink-2); margin-bottom: 6px; }
.field .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: #fff; color: var(--text);
  transition: border-color .18s, box-shadow .18s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 162, 75, .16); }
.field textarea { resize: vertical; min-height: 70px; }
.field.is-invalid input, .field.is-invalid select { border-color: var(--err); box-shadow: 0 0 0 4px rgba(216, 69, 59, .12); }
.field .err-msg { color: var(--err); font-size: .8rem; margin-top: 5px; display: none; }
.field.is-invalid .err-msg { display: block; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-icon { position: relative; }
.field-icon svg { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--gold-deep); pointer-events: none; }
.field-icon input { padding-left: 40px; }
.form__actions { display: grid; gap: 10px; margin-top: 8px; }
.form__or { text-align: center; font-size: .82rem; color: var(--muted-2); position: relative; }
.form__contact-row { display: flex; flex-wrap: wrap; gap: 10px; }
.form__contact-row > .btn { flex: 1 1 130px; }
.form__call { white-space: nowrap; }
.form__consent { font-size: .76rem; color: var(--muted-2); margin-top: 10px; text-align: center; line-height: 1.4; }
.form__msg { display: none; padding: 13px 15px; border-radius: var(--radius-sm); font-size: .92rem; font-weight: 600; margin-bottom: 14px; }
.form__msg.is-ok { display: block; background: rgba(31, 157, 85, .12); color: #137a40; border: 1px solid rgba(31, 157, 85, .3); }
.form__msg.is-err { display: block; background: rgba(216, 69, 59, .1); color: #b5352c; border: 1px solid rgba(216, 69, 59, .3); }

/* ---------- modal (rest of booking fields) ---------- */
.modal { position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 18px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(11, 15, 22, .62); backdrop-filter: blur(4px); animation: modalFade .22s ease; }
.modal__panel { position: relative; z-index: 1; width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto; background: var(--paper); border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 32px); box-shadow: var(--shadow-lg); animation: modalPop .3s cubic-bezier(.2, .8, .2, 1); }
.modal__panel::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1.5px; background: var(--gold-grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .5; pointer-events: none; }
.modal__close { position: absolute; top: 14px; right: 14px; width: 38px; height: 38px; border-radius: 50%; background: var(--cream-2); color: var(--ink); display: grid; place-items: center; transition: background .2s, transform .2s; z-index: 2; }
.modal__close svg { width: 20px; height: 20px; transform: rotate(45deg); }
.modal__close:hover { background: #e7ddc8; transform: rotate(90deg); }
.modal__title { font-size: 1.4rem; padding-right: 40px; }
.modal__sub { color: var(--muted); font-size: .95rem; margin: 5px 0 18px; }
@keyframes modalFade { from { opacity: 0; } }
@keyframes modalPop { from { opacity: 0; transform: translateY(16px) scale(.98); } }
body.modal-open { overflow: hidden; }

/* ---------- trust strip ---------- */
.trust-strip { background: var(--ink); color: #fff; }
.trust-strip__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(20px, 5vw, 56px); padding: 22px 0; }
.trust-strip__item { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: .96rem; color: rgba(255, 255, 255, .9); }
.trust-strip__item svg { width: 24px; height: 24px; color: var(--gold-2); flex: none; }

/* ---------- why cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease, border-color .22s; }
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(201, 162, 75, .35); }
.card__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(230, 199, 122, .25), rgba(201, 162, 75, .14)); color: var(--gold-deep); margin-bottom: 16px; }
.card__icon svg { width: 27px; height: 27px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .98rem; }

/* ---------- steps ---------- */
.steps-band { position: relative; overflow: hidden; }
.steps-band__bg { position: absolute; inset: 0; z-index: -2; }
.steps-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.steps-band::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(160deg, rgba(11, 15, 22, .9) 0%, rgba(11, 15, 22, .76) 55%, rgba(11, 15, 22, .86) 100%); }
.steps-band .h-section { color: #fff; }
.steps-band__eyebrow { color: var(--gold-2); }
.steps-band__eyebrow::before { background: var(--gold-2); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 24px; border-radius: var(--radius); background: rgba(255, 255, 255, .97); border: 1px solid rgba(255, 255, 255, .6); box-shadow: var(--shadow-lg); }
.step__n { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-grad); color: #2a1f06; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; display: grid; place-items: center; box-shadow: var(--shadow-gold); margin-bottom: 16px; }
.step h3 { font-size: 1.18rem; margin-bottom: 7px; }
.step p { color: var(--muted); font-size: .97rem; }

/* ---------- destinations (glass cards over photo) ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; color: #fff; min-height: 430px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow); transition: transform .3s ease, box-shadow .3s ease; }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-card__bg { position: absolute; inset: 0; z-index: 0; }
.dest-card__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.dest-card:hover .dest-card__bg img { transform: scale(1.07); }
.dest-card::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(11, 15, 22, .55) 0%, rgba(11, 15, 22, 0) 45%); }
.dest-card__glass { position: relative; z-index: 2; margin: 14px; padding: 20px 22px 22px; border-radius: 20px; background: rgba(17, 22, 31, .42); -webkit-backdrop-filter: blur(16px) saturate(150%); backdrop-filter: blur(16px) saturate(150%); border: 1px solid rgba(255, 255, 255, .16); box-shadow: 0 10px 30px rgba(0, 0, 0, .25); transition: background .3s ease; }
.dest-card:hover .dest-card__glass { background: rgba(17, 22, 31, .54); }
.dest-card__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.dest-card__flag { font-size: 2rem; line-height: 1; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .4)); }
.dest-card__count { font-size: .76rem; font-weight: 700; font-family: var(--font-head); letter-spacing: .02em; background: var(--gold-grad); color: #2a1f06; padding: 6px 12px; border-radius: 999px; }
.dest-card h3 { color: #fff; font-size: 1.65rem; letter-spacing: -.02em; }
.dest-card__cities { color: rgba(255, 255, 255, .82); font-size: .9rem; margin: 7px 0 16px; font-weight: 500; }
.dest-card__cities .more { display: inline-block; background: rgba(255, 255, 255, .16); border-radius: 6px; padding: 1px 7px; font-size: .78rem; font-weight: 700; margin-left: 2px; }
.dest-card__link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; color: var(--gold-2); font-size: .98rem; }
.dest-card__link svg { width: 18px; height: 18px; transition: transform .2s; }
.dest-card:hover .dest-card__link svg { transform: translateX(4px); }
/* graceful fallback when backdrop-filter is unsupported */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .dest-card__glass { background: rgba(17, 22, 31, .82); }
}

/* city pill lists */
.city-pills { display: flex; flex-wrap: wrap; gap: 9px; }
.city-pill { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px; background: var(--paper); border: 1px solid var(--line); font-size: .92rem; font-weight: 600; color: var(--ink-2); transition: border-color .2s, color .2s, transform .2s; }
.city-pill:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.city-pill::before { content: '📍'; font-size: .82rem; }

/* ---------- fleet / gallery ---------- */
.fleet-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 22px; align-items: stretch; }
.fleet-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); position: relative; }
.fleet-main img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.fleet-side { display: grid; grid-template-rows: 1fr 1fr; gap: 22px; }
.fleet-thumb { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.fleet-thumb img { width: 100%; height: 100%; object-fit: cover; min-height: 150px; transition: transform .5s; }
.fleet-thumb:hover img { transform: scale(1.05); }
.fleet-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; }
.feature { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius-sm); font-weight: 600; font-size: .94rem; box-shadow: var(--shadow-sm); }
.feature svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; }

/* ---------- stats band ---------- */
.stats { background: var(--ink-grad); color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% -20%, rgba(201, 162, 75, .25), transparent 50%); }
.stats__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.stat { text-align: center; }
.stat__v { font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 5vw, 3.2rem); background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.03em; }
.stat__l { color: rgba(255, 255, 255, .78); font-size: .95rem; margin-top: 6px; }

/* ---------- testimonials ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard { background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .22s ease, box-shadow .22s ease, border-color .22s; }
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(201, 162, 75, .3); }
.tcard__stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.tcard__text { font-size: 1rem; color: var(--ink-2); flex: 1; }
.tcard__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.tcard__av { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-grad); color: #2a1f06; font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; }
.tcard__name { font-family: var(--font-head); font-weight: 700; font-size: .98rem; color: var(--ink); }
.tcard__route { font-size: .85rem; color: var(--muted); }

/* ---------- coverage ---------- */
.coverage { background: var(--cream-2); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; color: #fff; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(11, 15, 22, .94), rgba(11, 15, 22, .7)); }
.cta-band__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; padding: clamp(46px, 7vw, 76px) 0; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); max-width: 16ch; }
.cta-band p { color: rgba(255, 255, 255, .85); margin-top: 12px; max-width: 46ch; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; min-width: 250px; }
.cta-band__call { color: rgba(255, 255, 255, .82); font-size: .95rem; text-align: center; }
.cta-band__call a { color: var(--gold-2); font-weight: 700; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; text-align: left; font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--ink); }
.faq__q svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; transition: transform .3s; }
.faq__item.is-open .faq__q svg { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq__a p { color: var(--muted); padding: 0 4px 22px; font-size: 1rem; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 16px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s; }
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(201, 162, 75, .3); }
.contact-card__icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(230, 199, 122, .25), rgba(201, 162, 75, .14)); color: var(--gold-deep); display: grid; place-items: center; flex: none; }
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card h4 { font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 3px; }
.contact-card a, .contact-card p { color: var(--muted); font-size: .98rem; }
.contact-card a:hover { color: var(--gold-deep); }
.contact-aside { background: var(--ink-grad); color: #fff; border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow); }
.contact-aside h3 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.contact-aside p { color: rgba(255, 255, 255, .82); margin-bottom: 20px; }
.contact-aside .btn { width: 100%; margin-bottom: 12px; }

/* ---------- sub page hero ---------- */
.subhero { position: relative; color: #fff; padding: calc(var(--header-h) + 54px) 0 54px; overflow: hidden; }
.subhero__bg { position: absolute; inset: 0; z-index: -2; }
.subhero__bg img { width: 100%; height: 100%; object-fit: cover; }
.subhero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(110deg, rgba(11, 15, 22, .92), rgba(11, 15, 22, .66)); }
.subhero h1 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3rem); margin-top: 14px; max-width: 20ch; }
.subhero__lead { color: rgba(255, 255, 255, .88); margin-top: 14px; max-width: 60ch; font-size: 1.08rem; }
.subhero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .86rem; color: rgba(255, 255, 255, .72); }
.crumbs a:hover { color: var(--gold-2); }
.crumbs span.sep { opacity: .5; }

/* two-column content + sticky booking form */
.split-2 { display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px; align-items: start; }
.split-2 > .reveal:last-child { position: sticky; top: calc(var(--header-h) + 16px); }

/* prose for content pages */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 8px 0 14px; }
.prose p { color: var(--muted); margin-bottom: 16px; font-size: 1.06rem; }

/* ---------- sticky mobile CTA ---------- */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 50; display: none; grid-template-columns: 1fr 1fr; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px); box-shadow: 0 -4px 24px rgba(17, 22, 31, .14); }
.mobile-cta .btn { width: 100%; --pad-y: 13px; font-size: .96rem; }

/* floating whatsapp */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 49; width: 56px; height: 56px; border-radius: 50%; background: var(--wa); color: #fff; display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37, 211, 102, .5); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--wa); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, .76); padding: 60px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 34px; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer__brand img { width: 65px; height: 65px; object-fit: contain; }
.footer p { font-size: .95rem; line-height: 1.7; }
.footer h4 { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 16px; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { font-size: .95rem; transition: color .2s; }
.footer ul a:hover { color: var(--gold-2); }
.footer__contact ul li { display: flex; align-items: center; gap: 10px; }
.footer__contact ul li svg { width: 18px; height: 18px; color: var(--gold-2); flex: none; }
.footer__contact a { color: #fff; font-weight: 600; }
.footer__bottom { margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .86rem; color: rgba(255, 255, 255, .55); }

/* ---------- reveal (only hidden when JS is active, so no-JS/crawlers see all) ---------- */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
html.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; max-width: 560px; }
  .hero { min-height: auto; }
  .cards, .steps, .dest-grid, .tcards { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-features { grid-template-columns: repeat(2, 1fr); }
  .split-2 { grid-template-columns: 1fr; }
  .split-2 > .reveal:last-child { position: static; max-width: 560px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav, .header__actions .lang, .header__cta { display: none; }
  .burger { display: flex; }
  .header__actions { gap: 8px; }
  .cards, .steps, .dest-grid, .tcards, .contact-grid, .split-2 { grid-template-columns: 1fr; }
  .split-2 > .reveal:last-child { position: static; }
  .grid-2 { grid-template-columns: 1fr; }
  .fleet-features { grid-template-columns: 1fr 1fr; }
  .cta-band__actions { width: 100%; }
  .mobile-cta { display: grid; }
  .wa-float { display: none; }
  body.has-mobilecta { padding-bottom: 76px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero { padding-bottom: 40px; }
}
@media (max-width: 460px) {
  .fleet-features { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}

/* ===== social-proof toast (recent bookings) ===== */
.ax-toast{position:fixed;left:18px;bottom:22px;z-index:60;width:min(330px,calc(100vw - 36px));background:var(--paper);color:var(--text);border:1px solid var(--line);border-left:4px solid var(--gold);border-radius:14px;box-shadow:var(--shadow-lg);padding:13px 38px 13px 14px;display:flex;gap:12px;align-items:flex-start;transform:translateY(22px);opacity:0;visibility:hidden;transition:transform .45s cubic-bezier(.22,.61,.36,1),opacity .45s,visibility .45s}
.ax-toast.is-on{transform:none;opacity:1;visibility:visible}
.ax-toast__pin{flex:none;width:34px;height:34px;border-radius:50%;background:var(--gold-grad);color:#1b2230;display:grid;place-items:center}
.ax-toast__pin svg{width:18px;height:18px}
.ax-toast__body{min-width:0}
.ax-toast__label{font-family:var(--font-head);font-size:.66rem;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gold-deep)}
.ax-toast__text{margin:2px 0 1px;font-size:.9rem;line-height:1.35;color:var(--text)}
.ax-toast__text b{font-weight:700}
.ax-toast__ago{font-size:.76rem;color:var(--muted)}
.ax-toast__x{position:absolute;top:6px;right:8px;border:0;background:none;font-size:1.35rem;line-height:1;color:var(--muted-2);cursor:pointer;padding:2px 6px}
.ax-toast__x:hover{color:var(--text)}
@media (max-width:600px){.ax-toast{left:10px;right:10px;width:auto;bottom:84px}}
@media (prefers-reduced-motion:reduce){.ax-toast{transition:opacity .2s}}

/* ===== Google reviews badge ===== */
.gbadge{display:inline-flex;align-items:center;gap:9px;background:var(--paper);border:1px solid var(--line);border-radius:999px;padding:7px 15px;box-shadow:var(--shadow-sm);font-family:var(--font-head)}
.gbadge b{font-size:1.05rem;color:var(--text);font-weight:700;line-height:1}
.gbadge__stars{color:#fbbc04;letter-spacing:1px;font-size:.98rem;line-height:1}
.gbadge__txt{font-size:.82rem;color:var(--muted);font-weight:600}
.trust-strip__item .gicon{flex:none}