:root {
  --red: #cc0000;
  --red-hot: #ff2222;
  --ink: #080808;
  --ink-1: #111111;
  --ink-2: #181818;
  --ink-3: #222222;
  --paper: #ffffff;
  --paper-mute: rgba(255,255,255,0.55);
  --gold: #c9a84c;
}

* { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior:smooth;
  overflow-x:hidden;
  width:100%;
}
body {
  font-family:'Montserrat',sans-serif;
  background:var(--ink);
  color:var(--paper);
  overflow-x:hidden;
  width:100%;
  max-width:100vw;
  line-height:1.55;
  position:relative;
}
img { display:block; max-width:100%; }
a { color:inherit; text-decoration:none; }
button { font-family:inherit; }

::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background:#000; }
::-webkit-scrollbar-thumb { background:var(--red); }

#cursorDot, #cursorRing {
  position:fixed; top:0; left:0;
  pointer-events:none;
  border-radius:50%;
  z-index:9999;
  mix-blend-mode:difference;
}
#cursorDot {
  width:10px; height:10px;
  background:var(--red);
  transition:transform .15s ease;
}
#cursorRing {
  width:34px; height:34px;
  border:1px solid var(--red);
  opacity:.55;
  z-index:9998;
  transition:transform .12s ease;
}

.site-nav {
  position:fixed; inset:0 0 auto 0;
  display:flex; align-items:center; justify-content:space-between;
  padding:24px 50px;
  background:#080808;
  border-bottom:2px solid var(--red);
  box-shadow:0 4px 40px rgba(0,0,0,.9);
  z-index:2000;
}
.brand { display:flex; align-items:center; gap:10px; }
.brand-img { height:90px; width:auto; }
.brand-text {
  display:none;
  font-family:'Bebas Neue',sans-serif;
  letter-spacing:.07em;
  font-size:1.1rem;
}

.nav-menu ul {
  list-style:none;
  display:flex; align-items:center; gap:28px;
}
.nav-menu a {
  position:relative;
  color:rgba(255,255,255,.78);
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  transition:color .25s ease;
}
.nav-menu a::after {
  content:'';
  position:absolute; left:0; bottom:-4px;
  width:0; height:1px;
  background:var(--red);
  transition:width .25s ease;
}
.nav-menu a:hover { color:#fff; }
.nav-menu a:hover::after { width:100%; }
.nav-menu .nav-book {
  background:var(--red);
  color:#fff;
  padding:9px 22px;
  border-radius:2px;
  font-weight:800;
}
.nav-menu .nav-book::after { display:none; }
.nav-menu .nav-book:hover { background:var(--red-hot); }

.burger {
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none; cursor:pointer;
  padding:6px;
}
.burger span {
  width:24px; height:2px;
  background:#fff;
  transition:transform .3s ease, opacity .3s ease;
}

.drawer {
  position:fixed; top:0; right:0;
  width:280px; max-width:85vw; height:100vh;
  background:var(--ink-1);
  border-left:1px solid rgba(204,0,0,.25);
  display:flex; flex-direction:column;
  padding:80px 36px 40px;
  gap:24px;
  z-index:2500;
  transform:translateX(100%);
  transition:transform .4s ease;
  overflow-y:auto;
}
.drawer.open { transform:translateX(0); }
.drawer a {
  color:#fff;
  font-size:.95rem;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.drawer-x {
  position:absolute; top:18px; right:18px;
  background:none; border:none;
  color:#fff;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}

.hero {
  position:relative;
  height:100vh; min-height:620px;
  display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg { position:absolute; inset:0; background:#000; overflow:hidden; }
.hero-img {
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform-origin:center;
  animation:kenburns 18s ease-in-out infinite alternate;
}
.hero-img-a {
  background-image:url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?w=1920&q=85');
}
.hero-img-b {
  background-image:url('https://images.unsplash.com/photo-1444723121867-7a241cacace9?w=1920&q=85');
  animation:kenburns 18s ease-in-out 18s infinite alternate, fadeAB 36s ease-in-out infinite;
  opacity:0;
}
@keyframes kenburns {
  0%   { transform:scale(1)    translate3d(0,0,0); }
  50%  { transform:scale(1.08) translate3d(-1%,-1%,0); }
  100% { transform:scale(1.14) translate3d(1%,1%,0); }
}
@keyframes fadeAB {
  0%,45%   { opacity:0; }
  50%,95%  { opacity:1; }
  100%     { opacity:0; }
}
.hero-rays {
  position:absolute; inset:0;
  background:repeating-linear-gradient(
    105deg,
    transparent 0%, transparent 8%,
    rgba(255,200,80,.018) 8.5%, transparent 9%
  );
  animation:rays 8s linear infinite;
  pointer-events:none;
}
@keyframes rays { to { background-position:300px 0; } }
.hero-shade {
  position:absolute; inset:0;
  background:
    linear-gradient(to right, rgba(5,5,5,.88) 0%, rgba(5,5,5,.45) 45%, rgba(5,5,5,.25) 100%),
    linear-gradient(to top,   rgba(5,5,5,.6)  0%, transparent 50%);
}
.hero-glow {
  position:absolute; left:-100px; top:30%;
  width:600px; height:500px;
  background:radial-gradient(circle, rgba(204,0,0,.14) 0%, transparent 70%);
  pointer-events:none;
}
.hero-skyline {
  position:absolute; bottom:0; left:0; right:0;
  width:100%; height:55%;
  opacity:.14;
  pointer-events:none;
}
.hero-inner {
  position:relative; z-index:2;
  padding:160px 60px 60px;
  max-width:740px;
}
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-size:.7rem; font-weight:700;
  letter-spacing:.35em; text-transform:uppercase;
  color:var(--red);
  margin-bottom:22px;
  animation:slideUp .7s ease .1s both;
}
.hero-eyebrow::before { content:''; width:28px; height:1px; background:var(--red); }
.hero-title {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(4rem, 8vw, 7.5rem);
  line-height:.92;
  letter-spacing:.04em;
  margin-bottom:26px;
  animation:slideUp .7s ease .25s both;
}
.hero-title .accent { color:var(--red); }
.hero-title .outlined {
  -webkit-text-stroke:2px rgba(255,255,255,.25);
  color:transparent;
}
.hero-lead {
  max-width:520px;
  font-size:.95rem;
  font-weight:300;
  line-height:1.85;
  color:#fff;
  margin-bottom:42px;
  animation:slideUp .7s ease .4s both;
}
.hero-lead strong { color:var(--red); }
.hero-cta {
  display:flex; gap:14px; flex-wrap:wrap;
  animation:slideUp .7s ease .55s both;
}
.hero-stats {
  display:flex; gap:50px;
  margin-top:60px; padding-top:40px;
  border-top:1px solid rgba(255,255,255,.08);
  animation:slideUp .7s ease .7s both;
}
.stat-n {
  font-family:'Bebas Neue',sans-serif;
  font-size:3rem; line-height:1; color:#fff;
}
.stat-n span { color:var(--red); }
.stat-l {
  font-size:.68rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.4);
  margin-top:4px;
}
.hero-scroll {
  position:absolute; bottom:36px; right:60px;
  display:flex; flex-direction:column; align-items:center;
  gap:8px; opacity:.4;
}
.hero-scroll span {
  font-size:.6rem;
  letter-spacing:.25em;
  text-transform:uppercase;
  writing-mode:vertical-rl;
  color:rgba(255,255,255,.5);
}
.scroll-bar {
  width:1px; height:55px;
  background:linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation:pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { transform:scaleY(1);   opacity:.4; }
  50%     { transform:scaleY(1.2); opacity:.9; }
}
@keyframes slideUp {
  from { opacity:0; transform:translateY(35px); }
  to   { opacity:1; transform:translateY(0); }
}

.btn {
  display:inline-block;
  padding:15px 38px;
  font-size:.78rem; font-weight:700;
  letter-spacing:.2em; text-transform:uppercase;
  border-radius:2px;
  border:2px solid transparent;
  cursor:pointer;
  transition:all .3s ease;
}
.btn-red {
  background:var(--red);
  color:#fff;
  border-color:var(--red);
}
.btn-red:hover {
  background:var(--red-hot);
  border-color:var(--red-hot);
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(204,0,0,.35);
}
.btn-ghost {
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.3);
}
.btn-ghost:hover {
  border-color:#fff;
  background:rgba(255,255,255,.06);
  transform:translateY(-2px);
}
.btn-white {
  background:#fff;
  color:var(--red);
  padding:17px 50px;
  font-weight:800;
}
.btn-white:hover {
  background:#000;
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 14px 40px rgba(0,0,0,.4);
}

.ticker {
  background:var(--red);
  overflow:hidden;
  padding:13px 0;
}
.ticker-track {
  display:flex; white-space:nowrap;
  animation:tickerScroll 28s linear infinite;
}
.ticker-track span {
  font-family:'Bebas Neue',sans-serif;
  padding:0 36px;
  font-size:.95rem;
  letter-spacing:.28em;
  color:rgba(255,255,255,.9);
}
.ticker-track span::after {
  content:'\2605';
  margin-left:36px;
  font-size:.7rem;
}
@keyframes tickerScroll { to { transform:translateX(-50%); } }

.section { position:relative; padding:110px 60px; overflow:hidden; }
.section.dark   { background:var(--ink-1); }
.section.darker { background:var(--ink-2); }
.container { max-width:1240px; margin:0 auto; }

.watermark {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  font-family:'Bebas Neue',sans-serif;
  font-size:14vw;
  letter-spacing:.1em;
  color:rgba(255,255,255,.015);
  pointer-events:none;
  white-space:nowrap;
}

.sec-head { text-align:center; margin-bottom:65px; }
.eyebrow {
  display:inline-flex; align-items:center; gap:12px;
  font-size:.68rem; font-weight:700;
  letter-spacing:.35em; text-transform:uppercase;
  color:var(--red);
  margin-bottom:14px;
}
.sec-head .eyebrow::before,
.sec-head .eyebrow::after {
  content:''; width:22px; height:1px; background:var(--red);
}
.sec-title {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing:.04em;
  line-height:1;
  margin-bottom:16px;
}
.sec-title .accent { color:var(--red); }
.sec-sub {
  font-size:.9rem;
  font-weight:300;
  line-height:1.85;
  color:var(--paper-mute);
  max-width:520px;
  margin:0 auto;
}

.services-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2px;
}
.svc-card {
  position:relative;
  background:var(--ink-2);
  padding:44px 34px;
  overflow:hidden;
  transition:background .35s ease, transform .35s ease;
}
.svc-card::before {
  content:'';
  position:absolute; top:0; left:0;
  width:3px; height:0;
  background:var(--red);
  transition:height .4s ease;
}
.svc-card:hover { background:var(--ink-3); transform:translateY(-4px); }
.svc-card:hover::before { height:100%; }
.svc-num {
  position:absolute; top:18px; right:22px;
  font-family:'Bebas Neue',sans-serif;
  font-size:4.5rem;
  color:rgba(255,255,255,.03);
  line-height:1;
}
.svc-ico {
  display:inline-block;
  width:48px; height:48px;
  color:var(--red);
  margin-bottom:20px;
}
.svc-ico svg { width:100%; height:100%; }
.svc-card h3 {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.5rem;
  letter-spacing:.06em;
  margin-bottom:12px;
  transition:color .3s ease;
}
.svc-card:hover h3 { color:var(--red); }
.svc-card p {
  font-size:.85rem; font-weight:300;
  line-height:1.78;
  color:var(--paper-mute);
}
.svc-link {
  display:inline-flex; align-items:center; gap:7px;
  margin-top:22px;
  font-size:.73rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--red);
  transition:gap .3s ease;
}
.svc-link:hover { gap:14px; }
.svc-link svg { width:15px; height:15px; }

.about {
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:640px;
}
.about-photo { position:relative; overflow:hidden; }
.about-photo img {
  width:100%; height:100%;
  object-fit:cover;
  filter:brightness(.72) saturate(.8);
  transition:transform .8s ease, filter .4s ease;
}
.about-photo:hover img { transform:scale(1.04); filter:brightness(.88) saturate(1); }
.about-shade {
  position:absolute; inset:0;
  background:linear-gradient(to right, transparent, rgba(17,17,17,.5));
}
.about-badge {
  position:absolute; bottom:38px; left:38px;
  background:var(--red);
  padding:18px 26px;
  text-align:center;
}
.badge-num {
  font-family:'Bebas Neue',sans-serif;
  font-size:2.8rem; line-height:1;
  color:#fff;
}
.badge-lbl {
  font-size:.67rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
}
.about-body {
  background:var(--ink-2);
  padding:80px 65px;
  display:flex; flex-direction:column; justify-content:center;
}
.about-body .eyebrow { margin-bottom:14px; }
.about-body p {
  font-size:.9rem; font-weight:300;
  line-height:1.9;
  color:var(--paper-mute);
  margin-bottom:18px;
}
.features {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin:30px 0 40px;
}
.feat {
  display:flex; align-items:flex-start; gap:11px;
  font-size:.82rem; font-weight:600;
  color:rgba(255,255,255,.85);
  line-height:1.4;
}
.feat-ico {
  width:30px; height:30px;
  background:rgba(204,0,0,.1);
  border:1px solid rgba(204,0,0,.3);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--red);
  flex-shrink:0;
}
.feat-ico svg { width:14px; height:14px; }

.fleet-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2px;
}
.fleet-tile {
  position:relative;
  overflow:hidden;
  aspect-ratio:4/3;
  cursor:pointer;
}
.fleet-tile.tall {
  grid-row:span 2;
  aspect-ratio:auto;
}
.fleet-tile img {
  width:100%; height:100%;
  object-fit:cover;
  filter:brightness(.7) saturate(.75);
  transition:transform .6s ease, filter .4s ease;
}
.fleet-tile:hover img { transform:scale(1.06); filter:brightness(.9) saturate(1.1); }
.tile-shade {
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 55%);
}

.steps {
  display:flex; gap:0;
  max-width:1000px; margin:0 auto;
  position:relative;
}
.steps::before {
  content:'';
  position:absolute; top:37px; left:10%; right:10%;
  height:1px;
  background:linear-gradient(to right, transparent, var(--red), transparent);
}
.step {
  flex:1;
  text-align:center;
  padding:0 18px;
}
.step-circle {
  position:relative; z-index:1;
  width:74px; height:74px;
  margin:0 auto 22px;
  border:2px solid var(--red);
  border-radius:50%;
  background:var(--ink-1);
  display:flex; align-items:center; justify-content:center;
  transition:background .3s ease, box-shadow .3s ease;
}
.step:hover .step-circle {
  background:var(--red);
  box-shadow:0 0 28px rgba(204,0,0,.4);
}
.step-circle span {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.7rem;
  color:var(--red);
  transition:color .3s ease;
}
.step:hover .step-circle span { color:#fff; }
.step h4 {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.15rem;
  letter-spacing:.08em;
  margin-bottom:9px;
}
.step p {
  font-size:.82rem; font-weight:300;
  line-height:1.7;
  color:var(--paper-mute);
}

.gallery-grid {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-template-rows:repeat(2, 260px);
  gap:2px;
}
.g-cell {
  position:relative;
  overflow:hidden;
  cursor:pointer;
}
.g-cell.wide { grid-column:span 2; }
.g-cell img {
  width:100%; height:100%;
  object-fit:cover;
  filter:brightness(.7) saturate(.8);
  transition:transform .6s ease, filter .4s ease;
}
.g-cell:hover img { transform:scale(1.08); filter:brightness(.92) saturate(1.1); }
.g-shade {
  position:absolute; inset:0;
  background:linear-gradient(135deg, rgba(204,0,0,.25), transparent);
  opacity:0;
  transition:opacity .4s ease;
}
.g-cell:hover .g-shade { opacity:1; }
.g-cap {
  position:absolute; left:0; right:0; bottom:0;
  padding:18px 20px;
  background:linear-gradient(to top, rgba(0,0,0,.82), transparent);
  transform:translateY(100%);
  transition:transform .4s ease;
  font-size:.77rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase;
}
.g-cell:hover .g-cap { transform:translateY(0); }

.reviews-grid {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:2px;
}
.review {
  position:relative;
  background:var(--ink-3);
  padding:40px 32px;
  transition:transform .3s ease;
}
.review:hover { transform:translateY(-5px); }
.review::before {
  content:'';
  position:absolute; top:0; left:0; right:0;
  height:2px;
  background:var(--red);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .4s ease;
}
.review:hover::before { transform:scaleX(1); }
.stars {
  color:var(--gold);
  font-size:.88rem;
  letter-spacing:2px;
  margin-bottom:18px;
}
.review p {
  font-size:.89rem; font-style:italic; font-weight:300;
  line-height:1.88;
  color:var(--paper-mute);
  margin-bottom:26px;
}
.r-author { display:flex; align-items:center; gap:13px; }
.r-author img {
  width:44px; height:44px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(204,0,0,.4);
  filter:saturate(.6);
}
.r-name { font-size:.84rem; font-weight:700; }
.r-role {
  font-size:.7rem; letter-spacing:.1em;
  text-transform:uppercase;
  color:rgba(255,255,255,.35);
  margin-top:2px;
}

.cta-banner {
  position:relative;
  padding:100px 60px;
  text-align:center;
  background:var(--red);
  overflow:hidden;
}
.cta-bg {
  position:absolute; inset:0;
  background:
    linear-gradient(135deg, rgba(0,0,0,.45), transparent 50%),
    url('https://images.unsplash.com/photo-1593941707882-a5bba14938c7?w=1400&q=80') center/cover;
  mix-blend-mode:multiply;
}
.cta-inner { position:relative; z-index:1; }
.cta-inner h2 {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(2.8rem, 6vw, 5.5rem);
  letter-spacing:.05em;
  margin-bottom:14px;
}
.cta-inner p {
  font-size:.98rem;
  font-weight:300;
  color:rgba(255,255,255,.88);
  margin-bottom:38px;
}

.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  max-width:1240px;
  margin:0 auto;
}
.contact-info .eyebrow { margin-bottom:14px; }
.contact-lead {
  font-size:.9rem; font-weight:300;
  line-height:1.9;
  color:var(--paper-mute);
  margin:18px 0 40px;
}
.contact-list {
  list-style:none;
  display:flex; flex-direction:column;
  gap:24px;
}
.contact-list li {
  display:flex; align-items:flex-start; gap:16px;
}
.ci-ico {
  width:44px; height:44px;
  background:rgba(204,0,0,.1);
  border:1px solid rgba(204,0,0,.22);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--red);
  flex-shrink:0;
}
.ci-ico svg { width:18px; height:18px; }
.ci-lbl {
  font-size:.67rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,.32);
  margin-bottom:3px;
}
.ci-val { font-size:.9rem; font-weight:600; }

.booking-form {
  display:flex; flex-direction:column;
  gap:14px;
}
.row-2 {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field { display:flex; flex-direction:column; gap:7px; }
.field label {
  font-size:.67rem; font-weight:600;
  letter-spacing:.15em; text-transform:uppercase;
  color:rgba(255,255,255,.4);
}
.field input, .field select, .field textarea {
  background:var(--ink-2);
  border:1px solid rgba(255,255,255,.07);
  color:#fff;
  padding:13px 16px;
  font-family:'Montserrat',sans-serif;
  font-size:.86rem;
  outline:none;
  resize:none;
  transition:border-color .3s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--red); }
.field select option { background:var(--ink-2); }
.field textarea { min-height:115px; }
.btn-submit {
  background:var(--red);
  color:#fff;
  padding:15px;
  font-family:'Montserrat',sans-serif;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  border:none;
  cursor:pointer;
  width:100%;
  transition:background .3s ease;
}
.btn-submit:hover { background:var(--red-hot); }
.btn-submit.is-success { background:#1a7a1a; }

.site-foot { background:#030303; }
.news-strip {
  background:linear-gradient(to right, #0e0000, #0a0a0a);
  border-bottom:1px solid rgba(204,0,0,.18);
  padding:38px 60px;
}
.news-inner {
  max-width:1240px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  gap:30px; flex-wrap:wrap;
}
.news-eye {
  font-size:.67rem; font-weight:700;
  letter-spacing:.32em; text-transform:uppercase;
  color:var(--red);
  margin-bottom:5px;
}
.news-title {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.55rem;
  letter-spacing:.06em;
}
.news-form {
  display:flex;
  border:1px solid rgba(204,0,0,.28);
  overflow:hidden;
}
.news-form input {
  background:rgba(255,255,255,.04);
  border:none; outline:none;
  padding:13px 20px;
  font-family:'Montserrat',sans-serif;
  font-size:.84rem;
  color:#fff;
  width:260px;
}
.news-form input::placeholder { color:rgba(255,255,255,.28); }
.news-form button {
  background:var(--red);
  border:none;
  padding:13px 26px;
  font-family:'Montserrat',sans-serif;
  font-size:.76rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:#fff;
  cursor:pointer;
  transition:background .3s ease;
}
.news-form button:hover { background:var(--red-hot); }

.foot-main {
  max-width:1240px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.8fr 1fr 1fr 1.4fr;
  gap:48px;
  padding:65px 60px 48px;
}
.foot-logo img {
  height:60px;
  filter:drop-shadow(0 0 18px rgba(204,0,0,.3));
}
.foot-tag {
  font-size:.88rem; font-style:italic;
  color:var(--red);
  margin:14px 0 13px;
}
.foot-desc {
  font-size:.83rem; font-weight:300;
  line-height:1.85;
  color:rgba(255,255,255,.33);
  margin-bottom:25px;
}
.badges {
  display:flex; flex-direction:column;
  gap:9px;
  margin-bottom:24px;
}
.badges div {
  display:flex; align-items:center; gap:9px;
  font-size:.77rem;
  color:rgba(255,255,255,.45);
}
.badges svg { width:15px; height:15px; color:var(--red); }
.socials { display:flex; gap:8px; }
.socials a {
  width:38px; height:38px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:4px;
  display:flex; align-items:center; justify-content:center;
  color:rgba(255,255,255,.4);
  transition:all .3s ease;
}
.socials svg { width:15px; height:15px; }
.socials a:hover {
  border-color:var(--red);
  color:var(--red);
  background:rgba(204,0,0,.08);
  transform:translateY(-2px);
}
.foot-col h4 {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.1rem;
  letter-spacing:.12em;
  margin-bottom:20px;
  padding-bottom:11px;
  border-bottom:1px solid rgba(204,0,0,.22);
}
.foot-links {
  list-style:none;
  display:flex; flex-direction:column;
  gap:10px;
}
.foot-links a {
  display:flex; align-items:center; gap:7px;
  font-size:.82rem;
  color:rgba(255,255,255,.38);
  transition:all .3s ease;
}
.foot-links a::before { content:'\203A'; color:var(--red); font-size:.95rem; }
.foot-links a:hover { color:#fff; padding-left:5px; }

.foot-contact {
  list-style:none;
  display:flex; flex-direction:column;
  gap:18px;
  margin-bottom:25px;
}
.foot-contact li { display:flex; align-items:flex-start; gap:12px; }
.fc-ico {
  width:36px; height:36px;
  background:rgba(204,0,0,.1);
  border:1px solid rgba(204,0,0,.2);
  border-radius:3px;
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--red);
  flex-shrink:0;
}
.fc-ico svg { width:15px; height:15px; }
.fc-lbl {
  font-size:.64rem;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:rgba(255,255,255,.28);
  margin-bottom:2px;
}
.fc-val {
  font-size:.83rem; font-weight:600;
  color:#fff;
  transition:color .3s ease;
}
a.fc-val:hover { color:var(--red); }
.foot-cta {
  display:inline-flex; align-items:center; gap:9px;
  padding:12px 24px;
  font-size:.76rem;
  letter-spacing:.17em;
}
.foot-cta svg { width:14px; height:14px; }

.city-strip {
  position:relative;
  height:82px;
  background:#020202;
  border-top:1px solid rgba(255,255,255,.04);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.city-skyline {
  position:absolute; bottom:0;
  width:100%; height:72px;
  fill:rgba(255,255,255,.055);
}
.city-text { position:relative; z-index:1; text-align:center; }
.city-text span {
  display:block;
  font-size:.62rem;
  letter-spacing:.3em;
  text-transform:uppercase;
  color:rgba(255,255,255,.25);
}
.city-text strong {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.25rem;
  letter-spacing:.1em;
  color:rgba(255,255,255,.6);
}

.foot-bottom {
  max-width:1240px;
  margin:0 auto;
  padding:20px 60px;
  border-top:1px solid rgba(255,255,255,.04);
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:10px;
}
.copy {
  font-size:.74rem;
  color:rgba(255,255,255,.2);
  letter-spacing:.04em;
}
.copy span { color:var(--red); }
.legal { display:flex; align-items:center; gap:12px; }
.legal a {
  font-size:.73rem;
  color:rgba(255,255,255,.22);
  transition:color .3s ease;
}
.legal a:hover { color:#fff; }
.legal i {
  color:rgba(255,255,255,.1);
  font-size:.7rem;
  font-style:normal;
}

.reveal {
  opacity:0;
  transform:translateY(28px);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity:1;
  transform:translateY(0);
}

@media (max-width:1024px) {
  .site-nav { padding:16px 24px; }
  .brand-img { height:64px; }
  .nav-menu { display:none; }
  .burger { display:flex; }

  .hero { min-height:580px; }
  .hero-inner { padding:140px 28px 70px; max-width:100%; }
  .hero-title { font-size:clamp(3.2rem, 9vw, 5.5rem); }
  .hero-lead { font-size:.92rem; margin-bottom:36px; }
  .hero-stats { gap:32px; flex-wrap:wrap; margin-top:48px; padding-top:30px; }
  .stat-n { font-size:2.6rem; }
  .hero-scroll { right:24px; bottom:24px; }

  .section { padding:80px 28px; }
  .sec-head { margin-bottom:50px; }
  .watermark { font-size:18vw; }

  .services-grid { grid-template-columns:1fr 1fr; }

  .about { grid-template-columns:1fr; }
  .about-photo { min-height:380px; }
  .about-body { padding:55px 28px; }

  .fleet-grid { grid-template-columns:1fr 1fr; }
  .fleet-tile.tall { grid-row:span 1; aspect-ratio:4/3; }

  .gallery-grid {
    grid-template-columns:1fr 1fr;
    grid-template-rows:repeat(3, 220px);
  }
  .g-cell.wide { grid-column:span 1; }

  .reviews-grid { grid-template-columns:1fr; gap:14px; max-width:640px; margin:0 auto; }

  .cta-banner { padding:80px 28px; }

  .contact-grid { grid-template-columns:1fr; gap:48px; padding:0 4px; }

  .news-strip { padding:28px; }
  .news-inner { flex-direction:column; align-items:flex-start; gap:18px; }
  .news-form { width:100%; }
  .news-form input { flex:1; width:auto; min-width:0; }

  .foot-main {
    grid-template-columns:1fr 1fr;
    gap:36px;
    padding:50px 28px 38px;
  }
  .foot-bottom { padding:18px 28px; flex-direction:column; text-align:center; gap:8px; }

  .steps { flex-direction:column; align-items:center; gap:36px; }
  .steps::before { display:none; }
  .step { max-width:340px; }

  .ticker-track { animation-duration:22s; }
  .ticker-track span { font-size:.85rem; padding:0 26px; }
  .ticker-track span::after { margin-left:26px; }
}

@media (max-width:768px) {
  .site-nav { padding:12px 18px; }
  .brand-img { height:56px; }

  .hero { min-height:540px; height:auto; padding:120px 0 80px; }
  .hero-inner { padding:0 22px; }
  .hero-title { font-size:clamp(2.8rem, 11vw, 4.2rem); letter-spacing:.03em; }
  .hero-eyebrow { font-size:.6rem; letter-spacing:.28em; margin-bottom:18px; }
  .hero-eyebrow::before { width:20px; }
  .hero-lead { font-size:.86rem; line-height:1.7; margin-bottom:30px; }
  .hero-cta { flex-direction:column; align-items:stretch; gap:10px; }
  .hero-cta .btn { width:100%; text-align:center; padding:14px 28px; }
  .hero-stats { gap:18px; margin-top:40px; padding-top:26px; }
  .hero-stats > div { flex:1; min-width:90px; }
  .stat-n { font-size:2.2rem; }
  .stat-l { font-size:.6rem; letter-spacing:.14em; }
  .hero-scroll { display:none; }

  .section { padding:64px 20px; }
  .sec-title { font-size:clamp(2rem, 7vw, 2.6rem); }
  .sec-sub { font-size:.86rem; padding:0 4px; }
  .sec-head { margin-bottom:40px; }
  .eyebrow { font-size:.62rem; letter-spacing:.28em; }
  .watermark { font-size:22vw; }

  .services-grid { grid-template-columns:1fr; gap:2px; }
  .svc-card { padding:36px 26px; }
  .svc-num { font-size:3.5rem; }

  .about-photo { min-height:320px; }
  .about-body { padding:48px 22px; }
  .features { grid-template-columns:1fr 1fr; gap:12px; }
  .about-badge { bottom:24px; left:24px; padding:14px 20px; }
  .badge-num { font-size:2.2rem; }

  .fleet-grid { grid-template-columns:1fr; }
  .fleet-tile { aspect-ratio:16/10; }

  .gallery-grid {
    grid-template-columns:1fr;
    grid-template-rows:auto;
    gap:2px;
  }
  .g-cell { aspect-ratio:16/10; height:auto; }
  .g-cap { transform:translateY(0); }

  .step h4 { font-size:1.05rem; }
  .step p { font-size:.8rem; }

  .review { padding:32px 24px; }
  .review p { font-size:.85rem; }

  .cta-banner { padding:64px 22px; }
  .cta-inner h2 { font-size:clamp(2rem, 9vw, 2.8rem); }
  .cta-inner p { font-size:.88rem; }

  .booking-form { gap:12px; }
  .row-2 { grid-template-columns:1fr; gap:12px; }
  .field input, .field select, .field textarea { font-size:.9rem; padding:12px 14px; }
  .field label { font-size:.62rem; letter-spacing:.12em; }

  .contact-list li { gap:12px; }
  .ci-ico { width:38px; height:38px; }
  .ci-val { font-size:.85rem; }

  .foot-main {
    grid-template-columns:1fr;
    gap:32px;
    padding:44px 22px 30px;
  }
  .foot-col h4 { font-size:1rem; margin-bottom:16px; padding-bottom:9px; }
  .foot-logo img { height:52px; }
  .foot-desc { font-size:.8rem; }
  .badges div { font-size:.74rem; }
  .news-strip { padding:24px 22px; }
  .news-title { font-size:1.3rem; }
  .news-form { flex-direction:column; border:none; gap:8px; }
  .news-form input { width:100%; border:1px solid rgba(204,0,0,.28); padding:12px 16px; }
  .news-form button { width:100%; padding:12px 18px; }

  .city-strip { height:70px; }
  .city-text strong { font-size:1.05rem; }
  .city-text span { font-size:.56rem; letter-spacing:.22em; }

  .foot-bottom { padding:16px 22px; }
  .copy { font-size:.7rem; }
  .legal a { font-size:.7rem; }

  .ticker { padding:10px 0; }
  .ticker-track { animation-duration:18s; }
  .ticker-track span { font-size:.78rem; padding:0 20px; letter-spacing:.22em; }
  .ticker-track span::after { margin-left:20px; }
}

@media (max-width:480px) {
  .site-nav { padding:10px 14px; }
  .brand-img { height:46px; }
  .drawer { width:88vw; max-width:88vw; padding:70px 26px 30px; }

  .hero { padding:100px 0 70px; min-height:auto; }
  .hero-inner { padding:0 18px; }
  .hero-title { font-size:clamp(2.4rem, 13vw, 3.2rem); line-height:1; }
  .hero-lead { font-size:.84rem; }
  .hero-stats { flex-direction:column; gap:14px; }
  .hero-stats > div { width:100%; text-align:left; }

  .section { padding:54px 16px; }
  .sec-title { font-size:1.85rem; }

  .svc-card { padding:32px 22px; }
  .svc-card h3 { font-size:1.3rem; }
  .svc-card p { font-size:.82rem; }

  .features { grid-template-columns:1fr; gap:10px; }
  .about-body { padding:40px 18px; }
  .about-photo { min-height:260px; }

  .cta-inner h2 { font-size:1.9rem; }
  .btn { padding:13px 28px; font-size:.74rem; letter-spacing:.16em; }
  .btn-white { padding:14px 32px; }

  .contact-grid { gap:38px; }

  .city-text strong { font-size:.95rem; letter-spacing:.06em; }

  .legal { flex-wrap:wrap; justify-content:center; }
}

@media (hover:none), (pointer:coarse) {
  #cursorDot, #cursorRing { display:none !important; }
  html, body { cursor:auto; }
}

@media (prefers-reduced-motion:reduce) {
  *, *::before, *::after {
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.01ms !important;
    scroll-behavior:auto !important;
  }
  .hero-img-b { opacity:0; }
}
