:root {
  --ink: #111317;
  --ink-2: #20252b;
  --paper: #f7f4ef;
  --white: #ffffff;
  --muted: #6d747d;
  --line: #d9d2c7;
  --red: #d7261e;
  --orange: #ef7b22;
  --amber: #f1b547;
  --steel: #c7d0d8;
  --green: #25d366;
  --shadow: 0 22px 60px rgba(17, 19, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 36px;
  color: var(--white);
  background: rgba(17, 19, 23, 0.54);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(17, 19, 23, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo {
  display: block;
  width: 154px;
  height: 46px;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.05;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 160ms ease, background 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.header-cta {
  background: var(--green);
  color: #071d0f;
}

.button:hover,
.header-cta:hover,
.button:focus-visible,
.header-cta:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange));
  box-shadow: 0 16px 38px rgba(215, 38, 30, 0.3);
}

.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media {
  background-image: url("assets/hero-workshop.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 19, 23, 0.94) 0%, rgba(17, 19, 23, 0.68) 44%, rgba(17, 19, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 19, 23, 0.88) 0%, rgba(17, 19, 23, 0.02) 42%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 148px 0 118px;
  display: grid;
  grid-template-columns: minmax(0, 660px) 320px;
  align-items: end;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 4.4rem;
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.6rem;
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  padding: 20px;
  background: rgba(17, 19, 23, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-panel div:first-child {
  padding-top: 0;
}

.hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.panel-kicker {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-panel strong {
  display: block;
  font-size: 1.04rem;
}

.hero-next {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin: -74px auto 0;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-next a {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 22px 26px 24px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(239, 123, 34, 0.12), transparent 42%),
    var(--white);
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-next a::after {
  content: "->";
  position: absolute;
  right: 24px;
  top: 24px;
  color: var(--orange);
  font-weight: 950;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-next a:hover,
.hero-next a:focus-visible {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 38, 30, 0.9), rgba(239, 123, 34, 0.88)),
    var(--red);
  transform: translateY(-2px);
}

.hero-next a:hover::after,
.hero-next a:focus-visible::after {
  color: var(--white);
  opacity: 1;
  transform: translateX(0);
}

.hero-next a:last-child {
  border-right: 0;
}

.hero-next span,
.hero-next strong,
.hero-next small {
  display: block;
}

.hero-next span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
}

.hero-next a:hover span,
.hero-next a:focus-visible span,
.hero-next a:hover small,
.hero-next a:focus-visible small {
  color: rgba(255, 255, 255, 0.76);
}

.hero-next strong {
  font-size: 1.16rem;
  line-height: 1.1;
}

.hero-next small {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
}

.section {
  padding: 88px 24px;
}

.section-light {
  background: var(--white);
}

.section-heading {
  width: min(1180px, 100%);
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(280px, 1fr);
  gap: 42px;
  align-items: end;
}

.section-heading p:not(.eyebrow),
.inventory-intro p,
.parts-copy p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
}

.section-heading.compact {
  display: block;
  max-width: 760px;
  text-align: center;
}

.services-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.moto-card {
  border-radius: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.service-card {
  min-height: 210px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 38, 30, 0.42);
  box-shadow: 0 18px 44px rgba(17, 19, 23, 0.1);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  margin-bottom: 28px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 950;
}

.inventory-band {
  padding: 92px 24px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(215, 38, 30, 0.22), transparent 46%),
    linear-gradient(180deg, #15171b, #0b0c0f);
}

.inventory-intro {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 650px) minmax(280px, 1fr);
  gap: 42px;
  align-items: end;
}

.inventory-intro p {
  color: rgba(255, 255, 255, 0.7);
}

.inventory-tabs {
  width: min(1180px, 100%);
  margin: 0 auto 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tab-button {
  min-height: 42px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.tab-button.is-active {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.motorcycle-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.moto-card {
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.moto-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
}

.moto-card figure {
  position: relative;
  height: 230px;
  margin: 0;
  overflow: hidden;
  background: var(--ink-2);
}

.moto-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.moto-card:hover img {
  transform: scale(1.04);
}

.moto-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(17, 19, 23, 0.82);
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 950;
}

.moto-body {
  padding: 20px;
}

.moto-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.moto-price {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 1.42rem;
  font-weight: 950;
}

.moto-card .button {
  width: 100%;
}

.parts-section,
.contact-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.parts-section {
  padding: 96px 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.parts-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.parts-image img {
  height: 520px;
  object-fit: cover;
}

.check-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 17px;
  height: 10px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

.about-band {
  padding: 92px 24px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(239, 123, 34, 0.18), transparent 44%),
    linear-gradient(180deg, #15171b, #111317);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-band-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.about-band .eyebrow {
  color: var(--amber);
}

.about-band .about-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.about-copy .button {
  margin-top: 28px;
}

.about-image {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(239, 123, 34, 0.35);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.32);
}

.about-image img {
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.brand-section {
  padding: 92px 24px;
  background: var(--white);
}

.brand-strip {
  width: min(1180px, 100%);
  margin: 32px auto 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: brand-marquee 24s linear infinite;
  will-change: transform;
}

.brand-strip:hover .brand-track {
  animation-play-state: paused;
}

.brand-track span {
  display: grid;
  flex: 0 0 clamp(170px, 16vw, 220px);
  min-height: 68px;
  place-items: center;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 10px 24px rgba(17, 19, 23, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand-track span:hover {
  transform: translateY(-3px) rotate(-1deg);
  border-color: rgba(239, 123, 34, 0.5);
  box-shadow: 0 16px 34px rgba(17, 19, 23, 0.1);
}

@keyframes brand-marquee {
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.gallery-section {
  padding: 92px 24px;
  background: #ece7df;
}

.gallery-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.gallery-item.accent {
  display: grid;
  place-items: end start;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 38, 30, 0.9), rgba(239, 123, 34, 0.88)),
    var(--red);
}

.gallery-item blockquote {
  margin: 0;
}

.gallery-item span,
.gallery-item strong {
  display: block;
}

.gallery-item span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
}

.gallery-item strong {
  margin-top: 8px;
  font-size: 1.34rem;
}

.request-section {
  padding: 96px 24px;
  background:
    linear-gradient(135deg, rgba(215, 38, 30, 0.08), transparent 34%),
    var(--paper);
}

.request-grid {
  width: min(1180px, 100%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.request-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(17, 19, 23, 0.08);
}

.request-panel-dark {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(239, 123, 34, 0.18), transparent 48%),
    var(--ink);
  border-color: rgba(255, 255, 255, 0.14);
}

.request-panel-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.request-panel-head > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--orange));
  border-radius: 8px;
  font-weight: 950;
}

.request-panel h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.request-panel p {
  color: var(--muted);
}

.request-panel-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.request-form {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 900;
}

.request-panel-dark .request-form label {
  color: rgba(255, 255, 255, 0.82);
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.request-panel-dark .request-form input,
.request-panel-dark .request-form select,
.request-panel-dark .request-form textarea {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: rgba(239, 123, 34, 0.8);
  box-shadow: 0 0 0 4px rgba(239, 123, 34, 0.14);
  background: var(--white);
}

.request-panel-dark .request-form input:focus,
.request-panel-dark .request-form select:focus,
.request-panel-dark .request-form textarea:focus {
  background: rgba(255, 255, 255, 0.12);
}

.check-field {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.check-field input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--orange);
}

.request-form .button {
  width: fit-content;
  margin-top: 4px;
}

.contact-section {
  padding: 96px 0;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.contact-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  color: var(--muted);
  font-weight: 900;
}

.contact-row strong {
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 30px 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer p + p {
  margin-top: 4px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #071d0f;
  background: var(--green);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  font-weight: 950;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    padding: 14px 20px;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: fixed;
    top: 73px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 4px;
    padding: 12px;
    background: rgba(17, 19, 23, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
  }

  .main-nav.is-open a {
    padding: 14px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-inner,
  .section-heading,
  .inventory-intro,
  .parts-section,
  .about-band-inner,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 128px;
    padding-bottom: 104px;
    gap: 28px;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-panel {
    max-width: 520px;
  }

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

  .parts-image img,
  .about-image img {
    height: 420px;
  }

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

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-inner {
    width: min(100% - 32px, 1180px);
    padding: 118px 0 86px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(17, 19, 23, 0.96), rgba(17, 19, 23, 0.58)),
      linear-gradient(0deg, rgba(17, 19, 23, 0.9), rgba(17, 19, 23, 0.18));
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-next {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin-top: -42px;
  }

  .hero-next a {
    min-height: 92px;
    padding: 18px 18px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-next a:last-child {
    border-bottom: 0;
  }

  .section,
  .inventory-band,
  .brand-section,
  .gallery-section,
  .request-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 64px;
  }

  .services-grid,
  .motorcycle-grid,
  .brand-strip,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .request-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .request-grid {
    gap: 16px;
  }

  .request-panel {
    gap: 22px;
    padding: 22px;
  }

  .request-panel-head {
    grid-template-columns: 1fr;
  }

  .request-panel h3 {
    font-size: 1.45rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .request-form .button {
    width: 100%;
  }

  .moto-card figure {
    height: 216px;
  }

  .parts-section,
  .contact-section {
    width: calc(100% - 32px);
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about-band {
    padding: 72px 16px;
  }

  .parts-section {
    gap: 30px;
  }

  .parts-image img {
    height: 320px;
  }

  .about-band-inner {
    gap: 30px;
  }

  .about-image img {
    height: 360px;
  }

  .about-copy .button {
    width: 100%;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
  }

  .gallery-item.large {
    grid-row: span 1;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }
}
