:root {
  --yellow: #f5c400;
  --black: #0f0f0f;
  --black-soft: #161616;
  --red: #f32f35;
  --white: #ffffff;
  --muted: #c9c9c9;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  min-width: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(8, 8, 8, 0.94);
  border-bottom: 1px solid rgba(245, 196, 0, 0.18);
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand img {
  width: 220px;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-menu a {
  position: relative;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 0;
  height: 3px;
  background: var(--yellow);
  transition: width 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--yellow);
}

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

.header-whatsapp,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 7px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.header-whatsapp {
  min-height: 48px;
  padding: 0 22px;
  background: var(--yellow);
  color: #060606;
  box-shadow: 0 10px 30px rgba(245, 196, 0, 0.22);
}

.header-whatsapp:hover,
.btn:hover {
  transform: translateY(-3px);
}

.whatsapp-icon,
.btn-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.header-whatsapp .whatsapp-icon {
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.14));
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--yellow);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 760px;
  position: relative;
  display: grid;
  align-items: center;
  padding-top: 96px;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: #080808 url("../assets/images/hero.jpg") right center / auto 100% no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.78) 32%, rgba(0, 0, 0, 0.34) 62%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(0deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 90px 50px;
}

.hero-kicker {
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 590px;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8.8rem);
  font-weight: 700;
  line-height: 0.86;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.58);
}

.hero h1 span {
  color: var(--yellow);
}

.hero-copy {
  width: min(530px, 100%);
  margin-top: 24px;
  color: #eeeeee;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

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

.btn {
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.92rem;
}

.btn-primary {
  background: var(--yellow);
  color: #070707;
  box-shadow: 0 18px 34px rgba(245, 196, 0, 0.22);
}

.btn-primary:hover {
  background: #ffd52e;
  box-shadow: 0 22px 45px rgba(245, 196, 0, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.quick-benefits {
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 62px;
  border: 1px solid var(--line);
  background: var(--line);
}

.quick-benefits article {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(11, 11, 11, 0.78);
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 84px 0;
  background:
    radial-gradient(circle at 18% 10%, rgba(245, 196, 0, 0.08), transparent 32%),
    linear-gradient(135deg, #111 0%, #0d0d0d 100%);
}

.section-heading {
  margin-bottom: 34px;
  text-align: center;
}

.section-heading p,
.eyebrow {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2,
.about-content h2,
.split-heading h2,
.location-panel h2,
.contact-panel h2 {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

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

.service-card {
  min-height: 210px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(24, 24, 24, 0.96), rgba(9, 9, 9, 0.96));
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 196, 0, 0.75);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.42);
}

.service-card img {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.service-card h3 {
  max-width: 180px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.08;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.service-card h3::after {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  margin: 10px auto 12px;
  background: var(--red);
}

.service-card p {
  color: #dddddd;
  font-size: 0.91rem;
  overflow-wrap: break-word;
}

@media (min-width: 1081px) {
  .service-card:nth-last-child(2) {
    grid-column: 2;
  }

  .service-card:last-child {
    grid-column: 4;
  }
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.about-image {
  min-height: 430px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 74px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.75), rgba(15, 15, 15, 0.96)),
    radial-gradient(circle at 90% 20%, rgba(245, 196, 0, 0.08), transparent 28%);
}

.about-content .eyebrow,
.split-heading .eyebrow,
.location-panel .eyebrow,
.contact-panel .eyebrow {
  color: var(--white);
}

.about-content h2 {
  margin: 10px 0 18px;
}

.about-content > p:not(.eyebrow) {
  max-width: 670px;
  color: #dddddd;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--line);
}

.about-stats article {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 16px;
  background: rgba(12, 12, 12, 0.88);
}

.about-stats strong {
  color: var(--yellow);
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.about-stats span {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.gallery-section {
  background: #101010;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.text-link {
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 2px solid currentColor;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  aspect-ratio: 3 / 4;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #171717;
}

.gallery-item.large {
  min-height: 340px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.05);
}

.location-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(110deg, #111 0%, #111 48%, #0a0a0a 48%, #0a0a0a 100%);
}

.location-panel,
.contact-panel {
  padding: clamp(40px, 7vw, 76px);
}

.location-panel {
  border-right: 1px solid var(--line);
}

.map-frame {
  height: 250px;
  margin: 24px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 0, 0.38);
  border-radius: 8px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

address {
  margin-bottom: 24px;
  color: #eeeeee;
  font-style: normal;
}

.full {
  width: fit-content;
}

.contact-panel {
  position: relative;
  overflow: hidden;
}

.contact-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 330px;
  height: 330px;
  background:
    radial-gradient(circle, rgba(245, 196, 0, 0.16), transparent 58%),
    url("../assets/icons/motor.svg") center / 180px no-repeat;
  opacity: 0.28;
  pointer-events: none;
}

.contact-panel h2 {
  margin: 12px 0 26px;
  color: var(--yellow);
  font-size: clamp(3rem, 7vw, 5.5rem);
}

.schedule {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.schedule p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.schedule span {
  color: #e8e8e8;
}

.btn-big {
  min-height: 60px;
  padding-inline: 34px;
  font-size: 1rem;
}

.floating-whatsapp {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 45;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp img {
  width: 68px;
  height: 68px;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.48);
}

.site-footer {
  padding: 24px 20px;
  background: var(--yellow);
  color: #060606;
  font-weight: 600;
  text-align: center;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-menu {
    gap: 22px;
  }

  .brand img {
    width: 190px;
  }

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

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

  .gallery-item.large {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .nav {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(245, 196, 0, 0.22);
    border-radius: 8px;
    background: rgba(10, 10, 10, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    display: block;
    padding: 14px 12px;
  }

  .nav-menu a::after {
    bottom: 8px;
  }

  .header-whatsapp {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .quick-benefits,
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .location-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 168px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-media {
    background-size: 100% auto;
    background-position: center 76px;
    background-repeat: no-repeat;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.36)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.46) 36%, rgba(15, 15, 15, 0.98) 78%);
  }

  .hero-content {
    padding-block: 178px 42px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.6rem);
    line-height: 0.92;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .split-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .full {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
    font-size: 0.84rem;
    text-align: center;
  }

  .quick-benefits,
  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.large {
    grid-column: auto;
  }

  .gallery-item,
  .gallery-item.large {
    min-height: 250px;
  }

  .service-card {
    min-height: 178px;
    padding: 20px 10px;
  }

  .service-card img {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
  }

  .service-card h3 {
    max-width: 100%;
    font-size: 0.88rem;
    line-height: 1.12;
  }

  .service-card p {
    font-size: 0.72rem;
    line-height: 1.42;
  }

  .location-panel,
  .contact-panel {
    padding: 42px 20px;
  }

  .floating-whatsapp {
    right: 18px;
    bottom: 18px;
    width: 64px;
    height: 64px;
  }

  .floating-whatsapp img {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
