:root {
  --bg: #f4f8ff;
  --surface: #ffffff;
  --surface-soft: #edf3ff;
  --border: #d6e4ff;
  --text: #102348;
  --muted: #5b6f93;
  --brand: #0b63ff;
  --brand-strong: #084fcf;
  --brand-soft: #e8f0ff;
  --shadow: 0 10px 30px rgba(11, 68, 170, 0.08);

  --radius: 14px;
  --radius2: 20px;
  --container: 1100px;
  --headerH: 88px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .bikeShowcase.isAutoPlaying .bikeShowcase__dot.isActive {
    animation: none !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
}

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

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

:focus-visible {
  outline: 2px solid rgba(11, 99, 255, 0.5);
  outline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 9999;
  background: #ffffff;
  color: #111111;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.skip:focus {
  left: 12px;
}

/* Header */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--headerH);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
}

.header.isScrolled {
  box-shadow: 0 8px 22px rgba(11, 68, 170, 0.12);
}

.header__inner {
  height: var(--headerH);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.brand__mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 10px;
}

.brand__mark img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__title {
  font-weight: 900;
  letter-spacing: 0.4px;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1;
  color: #0f2f66;
  white-space: nowrap;
}

.brand__meta {
  font-size: 10px;
  color: #6a81a7;
  line-height: 1.2;
  letter-spacing: 0.2px;
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 7px;
}

.dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #9cb0d5;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid #cfe0ff;
  color: #255096;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.pill--brand {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__toggle {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
}

.nav__toggleLines {
  width: 18px;
  height: 12px;
  display: inline-block;
  background:
    linear-gradient(currentColor, currentColor) 0 0 / 100% 2px,
    linear-gradient(currentColor, currentColor) 0 50% / 100% 2px,
    linear-gradient(currentColor, currentColor) 0 100% / 100% 2px;
  background-repeat: no-repeat;
  opacity: 0.9;
}

.nav__toggleText {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__link {
  position: relative;
  font-size: 13px;
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 10px;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: #2f6fd8;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}

.nav__link:hover {
  background: var(--surface-soft);
  color: var(--text);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link[aria-current="page"] {
  background: var(--brand-soft);
  border: 1px solid #bfd5ff;
  color: #0d4ebd;
  padding: 9px 9px;
}

.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav__cta {
  margin-left: 4px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: var(--brand);
  color: #ffffff;
  border: 1px solid var(--brand);
}

.nav__cta:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #eaf1ff;
}

.progress__bar {
  width: 0%;
  height: 100%;
  background: var(--brand);
}

/* Hero */
.hero {
  padding-top: calc(var(--headerH) + 32px);
  padding-bottom: 48px;
  position: relative;
  scroll-margin-top: calc(var(--headerH) + 18px);
}

.hero__bg {
  display: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--brand-strong);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-size: 11px;
  margin: 0 0 12px;
}

.hero__title {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.8px;
  line-height: 1.05;
  font-size: clamp(34px, 5vw, 56px);
}

.accent {
  color: var(--brand);
}

.hero__lead {
  margin: 14px 0 0;
  max-width: 56ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.hero__badges {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  width: 128px;
  padding: 12px 12px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.badge__top {
  display: block;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

.badge__big {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.3px;
}

.hero__actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  transition: transform 0.12s ease, background 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease;
}

.icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  display: block;
}

.icon--logo {
  object-fit: contain;
}

.icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--brand);
  border-color: var(--brand);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(11, 99, 255, 0.2);
}

.btn--primary:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

.btn--ghost {
  background: #ffffff;
  border-color: var(--border);
  color: var(--text);
}

.btn--ghost:hover {
  background: var(--surface-soft);
}

.btn--wa {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn--wa:hover {
  background: #1eb85a;
  border-color: #1eb85a;
}

.btn--link {
  background: transparent;
  border-color: transparent;
  padding-inline: 4px;
  color: var(--brand);
}

.btn--sm {
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
}

.hero__fineprint {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.hero__media {
  position: relative;
}

.hero__img {
  border-radius: var(--radius2);
  width: 100%;
  height: auto;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.hero__glass {
  margin-top: 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.hero__glassRow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero__directions {
  padding: 10px 12px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  background: var(--brand-soft);
  border: 1px solid #c5d9ff;
  color: #0d4ebd;
  font-weight: 700;
  font-size: 13px;
}

/* Sections */
.section {
  padding: 54px 0;
  scroll-margin-top: calc(var(--headerH) + 18px);
}

.section--tint {
  background: #f7fbff;
  border-block: 1px solid #e4edff;
}

.section__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}

.section__head {
  margin-bottom: 18px;
}

.section__title {
  margin: 0;
  font-size: clamp(24px, 3.3vw, 36px);
  letter-spacing: -0.5px;
  font-weight: 900;
}

.section__lead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 72ch;
}

.ticks {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.ticks li {
  padding-left: 24px;
  position: relative;
  color: #1f355d;
  line-height: 1.55;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px #e7f0ff;
}

.card {
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card--info {
  position: sticky;
  top: calc(var(--headerH) + 18px);
}

.card__top {
  padding: 16px 16px 0;
}

.card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
}

.card__sub {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.meta {
  margin: 14px 0 0;
  padding: 0 16px 10px;
  display: grid;
  gap: 10px;
}

.meta__row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface-soft);
  border: 1px solid #d9e6ff;
}

.meta dt {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
}

.meta dd {
  margin: 0;
  color: #213761;
  font-size: 13px;
  line-height: 1.5;
}

.link {
  color: #0d4ebd;
  text-decoration: underline;
  text-decoration-color: rgba(11, 99, 255, 0.45);
  text-underline-offset: 3px;
}

.link--wa {
  color: #128c4a;
  text-decoration-color: rgba(18, 140, 74, 0.45);
}

.card__actions {
  padding: 0 16px 16px;
  display: flex;
  gap: 10px;
}

/* Bikes */
.bikeShowcase {
  position: relative;
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid #d6e2f8;
  background: #eef3fa;
  padding: 26px 16px 16px;
  box-shadow: var(--shadow);
}

.bikeShowcase__stage {
  position: relative;
  width: min(940px, 100%);
  min-height: clamp(280px, 34vw, 360px);
  margin-inline: auto;
  padding: 8px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #d7e3f8;
  background: linear-gradient(180deg, #f5f8fe 0%, #eaf1fb 100%);
}

.bikeShowcase__mainImg {
  width: min(calc(600px * var(--fit, 1)), 88%);
  max-height: 305px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center center;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.14));
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.bikeShowcase__ghost {
  position: absolute;
  top: 48%;
  width: min(calc(240px * var(--fit, 1)), 30%);
  max-height: 150px;
  height: auto;
  object-fit: contain;
  object-position: center center;
  opacity: 0.28;
  filter: grayscale(0.12);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.bikeShowcase__ghost--prev {
  left: 20px;
  transform: translateY(-50%);
}

.bikeShowcase__ghost--next {
  right: 20px;
  transform: translateY(-50%);
}

.bikeShowcase__nav {
  position: absolute;
  top: 42%;
  z-index: 4;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid #cad9f3;
  background: rgba(255, 255, 255, 0.92);
  color: #2f6fd8;
  font-size: 38px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.bikeShowcase__nav:hover {
  background: #ffffff;
  border-color: #9ebdf0;
  color: #1a5dcc;
}

.bikeShowcase__nav--prev {
  left: 18px;
}

.bikeShowcase__nav--next {
  right: 18px;
}

.bikeShowcase__card {
  width: min(420px, 100%);
  margin: -8px auto 0;
  padding: 16px 18px;
  min-height: 248px;
  display: flex;
  flex-direction: column;
  text-align: center;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #d6e2f8;
  box-shadow: 0 10px 24px rgba(19, 60, 126, 0.12);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.bikeShowcase__type {
  margin: 0;
  color: #4f668f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.bikeShowcase__name {
  margin: 6px 0 0;
  color: #111e36;
  font-size: clamp(30px, 4.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.8px;
  font-weight: 800;
  min-height: 2.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bikeShowcase__desc {
  margin: 10px 0 0;
  color: #334b73;
  font-size: 14px;
  line-height: 1.55;
  min-height: 3.1em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.bikeShowcase__actions {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bikeShowcase__dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.bikeShowcase__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: #bfd0ee;
  cursor: pointer;
}

.bikeShowcase__dot.isActive {
  background: #2f6fd8;
}

.bikeShowcase.isAutoPlaying .bikeShowcase__dot.isActive {
  animation: bikeDotPulse 2.8s ease-in-out infinite;
}

@keyframes bikeDotPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 111, 216, 0.36);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(47, 111, 216, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 111, 216, 0);
  }
}

.note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

/* Services */
.services {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.service {
  grid-column: span 4;
  border-radius: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.service__title {
  position: relative;
  display: inline-block;
  margin: 0;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.2px;
  padding-bottom: 3px;
}

.service__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #2f6fd8;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.service:hover .service__title::after,
.service:focus-within .service__title::after {
  transform: scaleX(1);
}

.service__desc {
  margin: 10px 0 0;
  color: #294069;
  font-size: 13px;
  line-height: 1.6;
}

/* Gallery */
.gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
}

.gallery__item {
  grid-column: span 4;
  appearance: none;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  cursor: zoom-in;
  box-shadow: var(--shadow);
  color: inherit;
  font: inherit;
}

.gallery__item:focus-visible {
  outline: 2px solid rgba(11, 99, 255, 0.8);
  outline-offset: 4px;
}

.gallery__img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.18s ease;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.03);
}

.gallery__item--more {
  cursor: pointer;
}

.gallery__item--more .gallery__img {
  filter: blur(2.8px) brightness(0.65);
  transform: scale(1.06);
}

.gallery__moreOverlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
  background: linear-gradient(180deg, rgba(8, 36, 80, 0.18), rgba(8, 36, 80, 0.34));
  pointer-events: none;
}

.gallery__more {
  margin: 14px auto 0;
  display: flex;
}

/* Lightbox */
.lightbox {
  width: min(980px, calc(100% - 24px));
  position: relative;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 0;
  background: #ffffff;
  box-shadow: var(--shadow);
  color: var(--text);
}

.lightbox::backdrop {
  background: rgba(16, 35, 72, 0.55);
}

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  color: #12305f;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lightbox__figure {
  margin: 0;
  padding: 14px;
}

.lightbox__img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.lightbox__cap {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Reviews */
.reviewsSummary {
  margin-bottom: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.reviewsSummary__score {
  margin: 0;
  color: var(--brand);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.4px;
  line-height: 1;
}

.reviewsSummary__score span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.reviewsSummary__text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reviewsSummary__link {
  margin-left: auto;
}

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

.review {
  grid-column: span 4;
  border-radius: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.review__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.review__name {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
}

.review__meta {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.review__stars {
  margin: 10px 0 0;
  color: #e19700;
  font-size: 13px;
  letter-spacing: 1px;
}

.review__text {
  margin: 8px 0 0;
  color: #294069;
  font-size: 13px;
  line-height: 1.6;
}

/* Contact */
.form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.form__row {
  display: grid;
  gap: 8px;
}

.form__label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.form__input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  outline: none;
}

.form__input:focus {
  border-color: rgba(11, 99, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(11, 99, 255, 0.13);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.form__note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.card--map {
  overflow: hidden;
}

.contactMeta {
  padding: 12px 16px 0;
  display: grid;
  gap: 10px;
}

.contactMeta__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface-soft);
  border: 1px solid #d9e6ff;
}

.contactMeta__row--wa {
  background: #f2fff7;
  border-color: #bfe9cd;
}

.contactMeta__k {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 12px;
  color: var(--muted);
}

.contactMeta__v {
  font-size: 13px;
  color: #223963;
}

.contactMeta__row--wa .contactMeta__k,
.contactMeta__row--wa .contactMeta__v {
  color: #128c4a;
}

.mapWrap {
  position: relative;
  margin-top: 14px;
  padding: 0 16px 16px;
}

.mapWrap iframe {
  display: block;
  width: 100%;
  height: 260px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.mapWrap__directions {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 120px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #2d6fda;
  color: #1859c6;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 8px rgba(19, 69, 155, 0.12);
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.mapWrap__directions .icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.mapWrap__directions:hover {
  background: rgba(255, 255, 255, 0.96);
  border-color: #0b63ff;
  color: #0b63ff;
  box-shadow: 0 4px 12px rgba(11, 99, 255, 0.2);
}

.card__foot {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

/* Footer */
.footer {
  padding: 26px 0 64px;
  border-top: 1px solid #dfebff;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.footer__left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.footer__logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex: 0 0 72px;
}

.footer__meta {
  display: grid;
  gap: 2px;
}

.footer__title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #123262;
}

.footer__line {
  margin: 0;
  color: #2e548f;
  font-size: 12px;
  font-weight: 700;
}

.footer__address {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.footer__copyright {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  text-align: right;
  white-space: nowrap;
}

/* Floating buttons */
.fab {
  position: fixed;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 10px;
  z-index: 999;
}

.fab__btn {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.2px;
  background: #ffffff;
  color: var(--brand);
  border: 1px solid #cfe0ff;
  box-shadow: var(--shadow);
}

.fab__btn .icon {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
}

.fab__btn:hover {
  background: var(--brand-soft);
}

.fab__btn--wa {
  background: #25d366;
  border-color: #25d366;
  color: #ffffff;
}

.fab__btn--wa:hover {
  background: #1eb85a;
  border-color: #1eb85a;
}

/* Responsive */
@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

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

  .card--info {
    position: static;
  }

  .bikeShowcase__stage {
    min-height: 250px;
  }

  .bikeShowcase__ghost {
    width: min(calc(180px * var(--fit, 1)), 28%);
    max-height: 120px;
  }

  .bikeShowcase__name {
    font-size: clamp(26px, 5vw, 36px);
  }

  .service {
    grid-column: span 6;
  }

  .gallery__item {
    grid-column: span 6;
  }

  .review {
    grid-column: span 6;
  }
}

@media (max-width: 720px) {
  :root {
    --headerH: 74px;
  }

  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .brand {
    gap: 8px;
    min-width: auto;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
  }

  .brand__title {
    font-size: 20px;
    letter-spacing: 0.2px;
  }

  .brand__meta {
    font-size: 9px;
    letter-spacing: 0.6px;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: fixed;
    top: var(--headerH);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.14s ease, transform 0.14s ease;
  }

  .nav__links.isOpen {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__link {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #deebff;
    background: #ffffff;
  }

  .nav__cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-left: 0;
  }

  .progress {
    height: 2px;
  }

  .badge {
    width: 110px;
  }

  .bikeShowcase {
    padding: 18px 10px 14px;
  }

  .bikeShowcase__stage {
    min-height: 220px;
    padding: 6px 0;
  }

  .bikeShowcase__ghost {
    display: none;
  }

  .bikeShowcase__mainImg {
    width: min(calc(460px * var(--fit, 1)), 94%);
    max-height: 190px;
  }

  .bikeShowcase__nav {
    top: 34%;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .bikeShowcase__nav--prev {
    left: 8px;
  }

  .bikeShowcase__nav--next {
    right: 8px;
  }

  .bikeShowcase__card {
    margin-top: 0;
    padding: 14px 12px;
    min-height: 220px;
  }

  .service {
    grid-column: span 12;
  }

  .gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery__item {
    grid-column: auto;
    flex: 0 0 84%;
    min-width: 84%;
    max-width: 84%;
    scroll-snap-align: start;
  }

  .gallery::-webkit-scrollbar {
    height: 8px;
  }

  .gallery::-webkit-scrollbar-thumb {
    background: #bcd0f2;
    border-radius: 999px;
  }

  .reviewsSummary__score {
    font-size: 30px;
  }

  .reviewsSummary__link {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .review {
    grid-column: span 12;
  }

  .mapWrap__directions {
    right: 24px;
    bottom: 24px;
    min-width: 112px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .footer__inner {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .footer__left {
    width: 100%;
  }

  .footer__copyright {
    text-align: left;
    white-space: normal;
  }

  .fab {
    right: 12px;
    bottom: 12px;
  }

  .fab__btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }
}
