/* ============================================================
   ROYAL LUXURY JET — Global Stylesheet
   Palette: Black / white / magnetic magenta accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #000000;
  --bg-mid:      #120012;
  --bg-card:     #14001a;
  --border:      rgba(178, 0, 110, 0.16);
  --ivory:       #ffffff;
  --ivory-dim:   #d1d1d1;
  --copper:      #b2006e;
  --copper-dark: #70246f;
  --white:       #ffffff;
  --ff-display:  'Cormorant Garamond', Georgia, serif;
  --ff-body:     'Montserrat', sans-serif;
  --radius:      2px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:       1320px;
  --nav-h:       76px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────── */
.display {
  font-family: var(--ff-display);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.label {
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}
.body-sm {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ivory-dim);
  letter-spacing: 0.02em;
}

/* ── Layout Utilities ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 0; }
.section--sm { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

/* ── Thin divider line ──────────────────────────────────────── */
hr.rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(15, 14, 12, 0.94);
  backdrop-filter: blur(12px);
  border-color: var(--border);
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-img {
  width: 40px;
  height: auto;
  display: block;
}
.nav__logo-name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
}
.nav__logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}
.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--copper);
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--white);
}
.nav__link:hover::after, .nav__link.active::after {
  width: 100%;
}
.nav__cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid var(--copper);
  color: var(--copper);
  transition: background var(--transition), color var(--transition);
}
.nav__cta:hover {
  background: var(--copper);
  color: var(--bg);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--ivory);
  transition: var(--transition);
}

/* ── Mobile nav ─────────────────────────────────────────────── */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}
.nav__mobile.open { display: flex; }
.nav__mobile .nav__link {
  font-size: 1rem;
  letter-spacing: 0.25em;
}
.nav__mobile .nav__cta {
  margin-top: 12px;
  padding: 14px 40px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: var(--transition);
}
.btn--primary {
  background: var(--copper);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--copper-dark);
}
.btn--outline {
  border: 1px solid var(--copper);
  color: var(--copper);
}
.btn--outline:hover {
  background: var(--copper);
  color: var(--bg);
}
.btn--ghost {
  border: 1px solid var(--border);
  color: var(--ivory-dim);
}
.btn--ghost:hover {
  border-color: var(--copper);
  color: var(--copper);
}
.btn svg { width: 14px; height: 14px; flex-shrink: 0; }

.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  padding: 16px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 18px 60px rgba(37, 211, 102, 0.24);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition), opacity var(--transition);
}
.fab svg,
.fab img {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex-shrink: 0;
  display: block;
}
.fab.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120px);
}
.fab:hover,
.fab:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 78px rgba(37, 211, 102, 0.28);
}
@media(max-width: 680px) {
  .fab {
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
    font-size: 0.75rem;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.75) 80%, var(--bg) 100%),
    url('https://images.unsplash.com/photo-1540962351504-03099e0a754b?w=1800&auto=format&fit=crop&q=80') center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.0); }
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px 100px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero__eyebrow-line {
  width: 40px; height: 1px;
  background: var(--copper);
}
.hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(3.2rem, 7vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 820px;
  margin-bottom: 32px;
}
.hero__headline em {
  font-style: italic;
  color: var(--copper);
}
.hero__sub {
  max-width: 460px;
  font-size: 0.88rem;
  color: rgba(240,234,216,0.72);
  line-height: 1.8;
  margin-bottom: 44px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ivory-dim);
}
.hero__scroll-text {
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--copper), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── Stats bar ──────────────────────────────────────────────── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-mid);
}
.stats__inner {
  display: flex;
  justify-content: space-between;
}
.stats__item {
  flex: 1;
  padding: 36px 0;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.stats__item:last-child { border-right: none; }
.stats__item:hover { background: rgba(178,0,110,0.04); }
.stats__num {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 6px;
}
.stats__label {
  font-size: 0.67rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ============================================================
   SERVICES (Homepage)
   ============================================================ */
.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}
.services__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  max-width: 480px;
}
.services__intro {
  max-width: 360px;
  font-size: 0.84rem;
  color: var(--ivory-dim);
  line-height: 1.8;
}

.service-card {
  position: relative;
  border: 1px solid var(--border);
  padding: 40px 36px;
  background: var(--bg-card);
  transition: border-color var(--transition), transform var(--transition);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(178,0,110,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(178,0,110,0.5);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 40px; height: 40px;
  color: var(--copper);
  margin-bottom: 28px;
}
.service-card__number {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--ff-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(178,0,110,0.07);
  line-height: 1;
  user-select: none;
}
.service-card__title {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--white);
}
.service-card__body {
  font-size: 0.82rem;
  color: var(--ivory-dim);
  line-height: 1.85;
}

/* ============================================================
   FLEET PREVIEW
   ============================================================ */
.fleet {
  background: var(--bg-mid);
}
.fleet__label { margin-bottom: 20px; }
.fleet__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  max-width: 520px;
  margin-bottom: 20px;
}
.fleet__body {
  font-size: 0.84rem;
  color: var(--ivory-dim);
  max-width: 400px;
  line-height: 1.85;
  margin-bottom: 36px;
}
.fleet__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.fleet__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.fleet__image:hover img { transform: scale(1.04); }
.fleet__image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.88), transparent);
}
.fleet__image-caption h4 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 300;
  margin-bottom: 4px;
}
.fleet__specs {
  display: flex;
  gap: 20px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.fleet__spec {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}
.fleet__spec svg { width: 11px; height: 11px; color: var(--copper); }

/* ── Fleet page full grid ───────────────────────────────────── */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  border: 1px solid var(--border);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.fleet-card:hover {
  border-color: rgba(178,0,110,0.5);
  transform: translateY(-4px);
}
.fleet-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.fleet-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.fleet-card:hover .fleet-card__img img { transform: scale(1.06); }
.fleet-card__body { padding: 28px 28px 32px; }
.fleet-card__type {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 8px;
}
.fleet-card__name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 14px;
}
.fleet-card__desc {
  font-size: 0.8rem;
  color: var(--ivory-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}
.fleet-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-bottom: 24px;
}
.fleet-card__stat-label {
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 3px;
}
.fleet-card__stat-val {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
}

/* ============================================================
   EXPERIENCE / WHY US
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
}
.why__item {
  padding: 48px 44px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.why__item:hover { background: rgba(178,0,110,0.04); }
.why__item:nth-child(2n) { border-right: none; }
.why__item:nth-child(n+3) { border-bottom: none; }
.why__icon {
  width: 32px; height: 32px;
  color: var(--copper);
  margin-bottom: 20px;
}
.why__item-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}
.why__item-body {
  font-size: 0.81rem;
  color: var(--ivory-dim);
  line-height: 1.85;
}

/* ============================================================
   DESTINATIONS
   ============================================================ */
.destinations__scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.dest-card {
  position: relative;
  min-width: 300px;
  height: 400px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.dest-card:hover img { transform: scale(1.07); }
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 55%);
  transition: background var(--transition);
}
.dest-card:hover .dest-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.25) 55%);
}
.dest-card__info {
  position: absolute;
  bottom: 28px; left: 24px; right: 24px;
}
.dest-card__region {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 6px;
}
.dest-card__city {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

/* ============================================================
   QUOTE FORM
   ============================================================ */
.quote {
  background: var(--bg-mid);
}
.quote__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.quote__label { margin-bottom: 20px; }
.quote__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.quote__body {
  font-size: 0.83rem;
  color: var(--ivory-dim);
  line-height: 1.85;
  margin-bottom: 32px;
}
.quote__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--ivory-dim);
}
.quote__contact-item svg {
  width: 16px; height: 16px;
  color: var(--copper);
  flex-shrink: 0;
}
.quote__contact-item a:hover { color: var(--copper); }

.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.form__input,
.form__select,
.form__textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--ivory);
  font-family: var(--ff-body);
  font-size: 0.84rem;
  font-weight: 300;
  padding: 12px 16px;
  width: 100%;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--copper);
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8a46e' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form__select option { background: var(--bg-card); }
.form__textarea { resize: vertical; min-height: 100px; }
.form__submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
}
.form__note {
  font-size: 0.72rem;
  color: rgba(168,158,136,0.6);
  line-height: 1.6;
}

/* ── Form success state ─────────────────────────────────────── */
.form__success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 40px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  text-align: center;
  border-radius: var(--radius);
  min-height: 300px;
}
.form__success.visible { display: flex !important; }
.form__success-icon {
  width: 56px; height: 56px;
  border: 2px solid var(--copper);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
}
.form__success-icon svg {
  width: 28px; height: 28px;
  stroke-width: 2;
}
.form__success-title {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: -0.01em;
}
.form__success-body {
  font-size: 0.95rem;
  color: var(--ivory-dim);
  max-width: 360px;
  line-height: 1.8;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.page-hero__label { margin-bottom: 20px; }
.page-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.page-hero__title em {
  font-style: italic;
  color: var(--copper);
}
.page-hero__body {
  font-size: 0.88rem;
  color: var(--ivory-dim);
  line-height: 1.9;
  max-width: 460px;
}
.page-hero__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.page-hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero__img-frame {
  position: absolute;
  bottom: -16px; left: -16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  border: 1px solid var(--copper);
  pointer-events: none;
  z-index: -1;
}

.story__text {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--ivory);
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.story__text em {
  font-style: italic;
  color: var(--copper);
}

.values__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 56px;
  max-width: 480px;
}
.values__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}
.value-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.value-item:last-child { border-bottom: none; }
.value-item:hover { background: rgba(178,0,110,0.04); }
.value-item__num {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--copper);
  min-width: 28px;
}
.value-item__content { flex: 1; }
.value-item__title {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.value-item__body {
  font-size: 0.8rem;
  color: var(--ivory-dim);
  line-height: 1.7;
}
.value-item__icon {
  width: 28px; height: 28px;
  color: var(--border);
  transition: color var(--transition);
}
.value-item:hover .value-item__icon { color: var(--copper); }

.team__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  margin-bottom: 56px;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}
.team-card:hover { border-color: rgba(178,0,110,0.45); }
.team-card__img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.team-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: transform 0.6s ease, filter 0.6s ease;
}
.team-card:hover .team-card__img img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.team-card__body {
  padding: 24px 24px 28px;
  background: var(--bg-card);
}
.team-card__name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.team-card__bio {
  font-size: 0.79rem;
  color: var(--ivory-dim);
  line-height: 1.75;
}

.certifications {
  background: var(--bg-mid);
}
.cert__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.cert-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background var(--transition);
}
.cert-item:last-child { border-right: none; }
.cert-item:hover { background: rgba(178,0,110,0.04); }
.cert-item__icon {
  width: 36px; height: 36px;
  color: var(--copper);
  margin: 0 auto 16px;
}
.cert-item__name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.cert-item__desc {
  font-size: 0.75rem;
  color: var(--ivory-dim);
  line-height: 1.7;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.contact__info-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact__info-body {
  font-size: 0.84rem;
  color: var(--ivory-dim);
  line-height: 1.85;
  margin-bottom: 40px;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact__detail {
  display: flex;
  gap: 16px;
}
.contact__detail-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--copper);
  flex-shrink: 0;
}
.contact__detail-icon svg { width: 16px; height: 16px; }
.contact__detail-content {}
.contact__detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 4px;
}
.contact__detail-value {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.5;
}
.contact__detail-value a:hover { color: var(--copper); }

.contact__map {
  margin-top: 40px;
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 16/8;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact__map-inner {
  width: 100%; height: 100%;
}
.contact__map-inner iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(1) invert(1) brightness(0.7) sepia(0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  border-top: 1px solid var(--border);
  background: var(--bg-mid);
  padding: 64px 0 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 4px;
}
.footer__brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.footer__brand-body {
  font-size: 0.8rem;
  color: var(--ivory-dim);
  line-height: 1.8;
  max-width: 280px;
}
.footer__col-title {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.82rem;
  color: var(--ivory-dim);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--ivory); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__copy {
  font-size: 0.72rem;
  color: rgba(168,158,136,0.5);
  letter-spacing: 0.05em;
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.72rem;
  color: rgba(168,158,136,0.5);
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--ivory-dim); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-mid); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  border: 1px solid var(--border);
  padding: 36px 32px;
  background: var(--bg-card);
  transition: border-color var(--transition);
}
.testimonial-card:hover { border-color: rgba(178,0,110,0.4); }
.testimonial-card__quote {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--copper);
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-card__text {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.65;
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.testimonial-card__author-name {
  font-size: 0.82rem;
  color: var(--white);
}
.testimonial-card__author-role {
  font-size: 0.72rem;
  color: var(--ivory-dim);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1800&auto=format&fit=crop&q=80') center/cover no-repeat;
  opacity: 0.18;
}
.cta-banner__inner {
  position: relative;
  z-index: 1;
}
.cta-banner__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}
.cta-banner__title em {
  font-style: italic;
  color: var(--copper);
}
.cta-banner__sub {
  font-size: 0.86rem;
  color: var(--ivory-dim);
  margin-bottom: 40px;
}
.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE TRANSITIONS & ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .grid-3, .fleet-grid, .team__grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .cert__list { grid-template-columns: repeat(2, 1fr); }
  .cert-item:nth-child(2) { border-right: none; }
  .cert-item { border-bottom: 1px solid var(--border); }
  .cert-item:nth-last-child(-n+2) { border-bottom: none; }
  .hero__scroll { right: 24px; }
}
@media (max-width: 860px) {
  .container { padding: 0 20px; }
  .hero__content { padding: 0 20px 70px; }
  .section { padding: 70px 0; }
  .section--sm { padding: 55px 0; }
  .grid-2, .quote__inner, .contact__grid, .page-hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .services__header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .fleet-grid, .team__grid, .testimonial-grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .why__item:nth-child(2n) { border-right: none; }
  .why__item { border-right: none; }
  .hero__scroll { display: none; }
  .hero__headline { font-size: clamp(2.6rem, 8vw, 4.2rem); }
  .hero__sub { max-width: 100%; }
  .hero__actions { justify-content: flex-start; }
  .fleet-card__stats { grid-template-columns: 1fr; }
  .fleet-card__body { padding: 24px; }
  .fleet__image-caption { padding: 24px 20px 18px; }
  .fleet__specs { gap: 12px; }
  .contact__map { aspect-ratio: 16 / 10; }
  .stats__inner { flex-wrap: wrap; }
  .stats__item { flex: 0 0 50%; border-bottom: 1px solid var(--border); }
  .stats__item:nth-child(2n) { border-right: none; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .footer__top { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .form__row { grid-template-columns: 1fr; }
  .cert__list { grid-template-columns: 1fr; }
  .cert-item { border-right: none !important; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .section--sm { padding: 45px 0; }
  .nav__inner { padding: 0 16px; }
  .nav__logo { gap: 10px; }
  .nav__logo-name { font-size: 1.2rem; }
  .nav__logo-tag { display: none; }
  .nav__hamburger { padding: 8px; }
  .nav__mobile { padding: 32px 20px; align-items: flex-start; justify-content: flex-start; gap: 24px; }
  .nav__mobile .nav__link { font-size: 1rem; text-align: left; }
  .service-card { padding: 32px 24px; }
  .why__item { padding: 30px 24px; }
  .contact__detail { flex-direction: column; align-items: flex-start; }
  .contact__detail-icon { width: 36px; height: 36px; }
  .form__label { font-size: 0.72rem; }
  .form__input, .form__select, .form__textarea { padding: 14px 14px; }
  .form__submit { padding: 16px; }
  .footer__bottom { flex-direction: column; align-items: stretch; }
  .footer__legal { justify-content: space-between; width: 100%; flex-wrap: wrap; gap: 12px; }
  .cta-banner { padding: 70px 0; }
  .cta-banner__title { font-size: clamp(2rem, 7vw, 3.6rem); }
}
@media (max-width: 500px) {
  .hero__headline { font-size: clamp(2.1rem, 8vw, 2.8rem); }
  .hero__sub { font-size: 0.92rem; }
  .dest-card { min-width: 220px; height: 300px; }
  .dest-card__city { font-size: 1.7rem; }
  .hero__actions { gap: 14px; }
  .fleet-card__stats { gap: 14px; }
  .page-hero__img-frame { bottom: -10px; left: -10px; width: calc(100% - 20px); height: calc(100% - 20px); }
  .footer__copy { text-align: center; width: 100%; }
  .footer__legal { flex-direction: column; align-items: stretch; gap: 10px; }
}