/* ===================================================
   IMPERIUM V2 — Dark Cinematic Luxury
   =================================================== */

@font-face {
  font-family: 'Ztravigsfen Alternate';
  src: url('../fonts/ZTRavigsfen-Alternate.otf') format('opentype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Ztravigsfen';
  src: url('../fonts/ZTRavigsfen-Regular.otf') format('opentype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* === VARIABLES === */
:root {
  --bg: #0e0d0c;
  --bg-2: #161412;
  --tan: #e3c6b4;
  --cream: #f2f0e3;
  --brown: #c19e87;
  --brown-dark: #8a6a5a;
  --text-muted: rgba(227, 198, 180, 0.45);
  --border: rgba(255, 255, 255, 0.07);
  --glass: rgba(160, 119, 103, 0.1);
  --glass-border: rgba(255, 255, 255, 0.09);

  --fd: 'Ztravigsfen Alternate', 'Times New Roman', serif;
  --fb: 'Ztravigsfen', 'Times New Roman', serif;

  --nav-h: 72px;
  --max-w: 1440px;
  --pad-x: clamp(1.5rem, 5vw, 6rem);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; }
body {
  background-color: var(--bg);
  color: var(--tan);
  font-family: var(--fb);
  overflow-x: hidden;
  cursor: none;
}
body.loading { overflow: hidden; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

/* === CURSOR === */
.cursor-dot {
  position: fixed; top: 0; left: 0;
  width: 7px; height: 7px;
  background: var(--brown);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), background .3s;
  will-change: transform;
}
.cursor-outline {
  position: fixed; top: 0; left: 0;
  width: 34px; height: 34px;
  border: 1px solid rgba(193,158,135,.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .4s var(--ease-out), height .4s var(--ease-out), border-color .3s;
  will-change: transform;
}
body.cursor-hover .cursor-dot  { width: 11px; height: 11px; background: var(--cream); }
body.cursor-hover .cursor-outline { width: 52px; height: 52px; border-color: rgba(193,158,135,.7); }

/* === PRELOADER === */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.preloader__inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.75rem; position: relative; z-index: 2;
}
.preloader__logo {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}
.preloader__icon {
  width: 56px; opacity: 0; transform: scale(.85);
}
.preloader__wordmark {
  font-family: var(--fd);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: .35em;
  color: var(--tan);
  overflow: hidden;
  display: flex;
}
.preloader__wordmark .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}
.preloader__bar-wrap {
  width: 220px; height: 1px;
  background: rgba(193,158,135,.15);
  overflow: hidden;
  border-radius: 1px;
}
.preloader__bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--brown-dark), var(--brown), var(--cream));
}
.preloader__counter {
  font-family: var(--fd);
  font-size: .7rem;
  letter-spacing: .25em;
  color: var(--brown);
  opacity: .5;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.section-padding { padding-block: clamp(3rem, 5vw, 5rem); }

/* === SCROLL REVEAL INITIAL STATE === */
.reveal-up { opacity: 0; transform: translateY(40px); }

/* === TYPOGRAPHY UTILITIES === */
.section-label {
  font-family: var(--fd);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 2rem; height: 1px;
  background: var(--brown);
  flex-shrink: 0;
}
.section-header { text-align: center; margin-bottom: clamp(2rem, 3.5vw, 3.5rem); }
.section-header .section-label { justify-content: center; }
.section-header .section-label::before { display: none; }
.section-title {
  font-family: var(--fd);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -.01em;
}
.text-accent { color: var(--cream); }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.5rem var(--pad-x);
  transition: background .5s var(--ease-out), padding .5s var(--ease-out), box-shadow .5s;
}
.navbar.scrolled {
  padding: .8rem var(--pad-x);
  background: rgba(14,13,12,.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05);
}
.navbar__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__logo { width: 34px; transition: opacity .3s; }
.navbar__logo:hover { opacity: .75; }
.navbar__menu {
  display: flex; align-items: center; gap: 2.5rem;
  margin-left: auto;
}
.navbar__link {
  font-family: var(--fd);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tan);
  position: relative;
  padding: .3rem 0;
  transition: color .3s;
}
.navbar__link::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--brown);
  transition: width .4s var(--ease-out);
}
.navbar__link:hover { color: var(--cream); }
.navbar__link:hover::after { width: 100%; }
.navbar__cta { margin-left: 2rem; flex-shrink: 0; }

/* Hamburger */
.navbar__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none;
  padding: 4px; margin-left: auto;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--tan);
  transition: transform .35s var(--ease-out), opacity .35s;
}
.navbar__hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.navbar__hamburger.active span:nth-child(2) { opacity: 0; }
.navbar__hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu */
.navbar__mobile-menu {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(14,13,12,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  padding: 2rem var(--pad-x);
  opacity: 0; transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .35s, transform .35s var(--ease-out);
}
.navbar__mobile-menu.active { opacity: 1; transform: translateY(0); pointer-events: all; }
.navbar__mobile-menu ul { display: flex; flex-direction: column; gap: 1.5rem; }
.navbar__mobile-menu .navbar__link { font-size: 1.3rem; }
.navbar__mobile-menu .btn { display: inline-flex; margin-top: .5rem; }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--fd);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: .9rem 1.75rem;
  line-height: 1;
  transition: all .3s var(--ease-out);
  cursor: none;
  position: relative;
}
.btn--primary {
  background: rgba(193,158,135,.18);
  border: 1px solid rgba(193,158,135,.38);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--bg);
}
.btn--outline {
  background: transparent;
  border: 1px solid rgba(193,158,135,.35);
  color: var(--tan);
}
.btn--outline:hover {
  background: rgba(193,158,135,.1);
  border-color: var(--brown);
  color: var(--cream);
}
.btn__arrow { transition: transform .3s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* === HERO === */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 5.5rem; /* espace pour le scroll indicator */
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url('../images/pawel-czerwinski-dFcotJdXzXw-unsplash-1.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(14,13,12,.55) 0%,
    rgba(14,13,12,.25) 45%,
    rgba(14,13,12,.75) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  padding-inline: var(--pad-x);
  display: flex; flex-direction: column;
  align-items: center; gap: clamp(1rem, 1.8vh, 2rem);
  text-align: center;
}
.hero__label {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--fd);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brown);
  border: 1px solid rgba(193,158,135,.22);
  padding: .55rem 1.35rem;
  border-radius: 100px;
  backdrop-filter: blur(12px);
  opacity: 0;
}
.label-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brown);
  display: inline-block;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}
.hero__title {
  font-family: var(--fd);
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 8.5rem);
  line-height: .92;
  color: var(--cream);
  letter-spacing: -.025em;
  perspective: 800px;
}
.hero__title-line { display: block; overflow: hidden; }
.hero__title-line--accent {
  color: transparent;
  -webkit-text-stroke: 2px var(--tan);
}
.hero__car {
  position: relative;
  width: 100%;
  max-width: 1060px;
  will-change: transform;
}
.hero__car-img {
  width: 100%; margin: 0 auto;
  max-height: clamp(180px, 28vh, 380px);
  object-fit: contain;
  filter: drop-shadow(0 40px 100px rgba(0,0,0,.6));
  will-change: transform;
}
.hero__car-glow {
  position: absolute; bottom: -20px; left: 50%;
  transform: translateX(-50%);
  width: 65%; height: 50px;
  background: radial-gradient(ellipse, rgba(193,158,135,.18) 0%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}
.hero__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%;
  max-width: 720px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero__service-item {
  display: flex; flex-direction: column;
  align-items: center; gap: .6rem;
  padding: 1.25rem 1rem;
  background: rgba(14,13,12,.45);
  transition: background .35s;
}
.hero__service-item:hover { background: rgba(193,158,135,.1); }
.hero__service-icon { width: 28px; height: 28px; object-fit: contain; }
.hero__service-item span {
  font-family: var(--fd);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tan);
  white-space: nowrap;
}
.hero__scroll-indicator {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  color: var(--brown);
  font-family: var(--fd);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--brown));
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .3; transform: scaleY(.7); }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* === ABOUT === */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}
.about__title {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 2rem;
}
.about__text {
  font-family: var(--fb);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.85;
  color: var(--tan);
  margin-bottom: 1.5rem;
}
.about__text strong { color: var(--cream); font-weight: 700; }
.about__tagline {
  font-family: var(--fd);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  color: var(--tan);
  line-height: 1.6;
  border-left: 2px solid var(--brown);
  padding-left: 1.5rem;
  margin-top: 2rem;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.stat-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .35s var(--ease-out), border-color .35s, box-shadow .35s;
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193,158,135,.28);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.stat-card--wide { grid-column: 1 / -1; }
.stat-card__number {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  display: flex; align-items: baseline; gap: .08em;
}
.stat-card__plus { font-size: .5em; color: var(--brown); }
.stat-card__number--special {
  font-family: var(--fd);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
}
.stat-card__label {
  font-family: var(--fb);
  font-size: .9rem;
  color: var(--tan);
  margin-top: .6rem;
  opacity: .75;
}

/* === SERVICES === */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .875rem;
}
.service-card {
  position: relative;
  height: clamp(280px, 28vw, 480px);
  border-radius: 16px;
  overflow: hidden;
  cursor: none;
  opacity: 0;
  transform: translateY(30px);
}
.service-card__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .7s var(--ease-out);
}
.service-card:hover .service-card__bg { transform: scale(1.07); }
.service-card--residences .service-card__bg { background-image: url('../images/don-kaveen-ddDY50No6B8-unsplash.jpg'); }
.service-card--transports .service-card__bg  { background-image: url('../images/brandon-day-NM7zMo_yJFQ-unsplash.jpg'); }
.service-card--evenements .service-card__bg  { background-image: url('../images/getty-images-NeXbEzIWUD0-unsplash.jpg'); }
.service-card--elite .service-card__bg       { background-image: url('../images/getty-images-CYryQUjCKFk-unsplash.jpg'); }
.service-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.15) 55%,
    rgba(0,0,0,.05) 100%);
  transition: background .4s;
}
.service-card:hover .service-card__overlay {
  background: linear-gradient(to top,
    rgba(0,0,0,.92) 0%,
    rgba(0,0,0,.45) 55%,
    rgba(0,0,0,.15) 100%);
}
.service-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem 1.5rem;
  display: flex; align-items: center; gap: .875rem;
  transition: transform .45s var(--ease-out);
}
.service-card:hover .service-card__content { transform: translateY(-105px); }
.service-card__icon { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; }
.service-card__icon--lg { width: 36px; height: 36px; }
.service-card__title {
  font-family: var(--fd);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.service-card__hover-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.5rem 1.75rem;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out);
}
.service-card:hover .service-card__hover-content { opacity: 1; transform: translateY(0); }
.service-card__hover-content p {
  font-family: var(--fb);
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(242,240,227,.8);
  margin-bottom: .9rem;
}
.service-card__link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--fd);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brown);
  transition: color .3s, gap .3s;
}
.service-card__link:hover { color: var(--cream); gap: .8rem; }

/* === FLEET === */
.fleet__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.fleet-card {
  border-radius: 16px;
  opacity: 0;
  transform: translateY(40px);
  transition: transform .4s var(--ease-out);
  cursor: none;
}
.fleet-card:hover { transform: translateY(-8px) !important; }
.fleet-card__inner {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
  transition: border-color .4s, box-shadow .4s;
}
.fleet-card:hover .fleet-card__inner {
  border-color: rgba(193,158,135,.28);
  box-shadow: 0 24px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(193,158,135,.08);
}
.fleet-card__header {
  padding: 1.5rem 1.5rem 0;
  display: flex; align-items: baseline; gap: .875rem;
}
.fleet-card__number {
  font-family: var(--fd);
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--brown);
  opacity: .6;
}
.fleet-card__title {
  font-family: var(--fd);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}
.fleet-card__image {
  padding: 1.5rem; flex: 1;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.fleet-card__img {
  max-height: 155px;
  width: auto; max-width: 100%;
  object-fit: contain;
  transition: transform .55s var(--ease-out);
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.45));
}
.fleet-card:hover .fleet-card__img { transform: scale(1.06) translateY(-6px); }
.fleet-card__body { padding: 0 1.5rem; }
.fleet-card__desc {
  font-family: var(--fb);
  font-size: .88rem;
  line-height: 1.65;
  color: var(--brown);
  opacity: .85;
}
.fleet-card__footer { padding: 1.5rem; margin-top: auto; }
.fleet-card__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
  font-family: var(--fd);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tan);
  padding: .8rem 1.25rem;
  border: 1px solid rgba(193,158,135,.22);
  border-radius: 4px;
  width: 100%;
  background: rgba(193,158,135,.05);
  transition: all .3s var(--ease-out);
}
.fleet-card__cta:hover {
  background: rgba(193,158,135,.15);
  border-color: rgba(193,158,135,.5);
  color: var(--cream);
}
.fleet-card__cta-arrow { transition: transform .3s var(--ease-out); }
.fleet-card__cta:hover .fleet-card__cta-arrow { transform: translateX(4px); }

/* === FOOTER === */
.footer { position: relative; }
.footer__top {
  padding: clamp(2rem, 3.5vw, 3.5rem) var(--pad-x) clamp(1.5rem, 2.5vw, 2.5rem);
  max-width: var(--max-w); margin-inline: auto;
}
.footer__services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.footer__service-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--border);
  transition: background .3s;
}
.footer__service-item:last-child { border-right: none; }
.footer__service-item:hover { background: var(--glass); }
.footer__service-item img { width: 22px; height: 22px; object-fit: contain; }
.footer__service-item span {
  font-family: var(--fd);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--tan);
}
.footer__wordmark {
  padding: clamp(1rem, 3vw, 2.5rem) var(--pad-x);
  overflow-x: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.footer__wordmark-text {
  display: block;
  font-family: var(--fd);
  font-size: clamp(5rem, 17vw, 17rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(193,158,135,.18);
  letter-spacing: -.02em;
  line-height: .85;
  white-space: nowrap;
  user-select: none;
  will-change: transform;
}
.footer__bottom { padding: clamp(3rem, 5vw, 5rem) 0 2rem; }
.footer__bottom-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding-bottom: 4rem;
}
.footer__brand { display: flex; flex-direction: column; gap: .75rem; }
.footer__logo { width: 38px; }
.footer__brand-name {
  font-family: var(--fd);
  font-size: 1.4rem;
  color: var(--brown);
  font-weight: 400;
  letter-spacing: .12em;
  margin-top: .25rem;
}
.footer__address {
  font-family: var(--fb);
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.footer__nav-title {
  font-family: var(--fd);
  font-size: .65rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.footer__nav ul { display: flex; flex-direction: column; gap: .75rem; }
.footer__nav a {
  font-family: var(--fb); font-size: 1rem;
  color: var(--tan); transition: color .3s;
}
.footer__nav a:hover { color: var(--cream); }
.footer__contact { display: flex; flex-direction: column; gap: 1rem; }
.footer__email {
  font-family: var(--fb); font-size: .95rem;
  color: var(--tan); transition: color .3s;
}
.footer__email:hover { color: var(--cream); }
.footer__divider { height: 1px; background: var(--border); margin-bottom: 2rem; }
.footer__credits {
  display: flex; align-items: center; justify-content: space-between;
}
.footer__credits p {
  font-family: var(--fb); font-size: .78rem; color: var(--text-muted);
}
.footer__design-credit {
  font-family: var(--fd); font-size: .8rem;
  letter-spacing: .1em; color: #f7a050; transition: opacity .3s;
}
.footer__design-credit:hover { opacity: .65; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .fleet__grid    { grid-template-columns: repeat(2, 1fr); }
  .about__inner   { grid-template-columns: 1fr; gap: 4rem; }
  .about__stats   { position: static; }
  .footer__bottom-inner { grid-template-columns: 1fr 1fr; }
  .footer__services { grid-template-columns: repeat(2, 1fr); }
  .footer__service-item:nth-child(2)  { border-right: none; }
  .footer__service-item:nth-child(3),
  .footer__service-item:nth-child(4)  { border-top: 1px solid var(--border); }
  .footer__service-item:nth-child(4)  { border-right: none; }
}
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-outline { display: none; }
  .navbar__menu, .navbar__cta  { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__mobile-menu { display: block; }
  .hero__title { font-size: clamp(3rem, 13vw, 6rem); }
  .hero__services { grid-template-columns: repeat(2, 1fr); max-width: 420px; }
  .service-card { height: 52vw; }
  .fleet__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .footer__bottom-inner { grid-template-columns: 1fr; }
  .footer__credits { flex-direction: column; gap: .5rem; text-align: center; }
}
@media (max-width: 480px) {
  .hero__services  { max-width: 100%; }
  .services__grid  { grid-template-columns: 1fr; }
  .service-card    { height: 70vw; }
  .fleet__grid     { grid-template-columns: 1fr; }
  .footer__services { grid-template-columns: 1fr 1fr; }
  .service-card:hover .service-card__content { transform: none; }
  .service-card__hover-content { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal-up, .service-card, .fleet-card { opacity: 1 !important; transform: none !important; }
}
