/* ---------- Tokens ---------- */
:root {
  --black: #0a0a0a;
  --black-soft: #131313;
  --panel: #17181a;
  --white: #f5f5f3;
  --grey: #9a9a9a;
  --grey-dim: #5c5c5c;
  --red: #e0111b;
  --red-dim: #a10d15;
  --yellow: #f5c400;
  --border: rgba(245,245,243,0.1);
  --ff-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --ff-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --ff-mono: "JetBrains Mono", "Courier New", monospace;
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--yellow);
}

h1, h2, h3, .display {
  font-family: var(--ff-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.96;
  letter-spacing: 0.005em;
}

.section-title {
  font-size: clamp(34px, 5.5vw, 64px);
  margin-bottom: 18px;
}
.section-sub {
  color: var(--grey);
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
}
.section-head {
  margin-bottom: 56px;
}
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head.center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

section {
  position: relative;
  padding: clamp(70px, 12vw, 140px) 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 68%, 93% 100%, 0 100%);
}
.btn-primary:hover { background: #ff1622; }
.btn-outline {
  border-color: #333335;
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { border-color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--black);
  clip-path: polygon(0 0, 100% 0, 100% 68%, 93% 100%, 0 100%);
}
.btn-light:hover { background: var(--red); color: var(--white); }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--black-soft);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--ff-mono);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-dim);
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}
.marquee-track span i {
  color: var(--red);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  border-color: var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--red);
  transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-actions .phone-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; color: var(--white);
}
.burger {
  display: none;
  width: 34px; height: 26px;
  position: relative;
  background: none; border: none;
}
.burger span {
  position: absolute; left: 0; right: 0; height: 2px; background: var(--white);
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.burger span:nth-child(1){ top: 0; }
.burger span:nth-child(2){ top: 12px; }
.burger span:nth-child(3){ top: 24px; }
.burger.open span:nth-child(1){ top: 12px; transform: rotate(45deg); }
.burger.open span:nth-child(2){ opacity: 0; }
.burger.open span:nth-child(3){ top: 12px; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 450;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform .4s ease;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 32px;
  text-transform: uppercase;
  color: var(--white);
}
.mobile-nav .btn { margin-top: 10px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10% 0 0 0;
  height: 120%;
  width: 100%;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(45%) brightness(0.4);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.75) 55%, var(--black) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: min(46vw, 520px);
  height: min(46vw, 520px);
  background: repeating-linear-gradient(135deg, rgba(245,196,0,0.07) 0 14px, transparent 14px 28px);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.hero-content h1 {
  font-size: clamp(48px, 9vw, 118px);
  margin-bottom: 24px;
}
.hero-content h1 .accent { color: var(--red); }
.hero-content p {
  color: var(--grey);
  font-size: clamp(15px, 1.6vw, 19px);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats {
  display: flex;
  gap: clamp(24px, 5vw, 56px);
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.hero-stats .stat-num {
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--white);
}
.hero-stats .stat-num .red { color: var(--red); }
.hero-stats .stat-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--grey);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--red), transparent);
  animation: scrollcue 1.8s ease infinite;
}
@keyframes scrollcue {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--panel);
  border: 1.5px solid #29292a;
  transition: border-color .3s ease;
}
.service-card:hover { border-color: var(--red); }
.service-card::after {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
  z-index: 3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease, filter .5s ease;
  filter: grayscale(30%) brightness(0.75);
}
.service-card:hover img { transform: scale(1.08); filter: grayscale(0%) brightness(0.85); }
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.1) 0%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
}
.service-card-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px;
}
.service-num {
  font-family: var(--ff-mono);
  font-weight: 500;
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.1;
}
.service-card p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .45s ease, opacity .35s ease, margin-top .35s ease;
}
.service-card:hover p {
  max-height: 120px;
  opacity: 1;
  margin-top: 4px;
}
.service-tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(245,196,0,0.28);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 12px;
}

/* ---------- Why us ---------- */
.why-us {
  background: var(--black-soft);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.why-item {
  background: var(--black-soft);
  padding: 36px 28px;
}
.why-item .why-index {
  font-family: var(--ff-mono);
  font-weight: 500;
  color: var(--yellow);
  font-size: 13px;
  margin-bottom: 18px;
}
.why-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: none;
  font-family: var(--ff-body);
  font-weight: 800;
}
.why-item p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.6;
}

/* ---------- About / parallax split ---------- */
.about {
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-media img {
  width: 100%; height: 130%; object-fit: cover;
  position: relative;
  filter: grayscale(20%);
}
.about-media .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--red);
  padding: 16px 22px;
  border-radius: 14px;
  z-index: 2;
}
.about-media .badge .n { font-family: var(--ff-display); font-size: 30px; }
.about-media .badge .l { font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: 0.05em; text-transform: uppercase; }
.about-text p {
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 20px;
  font-size: 15.5px;
}
.about-list { margin: 28px 0; display: grid; gap: 14px; }
.about-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px;
  color: var(--white);
}
.about-list li .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
}

/* ---------- Gallery strip ---------- */
.gallery-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip img {
  height: 340px;
  width: auto;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(25%);
  transition: filter .3s ease;
}
.gallery-strip img:hover { filter: grayscale(0%); }

/* ---------- Testimonials ---------- */
.testimonials {
  position: relative;
}
.testimonials-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.testimonials-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(70%) brightness(0.22);
}
.testimonials .container { position: relative; z-index: 1; }
.t-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.t-card {
  background: rgba(23,24,26,0.85);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px;
  backdrop-filter: blur(6px);
}
.t-stars { color: var(--red); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.t-quote { font-size: 15.5px; line-height: 1.7; color: var(--white); margin-bottom: 22px; }
.t-name { font-weight: 800; font-size: 14px; }
.t-vehicle { font-size: 12.5px; color: var(--grey); margin-top: 2px; }

/* ---------- Booking ---------- */
.booking {
  background: var(--black-soft);
}
.booking-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}
.booking-side {
  background: var(--red);
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.booking-side h2 { font-size: clamp(30px, 3.5vw, 44px); margin-bottom: 18px; }
.booking-side p { font-size: 14.5px; opacity: 0.92; line-height: 1.6; margin-bottom: 30px; }
.booking-side .b-info { display: grid; gap: 16px; }
.booking-side .b-info a, .booking-side .b-info span {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600;
}
.booking-form {
  background: var(--panel);
  padding: 48px 44px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--black-soft);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 16px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--red);
}
.field textarea { resize: vertical; min-height: 90px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9a9a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-msg {
  margin-top: 16px;
  font-size: 13.5px;
  display: none;
  padding: 12px 16px;
  border-radius: 10px;
}
.form-msg.show { display: block; }
.form-msg.success { background: rgba(224,17,27,0.12); border: 1px solid var(--red); color: var(--white); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.contact-cards { display: grid; gap: 16px; align-content: start; }
.c-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--panel);
}
.c-card .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.c-card h4 { font-family: var(--ff-body); font-weight: 800; font-size: 14.5px; margin-bottom: 4px; text-transform: none; }
.c-card p, .c-card a { color: var(--grey); font-size: 13.5px; line-height: 1.6; }
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(1) invert(0.92) contrast(0.9); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 60px 0 26px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-top img { height: 44px; margin-bottom: 16px; }
.footer-top p { color: var(--grey); font-size: 13.5px; max-width: 320px; line-height: 1.6; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 {
  font-family: var(--ff-mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 13.5px;
  color: var(--white);
  margin-bottom: 10px;
  opacity: 0.85;
}
.footer-col a:hover { color: var(--red); opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--grey-dim);
  font-size: 12.5px;
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover { background: var(--red); border-color: var(--red); }

/* ---------- Reveal animation base ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s cubic-bezier(.16,.84,.44,1), transform .8s cubic-bezier(.16,.84,.44,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { aspect-ratio: 16/10; }
  .t-grid { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .header-actions .phone-link span { display: none; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .booking-side, .booking-form { padding: 34px 24px; }
  .hero { min-height: auto; padding-bottom: 90px; }
  .scroll-cue { display: none; }
}
