:root {
  --teal: #0f766e;
  --teal-dark: #0b3f43;
  --teal-soft: #e7f0ee;
  --ink: #20272a;
  --ink-soft: #4a5358;
  --muted: #70787c;
  --stone: #f7f4ee;
  --stone-2: #efe9df;
  --surface: #fffdf8;
  --line: #e6e0d7;
  --line-2: #d8d0c3;
  --amber: #d99a27;
  --amber-dark: #ad7717;
  --wa: #25d366;
  --wa-dark: #16a34a;
  --max: 1180px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 16px 45px rgba(32, 39, 42, .1);
  --shadow-hover: 0 14px 34px rgba(32, 39, 42, .12);
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font: Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--stone);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll-x { overflow-x: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p, h1, h2, h3 { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 82px 0; }
.section-tight { padding: 56px 0; }
.surface { background: var(--surface); }
.soft { background: var(--teal-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--teal); font-weight: 700; font-size: 14px; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.section-head { max-width: 720px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 3.2vw, 42px); line-height: 1.12; letter-spacing: -.01em; }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 18px; }
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(32, 39, 42, .02);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease), background-color .22s var(--ease);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 44px; padding: 12px 18px;
  border: 1px solid transparent; border-radius: 12px;
  font-weight: 800; line-height: 1; white-space: nowrap;
  box-shadow: 0 1px 0 rgba(32, 39, 42, .04);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn:active, .btn.is-pressing { transform: translateY(0) scale(.98); box-shadow: 0 4px 14px rgba(32, 39, 42, .12); }
.btn:focus-visible, .nav a:focus-visible, .langs a:focus-visible, .menu-button:focus-visible, .mobile-menu a:focus-visible, .route-card:focus-visible, .price-row:focus-visible, .faq-q:focus-visible {
  outline: 3px solid rgba(15, 118, 110, .22);
  outline-offset: 3px;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: #0c5f59; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #11181b; }
.btn-light { background: var(--surface); border-color: var(--line-2); color: var(--ink); }
.btn-light:hover { background: #fff; border-color: rgba(15, 118, 110, .35); }
.btn-wa { background: var(--wa); color: #06351a; }
.btn-wa:hover { background: var(--wa-dark); color: #fff; }
.btn-wide { min-width: 210px; }
.muted { color: var(--muted); }
.price { color: var(--amber-dark); font-weight: 900; white-space: nowrap; }
.code { color: var(--teal); font-weight: 900; font-size: 12px; letter-spacing: .04em; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 244, 238, .88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-bar { height: 68px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -.02em; }
.brand-img { display: block; width: 246px; height: auto; max-height: 46px; object-fit: contain; }
.brand-mark {
  width: 36px; height: 36px; border-radius: 11px; background: var(--teal);
  display: grid; place-items: center; box-shadow: inset 0 -3px 8px rgba(0,0,0,.16);
}
.brand-mark::before {
  content: ""; width: 13px; height: 13px; border-radius: 50% 50% 50% 2px;
  background: var(--surface); transform: rotate(45deg);
}
.brand span span { color: var(--teal); }
.nav { display: flex; align-items: center; gap: 2px; margin-left: 12px; }
.nav a { padding: 9px 12px; border-radius: 10px; color: var(--ink-soft); font-weight: 700; font-size: 15px; transition: transform .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease); }
.nav a:hover { background: var(--stone-2); color: var(--ink); transform: translateY(-1px); }
.nav a:active, .nav a.is-pressing { transform: translateY(0) scale(.98); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.langs { display: inline-flex; align-items: center; padding: 3px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); }
.langs a { padding: 5px 9px; border-radius: 999px; color: var(--muted); font-weight: 900; font-size: 12px; transition: transform .18s var(--ease), background-color .18s var(--ease), color .18s var(--ease); }
.langs a:hover { color: var(--ink); background: var(--stone-2); }
.langs a:active, .langs a.is-pressing { transform: scale(.94); }
.langs a.active { background: var(--teal); color: #fff; }
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 12px; background: var(--surface); transition: transform .18s var(--ease), box-shadow .18s var(--ease), border-color .18s var(--ease); }
.menu-button:hover { transform: translateY(-1px); border-color: rgba(15, 118, 110, .35); box-shadow: 0 8px 18px rgba(32, 39, 42, .08); }
.menu-button:active, .menu-button.is-pressing { transform: scale(.96); }
.menu-button span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); border-radius: 2px; }
.mobile-menu { display: none; border-top: 1px solid var(--line); background: var(--surface); padding: 10px 24px 18px; }
.mobile-menu[data-open="true"] { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-weight: 800; border-bottom: 1px solid var(--line); transition: color .18s var(--ease), padding-left .18s var(--ease); }
.mobile-menu a:hover { color: var(--teal); padding-left: 6px; }

.hero {
  position: relative; min-height: 540px; padding: 62px 0 122px; overflow: hidden;
  background: var(--teal-dark);
}
.hero-photo { position: absolute; inset: 0; display: block; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(11,63,67,.9) 0%, rgba(11,63,67,.67) 42%, rgba(15,118,110,.22) 100%),
    linear-gradient(0deg, rgba(11,63,67,.16), rgba(11,63,67,.16));
}
.hero .route-art { position: absolute; inset: 0; opacity: .38; z-index: 2; }
.hero-content { position: relative; z-index: 3; max-width: 610px; color: #fff; }
.hero h1 { font-size: clamp(40px, 5vw, 64px); line-height: 1.02; letter-spacing: -.03em; }
.hero p { margin-top: 18px; color: #edf7f5; font-size: 19px; max-width: 560px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero-price { display: inline-flex; align-items: baseline; gap: 8px; font-weight: 800; color: #fff; }
.hero-price small { color: var(--amber); }
.hero-price b { font-size: 26px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 24px; color: #dff0ec; font-weight: 700; font-size: 14px; }
.trust-row li::before { content: "✓"; color: #9ee6d8; margin-right: 7px; }

.route-art { pointer-events: none; }
.route-art svg { width: 100%; height: 100%; display: block; }
.ph {
  position: relative; min-height: 210px; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; background: var(--surface);
}
.ph .route-art { position: absolute; inset: 0; opacity: .92; }
.ph-label {
  position: absolute; left: 14px; bottom: 12px; padding: 6px 10px;
  border: 1px solid var(--line); border-radius: 9px;
  background: rgba(255,253,248,.82); color: var(--ink-soft);
  font-size: 12px; font-weight: 800;
}
.image-block {
  position: relative; min-height: 210px; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; background: var(--surface);
}
.image-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vehicle-media, .proof-media { border: 0; border-radius: 0; min-height: 190px; aspect-ratio: 16/10; }
.vehicle-media img { object-position: center; }
.proof-media img, .contact-media img, .custom-media img { object-position: center; }
.custom-media, .contact-media { min-height: 320px; }

.picker-wrap { position: relative; z-index: 8; margin-top: -92px; }
.picker {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 22px; box-shadow: var(--shadow); overflow: hidden;
}
.picker-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 22px; background: var(--stone); border-bottom: 1px solid var(--line); font-weight: 900; }
.picker-grid { display: grid; grid-template-columns: 1.15fr 1.15fr .9fr .7fr; }
.field { position: relative; z-index: 0; display: flex; flex-direction: column; gap: 6px; padding: 17px 20px; border-right: 1px solid var(--line); transition: transform .2s var(--ease), background-color .2s var(--ease); }
.field::after {
  content: ""; position: absolute; inset: 8px 10px; z-index: -1;
  border: 1px solid transparent; border-radius: 14px;
  background: rgba(231, 240, 238, .66);
  opacity: 0; transform: scale(.985);
  transition: opacity .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field:last-child { border-right: 0; }
.field:hover::after, .field:focus-within::after { opacity: 1; transform: scale(1); border-color: rgba(15, 118, 110, .18); box-shadow: 0 8px 18px rgba(32, 39, 42, .05); }
.field:active::after, .field.is-pressing::after { transform: scale(.985); box-shadow: 0 4px 12px rgba(32, 39, 42, .06); }
.field label { color: var(--muted); font-size: 13px; font-weight: 800; transition: color .18s var(--ease); }
.field:hover label, .field:focus-within label { color: var(--teal); }
.field select, .field input {
  width: 100%; min-width: 0; border: 0; background: transparent;
  color: var(--ink); font-size: 17px; font-weight: 800; outline: 0;
  cursor: pointer;
}
.picker-foot { display: flex; align-items: center; gap: 18px; padding: 16px 22px; border-top: 1px solid var(--line); }
.estimate { display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap; color: var(--muted); font-weight: 700; }
.estimate strong { font-size: 28px; color: var(--amber-dark); }
.estimate.is-muted strong { font-size: 18px; color: var(--muted); }
.picker-foot .btn { margin-left: auto; }

.route-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.route-card { padding: 18px; display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 14px; }
.route-card:hover { transform: translateY(-3px); border-color: rgba(15, 118, 110, .24); box-shadow: var(--shadow-hover); }
.route-card:active, .route-card.is-pressing { transform: translateY(-1px) scale(.995); }
.route-title { font-weight: 900; font-size: 18px; }
.route-meta { margin-top: 5px; display: flex; flex-wrap: wrap; gap: 9px; color: var(--muted); font-size: 13px; font-weight: 700; }
.route-arrow { width: 36px; height: 36px; border-radius: 11px; background: var(--teal-soft); color: var(--teal); display: grid; place-items: center; font-weight: 900; }

.promise { padding: 22px; }
.promise:hover, .vehicle:hover, .airport-card:hover, .fact:hover { transform: translateY(-3px); border-color: rgba(15, 118, 110, .2); box-shadow: var(--shadow-hover); }
.promise:active, .vehicle:active, .airport-card:active, .fact:active, .promise.is-pressing, .vehicle.is-pressing, .airport-card.is-pressing, .fact.is-pressing { transform: translateY(-1px) scale(.995); }
.promise-icon { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-soft); color: var(--teal); font-weight: 900; margin-bottom: 16px; }
.promise h3, .vehicle h3, .airport-card h3 { font-size: 20px; line-height: 1.18; }
.promise p, .vehicle p, .airport-card p { margin-top: 9px; color: var(--muted); }

.steps { counter-reset: step; display: grid; gap: 14px; }
.step { position: relative; padding: 20px 20px 20px 70px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 20px; top: 20px; width: 34px; height: 34px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--teal); color: #fff; font-weight: 900;
}
.step h3 { font-size: 18px; }
.step p { margin-top: 5px; color: var(--muted); }

.vehicle { overflow: hidden; }
.vehicle .ph { border: 0; border-radius: 0; min-height: 190px; aspect-ratio: 16/10; }
.vehicle-body { padding: 18px; }
.vehicle-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 11px; border-radius: 999px; background: var(--stone); border: 1px solid var(--line); color: var(--ink-soft); font-weight: 800; font-size: 13px; transition: background-color .18s var(--ease), border-color .18s var(--ease), transform .18s var(--ease); }
.vehicle:hover .pill { background: #fff; border-color: rgba(15, 118, 110, .18); }

.airport-card { padding: 22px; }
.airport-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.airport-code { width: 45px; height: 34px; border-radius: 10px; background: var(--teal); color: #fff; display: grid; place-items: center; font-weight: 900; font-size: 13px; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-top: 1px solid var(--line); transition: color .18s var(--ease), padding-left .18s var(--ease); }
.price-row:first-of-type { border-top: 0; }
.price-row:hover { color: var(--teal); padding-left: 6px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.text-block p { margin-top: 14px; color: var(--ink-soft); }
.text-block ul { display: grid; gap: 10px; margin-top: 18px; }
.text-block li { padding-left: 26px; position: relative; color: var(--ink-soft); }
.text-block li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.custom-trips-content { max-width: 920px; }
.custom-trips-content .custom-media { margin: 24px 0 20px; min-height: 360px; }
.custom-trips-content p { max-width: 720px; }

.fact-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.fact { padding: 16px; }
.fact small { display: block; color: var(--muted); font-weight: 800; font-size: 12px; }
.fact strong { display: block; margin-top: 5px; font-size: 18px; }

.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.gallery .ph { aspect-ratio: 4/3; min-height: 0; }

.faq-list { max-width: 850px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; gap: 16px;
  padding: 20px 0; background: transparent; border: 0;
  text-align: left; color: var(--ink); font-weight: 900; font-size: 18px;
  transition: color .18s var(--ease), padding-left .18s var(--ease);
}
.faq-q:hover { color: var(--teal); padding-left: 6px; }
.faq-q:active, .faq-q.is-pressing { padding-left: 3px; }
.faq-q::after { content: "+"; width: 30px; height: 30px; flex: none; border-radius: 50%; background: var(--stone-2); display: grid; place-items: center; transition: transform .2s var(--ease), background-color .2s var(--ease), color .2s var(--ease); }
.faq-q:hover::after { transform: rotate(90deg); background: var(--teal-soft); color: var(--teal); }
.faq-item[data-open="true"] .faq-q::after { content: "-"; }
.faq-a { padding: 0 48px 20px 0; color: var(--muted); }

.cta-band {
  position: relative; overflow: hidden; border-radius: 28px; background: var(--teal);
  padding: 58px 34px; color: #fff; text-align: center;
}
.cta-band .route-art { position: absolute; inset: 0; opacity: .42; }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(30px, 3.5vw, 46px); line-height: 1.1; }
.cta-band p { margin: 12px auto 0; max-width: 620px; color: #d9efeb; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

.site-footer { background: #1b2427; color: #fff; padding: 58px 0 34px; }
.footer-lead {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 24px;
  margin-bottom: 42px; padding: 28px;
  border: 1px solid rgba(255,255,255,.12); border-radius: 24px;
  background: linear-gradient(135deg, rgba(15,118,110,.36), rgba(255,255,255,.05));
}
.footer-lead .eyebrow { color: #9ee6d8; margin-bottom: 9px; }
.footer-lead h2 { font-size: clamp(26px, 3vw, 38px); line-height: 1.1; }
.footer-lead p { margin-top: 10px; color: #c9d4d2; max-width: 650px; }
.footer-lead-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.footer-lead .btn-light { color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(5, 1fr); gap: 30px; }
.footer-about p { margin-top: 16px; color: #aab2b5; max-width: 310px; }
.footer-col h3 { font-size: 14px; margin-bottom: 14px; }
.footer-col a { display: block; color: #aab2b5; margin: 0 0 9px; font-size: 14px; transition: color .18s var(--ease), transform .18s var(--ease); }
.footer-col a:hover { color: #fff; transform: translateX(4px); }
.footer-bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid #303a3e; display: flex; justify-content: space-between; gap: 20px; color: #8d9699; font-size: 13px; }

.sticky-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247,244,238,.94); backdrop-filter: blur(12px); border-top: 1px solid var(--line); gap: 10px;
}
.sticky-cta .btn { min-width: 0; padding-left: 10px; padding-right: 10px; font-size: 15px; }
.sticky-cta .btn-wa { flex: 1 1 0; }

@media (max-width: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-lead { grid-template-columns: 1fr; }
  .footer-lead-actions { justify-content: flex-start; }
}

@media (max-width: 880px) {
  .nav, .header-actions .btn { display: none; }
  .header-actions { margin-left: auto; }
  .header-actions .langs { display: inline-flex; }
  .menu-button { display: inline-block; }
  .header-bar { gap: 12px; }
  .header-actions { gap: 8px; }
  .picker-grid { grid-template-columns: 1fr 1fr; }
  .field:nth-child(2) { border-right: 0; }
  .field:nth-child(3), .field:nth-child(4) { border-top: 1px solid var(--line); }
  .route-list { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  body { padding-bottom: 74px; }
  .wrap { padding: 0 18px; }
  .section { padding: 58px 0; }
  .site-header { position: sticky; }
  .header-bar { height: 64px; }
  .header-bar { justify-content: flex-start; position: relative; }
  .header-actions { margin-left: auto; flex: 0 0 auto; }
  .menu-button { display: inline-block; flex: 0 0 42px; position: static; }
  .brand { gap: 9px; }
  .brand-img { width: 190px; max-height: 40px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand span { font-size: 17px; }
  .hero { min-height: 600px; padding: 42px 0 122px; }
  .hero-content { max-width: 340px; }
  .hero h1 { font-size: 36px; line-height: 1.08; }
  .hero p { font-size: 16.5px; max-width: 335px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-price { justify-content: center; }
  .trust-row { display: grid; gap: 10px; }
  .picker-wrap { margin-top: -90px; }
  .picker-head { align-items: flex-start; flex-direction: column; }
  .picker-grid { grid-template-columns: 1fr; }
  .field, .field:nth-child(2) { border-right: 0; border-top: 1px solid var(--line); }
  .field:first-child { border-top: 0; }
  .picker-foot { align-items: stretch; flex-direction: column; }
  .picker-foot .btn { width: 100%; margin-left: 0; }
  .grid-2, .grid-3, .grid-4, .gallery { grid-template-columns: 1fr; }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-lead { padding: 22px; border-radius: 20px; }
  .footer-lead-actions .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .sticky-cta { display: flex; }
  .sticky-cta .btn-dark { display: none; }
  .faq-a { padding-right: 0; }
}

@media (max-width: 380px) {
  .brand span { font-size: 16px; }
  .brand-img { width: 150px; }
  .langs a { padding: 4px 7px; font-size: 11px; }
  .hero-content { max-width: 318px; }
  .hero h1 { font-size: 33px; }
  .sticky-cta .btn { font-size: 14px; }
}

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