/* ================================================================
   CHAUFFYR DESIGN SYSTEM
   Editorial luxury — Aman × Blacklane × Apple
   ================================================================ */

:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --ink: #2a2a2a;
  --gray-700: #4a4a4a;
  --gray-500: #7a7a7a;
  --gray-300: #d4d4d3;
  --gray-100: #f5f5f4;
  --white: #ffffff;
  --gold: #c9a961;
  --gold-soft: #d9bb74;
  --gold-deep: #a88a44;

  --serif: 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;
  --container-narrow: 980px;
  --radius: 0;
  --transition: 240ms cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

::selection { background: var(--gold); color: var(--black); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 { font-weight: 300; line-height: 1.08; letter-spacing: -0.012em; color: var(--black); }
h1 { font-size: clamp(2.5rem, 6vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.125rem); }
h4 { font-size: 1.375rem; font-weight: 400; }
p { font-size: 1.0625rem; line-height: 1.7; color: var(--ink); }
p.lead { font-size: 1.25rem; line-height: 1.6; color: var(--gray-700); font-weight: 300; }

.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}

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

/* ---------- Layout primitives ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 3rem); }

section { padding: clamp(4rem, 10vw, 8rem) 0; }
section.tight { padding: clamp(2.5rem, 6vw, 5rem) 0; }

.divider { height: 1px; width: 100%; background: var(--gray-300); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  background: rgba(10,10,10,0);
  transition: background var(--transition), padding var(--transition), border var(--transition);
  border-bottom: 1px solid transparent;
}
.site-header--scrolled {
  background: rgba(10,10,10,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header--light {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-300);
}
.site-header--light .nav__link { color: var(--charcoal); }
.site-header--light .brand__mark { color: var(--black); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand { display: inline-flex; align-items: baseline; gap: 0.05em; }
.brand__mark {
  font-size: 1.4rem; font-weight: 300; letter-spacing: -0.01em;
  color: var(--white); position: relative; line-height: 1;
}
.brand__mark .dot {
  position: absolute; width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
  top: -2px; left: 4.05em;
}

.nav { display: flex; align-items: center; gap: 2.25rem; }
.nav__link {
  color: rgba(255,255,255,0.82);
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.nav__link:hover { color: var(--gold); }
.nav__cta {
  background: var(--gold); color: var(--black);
  padding: 0.7rem 1.25rem; letter-spacing: 0.16em; font-size: 0.72rem;
  text-transform: uppercase; font-weight: 500;
  transition: background var(--transition), color var(--transition);
}
.nav__cta:hover { background: var(--gold-soft); }

.nav-toggle { display: none; color: var(--white); width: 44px; height: 44px; align-items: center; justify-content: center; }
.site-header--light .nav-toggle { color: var(--black); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav { position: fixed; top: 0; right: -100%; width: 88%; max-width: 380px; height: 100vh;
    background: var(--black); flex-direction: column; align-items: flex-start; justify-content: center;
    padding: 4rem 2rem; gap: 1.5rem; transition: right 320ms cubic-bezier(.2,.7,.2,1); }
  .nav.is-open { right: 0; }
  .nav__link { color: rgba(255,255,255,0.9); font-size: 1rem; }
  .nav__cta { margin-top: 1rem; }
  .nav-toggle { display: inline-flex; }
  .site-header--light .nav .nav__link { color: rgba(255,255,255,0.9); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1rem 2rem; min-height: 48px;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-soft); }
.btn--outline-light { color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline-light:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--outline-dark { color: var(--black); border-color: var(--black); }
.btn--outline-dark:hover { background: var(--black); color: var(--white); }
.btn--ghost-light { color: var(--white); }
.btn--ghost-light:hover { color: var(--gold); }

.arrow-link {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--black); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.arrow-link::after { content: '→'; transition: transform var(--transition); }
.arrow-link:hover { color: var(--gold); }
.arrow-link:hover::after { transform: translateX(6px); }
.arrow-link--light { color: rgba(255,255,255,0.9); }
.arrow-link--light:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  background: var(--black);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0; z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.6;
}
.hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.3) 50%, rgba(10,10,10,0.85) 100%);
}
.hero__content { position: relative; z-index: 2; text-align: center; padding: 8rem 1.5rem 4rem; max-width: 1100px; }
.hero__eyebrow { color: var(--gold); margin-bottom: 1.5rem; }
.hero__title {
  color: var(--white);
  font-size: clamp(2.5rem, 7.5vw, 6.5rem);
  font-weight: 200; letter-spacing: -0.015em; line-height: 1;
  margin-bottom: 1.5rem;
}
.hero__title .accent { color: var(--gold); font-style: italic; font-weight: 200; }
.hero__sub { color: rgba(255,255,255,0.78); font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 640px; margin: 0 auto 2.75rem; font-weight: 300; line-height: 1.55; }
.hero__cta { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* shorter hero variant for interior pages */
.hero--page { min-height: 65vh; }
.hero--page .hero__content { padding: 8rem 1.5rem 3rem; }

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--black); color: var(--white);
  padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-strip__inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; text-align: center; }
.stat-strip .stat__num { font-size: 1.4rem; font-weight: 300; color: var(--white); display: block; }
.stat-strip .stat__num .accent { color: var(--gold); }
.stat-strip .stat__lbl { display: block; margin-top: 0.4rem; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
@media (max-width: 720px) { .stat-strip__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }

/* ---------- Section header ---------- */
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); max-width: 820px; margin-left: auto; margin-right: auto; }
.section-header .eyebrow { margin-bottom: 1rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--gray-700); font-size: 1.125rem; }

.section-header--left { text-align: left; margin-left: 0; }

/* ---------- Services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--gray-300); border-left: 1px solid var(--gray-300); }
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  display: flex; flex-direction: column; gap: 1rem;
  transition: background var(--transition);
  min-height: 280px;
}
.service-card:hover { background: var(--gray-100); }
.service-card__icon {
  width: 38px; height: 38px; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.4rem;
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card h3 { font-size: 1.25rem; font-weight: 400; }
.service-card p { font-size: 0.95rem; color: var(--gray-700); flex: 1; }
.service-card .arrow-link { margin-top: 0.5rem; font-size: 0.72rem; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* ---------- Awards bar ---------- */
.awards { background: var(--gray-100); }
.awards__inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.award { padding: 2rem 1.25rem; text-align: center; border-right: 1px solid var(--gray-300); }
.award:last-child { border-right: 0; }
.award__title { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; font-weight: 500; }
.award__sub { font-size: 0.82rem; color: var(--gray-500); letter-spacing: 0.05em; }
@media (max-width: 900px) { .awards__inner { grid-template-columns: repeat(2, 1fr); } .award:nth-child(2) { border-right: 0; } .award { border-bottom: 1px solid var(--gray-300); } }
@media (max-width: 480px) { .awards__inner { grid-template-columns: 1fr; } .award { border-right: 0; } }

/* ---------- Split / editorial ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(2rem, 6vw, 6rem);
}
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media--wide img { aspect-ratio: 16/10; }
.split__copy h2 { margin-bottom: 1.5rem; }
.split__copy p + p { margin-top: 1rem; }
.split__copy .btn-wrap { margin-top: 2rem; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split--reverse .split__copy { order: 2; } }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--gray-300); }
.faq__item:first-child { border-top: 1px solid var(--gray-300); }
.faq__q {
  width: 100%; padding: 1.6rem 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 2rem;
  font-size: 1.05rem; font-weight: 400; color: var(--black);
}
.faq__q::after { content: '+'; font-size: 1.5rem; color: var(--gold); font-weight: 200; transition: transform var(--transition); }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding: 0 0 1.6rem; color: var(--gray-700); font-size: 1rem; max-width: 720px; }

details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }

/* ---------- CTA block ---------- */
.cta-block { background: var(--black); color: var(--white); text-align: center; padding: clamp(4rem, 10vw, 8rem) 0; }
.cta-block h2 { color: var(--white); margin-bottom: 1rem; }
.cta-block p { color: rgba(255,255,255,0.7); margin: 0 auto 2.5rem; max-width: 580px; font-size: 1.125rem; }
.cta-block__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,0.65); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-col h4 { color: var(--white); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.25rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-brand .brand__mark { color: var(--white); font-size: 1.5rem; display: inline-block; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 360px; line-height: 1.65; }
.footer-contact { font-size: 0.88rem; line-height: 1.9; color: rgba(255,255,255,0.7); }
.footer-contact strong { color: var(--white); display: block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; margin-top: 0.7rem; }
.footer-contact strong:first-child { margin-top: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating widgets ---------- */
.floats { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.float-book {
  background: var(--gold); color: var(--black);
  padding: 0.95rem 1.5rem;
  letter-spacing: 0.18em; font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.6rem;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(201,169,97,0.32), 0 4px 10px rgba(0,0,0,0.2);
  transition: transform var(--transition), background var(--transition);
}
.float-book:hover { background: var(--gold-soft); transform: translateY(-2px); }
.float-book svg { width: 16px; height: 16px; }

.float-stack { display: flex; flex-direction: column; gap: 0.55rem; }
.float-icon {
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--white); color: var(--black);
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  transition: transform var(--transition);
}
.float-icon:hover { transform: scale(1.08); }
.float-icon--whatsapp { background: #25D366; color: var(--white); }
.float-icon--phone { background: var(--black); color: var(--white); }
.float-icon--sms { background: var(--white); color: var(--black); border: 1px solid var(--gray-300); }
.float-icon svg { width: 19px; height: 19px; }

@media (max-width: 600px) {
  .floats { right: 0.85rem; bottom: 0.85rem; gap: 0.55rem; }
  .float-book { padding: 0.8rem 1.1rem; font-size: 0.68rem; }
  .float-icon { width: 42px; height: 42px; }
  .float-icon svg { width: 17px; height: 17px; }
}

/* ---------- Event grid ---------- */
.event-section { margin-bottom: 5rem; }
.event-section h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 0.5rem; }
.event-section__sub { color: var(--gray-500); margin-bottom: 2.5rem; }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--gray-300); border-left: 1px solid var(--gray-300); }
.event-card { padding: 1.75rem 1.5rem; border-right: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); display: flex; flex-direction: column; gap: 0.5rem; min-height: 220px; background: var(--white); transition: background var(--transition); }
.event-card:hover { background: var(--gray-100); }
.event-card__name { font-size: 1.05rem; font-weight: 500; color: var(--black); line-height: 1.3; }
.event-card__loc { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.event-card__date { font-size: 0.85rem; color: var(--gray-500); }
.event-card__why { font-size: 0.88rem; color: var(--gray-700); margin-top: auto; line-height: 1.55; }
.event-card .arrow-link { font-size: 0.68rem; margin-top: 0.75rem; }
@media (max-width: 900px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .events-grid { grid-template-columns: 1fr; } }

/* ---------- Locations ---------- */
.search-bar { max-width: 720px; margin: 0 auto 4rem; }
.search-bar__input {
  width: 100%; padding: 1.1rem 1.5rem; font-family: inherit; font-size: 1rem;
  border: 1px solid var(--gray-300); background: var(--white); color: var(--black);
  letter-spacing: 0.02em;
}
.search-bar__input:focus { outline: none; border-color: var(--gold); }

.region-section { margin-bottom: 4.5rem; }
.region-section h2 { margin-bottom: 0.5rem; }
.region-section__count { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 2rem; display: block; }
.country-block { margin-bottom: 2.5rem; }
.country-block h3 { font-size: 1.125rem; font-weight: 500; color: var(--black); margin-bottom: 1rem; letter-spacing: 0.01em; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-300); }
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 1000px) { .cities-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .cities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cities-grid { grid-template-columns: 1fr; } }

.city-card {
  padding: 1.15rem 1.2rem; background: var(--white); border: 1px solid var(--gray-300);
  display: flex; flex-direction: column; gap: 0.3rem;
  transition: border-color var(--transition), background var(--transition);
}
.city-card:hover { border-color: var(--gold); background: var(--gray-100); }
.city-card--tier1 { border-color: var(--gold); border-left-width: 3px; padding: 1.35rem 1.2rem; }
.city-card__name { font-size: 0.98rem; font-weight: 500; color: var(--black); }
.city-card__country { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); }
.city-card__airports { font-size: 0.82rem; color: var(--gold); font-weight: 500; letter-spacing: 0.04em; margin-top: 0.2rem; }
.city-card.hidden { display: none; }

.no-results { text-align: center; padding: 4rem 1rem; color: var(--gray-500); }

/* ---------- About / Contact ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--gray-300); border-left: 1px solid var(--gray-300); }
.value-card { padding: 2.25rem 1.75rem; border-right: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300); }
.value-card .num { font-size: 0.78rem; letter-spacing: 0.18em; color: var(--gold); display: block; margin-bottom: 0.75rem; font-weight: 500; }
.value-card h3 { font-size: 1.2rem; font-weight: 400; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.95rem; color: var(--gray-700); }
@media (max-width: 900px) { .value-grid { grid-template-columns: 1fr; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { padding: 2rem; border: 1px solid var(--gray-300); display: flex; flex-direction: column; gap: 0.6rem; transition: border-color var(--transition); }
.contact-card:hover { border-color: var(--gold); }
.contact-card .lbl { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.contact-card .val { font-size: 1.45rem; font-weight: 300; color: var(--black); }
.contact-card .sub { font-size: 0.88rem; color: var(--gray-500); }

.contact-form { background: var(--gray-100); padding: clamp(2rem, 4vw, 3rem); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gray-500); font-weight: 500; }
.form-field input, .form-field textarea, .form-field select {
  font-family: inherit; font-size: 1rem; padding: 0.9rem 1rem;
  border: 1px solid var(--gray-300); background: var(--white); color: var(--black);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 1.5rem; }

/* ---------- Service page specifics ---------- */
.includes-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem 2rem; margin-top: 1.5rem; }
@media (max-width: 700px) { .includes-list { grid-template-columns: 1fr; } }
.includes-list li {
  padding-left: 1.6rem; position: relative; font-size: 0.98rem; color: var(--ink); line-height: 1.5;
}
.includes-list li::before { content: ''; position: absolute; left: 0; top: 0.6em; width: 0.7rem; height: 1px; background: var(--gold); }

.ideal-block { background: var(--gray-100); padding: clamp(2.5rem, 5vw, 4rem); }
.ideal-block h3 { margin-bottom: 1.5rem; }
.ideal-block ul { list-style: none; columns: 2; column-gap: 2.5rem; }
@media (max-width: 700px) { .ideal-block ul { columns: 1; } }
.ideal-block li { padding-left: 1.4rem; position: relative; margin-bottom: 0.8rem; font-size: 0.98rem; color: var(--ink); break-inside: avoid; }
.ideal-block li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: 0.65rem; top: 0.45em; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; } .mt-4 { margin-top: 4rem; }
.mb-1 { margin-bottom: 1rem; } .mb-2 { margin-bottom: 2rem; } .mb-3 { margin-bottom: 3rem; } .mb-4 { margin-bottom: 4rem; }

.fade-in { transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.7,.2,1); }
.js .fade-in { opacity: 0; transform: translateY(20px); }
.js .fade-in.is-visible { opacity: 1; transform: none; }
.no-js .fade-in, .fade-in.is-visible { opacity: 1; transform: none; }

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

/* --- Fleet & Long Distance & Airport Page Components --- */
.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
@media (max-width: 980px) { .fleet-grid { grid-template-columns: 1fr; } }
.fleet-card { background: var(--gray-100); border: 1px solid var(--gray-300); overflow: hidden; display: flex; flex-direction: column; }
.fleet-card__media { aspect-ratio: 16/10; overflow: hidden; background: #0a0a0a; }
.fleet-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.fleet-card:hover .fleet-card__media img { transform: scale(1.04); }
.fleet-card__body { padding: 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.fleet-card__name { font-size: 1.4rem; font-weight: 300; letter-spacing: -0.01em; color: var(--ink); margin: 0; }
.fleet-card__pax { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.fleet-card__desc { font-size: 0.95rem; color: var(--gray-700); line-height: 1.6; flex: 1; }
.fleet-card__specs { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.5rem; padding-top: 1rem; border-top: 1px solid var(--gray-300); }
.fleet-card__spec { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--gray-700); }
.fleet-card__spec strong { color: var(--ink); font-weight: 500; }
.fleet-card__price { font-size: 1rem; font-weight: 500; color: var(--ink); margin-top: 0.25rem; }
.fleet-card__price span { color: var(--gold); }

.airport-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-top: 2rem; }
@media (max-width: 1000px) { .airport-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .airport-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .airport-grid { grid-template-columns: 1fr; } }
.airport-card { display: block; padding: 1.1rem 1.25rem; background: #fff; border: 1px solid var(--gray-300); transition: all 0.2s ease; text-decoration: none; }
.airport-card:hover { border-color: var(--gold); background: var(--gray-100); }
.airport-card__code { font-size: 0.95rem; font-weight: 600; color: var(--ink); letter-spacing: 0.05em; }
.airport-card__name { font-size: 0.82rem; color: var(--gray-700); margin-top: 0.2rem; line-height: 1.35; }

.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin-top: 2rem; }
@media (max-width: 1000px) { .city-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .city-grid { grid-template-columns: 1fr; } }
.city-card { display: block; padding: 1rem 1.15rem; background: #fff; border: 1px solid var(--gray-300); transition: all 0.2s ease; text-decoration: none; }
.city-card:hover { border-color: var(--gold); background: var(--gray-100); }
.city-card__name { font-size: 0.95rem; font-weight: 500; color: var(--ink); }
.city-card__sub { font-size: 0.78rem; color: var(--gray-700); margin-top: 0.15rem; }

.price-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 2.5rem 0; border: 1px solid var(--gray-300); }
@media (max-width: 760px) { .price-strip { grid-template-columns: 1fr; } }
.price-strip__item { padding: 1.75rem 1.5rem; text-align: center; border-right: 1px solid var(--gray-300); }
.price-strip__item:last-child { border-right: none; }
@media (max-width: 760px) { .price-strip__item { border-right: none; border-bottom: 1px solid var(--gray-300); } .price-strip__item:last-child { border-bottom: none; } }
.price-strip__label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.price-strip__value { font-size: 1.6rem; font-weight: 300; color: var(--ink); letter-spacing: -0.01em; }
.price-strip__value small { font-size: 0.85rem; color: var(--gray-700); font-weight: 400; }
.price-strip__sub { font-size: 0.8rem; color: var(--gray-700); margin-top: 0.4rem; }
