:root {
  --red: #d70b22;
  --red-dark: #a90417;
  --black: #020202;
  --charcoal: #0b0b0d;
  --ink: #141414;
  --muted: #a7a7a7;
  --line: rgba(255, 255, 255, 0.22);
  --paper: #f3f3f1;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: #fff;
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

img,
svg {
  display: block;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-anchor {
  scroll-margin-top: 92px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: start;
  gap: clamp(18px, 4vw, 58px);
  min-height: 94px;
  padding: 16px clamp(20px, 4vw, 56px) 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.76) 72%, rgba(0, 0, 0, 0));
}

.brand {
  width: 125px;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 46px);
  padding-top: 22px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}

.primary-nav a {
  position: relative;
  padding: 0 0 18px;
  color: #f2f2f2;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transition: width 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--red);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  width: 100%;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 30px;
  background: var(--red);
  clip-path: polygon(10% 0, 100% 0, 92% 100%, 0 100%);
  font-weight: 900;
  letter-spacing: 1px;
}

.header-call svg,
.btn svg,
address svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 430px) 1fr;
  align-items: center;
  min-height: 680px;
  padding: 150px clamp(22px, 4vw, 56px) 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 58%, rgba(215, 11, 34, 0.24), transparent 25%),
    linear-gradient(90deg, #030303 0%, #050505 36%, rgba(8, 8, 8, 0.8) 62%, #020202 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  content: "";
  background: linear-gradient(180deg, transparent, #050505 78%, #000);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.hero h1,
.section-kicker h2,
.section-heading h2,
.why h2,
.contact h2 {
  margin: 0;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 950;
}

.eyebrow {
  color: #e3e3e3;
  font-size: clamp(30px, 5vw, 51px);
  line-height: 0.9;
}

.hero h1 {
  max-width: 440px;
  margin-top: 12px;
  color: #f5f5f5;
  font-size: clamp(34px, 5.6vw, 60px);
  line-height: 0.9;
}

.hero h1 span,
.section-kicker em,
.section-heading span,
.why span,
.contact h2 span,
.hero-tag strong {
  color: var(--red);
}

.hero-tag {
  margin: 22px 0 0;
  color: #eeeeee;
  text-transform: uppercase;
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 900;
  letter-spacing: 2px;
}

.hero-tag::after {
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 16px;
  content: "";
  background: var(--red-dark);
}

.hero-text {
  max-width: 360px;
  margin: 25px 0 0;
  color: #efefef;
  font-size: 17px;
  line-height: 1.45;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 172px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.btn-primary {
  background: var(--red);
}

.btn-primary:hover {
  background: #f0182f;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.22);
}

.btn-outline:hover {
  border-color: #fff;
  background: #fff;
  color: #050505;
}

.hero-car {
  position: absolute;
  right: -24px;
  bottom: 26px;
  z-index: 1;
  width: min(72vw, 820px);
  height: 500px;
  background-image: url("/public/assets/crops/hero-car.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: saturate(1.08) contrast(1.05);
}

.gallery {
  position: relative;
  z-index: 3;
  padding: 12px clamp(16px, 4vw, 56px) 24px;
  background: #030303;
}

.section-kicker {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto 14px;
}

.section-kicker span {
  height: 1px;
  background: var(--line);
}

.section-kicker h2 {
  color: #f3f3f3;
  font-size: clamp(17px, 2.4vw, 24px);
  letter-spacing: 2px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.vehicle-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background: #090909;
}

.vehicle-card + .vehicle-card {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.card-image {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.96;
}

.card-auto {
  background-image: url("/public/assets/crops/auto.png");
}

.card-boat {
  background-image: url("/public/assets/crops/boat.png");
}

.card-motorcycle {
  background-image: url("/public/assets/crops/motorcycle.png");
  background-color: #030303;
  background-size: contain;
  background-position: center bottom;
}

.card-content {
  position: relative;
  z-index: 2;
  display: block;
  min-height: 260px;
  padding: 24px clamp(20px, 4vw, 42px);
}

.card-content::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 112px;
  content: "";
  background: linear-gradient(180deg, rgba(3, 3, 3, 0), #030303 36%, #030303 100%);
}

.card-content h3 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.motorcycle-card .card-content::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 96px;
  content: "";
  background: linear-gradient(180deg, #030303 0%, #030303 72%, rgba(3, 3, 3, 0));
}

.motorcycle-card .card-content h3 {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0 0 12px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  border-bottom: 2px solid var(--red);
  text-transform: uppercase;
  font-size: 22px;
  font-style: italic;
}

.card-content a {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 4vw, 42px);
  bottom: 24px;
  display: inline-flex;
  min-width: 172px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #fff;
  background: var(--red);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 0 6px var(--red);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.card-content a:hover {
  background: #f0182f;
  box-shadow: 0 0 0 6px #f0182f;
}

.services {
  padding: 28px clamp(18px, 5vw, 96px) 44px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0 2px, transparent 2px 9px),
    var(--paper);
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.34);
  color: #050505;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.9fr;
  gap: 34px;
  max-width: 1180px;
  margin: 26px auto 0;
}

.service-column {
  min-width: 0;
}

.marine-column,
.motorcycle-column {
  border-left: 1px solid rgba(0, 0, 0, 0.32);
  padding-left: 34px;
}

.service-column > h3 {
  position: relative;
  max-width: 330px;
  margin: 0 auto 24px;
  padding: 8px 18px;
  color: #fff;
  background: #050505;
  text-align: center;
  text-transform: uppercase;
  transform: skew(-10deg);
  font-size: 15px;
  letter-spacing: 2px;
}

.service-column > h3::before,
.service-column > h3::after {
  position: absolute;
  top: 50%;
  width: 118px;
  height: 1px;
  content: "";
  background: rgba(0, 0, 0, 0.32);
}

.service-column > h3::before {
  right: 100%;
}

.service-column > h3::after {
  left: 100%;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
}

.marine-column .service-list,
.motorcycle-column .service-list {
  grid-template-columns: 1fr;
}

.service-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
}

.icon-badge {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  color: transparent;
  background: var(--red);
}

.icon-badge::before {
  display: block;
  width: 25px;
  height: 25px;
  content: "";
  background: #fff;
  clip-path: polygon(50% 0, 88% 18%, 100% 58%, 72% 100%, 28% 100%, 0 58%, 12% 18%);
}

.service-item h4 {
  margin: 0 0 4px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.15;
}

.service-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.25;
}

.why {
  padding: 28px clamp(18px, 5vw, 96px) 36px;
  background: #030303;
  text-align: center;
}

.why h2 {
  font-size: clamp(22px, 3.4vw, 31px);
  letter-spacing: 2px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1110px;
  margin: 26px auto 0;
}

.why-grid article {
  display: grid;
  min-height: 110px;
  place-items: center;
  gap: 12px;
  padding: 0 24px;
}

.why-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.why-grid h3 {
  margin: 0;
  max-width: 150px;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 1.55;
}

.why-icon {
  position: relative;
  width: 52px;
  height: 52px;
  border: 3px solid var(--red);
}

.why-icon.shield {
  clip-path: polygon(50% 0, 90% 14%, 86% 68%, 50% 100%, 14% 68%, 10% 14%);
}

.why-icon.shield::after {
  position: absolute;
  inset: 14px 11px 18px 15px;
  content: "";
  border-right: 4px solid var(--red);
  border-bottom: 4px solid var(--red);
  transform: rotate(45deg);
}

.why-icon.car {
  width: 64px;
  height: 36px;
  margin-top: 8px;
  border-radius: 4px;
}

.why-icon.car::before {
  position: absolute;
  inset: -13px 11px auto 12px;
  height: 20px;
  content: "";
  border: 3px solid var(--red);
  border-bottom: 0;
  transform: skew(-18deg);
}

.why-icon.medal {
  border-radius: 50%;
}

.why-icon.medal::after,
.why-icon.thumbs::after {
  position: absolute;
  inset: 13px;
  content: "";
  border: 2px solid var(--red);
}

.why-icon.thumbs {
  width: 42px;
  height: 52px;
  border-radius: 4px;
  transform: rotate(-8deg);
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr 280px;
  gap: 28px;
  align-items: center;
  min-height: 178px;
  padding: 18px clamp(20px, 4vw, 56px);
  overflow: hidden;
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.contact::before {
  position: absolute;
  inset: 0 auto 0 225px;
  width: 28px;
  content: "";
  background: var(--red);
  transform: skew(-18deg);
}

.footer-logo {
  position: relative;
  z-index: 1;
  width: 145px;
  height: auto;
}

.contact-copy {
  position: relative;
  z-index: 1;
  text-align: center;
}

.contact h2 {
  font-size: clamp(20px, 3vw, 27px);
  letter-spacing: 1.5px;
}

.contact p {
  margin: 14px 0 18px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
}

address {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 36px;
  font-style: normal;
}

address a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

address svg {
  color: var(--red);
}

.footer-meta {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.footer-meta span {
  display: inline-block;
}

.footer-meta a {
  color: #fff;
  font-weight: 900;
}

.footer-meta a:hover {
  color: var(--red);
}

.contact-detail {
  position: absolute;
  right: 0;
  top: 0;
  width: min(34vw, 330px);
  height: 100%;
  background-image: url("/public/assets/crops/detailer.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.82;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 112px 1fr auto;
    min-height: 84px;
    padding-top: 12px;
  }

  .brand {
    width: 96px;
  }

  .primary-nav {
    gap: 18px;
    font-size: 12px;
  }

  .header-call {
    padding: 0 18px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 680px;
    padding-top: 126px;
  }

  .hero-car {
    right: -130px;
    bottom: 44px;
    width: 850px;
    opacity: 0.58;
  }

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

  .marine-column,
  .motorcycle-column {
    border-left: 0;
    padding-left: 0;
  }

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

  .why-grid article {
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .contact {
    grid-template-columns: 120px 1fr;
    padding-right: 24px;
  }

  .contact-detail {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 104px 1fr auto;
    align-items: center;
    min-height: 72px;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.94);
  }

  .brand {
    width: 76px;
  }

  .menu-toggle {
    display: grid;
    grid-column: 3;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 4px;
    color: #fff;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 20px;
    height: 2px;
    background: currentColor;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.96);
    transform: translateY(-130%);
    transition: transform 180ms ease;
  }

  .nav-open .primary-nav {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 16px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .primary-nav a::after {
    display: none;
  }

  .header-call {
    grid-column: 2;
    justify-self: end;
    min-height: 40px;
    padding: 0 18px;
    clip-path: none;
  }

  .hero {
    min-height: 700px;
    padding: 112px 18px 36px;
  }

  .hero-copy {
    max-width: 430px;
  }

  .hero-car {
    right: -230px;
    bottom: -16px;
    width: 760px;
    height: 430px;
    opacity: 0.48;
    background-size: cover;
    background-position: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 260px;
  }

  .gallery {
    padding-left: 0;
    padding-right: 0;
  }

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

  .vehicle-card + .vehicle-card {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
  }

  .card-content {
    min-height: 235px;
  }

  .services {
    padding: 30px 18px 38px;
  }

  .service-list,
  .marine-column .service-list {
    grid-template-columns: 1fr;
  }

  .service-column > h3::before,
  .service-column > h3::after {
    width: 44px;
  }

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .contact {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 24px 18px 30px;
  }

  .contact::before {
    display: none;
  }

  .footer-logo {
    width: 118px;
  }

  address {
    display: grid;
    justify-items: center;
    gap: 14px;
  }
}

@media (max-width: 420px) {
  .header-call {
    width: 44px;
    padding: 0;
    overflow: hidden;
    color: transparent;
  }

  .header-call svg {
    color: #fff;
    flex: 0 0 18px;
  }

  .eyebrow {
    font-size: 30px;
  }

  .hero h1 {
    font-size: 35px;
  }

  .hero-tag {
    font-size: 14px;
  }

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

  .icon-badge {
    width: 44px;
    height: 44px;
  }
}
