:root {
  --gold: #d6a84f;
  --gold-light: #f7dfa0;
  --gold-dark: #98722d;
  --black: #030303;
  --black-2: #070707;
  --white: #f7f7f7;
  --muted: #9a9a9a;
  --hero-img: url("../img/hero-bg.webp");
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
::selection { background: var(--gold); color: #000; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #030303; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), var(--gold-dark));
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.grid-bg {
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 70px 70px;
}

.gold-text {
  background: linear-gradient(110deg, #fff0bb 0%, #d6a84f 40%, #fff1b7 65%, #9d742e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== NAVBAR — transparent over hero ===== */
.navbar {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}
.navbar.scrolled {
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(214, 168, 79, 0.14);
}

.brand-logo-nav {
  height: 48px;
  width: auto;
  background: transparent !important;
  box-shadow: none !important;
  filter: none;
  mix-blend-mode: normal;
}
@media (min-width: 1024px) {
  .brand-logo-nav { height: 56px; }
}

.nav-link {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f3f3f3;
  transition: color 0.25s ease;
}
.nav-link:hover,
.nav-link.is-active { color: #d6a84f; }

.nav-phone {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}
.nav-phone:hover { color: var(--gold-light); }

.mobile-menu-link {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ececec;
}
.mobile-menu-link.is-active { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #030303;
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(3,3,3,0.92) 0%, rgba(3,3,3,0.72) 38%, rgba(3,3,3,0.35) 70%, rgba(3,3,3,0.45) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transform: scale(1.02);
  will-change: transform;
  pointer-events: none;
  z-index: 0;
}

.hero-light {
  position: absolute;
  width: min(620px, 55vw);
  height: min(620px, 55vw);
  right: 8%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,168,79,0.14), transparent 65%);
  filter: blur(24px);
  animation: breathe 6s infinite alternate ease-in-out;
  pointer-events: none;
  z-index: 0;
}

@keyframes breathe {
  from { transform: scale(0.92); opacity: 0.5; }
  to { transform: scale(1.08); opacity: 1; }
}

.hero-content-grid {
  display: grid;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1100px) {
  .hero-content-grid {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }
}

.hero-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 8.5vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 800;
}
.hero-title span { display: block; }

.hero-lead {
  margin-top: 1.75rem;
  max-width: 36rem;
  color: #d1d1d1;
  line-height: 1.8;
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transition: border-color 0.25s, background 0.25s;
}
.hero-btn-ghost:hover {
  border-color: rgba(214,168,79,0.55);
  background: rgba(255,255,255,0.05);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.4rem;
  margin-top: 2rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #bdbdbd;
}

.hero-rotate {
  display: none;
  width: min(380px, 34vw);
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1100px) {
  .hero-rotate { display: flex; }
}

.hero-rotate__stage {
  position: relative;
  width: 100%;
  height: 420px;
}

.hero-rotate__card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.82) 100%),
    var(--card-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  display: block;
  text-decoration: none;
  color: inherit;
}
a.hero-rotate__card:hover {
  color: inherit;
  text-decoration: none;
}
.hero-rotate__card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.hero-rotate__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(214,168,79,0.16), transparent 50%);
}
.hero-rotate__content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-rotate__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #d6a84f;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.hero-rotate__top i { font-size: 1.25rem; color: rgba(255,255,255,0.75); }
.hero-rotate__title {
  margin: 0 0 0.55rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: inherit;
}
.hero-rotate__content p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  font-size: 0.95rem;
}

.hero-rotate__dots {
  display: flex;
  gap: 0.45rem;
}
.hero-rotate__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  padding: 0;
  transition: width 0.25s ease, background 0.25s ease;
}
.hero-rotate__dot.is-active {
  width: 22px;
  background: #d6a84f;
}

.gold-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #a97c32, #f3d17c, #b48639);
  color: #050505;
  font-weight: 800;
  transition: 0.35s ease;
}
.gold-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: 0.7s;
}
.gold-btn:hover::before { left: 140%; }
.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(214,168,79,0.22);
}

.section-soft { background: #070707; }

.section-head-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .section-head-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.section-side-note {
  max-width: 24rem;
  color: #8f8f8f;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* Stats — mobile single column */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 2.5rem;
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
}
.stats-item {
  padding: 1.35rem 1.2rem;
  background: rgba(255,255,255,0.025);
  border-radius: 16px;
  text-align: center;
  overflow: visible;
}
@media (min-width: 1024px) {
  .stats-item {
    padding: 3rem 0;
    background: transparent;
    border-radius: 0;
    text-align: left;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding-left: 1.5rem;
  }
  .stats-item:first-child { padding-left: 0; }
  .stats-item:last-child { border-right: 0; }
}
.stats-label {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8a8a;
  font-weight: 700;
}

.big-number {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: inline-block;
  padding: 0.12em 0.14em;
  color: rgba(255, 255, 255, 0.12);
  -webkit-text-stroke: 1.4px rgba(255, 255, 255, 0.34);
  paint-order: stroke fill;
  overflow: visible;
}

/* Services with photo backgrounds */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.15rem;
  }
}
@media (min-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 22px;
  transition: transform 0.4s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}
a.service-card:hover {
  color: inherit;
  text-decoration: none;
}
.service-card--photo {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.82) 100%),
    var(--card-bg);
  background-size: cover;
  background-position: center;
}
.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(214,168,79,0.12), transparent 45%);
  pointer-events: none;
}
.service-card__content {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 320px;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card:hover { transform: translateY(-6px); }

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 900px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

.fleet-image {
  height: 420px;
  overflow: hidden;
  position: relative;
}
.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.fleet-card:hover img { transform: scale(1.06); }
.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.92), transparent 55%);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: rgba(255,255,255,0.03);
  position: relative;
  border-block: 1px solid rgba(214,168,79,0.12);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 22s linear infinite;
  will-change: transform;
}
.marquee-item {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.15rem, 4.2vw, 3.2rem);
  font-weight: 800;
  padding: 0.95rem 1.5rem;
  color: rgba(255,255,255,0.32);
  flex-shrink: 0;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.marquee-item span {
  color: var(--gold);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.quote {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 3vw, 3.1rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.contact-box {
  background:
    radial-gradient(circle at 90% 20%, rgba(214,168,79,0.12), transparent 35%),
    #0a0a0a;
}
.contact-form-panel {
  background: rgba(255,255,255,0.02);
  min-width: 0;
  max-width: 100%;
}
@media (min-width: 1024px) {
  .contact-form-panel {
    border-left: 1px solid rgba(255,255,255,0.05);
  }
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,168,79,0.05), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Inner pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 0 3.5rem;
  isolation: isolate;
  text-align: center;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(180deg, rgba(3,3,3,0.72) 0%, rgba(3,3,3,0.84) 55%, rgba(3,3,3,0.95) 100%),
    var(--hero-img);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.3rem, 5.5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.05;
  margin-top: 1rem;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c0c0c0;
  font-weight: 700;
}
.breadcrumb a:hover { color: var(--gold); }

.blog-head { max-width: 40rem; }
.blog-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 768px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}
.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: #0c0c0c;
  transition: transform 0.3s ease;
}
.blog-card:hover { transform: translateY(-5px); }
.blog-card__media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body {
  padding: 1.25rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card h2,
.blog-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0.75rem 0 0.65rem;
  line-height: 1.35;
}
.blog-card p {
  color: #9a9a9a;
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
  margin: 0 0 1rem;
}
.blog-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--gold);
}
.blog-card__more:hover { color: var(--gold-light); }
.blog-card__more i {
  font-size: 0.75rem;
  transition: transform 0.25s ease;
}
.blog-card:hover .blog-card__more i,
.blog-card__more:hover i { transform: translateX(3px); }
.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
}

.article-body::after {
  content: "";
  display: table;
  clear: both;
}

figure.article-thumb {
  float: left !important;
  width: min(420px, 45%);
  margin: 0 1.75rem 1.25rem 0;
  border-radius: 18px;
  overflow: hidden;
}

figure.article-thumb img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 640px) {
  figure.article-thumb {
    float: none !important;
    width: 100%;
    max-width: 100%;
    margin: 0 0 1.5rem;
  }
}

.article-wrap {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
@media (min-width: 1024px) {
  .article-wrap {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}
.article-cta {
  display: block;
  width: min(420px, 100%);
  margin: 0 auto 2rem;
  border-radius: 14px;
  overflow: hidden;
  transition: opacity .2s ease, transform .2s ease;
}
@media (min-width: 1024px) {
  .article-cta {
    width: min(560px, 100%);
  }
}
.article-body + .article-cta {
  margin-top: 2rem;
  margin-bottom: 0;
}
.article-cta:hover {
  opacity: .92;
  transform: translateY(-2px);
}
.article-cta img {
  display: block;
  width: 100%;
  height: auto;
}
.article-body {
  color: #f5f5f5 !important;
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: none;
}
.article-body > :first-child {
  margin-top: 0;
}
.article-body *:not(a) {
  color: inherit !important;
}
.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
  font-family: "Manrope", sans-serif;
  color: #ffffff !important;
  font-weight: 800;
  line-height: 1.25;
  margin: 2rem 0 0.85rem;
}
.article-body h2 { font-size: 1.55rem; }
.article-body h3 { font-size: 1.25rem; }
.article-body p { margin: 0 0 1.15rem; }
.article-body ul,
.article-body ol {
  margin: 0 0 1.15rem;
  padding-left: 1.75rem;
  list-style-position: outside;
}

.article-body ul {
  list-style-type: disc;
}

.article-body ol {
  list-style-type: decimal;
}

.article-body ul ul {
  list-style-type: circle;
  margin-top: 0.4rem;
}

.article-body ol ol {
  list-style-type: lower-alpha;
  margin-top: 0.4rem;
}

.article-body li {
  display: list-item;
  margin-bottom: 0.4rem;
  padding-left: 0.35rem;
}
.article-body a { color: var(--gold) !important; }
.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.25rem 0;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
}
.article-body td,
.article-body th {
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.65rem 0.85rem;
}

.form-input {
  margin-top: 0.5rem;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 3.5rem;
  box-sizing: border-box;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  padding: 0 1.15rem;
  outline: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color-scheme: dark;
}
.form-input:focus { border-color: rgba(214,168,79,0.55); }
.form-input::placeholder { color: #666; }
input[type="date"].form-input {
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 18px 18px;
  padding-right: 3rem;
}
input[type="date"].form-input::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.contact-form-panel {
  min-width: 0;
  max-width: 100%;
}
@media (max-width: 639px) {
  .contact-form-panel form,
  .contact-form-panel .grid,
  .contact-form-panel .grid > div {
    min-width: 0;
    max-width: 100%;
  }
  input[type="date"].form-input {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    padding-left: 0.9rem;
    padding-right: 2.6rem;
    background-position: right 0.85rem center;
  }
  input[type="date"].form-input::-webkit-date-and-time-value {
    text-align: left;
  }
  input[type="date"].form-input::-webkit-datetime-edit {
    min-width: 0;
    max-width: 100%;
    padding: 0;
    overflow: hidden;
  }
  input[type="date"].form-input::-webkit-datetime-edit-fields-wrapper {
    min-width: 0;
  }
}
.form-select {
  appearance: none;
  -webkit-appearance: none;
  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 fill='%23d6a84f' d='M1.4 0.6L6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 12px 8px;
  padding-right: 2.75rem;
  cursor: pointer;
}
.form-select option {
  background: #111;
  color: #fff;
}

/* Float */
.float-dock {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: transform 0.25s ease;
}
.float-btn:hover { transform: scale(1.07); }
.float-btn--wa {
  background: #20c766;
  color: #fff;
  box-shadow: 0 10px 30px rgba(32,199,102,0.25);
}
.float-btn--phone {
  background: linear-gradient(120deg, #a97c32, #f3d17c, #b48639);
  color: #050505;
}
.float-btn--top {
  background: #151515;
  color: #fff;
}
.float-btn--top[hidden] { display: none; }

/* ===== FOOTER — clean, not navbar clone ===== */
.site-footer {
  background: #050505;
  padding: 3.5rem 0 1.75rem;
  margin-top: 1rem;
}
.site-footer__inner {
  width: min(1500px, calc(100% - 2rem));
  margin-inline: auto;
}
.site-footer__top {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .site-footer__top {
    grid-template-columns: 1.4fr 1fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }
}
.site-footer__logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}
.site-footer__text {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.7;
  color: #b8b8b8;
  max-width: 28rem;
}
.site-footer__wish {
  margin-top: 0.85rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
}
.site-footer__title {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.site-footer__links {
  list-style: none;
  display: grid;
  gap: 0.7rem;
}
.site-footer__links a {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #efefef;
}
.site-footer__links a:hover { color: var(--gold); }
.site-footer__contacts {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.site-footer__contacts a,
.site-footer__contacts span {
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #f0f0f0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  word-break: break-word;
}
.site-footer__contacts a:hover { color: var(--gold-light); }
.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8d8d8d;
  text-align: center;
}
@media (min-width: 640px) {
  .site-footer__bottom {
    flex-direction: row;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 1023px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    align-items: center !important;
    padding: 6.5rem 0 3rem;
  }

  .hero-image {
    background-image:
      linear-gradient(
        to bottom,
        rgba(3,3,3,0.55) 0%,
        rgba(3,3,3,0.72) 42%,
        rgba(3,3,3,0.88) 100%
      ),
      var(--hero-img);
    background-position: center 30%;
    transform: none !important;
  }

  .hero-light { display: none; }

  .hero-copy {
    width: 100%;
    max-width: 34rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero-kicker {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
    font-size: 0.98rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .fleet-image { height: 340px; }

  .cursor-glow { display: none; }

  .marquee-track {
    animation-duration: 14s;
  }

  .marquee-item {
    font-size: 1.05rem;
    padding: 0.8rem 1.1rem;
    color: rgba(255,255,255,0.45);
  }

  .big-number {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
    padding: 0.15em 0.18em;
  }
}

@media (max-width: 640px) {
  .page-hero { padding: 7.25rem 0 2.25rem; }
  .contact-box { border-radius: 22px; }
  .float-btn { width: 48px; height: 48px; }
  .site-footer { padding: 2.75rem 0 1.5rem; text-align: center; }
  .site-footer__logo { margin-inline: auto; }
  .site-footer__text { margin-inline: auto; }
  .site-footer__links,
  .site-footer__contacts { justify-items: center; }
  .site-footer__bottom { align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .marquee-track,
  .hero-light { animation: none; }
}

.home-seo {
  background: #050505;
}

.home-seo__box {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.home-seo__scroll {
  max-height: 180px;
  overflow-y: auto;
  padding-right: 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(214, 168, 79, 0.45) rgba(255, 255, 255, 0.06);
}

.home-seo__scroll::-webkit-scrollbar {
  width: 6px;
}

.home-seo__scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
}

.home-seo__scroll::-webkit-scrollbar-thumb {
  background: rgba(214, 168, 79, 0.45);
  border-radius: 999px;
}

.home-seo__scroll.article-body {
  font-size: 0.92rem;
}

.home-seo__scroll.article-body h1 {
  font-size: 1.35rem;
}

.home-seo__scroll.article-body h2 {
  font-size: 1.2rem;
}

.home-seo__scroll.article-body h3 {
  font-size: 1.05rem;
}

.home-seo__scroll.article-body h4 {
  font-size: 0.98rem;
}

@media (min-width: 1024px) {
  .home-seo__scroll {
    max-height: 220px;
  }
}