/* ============================================================
   Taxi Malinas — Design System
   Palette (from logo):
   --black #000000 · --charcoal #28292B · --bronze #7E7241 · --white #FFFFFF
   ============================================================ */

:root {
  /* Brand palette */
  --black:      #000000;
  --ink:        #08080A;   /* near-black section base */
  --ink-2:      #0E0F11;   /* raised dark surface */
  --charcoal:   #28292B;   /* buttons / blocks */
  --charcoal-2: #1A1B1D;   /* card base */
  --line:       #26272A;   /* hairlines on dark */

  --bronze:     #7E7241;   /* brand bronze (logo) */
  --gold:       #C9AE6A;   /* brighter gold for text/links on black */
  --gold-soft:  #E7D6A8;   /* highlight */

  --white:      #FFFFFF;
  --mist:       rgba(255,255,255,0.72);
  --mist-2:     rgba(255,255,255,0.52);
  --mist-3:     rgba(255,255,255,0.34);

  /* Type */
  --font-display: "Sora", system-ui, sans-serif;
  --font-sans:    "Manrope", system-ui, sans-serif;

  /* Layout */
  --container: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 4px;

  --shadow: 0 24px 60px -24px rgba(0,0,0,0.85);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 128px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--bronze);
  display: inline-block;
}
.eyebrow.is-centered { justify-content: center; }

.display { font-size: clamp(40px, 6.4vw, 84px); }
.h2 { font-size: clamp(30px, 4.2vw, 52px); }
.h3 { font-size: clamp(21px, 2vw, 26px); }
.lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--mist); font-weight: 400; }
.muted { color: var(--mist-2); }

.gold { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--charcoal);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  padding: 15px 26px;
  border-radius: var(--radius);
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold {
  --btn-bg: var(--bronze);
  --btn-fg: #100E08;
  box-shadow: 0 14px 34px -16px rgba(126,114,65,0.9);
}
.btn--gold:hover { background: var(--gold); }
.btn--ghost {
  --btn-bg: transparent;
  border-color: var(--line);
  color: var(--white);
}
.btn--ghost:hover { border-color: var(--bronze); color: var(--gold); }
.btn svg { width: 17px; height: 17px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { height: 38px; width: auto; }
.brand-fallback {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--gold);
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--mist);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: color .18s ease, background .18s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.is-active { color: var(--gold); }
.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 15px; color: var(--white);
  white-space: nowrap;
}
.nav-phone svg { width: 16px; height: 16px; color: var(--gold); }
.nav-phone:hover { color: var(--gold); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: .25s; }

/* ---------- Badge / pill ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  background: rgba(126,114,65,0.06);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--bronze); box-shadow: 0 0 0 4px rgba(126,114,65,0.18); }
.dot--live { background: #5ED27A; box-shadow: 0 0 0 4px rgba(94,210,122,0.18); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img.bg-photo { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.6) 44%, rgba(0,0,0,0.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 55%, rgba(0,0,0,0.82) 100%),
    radial-gradient(120% 90% at 86% 6%, rgba(126,114,65,0.18), transparent 55%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; }

.hero--home { min-height: min(92vh, 860px); display: flex; align-items: center; }
.hero--home .hero-inner { padding-block: clamp(80px, 12vh, 140px); max-width: 860px; }

.hero--page { padding-block: clamp(96px, 14vh, 168px) clamp(56px, 8vh, 96px); }
.hero--page .hero-inner { max-width: 880px; }

.trust-row { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 34px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--mist); }
.trust-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ---------- Cards / grid ---------- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, var(--charcoal-2), var(--ink));
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px 32px 36px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease;
}
.card:hover { border-color: rgba(126,114,65,0.55); transform: translateY(-4px); }
.card-num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--bronze);
}
.card .icon {
  width: 52px; height: 52px; border-radius: 8px;
  display: grid; place-items: center;
  background: rgba(126,114,65,0.12);
  border: 1px solid rgba(126,114,65,0.3);
  margin-bottom: 24px;
}
.card .icon svg { width: 26px; height: 26px; color: var(--gold); }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--mist-2); font-size: 15.5px; margin-bottom: 0; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--gold); font-weight: 700; font-size: 14px; }
.card-link svg { width: 15px; height: 15px; transition: transform .2s; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Section header ---------- */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.is-centered { margin-inline: auto; text-align: center; }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; color: var(--mist); font-size: 15.5px; }
.feature-list svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media img.bg-photo, .media-frame img.bg-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink-2);
  position: relative;
}
.media-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(126,114,65,0.16);
  border-radius: 10px;
}

/* ---------- Stats / strip ---------- */
.statstrip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.stat { background: var(--ink); padding: 32px 28px; }
.stat .num { font-family: var(--font-display); font-size: clamp(30px,3.4vw,42px); font-weight: 600; color: var(--gold); letter-spacing: -0.02em; }
.stat .lbl { font-size: 13.5px; color: var(--mist-2); margin-top: 6px; letter-spacing: 0.02em; }

/* ---------- Reviews ---------- */
.review {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 30px 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.stars { display: flex; gap: 3px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }
.review p { color: var(--white); font-size: 16px; line-height: 1.6; margin: 0; }
.review .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.review .ava { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%; background: var(--charcoal); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--font-display); font-size: 14px; line-height: 1; letter-spacing: 0.03em; text-transform: uppercase; }
.review .who > span:last-child { min-width: 0; }
.review .who b { font-size: 14.5px; font-weight: 700; display: block; }
.review .who > span:last-child > span { font-size: 13px; color: var(--mist-2); display: block; }

/* ---------- Rates table ---------- */
.rate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.rate-card {
  background: linear-gradient(180deg, var(--charcoal-2), var(--ink));
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.rate-card.is-featured { border-color: rgba(126,114,65,0.5); }
.rate-head { padding: 28px 30px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }
.rate-head .tag { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.rate-head h3 { font-size: 24px; margin-top: 6px; }
.rate-rows { padding: 8px 30px 28px; }
.rate-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.rate-row:last-child { border-bottom: 0; }
.rate-row .k { color: var(--mist); font-size: 15px; }
.rate-row .v { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--white); white-space: nowrap; }
.rate-row .v small { font-size: 13px; color: var(--mist-2); font-family: var(--font-sans); font-weight: 500; }

.airport-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.airport-card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.airport-card .route { font-size: 13px; color: var(--mist-2); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; }
.airport-card h3 { font-size: 23px; margin: 10px 0 18px; }
.airport-card .price { font-family: var(--font-display); font-size: 40px; font-weight: 600; color: var(--gold); letter-spacing: -0.02em; }
.airport-card .price small { font-size: 15px; color: var(--mist-2); font-family: var(--font-sans); font-weight: 500; display: block; letter-spacing: 0; }

/* ---------- Service area ---------- */
.chip-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 14px; color: var(--mist); transition: .2s; }
.chip:hover { border-color: var(--bronze); color: var(--gold); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 140% at 50% 0%, rgba(126,114,65,0.16), transparent 60%),
    var(--ink);
  text-align: center;
}
.cta-band .container { max-width: 760px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,5vw,64px); align-items: start; }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: 0; }
.info-item .ico { width: 44px; height: 44px; border-radius: 8px; background: var(--charcoal); display: grid; place-items: center; flex-shrink: 0; }
.info-item .ico svg { width: 20px; height: 20px; color: var(--gold); }
.info-item .lbl { font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mist-2); font-weight: 700; }
.info-item .val { font-size: 17px; font-weight: 600; color: var(--white); margin-top: 3px; }
.info-item .val:hover { color: var(--gold); }

.form {
  background: linear-gradient(180deg, var(--charcoal-2), var(--ink));
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: clamp(28px, 4vw, 44px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.is-full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--mist); }
.field label .req { color: var(--bronze); }
.field input, .field textarea, .field select {
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15.5px;
  padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(126,114,65,0.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--mist-3); }
.form-note { font-size: 13px; color: var(--mist-2); margin-top: 4px; }
.form-success {
  display: none;
  background: rgba(94,210,122,0.1);
  border: 1px solid rgba(94,210,122,0.4);
  color: #9BE6AE;
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 14.5px;
  font-weight: 600;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-block: clamp(56px,7vw,80px); }
.footer-brand img { height: 40px; margin-bottom: 20px; }
.footer-brand p { color: var(--mist-2); font-size: 15px; max-width: 30ch; }
.footer-col h4 { font-family: var(--font-sans); font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a, .footer-col span { color: var(--mist); font-size: 15px; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 8px; display: grid; place-items: center; transition: .2s; }
.footer-social a:hover { border-color: var(--bronze); }
.footer-social svg { width: 18px; height: 18px; color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 22px;
  flex-wrap: wrap;
}
.footer-bottom .copy { color: var(--white); font-size: 13.5px; }
.footer-bottom .credit { color: var(--mist-2); font-size: 13.5px; }
.footer-bottom .credit a { color: var(--gold); font-weight: 700; }
.footer-bottom .credit a:hover { color: var(--gold-soft); text-decoration: underline; }

/* ---------- Reviews carousel ---------- */
.reviews-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 44px; flex-wrap: wrap; }
.reviews-rating { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.reviews-rating .rr-score { font-family: var(--font-display); font-size: 52px; font-weight: 600; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.reviews-rating .stars svg { width: 18px; height: 18px; }
.reviews-rating .rr-sub { font-size: 13px; color: var(--mist-2); }

.reviews-carousel { position: relative; }
.reviews-track {
  display: flex; gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 12px;
  -ms-overflow-style: none; scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-track > .review {
  scroll-snap-align: start;
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
}
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.g-logo { width: 22px; height: 22px; flex-shrink: 0; }
.reviews-nav { display: flex; gap: 12px; justify-content: flex-end; margin-top: 26px; }
.rv-btn {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--charcoal-2); color: var(--white);
  display: grid; place-items: center; cursor: pointer;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.rv-btn:hover { border-color: var(--bronze); color: var(--gold); transform: translateY(-2px); }
.rv-btn svg { width: 20px; height: 20px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid--3, .grid--4, .airport-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .reviews-track > .review { flex-basis: calc((100% - 22px) / 2); }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .nav-cta .nav-phone span { display: none; }
  .split, .contact-grid, .rate-grid, .form-grid { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .statstrip { grid-template-columns: 1fr 1fr; }
  .mobile-menu { display: block; }
  .hero--home { min-height: auto; }
  .hero--home .hero-inner { padding-block: clamp(72px, 16vh, 120px); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid--3, .grid--4, .grid--2, .airport-grid, .statstrip { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .nav { height: 66px; gap: 12px; }
  .nav-cta { gap: 8px; }
  .nav-cta > .btn { display: none; }
  .reviews-track > .review { flex-basis: 87%; }
  .reviews-head { align-items: flex-start; }
  .reviews-rating { align-items: flex-start; }
  .reviews-nav { justify-content: center; }
  .btn { padding: 14px 22px; }
  .trust-row { gap: 12px 20px; }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--black);
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.mobile-menu.open { max-height: 420px; }
.mobile-menu ul { list-style: none; margin: 0; padding: 12px var(--pad) 24px; display: grid; gap: 2px; }
.mobile-menu a { display: block; padding: 14px 4px; font-size: 17px; font-weight: 600; color: var(--mist); border-bottom: 1px solid var(--line); }
.mobile-menu a.is-active { color: var(--gold); }
