/* =========================================================
   IMPERIUM ELITE — luxury supercar rental
   Aesthetic: dark motorsport · Chakra Petch · gold + red foil
   ========================================================= */

:root {
  --black: #111111;
  --ink: #0b0b0d;
  --ink-2: #15151a;
  --ink-3: #1c1c22;
  --gold: #f0ce74;
  --gold-deep: #c9a24b;
  --gold-light: #f7e6b0;
  --red: #df2533;
  --red-deep: #a81824;
  --paper: #f4f1ea;
  --mut: #9a948a;
  --mut-2: #6f6a63;
  --line: rgba(240, 206, 116, 0.16);
  --line-red: rgba(223, 37, 51, 0.25);
  --gold-grad: linear-gradient(115deg, #f7e6b0 0%, #f0ce74 38%, #c9a24b 100%);
  --red-grad: linear-gradient(115deg, #ff3b48 0%, #df2533 55%, #a81824 100%);
  --accent-grad: linear-gradient(100deg, #df2533 0%, #f0ce74 78%);
  --max: 1280px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --font-d: "Chakra Petch", "Saira", sans-serif;
  --font-b: "Saira", system-ui, sans-serif;
  --r: 18px;
  --r-lg: 28px;
  --pill: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--red);
  color: #fff;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(
      120% 80% at 82% -12%,
      rgba(240, 206, 116, 0.1),
      transparent 55%
    ),
    radial-gradient(
      90% 70% at -5% 108%,
      rgba(223, 37, 51, 0.1),
      transparent 60%
    ),
    var(--ink);
}

main {
  padding: 24px;
}

/* ---------- grain ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- custom cursor ---------- */
.cursor,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold);
  transition:
    width 0.3s,
    height 0.3s,
    background 0.3s,
    border-color 0.3s;
}
.cursor-dot {
  width: 5px;
  height: 5px;
  background: var(--red);
}
.cursor.is-hover {
  width: 54px;
  height: 54px;
  background: rgba(223, 37, 51, 0.1);
  border-color: var(--red);
}
@media (hover: none), (max-width: 760px) {
  .cursor,
  .cursor-dot {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 9995;
  background: var(--accent-grad);
  box-shadow: 0 0 14px rgba(223, 37, 51, 0.6);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--font-d);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 1.05em 2em;
  border-radius: var(--pill);
  border: 1px solid transparent;
  cursor: none;
  transition: 0.45s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn .arr {
  transition: transform 0.4s var(--ease);
}
.btn:hover .arr {
  transform: translateX(5px);
}
.btn-gold {
  background: var(--gold-grad);
  color: var(--ink);
  background-size: 200% 100%;
  box-shadow: 0 10px 34px -12px rgba(240, 206, 116, 0.55);
}
.btn-gold:hover {
  background-position: 100% 0;
  box-shadow: 0 14px 44px -10px rgba(240, 206, 116, 0.7);
  transform: translateY(-3px);
}
.btn-red {
  background: var(--red-grad);
  color: #fff;
  background-size: 200% 100%;
  box-shadow: 0 10px 34px -12px rgba(223, 37, 51, 0.55);
}
.btn-red:hover {
  background-position: 100% 0;
  box-shadow: 0 16px 46px -10px rgba(223, 37, 51, 0.75);
  transform: translateY(-3px);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--paper);
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(223, 37, 51, 0.1);
}
.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 0.4rem;
}

/* ---------- typography helpers ---------- */
.gold-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.eyebrow,
.kicker {
  font-family: var(--font-d);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.4rem;
  color: var(--gold-deep);
}
.kicker::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1.8rem;
  color: var(--mut);
}
.eyebrow-line {
  width: 46px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-d);
  font-weight: 700;
  line-height: 1.04;
  font-size: clamp(2rem, 5vw, 3.7rem);
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
}

/* watermark */
.watermark {
  position: absolute;
  top: 6%;
  right: 4%;
  z-index: 0;
  pointer-events: none;
  font-family: var(--font-d);
  font-weight: 700;
  font-size: clamp(10rem, 28vw, 26rem);
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(240, 206, 116, 0.06);
  letter-spacing: -0.04em;
}

/* ---------- section frame ---------- */
section {
  position: relative;
}
.section-head {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}
.about,
.services,
.fleet,
.community,
.contact {
  padding: clamp(5rem, 11vw, 9.5rem) 0;
}

/* =========================================================
   NAV — floating pill on scroll
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.4rem, 5vw, 4rem);
  transition: 0.55s var(--ease);
}
.nav.scrolled {
  left: 50%;
  transform: translateX(-50%);
  top: 0.8rem;
  width: min(1200px, calc(100% - 1.8rem));
  padding: 0.7rem 0.7rem 0.7rem 1.6rem;
  border-radius: var(--pill);
  background: rgba(20, 20, 24, 0.78);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px -20px rgba(0, 0, 0, 0.85);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  cursor: none;
}
.brand-mark {
  color: var(--gold);
  display: grid;
  place-items: center;
  filter: drop-shadow(0 0 8px rgba(240, 206, 116, 0.4));
}
.brand-name {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.brand-sub {
  color: var(--red);
  font-weight: 600;
  margin-left: 0.22em;
}
.nav-links {
  display: flex;
  gap: 2.1rem;
}
.nav-links a {
  font-family: var(--font-d);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--paper);
  position: relative;
  cursor: none;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.82;
  transition: 0.3s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.35s var(--ease);
}
.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-cta {
  padding: 0.85em 1.7em;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: none;
  padding: 6px;
}
.burger span {
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.35s var(--ease);
}
.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--red);
}
.burger.open span:nth-child(2) {
  transform: rotate(-45deg);
  background: var(--red);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem clamp(1.4rem, 5vw, 4rem) 7rem;
  overflow: hidden;
  border-radius: 50px;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  animation: slowzoom 22s ease-in-out infinite alternate;
  opacity: 0.6;
}
@keyframes slowzoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.16);
  }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      var(--ink) 4%,
      rgba(11, 11, 13, 0.128) 44%,
      rgba(11, 11, 13, 0.232) 100%
    ),
    linear-gradient(to right, rgba(11, 11, 13, 0.312), rgba(11, 11, 13, 0.024) 72%);
}
.hero-glow {
  position: absolute;
  top: -18%;
  right: -8%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(
    circle,
    rgba(223, 37, 51, 0.16),
    rgba(240, 206, 116, 0.08) 40%,
    transparent 64%
  );
  filter: blur(10px);
}

.hero-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.hero-title {
  font-family: var(--font-d);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.7rem, 8vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: normal;
}
.hero-lead {
  max-width: 44ch;
  color: #d8d2c6;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  margin-bottom: 2.4rem;
  font-weight: 400;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.avatars {
  display: flex;
}
.avatars span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  margin-left: -12px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
}
.avatars span:first-child {
  margin-left: 0;
}
.hero-proof p {
  font-size: 0.9rem;
  color: var(--mut);
  max-width: 24ch;
}
.hero-proof b {
  color: var(--gold);
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.05rem;
}

/* featured car overlay */
.hero-feature {
  position: absolute;
  right: clamp(1.4rem, 5vw, 4rem);
  bottom: 9rem;
  z-index: 3;
  width: 248px;
  padding: 1.4rem 1.5rem;
  border-radius: var(--r-lg);
  background: rgba(16, 16, 20, 0.62);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.9);
}
.hf-tag {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--red-grad);
  padding: 0.4em 1em;
  border-radius: 40px;
  margin-bottom: 0.9rem;
}
.hero-feature h4 {
  font-family: var(--font-d);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.hero-feature p {
  font-size: 0.85rem;
  color: var(--mut);
  margin-bottom: 1rem;
}
.hf-link {
  font-family: var(--font-d);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  cursor: none;
  display: inline-flex;
  gap: 0.4em;
  align-items: center;
}
.hf-link .arr {
  transition: transform 0.4s var(--ease);
}
.hf-link:hover .arr {
  transform: translateX(5px);
}

/* circular scroll button */
.scroll-dot {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  z-index: 5;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: none;
  color: #fff;
  background: var(--red-grad);
  border: 5px solid var(--ink);
  box-shadow: 0 12px 34px -10px rgba(223, 37, 51, 0.6);
  transition: 0.4s var(--ease);
}
.scroll-dot svg {
  animation: bob 1.8s var(--ease) infinite;
}
.scroll-dot:hover {
  transform: translateX(-50%) scale(1.08);
}
@keyframes bob {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(3px);
  }
}

/* =========================================================
   ABOUT
   ========================================================= */
.about-grid {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
  position: relative;
  z-index: 2;
}
.big-quote {
  font-family: var(--font-d);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.95rem);
  line-height: 1.35;
  color: var(--paper);
}
.about-body p {
  color: var(--mut);
  margin-bottom: 1.3rem;
  max-width: 48ch;
}
.ticks {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
}
.ticks li {
  position: relative;
  padding-left: 2rem;
  color: var(--paper);
  font-weight: 500;
}
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(223, 37, 51, 0.18);
}

/* =========================================================
   SERVICES
   ========================================================= */
.svc-grid {
  max-width: var(--max);
  margin: 3.5rem auto 0;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.svc {
  background: var(--ink-2);
  padding: 2.4rem 2rem;
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: 0.5s var(--ease);
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 100% at 0 0,
    rgba(223, 37, 51, 0.1),
    transparent 55%
  );
  opacity: 0;
  transition: 0.5s;
}
.svc:hover {
  background: var(--ink-3);
  border-color: var(--line-red);
  transform: translateY(-5px);
}
.svc:hover::before {
  opacity: 1;
}
.svc-ic {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  font-size: 1.5rem;
  color: var(--gold);
  background: rgba(240, 206, 116, 0.08);
  border: 1px solid var(--line);
  margin: 1.3rem 0 1.2rem;
  transition: transform 0.5s var(--ease);
}
.svc:hover .svc-ic {
  transform: translateY(-4px) rotate(8deg);
  color: var(--red);
  border-color: var(--line-red);
  background: rgba(223, 37, 51, 0.1);
}
.svc h3 {
  font-family: var(--font-d);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  letter-spacing: 0.01em;
}
.svc p {
  color: var(--mut);
  font-size: 0.95rem;
}

/* =========================================================
   FLEET
   ========================================================= */
.fleet-filters {
  max-width: var(--max);
  margin: 2.5rem auto 3rem;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.filter {
  font-family: var(--font-d);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mut);
  background: transparent;
  border: 1px solid var(--line);
  padding: 0.75em 1.5em;
  border-radius: var(--pill);
  cursor: none;
  transition: 0.35s var(--ease);
}
.filter:hover {
  color: #fff;
  border-color: var(--red);
}
.filter.is-active {
  background: var(--red-grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px -10px rgba(223, 37, 51, 0.6);
}

.fleet-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  position: relative;
  z-index: 2;
}
.car {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: 0.5s var(--ease);
}
.car.hide {
  display: none;
}
.car:hover {
  transform: translateY(-8px);
  border-color: var(--line-red);
  box-shadow: 0 30px 64px -28px rgba(0, 0, 0, 0.9);
}
.car-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
}
.car-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.car:hover .car-media img {
  transform: scale(1.08);
}
.car-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 11, 13, 0.7), transparent 55%);
}
.car-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  font-family: var(--font-d);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--red-grad);
  padding: 0.5em 1em;
  border-radius: 40px;
  box-shadow: 0 6px 18px -6px rgba(223, 37, 51, 0.6);
}
.car-info {
  padding: 1.6rem 1.5rem 1.7rem;
}
.car-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.car-info h3 {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--mut);
}
.car-info h3 em {
  font-style: normal;
  display: block;
  color: var(--paper);
  font-weight: 700;
  font-size: 1.45rem;
}
.car-price {
  font-family: var(--font-d);
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  font-size: 1.1rem;
}
.car-price small {
  font-family: var(--font-b);
  font-size: 0.6rem;
  color: var(--mut);
  letter-spacing: 0.05em;
  display: block;
  text-align: right;
}
.car-specs {
  display: flex;
  gap: 1.3rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.3rem;
}
.car-specs span {
  font-family: var(--font-d);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mut);
}
.car-specs b {
  display: block;
  font-family: var(--font-d);
  font-size: 1.25rem;
  color: var(--paper);
  font-weight: 700;
}
.car-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-d);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red);
  cursor: none;
}
.car-cta .arr {
  transition: transform 0.4s var(--ease);
}
.car-cta:hover {
  color: var(--gold);
}
.car-cta:hover .arr {
  transform: translateX(6px);
}

/* =========================================================
   FEATURE (door to door)
   ========================================================= */
.feature {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 30px;
}
.feature-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}
.feature-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      var(--ink) 12%,
      rgba(11, 11, 13, 0.55) 60%,
      rgba(11, 11, 13, 0.2)
    ),
    linear-gradient(to top, var(--ink), transparent 40%);
}
.feature-inner {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 5rem clamp(1.4rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}
.feature-inner .section-title {
  margin: 1rem 0 1.5rem;
}
.feature-inner p {
  max-width: 46ch;
  color: #d6d0c4;
  margin-bottom: 2.2rem;
}

/* =========================================================
   COMMUNITY
   ========================================================= */
.community {
  background: linear-gradient(var(--ink), var(--ink-2));
}
.community-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.community-text p {
  color: var(--mut);
  margin: 1.4rem 0;
  max-width: 46ch;
}
.community-text .btn {
  margin-top: 1rem;
}
.community-cards {
  display: grid;
  gap: 1rem;
}
.cc {
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  padding: 1.7rem 1.8rem;
  background: rgba(223, 37, 51, 0.03);
  border-radius: 0 var(--r) var(--r) 0;
  transition: 0.45s var(--ease);
}
.cc:hover {
  background: rgba(223, 37, 51, 0.08);
  transform: translateX(8px);
  border-left-color: var(--gold);
}
.cc-num {
  font-family: var(--font-d);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.15rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.4rem;
}
.cc p {
  color: var(--mut);
  font-size: 0.95rem;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact-sub {
  color: var(--mut);
  margin: 1.4rem 0 2.4rem;
  max-width: 42ch;
}
.contact-list {
  list-style: none;
  display: grid;
  gap: 1.4rem;
}
.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.ci-lbl {
  font-family: var(--font-d);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}
.contact-list a {
  font-family: var(--font-d);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--paper);
  transition: 0.3s;
  width: fit-content;
  cursor: none;
}
.contact-list a:hover {
  color: var(--gold);
}

.contact-form {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
}
.field {
  position: relative;
  margin-bottom: 1.3rem;
}
.field input,
.field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.5rem 1rem 0.6rem;
  color: var(--paper);
  font-family: var(--font-b);
  font-size: 1rem;
  cursor: none;
  resize: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.field textarea {
  min-height: 96px;
}
.field label {
  position: absolute;
  left: 1rem;
  top: 1.15rem;
  color: var(--mut);
  font-size: 1rem;
  pointer-events: none;
  transition: 0.3s var(--ease);
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(223, 37, 51, 0.04);
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  top: 0.45rem;
  font-family: var(--font-d);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-note {
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
  text-align: center;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  border-top: 1px solid var(--line);
  padding: 4rem clamp(1.4rem, 5vw, 4rem) 2rem;
  background: var(--ink);
}
.footer-top {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-tag {
  font-family: var(--font-d);
  font-style: italic;
  color: var(--mut);
}
.footer-links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-d);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mut);
  transition: 0.3s;
  cursor: none;
}
.footer-links a:hover {
  color: var(--red);
}
.footer-bottom {
  max-width: var(--max);
  margin: 1.6rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-d);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--mut-2);
  text-transform: uppercase;
}

/* image fallback (broken unsplash) */
img.img-fallback {
  background:
    linear-gradient(135deg, #1c1c22, #0b0b0d 60%),
    radial-gradient(circle at 70% 30%, rgba(223, 37, 51, 0.18), transparent 60%);
  position: relative;
  min-height: 200px;
}
img.img-fallback::after {
  content: "IMPERIUM ELITE";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-d);
  font-weight: 700;
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  font-size: 1rem;
  text-transform: uppercase;
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal[data-d="1"] {
  transition-delay: 0.12s;
}
.reveal[data-d="2"] {
  transition-delay: 0.24s;
}
.reveal[data-d="3"] {
  transition-delay: 0.36s;
}
.reveal[data-d="4"] {
  transition-delay: 0.48s;
}
.reveal[data-d="5"] {
  transition-delay: 0.6s;
}
.reveal[data-d="6"] {
  transition-delay: 0.72s;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .hero-feature {
    display: none;
  }
}
@media (max-width: 980px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .community-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 330px);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
    background: rgba(13, 13, 16, 0.97);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    border-left: 1px solid var(--line);
  }
  .nav-links.open {
    transform: none;
  }
  .nav-links a {
    font-size: 1.2rem;
  }
  .burger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .nav.scrolled {
    width: calc(100% - 1.4rem);
  }
  .svc-grid,
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
