/* =====================================================
   ORANGE TAXI BASEL – style.css
   Design: Deep Noir Luxury / Premium Chauffeur
   Fonts: Playfair Display (display) · Jost (body)
   ===================================================== */

/* ── VARIABLES ── */
:root {
  --noir:         #080808;
  --noir-2:       #0e0e0e;
  --noir-3:       #141414;
  --noir-4:       #1c1c1c;
  --noir-5:       #242424;
  --grey-1:       #333333;
  --grey-2:       #555555;
  --grey-3:       #888888;
  --grey-4:       #aaaaaa;
  --white:        #ffffff;
  --white-2:      #f0ece4;

  /* Gold palette */
  --gold:         #c8973a;
  --gold-light:   #e0b05a;
  --gold-dark:    #a07828;
  --gold-dim:     rgba(200, 151, 58, 0.10);
  --gold-glow:    rgba(200, 151, 58, 0.22);
  --gold-line:    rgba(200, 151, 58, 0.30);

  /* Orange accent (brand) */
  --orange:       #d4620a;
  --orange-dim:   rgba(212, 98, 10, 0.10);

  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
  --t:            0.35s;
  --t-slow:       0.65s;

  --max-w:        1240px;
  --hh:           76px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--noir);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t) var(--ease); }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }
::selection { background: var(--gold); color: var(--noir); }

/* ── GRAIN OVERLAY ── */
.grain {
  position: fixed;
  inset: -200%;
  width: 400%;
  height: 400%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 9999;
  animation: grain-shift 8s steps(2) infinite;
}
@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-1%, 1%); }
  50%  { transform: translate(1%, -1%); }
  75%  { transform: translate(-1%, -1%); }
  100% { transform: translate(1%, 1%); }
}

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 600px) { .container { padding: 0 20px; } }

/* ── SECTION ── */
.section { padding: 112px 0; }
@media (max-width: 768px) { .section { padding: 72px 0; } }

/* ── SECTION HEADER ── */
.sec-header { text-align: center; max-width: 680px; margin: 0 auto 72px; }
.sec-header--left { text-align: left; margin: 0 0 40px; }

.sec-header__ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
  color: var(--gold);
}
.sec-header__ornament--left { justify-content: flex-start; }
.sec-header__ornament--light { color: var(--gold-light); }
.sec-header__ornament span {
  display: block;
  height: 1px;
  width: 48px;
  background: currentColor;
  opacity: 0.5;
}
.sec-header__ornament svg { width: 10px; height: 10px; flex-shrink: 0; }

.sec-header__label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.sec-header__label--light { color: rgba(200,151,58,0.85); }

.sec-header__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}
.sec-header__title em { font-style: italic; color: var(--gold); }

.sec-header__sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-3);
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 34px;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  position: relative;
  white-space: nowrap;
  border: none;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn--sm { padding: 10px 22px; font-size: 0.75rem; letter-spacing: 2px; }
.btn--hero { padding: 18px 42px; font-size: 0.84rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--gold {
  background: var(--gold);
  color: var(--noir);
  font-weight: 500;
}
.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 12px 40px var(--gold-glow); }
.btn--gold:active { transform: none; }

.btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--hh);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease);
}
.header__line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.header__line--top { top: 0; }
.header__line--bottom { bottom: 0; }

.header.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header.scrolled .header__line { opacity: 1; }

.header__inner {
  display: flex;
  align-items: center;
  height: var(--hh);
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo__mark {
  width: 32px;
  height: 32px;
  color: var(--gold);
  flex-shrink: 0;
}
.logo__mark svg { width: 100%; height: 100%; }
.logo__text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo__name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo__sub {
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1px;
}

/* Nav */
.nav { flex: 1; display: flex; justify-content: center; }
.nav__list { display: flex; align-items: center; gap: 0; }
.nav__link {
  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  position: relative;
  transition: color var(--t) var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--t) var(--ease);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

/* Header right */
.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  margin-left: auto;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  transition: color var(--t) var(--ease);
}
.header__phone svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }
.header__phone:hover { color: var(--gold); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 1px;
  background: rgba(255,255,255,0.75);
  border-radius: 1px;
  transition: all var(--t) var(--ease);
  transform-origin: center;
}
.burger span:first-child { width: 22px; }
.burger span:last-child  { width: 14px; }
.burger.open span:first-child { width: 20px; transform: translateY(3.5px) rotate(45deg); }
.burger.open span:last-child  { width: 20px; transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 1020px) {
  .nav {
    position: fixed;
    top: var(--hh); left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(200,151,58,0.15);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
  }
  .nav.open { opacity: 1; pointer-events: all; transform: translateY(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav__link { display: block; padding: 16px 0; font-size: 0.85rem; letter-spacing: 3px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav__link::after { display: none; }
  .nav__link:hover { color: var(--gold); }
  .burger { display: flex; }
  .header__phone span { display: none; }
}
@media (max-width: 560px) {
  .header__phone { display: none; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--hh);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  transform: scale(1.04);
  animation: hero-ken 14s ease-out forwards;
}
@keyframes hero-ken {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}
.hero__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 20%, rgba(8,8,8,0.7) 100%);
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.45) 0%,
    rgba(8,8,8,0.25) 25%,
    rgba(8,8,8,0.60) 60%,
    rgba(8,8,8,0.97) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
  max-width: 860px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.eyebrow__line {
  display: block;
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, var(--gold), transparent);
  flex-shrink: 0;
}
.eyebrow__line:last-child {
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow__text {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .eyebrow__text { font-size: 0.65rem; letter-spacing: 2px; }
  .eyebrow__line { width: 20px; }
}

.hero__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
  animation: fade-up 1s var(--ease-out) 0.2s both;
}
.hero__title-sm {
  font-family: var(--font-sans);
  font-size: clamp(0.75rem, 1.5vw, 0.85rem);
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero__title-lg {
  font-family: var(--font-serif);
  font-size: clamp(3.6rem, 9vw, 7.5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--white);
}
.hero__title-place {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white-2);
  margin-top: 8px;
  letter-spacing: -0.3px;
}
.hero__title-place em { color: var(--gold); font-style: italic; }

.hero__sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 560px;
  animation: fade-up 1s var(--ease-out) 0.4s both;
}
.hide-sm { display: none; }
@media (min-width: 700px) { .hide-sm { display: inline; } }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
  animation: fade-up 1s var(--ease-out) 0.55s both;
}

.hero__pillars {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 0;
  animation: fade-up 1s var(--ease-out) 0.7s both;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 20px;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.pillar:first-child { padding-left: 0; }
.pillar__icon { color: var(--gold); display: flex; }
.pillar__icon svg { width: 14px; height: 14px; }
.pillar__sep {
  color: var(--gold);
  opacity: 0.4;
  font-size: 1.2rem;
  line-height: 1;
}

.hero__scroll-indicator {
  position: absolute;
  right: 40px;
  bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 1;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-grow 2s ease-in-out infinite;
}
@keyframes scroll-grow {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0; }
}
.scroll-label {
  font-size: 0.62rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}
@media (max-width: 768px) { .hero__scroll-indicator { display: none; } }

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }
.reveal:nth-child(7) { transition-delay: 0.48s; }
.reveal:nth-child(8) { transition-delay: 0.56s; }

/* ── SERVICES ── */
.services { background: var(--noir-2); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,0.06);
}
.svc-card {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: background var(--t) var(--ease);
  cursor: default;
}
.svc-card:hover { background: var(--noir-3); }
.svc-card__num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 0.72rem;
  color: var(--gold);
  opacity: 0.35;
  letter-spacing: 1px;
}
.svc-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform var(--t) var(--ease);
}
.svc-card:hover .svc-card__icon { transform: translateY(-3px); }
.svc-card__icon svg { width: 100%; height: 100%; }
.svc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 14px;
}
.svc-card p {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-3);
  line-height: 1.75;
  margin-bottom: 24px;
}
.svc-card__cta {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  transition: opacity var(--t) var(--ease);
}
.svc-card__cta span { transition: margin-left var(--t) var(--ease); display: inline-block; }
.svc-card:hover .svc-card__cta { opacity: 1; }
.svc-card:hover .svc-card__cta span { margin-left: 4px; }

@media (max-width: 1100px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .services__grid { grid-template-columns: 1fr; } }

/* ── CREDENTIALS ── */
.credentials {
  background: var(--noir-3);
  position: relative;
  overflow: hidden;
}
.credentials__bg-text {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,151,58,0.05);
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
}

.credentials__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) {
  .credentials__layout { grid-template-columns: 1fr; gap: 56px; }
  .credentials__bg-text { display: none; }
}

.credentials__visual { position: relative; }
.credentials__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.credentials__img-border {
  position: absolute;
  inset: -10px -10px 10px 10px;
  border: 1px solid var(--gold-line);
  pointer-events: none;
  z-index: -1;
}
.credentials__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge__inner { text-align: center; color: var(--noir); }
.badge__num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}
.badge__num sup { font-size: 0.7rem; vertical-align: super; }
.badge__label {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
@media (max-width: 480px) {
  .credentials__img-border { display: none; }
  .credentials__badge { right: 0; bottom: 0; }
}

.cred__list { display: flex; flex-direction: column; }
.cred__item {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.055);
  align-items: flex-start;
}
.cred__item:last-child { border-bottom: none; }
.cred__num {
  font-family: var(--font-serif);
  font-size: 0.72rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.55;
  min-width: 22px;
  padding-top: 3px;
  letter-spacing: 1px;
}
.cred__body strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
  letter-spacing: 0.3px;
}
.cred__body p {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--grey-3);
  line-height: 1.7;
}

.credentials__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cstat { text-align: center; flex: 1; }
.cstat__sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.cstat__n {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.cstat__n span { font-size: 1rem; }
.cstat__l {
  display: block;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-3);
}

/* ── FLEET ── */
.fleet { background: var(--noir); }
.fleet__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 960px) { .fleet__layout { grid-template-columns: 1fr; gap: 48px; } }

.fleet__visual { position: relative; }
.fleet__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.fleet__tag {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 22px;
  background: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--noir);
}

.fleet__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 20px;
}
.fleet__title em { font-style: italic; color: var(--gold); }
.fleet__lead {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--grey-3);
  line-height: 1.8;
  margin-bottom: 32px;
}
.fleet__features {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 40px;
}
.fleet__features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}
.feat__mark {
  color: var(--gold);
  font-size: 0.45rem;
  flex-shrink: 0;
}

/* ── AIRPORT ── */
.airport {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}
.airport__media {
  position: absolute;
  inset: 0;
}
.airport__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.airport__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8,8,8,0.94) 0%,
    rgba(8,8,8,0.75) 55%,
    rgba(8,8,8,0.35) 100%
  );
}
.airport__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}
.airport__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--white);
  margin: 14px 0 24px;
  letter-spacing: -0.5px;
}
.airport__title em { font-style: italic; color: var(--gold); }
.airport__text {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 36px;
}
.airport__text strong { color: rgba(255,255,255,0.9); font-weight: 400; }
.airport__routes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.route {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.5px;
}
.route__dot {
  width: 5px;
  height: 5px;
  background: var(--gold);
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* ── PARTNER ── */
.partner { background: var(--noir-2); }
.partner__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) { .partner__layout { grid-template-columns: 1fr; gap: 56px; } }

.partner__text {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--grey-3);
  line-height: 1.85;
  margin-bottom: 28px;
}
.partner__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
.partner__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}

.partner__cards { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.06); }
.pcard {
  background: var(--noir-2);
  padding: 32px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  transition: background var(--t) var(--ease);
}
.pcard:hover { background: var(--noir-3); }
.pcard__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.pcard__icon svg { width: 100%; height: 100%; }
.pcard h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 8px;
}
.pcard p {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--grey-3);
  line-height: 1.7;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--noir-3);
  position: relative;
  overflow: hidden;
}
.testimonials__bg-text {
  position: absolute;
  left: -1%;
  bottom: -10%;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 15vw, 15rem);
  font-weight: 700;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,151,58,0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
@media (min-width: 600px) and (max-width: 900px) { .testimonials__grid { grid-template-columns: 1fr 1fr; max-width: none; } }

.tcard {
  background: var(--noir-4);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 44px 36px 36px;
  position: relative;
  transition: border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.tcard:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.tcard--featured {
  background: var(--noir-3);
  border-color: var(--gold-line);
}
.tcard__quote {
  position: absolute;
  top: 16px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.12;
}
.tcard__stars {
  font-size: 0.85rem;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}
.tcard blockquote {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 30px;
}
.tcard__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
}
.tcard__avatar {
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--noir);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tcard__author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.tcard__author span {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--grey-3);
  letter-spacing: 0.5px;
}

/* ── CONTACT ── */
.contact { background: var(--noir); }
.contact__layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 960px) { .contact__layout { grid-template-columns: 1fr; gap: 56px; } }

.contact__info-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 32px;
}

.cta-link {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 8px;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.cta-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--t) var(--ease);
}
.cta-link:hover { border-color: var(--gold-line); background: var(--noir-3); }
.cta-link:hover::before { transform: scaleY(1); }

.cta-link__icon {
  width: 40px;
  height: 40px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--gold-dim);
  color: var(--gold);
}
.cta-link--wa .cta-link__icon { background: rgba(37,211,102,0.1); color: #25D366; }
.cta-link__icon svg { width: 18px; height: 18px; }
.cta-link__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey-3);
  margin-bottom: 3px;
}
.cta-link__val {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--white);
}

.contact__note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 18px 20px;
  border-left: 2px solid var(--gold);
  background: var(--gold-dim);
  margin-top: 24px;
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.contact__note svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--noir-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 44px;
}
@media (max-width: 600px) { .contact__form { padding: 28px 20px; } }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (max-width: 580px) { .form__row { grid-template-columns: 1fr; } }

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.form__field:last-of-type { margin-bottom: 0; }
.form__row .form__field { margin-bottom: 0; }

.form__field label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form__field label span { color: var(--gold); }
.form__field input,
.form__field textarea {
  background: var(--noir-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 13px 16px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: rgba(255,255,255,0.2); }
.form__field input:focus,
.form__field textarea:focus {
  border-color: var(--gold);
  background: var(--noir-4);
}
.form__field input.error { border-color: #c0504a; }
.form__field textarea { resize: vertical; min-height: 110px; }
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator { filter: invert(0.4); cursor: pointer; }

.contact__form .btn--gold { margin-top: 24px; }

.form__success {
  display: none;
  align-items: center;
  gap: 13px;
  padding: 16px 20px;
  background: rgba(37,211,102,0.08);
  border: 1px solid rgba(37,211,102,0.2);
  border-left: 3px solid #25D366;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
}
.form__success.show { display: flex; }
.form__success svg { width: 18px; height: 18px; color: #25D366; flex-shrink: 0; }

/* ── FOOTER ── */
.footer {
  background: var(--noir);
  padding: 80px 0 36px;
}
.footer__rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
  margin-bottom: 72px;
}
.footer__layout {
  display: grid;
  grid-template-columns: 280px repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 960px) { .footer__layout { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px)  { .footer__layout { grid-template-columns: 1fr; } }

.footer__brand { display: flex; flex-direction: column; gap: 20px; }
.footer__tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--grey-2);
  line-height: 1.7;
}
.footer__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--grey-3);
  transition: all var(--t) var(--ease);
}
.footer__wa svg { width: 18px; height: 18px; }
.footer__wa:hover { border-color: #25D366; color: #25D366; }

.footer__col {}
.footer__heading {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0.75;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--grey-2);
}
.footer__col a { transition: color var(--t) var(--ease); }
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--grey-1);
  letter-spacing: 0.5px;
}

/* ── WHATSAPP FAB ── */
.wa-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 190;
  width: 56px;
  height: 56px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 28px rgba(37,211,102,0.35);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.wa-fab svg { width: 28px; height: 28px; color: var(--white); position: relative; z-index: 1; }
.wa-fab:hover { transform: scale(1.06); box-shadow: 0 8px 40px rgba(37,211,102,0.5); }
.wa-fab__pulse {
  position: absolute;
  inset: 0;
  background: #25D366;
  animation: pulse-ring 2.5s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.4; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 480px) { .wa-fab { bottom: 20px; right: 16px; width: 50px; height: 50px; } }

/* ── FOCUS VISIBLE ── */
:focus-visible { outline: 1px solid var(--gold); outline-offset: 3px; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--grey-1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
