* {
  box-sizing: border-box;
}

:root {
  --bg: #090909;
  --panel: #121212;
  --panel-2: #1a1a1a;
  --text: #ffffff;
  --muted: #b7b7b7;
  --orange: #ff6a00;
  --orange-dark: #c94f00;
  --line: rgba(255,255,255,.11);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255,106,0,.12), transparent 28%),
    linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  z-index: 50;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 0 5vw;
  background: rgba(9,9,9,.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  font-family: "Russo One", sans-serif;
  font-style: italic;
  transform: skew(-7deg);
}

.logo span {
  color: var(--orange);
  font-size: 25px;
  letter-spacing: 1px;
}

.logo strong {
  color: white;
  font-size: 25px;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a:hover,
.header-phone:hover {
  color: var(--orange);
}

.header-phone {
  justify-self: end;
  font-weight: 800;
}

.menu-btn {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding: 80px 5vw 70px;
  overflow: hidden;
}

.hero-stripes {
  position: absolute;
  right: -100px;
  top: 20%;
  width: 420px;
  height: 120px;
  background: repeating-linear-gradient(
    -45deg,
    var(--orange) 0 24px,
    #101010 24px 48px
  );
  opacity: .16;
  transform: rotate(-8deg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -15% 0;
  height: 35%;
  background:
    linear-gradient(transparent 0 48%, rgba(255,106,0,.08) 49% 51%, transparent 52%),
    linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,.035) 49% 51%, transparent 52%);
  background-size: 100% 42px, 42px 100%;
  transform: perspective(600px) rotateX(62deg);
  transform-origin: bottom;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 790px;
}

.eyebrow {
  color: var(--orange);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: "Russo One", sans-serif;
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(52px, 6.7vw, 104px);
  line-height: .9;
  letter-spacing: -3px;
  text-transform: uppercase;
  text-shadow: 0 5px 0 #000;
}

h1 span, h2 span {
  color: var(--orange);
}

.hero-content > p {
  max-width: 650px;
  color: #d0d0d0;
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .5px;
  clip-path: polygon(8px 0,100% 0,100% calc(100% - 8px),calc(100% - 8px) 100%,0 100%,0 8px);
  transition: .25s ease;
}

.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.btn-primary {
  color: #090909;
  background: var(--orange);
  box-shadow: 0 0 26px rgba(255,106,0,.25);
}

.btn-secondary {
  color: white;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.04);
}

.hero-stats {
  display: flex;
  gap: 42px;
  margin-top: 48px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: "Russo One", sans-serif;
  font-size: 28px;
  color: var(--orange);
}

.hero-stats span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.car-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.orange-ring {
  position: absolute;
  width: min(36vw, 500px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid var(--orange);
  box-shadow:
    0 0 18px rgba(255,106,0,.65),
    0 0 80px rgba(255,106,0,.2);
}

.car {
  position: relative;
  width: min(42vw, 620px);
  height: 260px;
  transform: rotate(-4deg);
  filter: drop-shadow(0 22px 30px rgba(0,0,0,.8));
  z-index: 2;
}

.car-body {
  position: absolute;
  left: 4%;
  right: 2%;
  bottom: 55px;
  height: 118px;
  border-radius: 62px 90px 24px 22px;
  background: linear-gradient(150deg, #555 0%, #171717 38%, #050505 78%);
  border: 2px solid rgba(255,255,255,.24);
  box-shadow: inset 0 -20px 30px rgba(0,0,0,.9);
}

.car-roof {
  position: absolute;
  width: 56%;
  height: 110px;
  left: 25%;
  bottom: 144px;
  border-radius: 85px 120px 0 0;
  transform: skewX(-12deg);
  background: linear-gradient(160deg, #5b5b5b, #151515 65%);
  border: 2px solid rgba(255,255,255,.22);
}

.car-window {
  position: absolute;
  width: 42%;
  height: 72px;
  left: 33%;
  bottom: 160px;
  border-radius: 70px 92px 4px 4px;
  transform: skewX(-12deg);
  background: linear-gradient(145deg, rgba(255,255,255,.25), rgba(10,10,10,.95) 60%);
  border: 1px solid rgba(255,255,255,.35);
}

.wheel {
  position: absolute;
  bottom: 15px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #aaa 0 8%, #1b1b1b 9% 29%, #777 30% 32%, #050505 33% 60%, #202020 61%);
  border: 5px solid #030303;
  box-shadow: 0 0 16px rgba(255,106,0,.22);
  z-index: 3;
}

.wheel-left { left: 15%; }
.wheel-right { right: 11%; }

.headlight {
  position: absolute;
  right: 3%;
  bottom: 112px;
  width: 74px;
  height: 25px;
  border-radius: 100% 15% 80% 20%;
  background: #fff;
  box-shadow: 0 0 18px #fff, 30px 0 70px rgba(255,255,255,.45);
  z-index: 4;
}

.orange-line {
  position: absolute;
  left: 11%;
  right: 8%;
  bottom: 88px;
  height: 4px;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255,106,0,.8);
  z-index: 4;
}

.floor-light {
  position: absolute;
  bottom: 90px;
  width: 70%;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(22px);
  opacity: .7;
}

.ticker {
  overflow: hidden;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #101010;
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 28px;
  align-items: center;
  animation: ticker 20s linear infinite;
  font-family: "Russo One", sans-serif;
  font-size: 20px;
}

.ticker-track b {
  color: var(--orange);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: 120px 5vw;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading h2,
.about-content h2,
.contact-info h2,
.cta h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 72px);
  line-height: .95;
}

.section-heading p,
.about-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 280px;
  padding: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  transition: .25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -50px auto;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(255,106,0,.15);
  transform: rotate(45deg);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255,106,0,.6);
}

.service-card.featured,
.service-card.accent {
  background: linear-gradient(145deg, rgba(255,106,0,.23), rgba(255,255,255,.015));
}

.icon {
  color: var(--orange);
  font-family: "Russo One", sans-serif;
  font-size: 18px;
  margin-bottom: 50px;
}

.service-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.6;
}

.service-card a {
  display: inline-block;
  margin-top: 14px;
  font-weight: 800;
  color: var(--orange);
}

.about {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 7vw;
  align-items: center;
  padding: 80px 5vw 120px;
}

.about-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255,255,255,.035) 49% 51%, transparent 52%),
    linear-gradient(45deg, #161616, #080808);
  background-size: 46px 46px, auto;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 80px #000;
}

.garage-sign {
  font-family: "Russo One", sans-serif;
  font-size: clamp(58px, 8vw, 110px);
  line-height: .78;
  text-align: center;
  transform: skew(-8deg) rotate(-4deg);
  color: white;
  text-shadow: 0 8px 0 #000;
}

.garage-sign span {
  color: var(--orange);
}

.bolt {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ccc, #333 65%);
}
.bolt-1 { top: 20px; left: 20px; }
.bolt-2 { top: 20px; right: 20px; }
.bolt-3 { bottom: 20px; left: 20px; }
.bolt-4 { bottom: 20px; right: 20px; }

.about-content ul {
  padding: 0;
  margin: 28px 0 34px;
  list-style: none;
}

.about-content li {
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.about-content li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.works {
  background: #0b0b0b;
}

.works-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr .75fr;
  gap: 18px;
}

.work-card {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background-color: #161616;
}

.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: .35s ease;
}

.work-1::before {
  background:
    radial-gradient(circle at 32% 48%, transparent 0 12%, #111 13% 19%, transparent 20%),
    linear-gradient(135deg, rgba(255,106,0,.75), rgba(8,8,8,.2)),
    repeating-linear-gradient(45deg, #292929 0 14px, #131313 14px 28px);
}

.work-2::before {
  background:
    radial-gradient(circle at 50% 45%, #4a4a4a 0 12%, #0a0a0a 13% 18%, transparent 19%),
    linear-gradient(145deg, rgba(255,106,0,.45), rgba(8,8,8,.3)),
    repeating-radial-gradient(circle at 50% 50%, #222 0 10px, #111 11px 18px);
}

.work-3::before {
  background:
    linear-gradient(15deg, transparent 0 38%, rgba(255,255,255,.22) 39% 42%, transparent 43%),
    radial-gradient(circle at 45% 50%, var(--orange), transparent 12%),
    linear-gradient(145deg, rgba(255,106,0,.55), rgba(8,8,8,.45));
}

.work-card:hover::before {
  transform: scale(1.06);
  filter: saturate(1.15);
}

.work-card span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 12px 16px;
  background: rgba(8,8,8,.86);
  border-left: 3px solid var(--orange);
  font-weight: 800;
  text-transform: uppercase;
}

.cta {
  margin: 90px 5vw;
  padding: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  background:
    repeating-linear-gradient(-45deg, rgba(255,106,0,.12) 0 18px, transparent 18px 36px),
    #151515;
  border: 1px solid rgba(255,106,0,.35);
}

.cta h2 {
  margin-bottom: 0;
}

.contacts {
  padding: 100px 5vw;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 8vw;
}

.contact-list {
  margin-top: 40px;
}

.contact-list div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list small {
  display: block;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 7px;
}

.contact-list a,
.contact-list p {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  color: var(--orange);
  font-weight: 800;
}

.contact-form {
  padding: 36px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.contact-form h3 {
  font-size: 30px;
}

.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  color: var(--text);
  background: #080808;
  border: 1px solid rgba(255,255,255,.12);
  outline: none;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,106,0,.08);
}

.form-note {
  color: var(--muted);
  font-size: 12px;
}

footer {
  min-height: 120px;
  padding: 30px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-logo {
  color: var(--text);
}

@media (max-width: 980px) {
  .header {
    grid-template-columns: 1fr auto;
  }

  .header-phone {
    display: none;
  }

  .menu-btn {
    display: block;
    justify-self: end;
    border: 1px solid var(--line);
    background: transparent;
    color: white;
    font-size: 24px;
    padding: 8px 12px;
  }

  .nav {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    padding: 24px 5vw;
    background: #0b0b0b;
    flex-direction: column;
  }

  .nav.open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 60px;
  }

  .car-stage {
    min-height: 420px;
  }

  .car {
    width: min(82vw, 620px);
  }

  .orange-ring {
    width: min(72vw, 500px);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about,
  .contacts {
    grid-template-columns: 1fr;
  }

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

  .work-card {
    min-height: 300px;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .header {
    min-height: 70px;
  }

  h1 {
    font-size: 45px;
    letter-spacing: -1px;
  }

  .hero {
    min-height: auto;
    padding: 55px 20px 35px;
  }

  .hero-content > p {
    font-size: 16px;
  }

  .hero-stats {
    gap: 16px;
    justify-content: space-between;
  }

  .hero-stats strong {
    font-size: 21px;
  }

  .hero-stats span {
    font-size: 10px;
  }

  .car-stage {
    min-height: 330px;
  }

  .car {
    width: 92vw;
    transform: scale(.82) rotate(-4deg);
  }

  .section,
  .contacts {
    padding: 78px 20px;
  }

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

  .about {
    padding: 20px 20px 80px;
  }

  .about-visual {
    min-height: 360px;
  }

  .works-grid {
    gap: 12px;
  }

  .cta {
    margin: 60px 20px;
    padding: 32px 24px;
  }

  .contact-form {
    padding: 24px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
}
