:root {
  --honda-red: #e10600;
  --honda-red-dark: #9c0400;
  --bw-black: #101114;
  --bw-graphite: #23262b;
  --bw-silver: #d7d9de;
  --bw-steel: #8b909a;
  --ink: #1a1c20;
  --paper: #f5f6f8;
  --line: #d9dbe1;
  --muted: #6b7078;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

img { max-width: 100%; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 16px; }


.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.brand .brand-name {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.05;
}
.brand .brand-loc {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-top: 2px solid currentColor;
  display: inline-block;
  margin-top: 3px;
  padding-top: 3px;
}
.brand.red .brand-name, .brand.rw .brand-name { color: var(--honda-red); }
.brand.bw .brand-name { color: var(--bw-black); }
.topbar.th-bw .brand.bw .brand-name,
.topbar.th-rw .brand.rw .brand-name {
  color: #fff;
  -webkit-text-fill-color: #fff;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  text-shadow: 0 1px 0 rgba(0,0,0,0.35), 0 2px 3px rgba(0,0,0,0.25);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}
.topbar.th-bw .brand-loc,
.topbar.th-rw .brand-loc { display: none; }
/* Invert the (dark) logo to white on dark topbar variants */
.topbar.th-bw .brand-name img,
.topbar.th-rw .brand-name img { filter: brightness(0) invert(1); }
.header-logo { height: 44px; width: auto; object-fit: contain; }

/* Service-subpage carousel (Sales / Service / Jobs): fill the container completely */
#prodCar.car-fill .slide { aspect-ratio: 3 / 2; align-items: center; justify-content: center; }
#prodCar.car-fill .slide-img-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
/* Jobs subpage carousel: fill the container completely */
#jobsCar .slide { aspect-ratio: 3 / 2; }
#jobsCar .slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; opacity: 1; }

.hero-carousel { margin-top: 16px; }
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}
.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slides::-webkit-scrollbar { display: none; }
.slide {
  min-width: 100%;
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.slide-img-bg {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 14px, rgba(0,0,0,0.16) 14px 28px),
    linear-gradient(135deg, #2a2d33, #4b5058);
}
.slide-img-bg img { width: 100%; height: 100%; object-fit: contain; opacity: 0.92; }
/* Landing hero: showroom photos should fill the slide (not letterbox on the wide hero) */
#heroCar .slide-img-bg img { object-fit: cover; object-position: center; opacity: 1; }
#rwCar .slide-img-bg img { object-fit: contain; object-position: center; opacity: 1; }
#rwCar .slide { aspect-ratio: 16 / 9 !important; border: none; }
#bwCar .slide-img-bg img { object-fit: contain; object-position: center; opacity: 1; }
#bwCar .slide { aspect-ratio: 16 / 9 !important; border: none; }
.hero-carousel .carousel { border: none; }
.slide-caption {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 44px 14px 34px;
  background: linear-gradient(0deg, rgba(0,0,0,0.76) 0%, rgba(0,0,0,0.3) 62%, rgba(0,0,0,0) 100%);
  color: #fff;
}
.slide-kicker {
  font-family: Consolas, monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.slide-title { font-size: clamp(22px, 6.4vw, 34px); font-weight: 800; letter-spacing: 0.02em; }
.slide-sub { font-size: 12.5px; opacity: 0.92; margin-top: 2px; }
.car-dots {
  position: absolute;
  bottom: 11px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.car-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.45);
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}
.car-dot.active {
  width: 24px;
  background: #fff;
}
.carousel { position: relative; }
.carousel .car-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.25s ease, background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.carousel:hover .car-nav,
.carousel:focus-within .car-nav { opacity: 1; }
@media (hover:none) and (pointer:coarse) {
  .carousel .car-nav { opacity: 0.7; }
}
.car-nav:active { background: rgba(255,255,255,0.45); }
.car-nav.prev { left: 8px; }
.car-nav.next { right: 8px; }

.btn3d {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 12.5px;
  line-height: 1;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 13px;
  color: #fff;
  position: relative;
  user-select: none;
  touch-action: manipulation;
  transition: transform 0.07s ease, filter 0.15s ease;
}
.btn3d:active { transform: translateY(6px); }
.btn3d.red {
  background: linear-gradient(180deg, #ff5147 0%, var(--honda-red) 55%, var(--honda-red-dark) 100%);
  box-shadow: 0 6px 0 var(--honda-red-dark), inset 0 2px 0 rgba(255,255,255,0.5), inset 0 -3px 0 rgba(0,0,0,0.25), 0 12px 20px rgba(225,6,0,0.35);
}
.btn3d.red:active { box-shadow: 0 1px 0 var(--honda-red-dark), inset 0 2px 0 rgba(255,255,255,0.4), 0 4px 8px rgba(225,6,0,0.3); }
.btn3d.silver {
  color: var(--bw-black);
  background: linear-gradient(180deg, #ffffff 0%, #e3e5ea 45%, #b9bcc4 100%);
  box-shadow: 0 6px 0 #83878f, inset 0 2px 0 rgba(255,255,255,0.95), inset 0 -3px 0 rgba(0,0,0,0.18), 0 12px 20px rgba(16,17,20,0.28);
}
.btn3d.silver:active { box-shadow: 0 1px 0 #83878f, inset 0 2px 0 rgba(255,255,255,0.8), 0 4px 8px rgba(16,17,20,0.25); }
.btn3d.dark {
  background: linear-gradient(180deg, #3a3d44 0%, #1d1f24 55%, #0b0c0e 100%);
  box-shadow: 0 6px 0 #000, inset 0 2px 0 rgba(255,255,255,0.22), 0 12px 20px rgba(0,0,0,0.4);
  border: 1px solid #000;
}
.btn3d.dark:active { box-shadow: 0 1px 0 #000, inset 0 2px 0 rgba(255,255,255,0.18), 0 4px 8px rgba(0,0,0,0.35); }
.btn3d.insta {
  color: #fff;
  background: linear-gradient(135deg, #5b51d8 0%, #c13584 50%, #e1306c 78%, #f77737 100%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 6px 0 #7a1f4a, inset 0 2px 0 rgba(255,255,255,0.35), 0 12px 20px rgba(193,53,132,0.35);
}
.btn3d.insta:active { box-shadow: 0 1px 0 #7a1f4a, inset 0 2px 0 rgba(255,255,255,0.25), 0 4px 8px rgba(193,53,132,0.3); }
.btn3d.outline-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.65);
  box-shadow: 0 4px 0 rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 11px;
  background: linear-gradient(180deg, #ff2a2a, #e2001a);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 0 #a30013;
}
.btn-sm:hover { filter: brightness(1.06); }
.btn3d.big {
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
  font-size: 14px;
  min-height: 54px;
  border-radius: 15px;
}
.btn3d .chev { font-size: 14px; }

.division-grid { display: grid; grid-template-columns: 1fr; gap: 13px; }
.division-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 14px 28px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
}
.division-card.bw {
  background:
    radial-gradient(120% 160% at 85% -10%, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 45%),
    linear-gradient(150deg, #33363d 0%, #17181c 55%, #000 100%);
  border: 1px solid #3c3f46;
}
.division-card.rw {
  background:
    radial-gradient(120% 160% at 85% -10%, rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 50%),
    linear-gradient(150deg, #ff4b43 0%, var(--honda-red) 55%, #8e0300 100%);
  border: 1px solid rgba(255,255,255,0.35);
  min-height: 220px;
}
.division-info { flex: 1 1 auto; min-width: 0; }
.division-card.rw .division-info { align-self: stretch; display: flex; flex-direction: column; position: relative; z-index: 2; }
.division-card.rw .division-title { margin-bottom: auto; }
.division-title { font-size: clamp(20px, 5vw, 28px); font-weight: 900; letter-spacing: 0.03em; }
.division-sub { font-size: 11.5px; opacity: 0.85; margin-top: 4px; line-height: 1.45; }
.division-explore { margin-top: 6px; }
.division-explore .btn3d { min-height: 40px; font-size: 11px; padding: 9px 14px; border-radius: 11px; white-space: nowrap; }

.band-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 12px;
}
.band-title { font-size: 18px; font-weight: 800; letter-spacing: 0.03em; }
.band-title.bw { color: var(--bw-black); }
.band-title.rw { color: var(--honda-red); }
.band-rule { flex: 1 1 40px; height: 3px; border-radius: 3px; min-width: 40px; }
.band-rule.bw { background: linear-gradient(90deg, #17181c, #b9bcc4); }
.band-rule.rw { background: linear-gradient(90deg, var(--honda-red), #ffb3ae); }
.band-link { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; white-space: nowrap; }
.band-link.bw { color: var(--bw-steel); }
.band-link.rw { color: var(--honda-red); }

.lineup-group { margin-top: 22px; }
.band-head.sub { margin-bottom: 10px; }
.band-head.sub .band-title { font-size: 15px; }

.product-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pcard-media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.pcard-media.bw { background: radial-gradient(circle at 50% 115%, #eceef1, #cfd2d8); }
.pcard-media.rw { background: radial-gradient(circle at 50% 115%, #fff, #ffe1df); }
.pcard-media img { max-height: 100%; max-width: 100%; object-fit: contain; }
/* Drop the white background of cutout PNG sources so they blend like the photos */
.pcard-media img[src*="nx200" i], .pcard-media img[src*="hornet2" i], .pcard-media img[src*="cb350" i], .pcard-media img[src*="adv160" i], .pcard-media img[src*="bw-rebel300" i] { mix-blend-mode: multiply; }
.pcard-media.rw img[src*="rw-CB125-Hornet" i] { mix-blend-mode: multiply; }
.pcard-media.rw img[src*="rw-activa-110" i], .pcard-media.rw img[src*="rw-activa-125" i], .pcard-media.rw img[src*="rw-dio" i] { mix-blend-mode: multiply; }
.pcard-body { padding: 12px 14px 14px; border-top: 1px solid var(--paper); flex: 1 1 auto; }
.pcard-name { font-size: 15px; font-weight: 800; letter-spacing: 0.02em; }
.pcard-type { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 2px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 9px; }
.chip {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #43464c;
  background: var(--paper);
}
.pcard-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 11px; }
.brochure {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 5px 8px;
  border-radius: 8px;
}
.badge-prebook {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--honda-red);
  background: #ffeceb;
  border: 1px solid #ffc7c4;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.service-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-align: center;
  text-decoration: none;
  padding: 18px 10px 16px;
  border-radius: 15px;
  color: #fff;
  overflow: hidden;
  transition: transform 0.15s ease;
}
.service-tile .tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.35);
}
.service-tile svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.service-tile.t-sales svg { stroke: #E4002B; }
.service-tile.t-service svg { stroke: #2D9CDB; }
.service-tile.t-insurance svg { stroke: #27AE60; }
.service-tile.t-jobs svg { stroke: #F2C94C; }
.tile-name { font-size: 12.5px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; }
.tile-desc { font-size: 11px; opacity: 0.85; line-height: 1.45; }
.tile-arrow {
  margin-top: auto;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: 0 3px 0 rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.3);
  white-space: nowrap;
}
.service-tile.t-bw {
  background: linear-gradient(165deg, #34373e, #131417 60%, #000);
  border: 1px solid #3f434b;
  box-shadow: 0 12px 24px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.15);
}
.service-tile.t-rw {
  background: linear-gradient(165deg, #ff574f, var(--honda-red) 55%, #8e0300);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 12px 24px rgba(225,6,0,0.3), inset 0 1px 0 rgba(255,255,255,0.35);
}



@media (hover: hover) {
  .btn3d:hover { filter: brightness(1.06); }
  .pcard:hover { transform: translateY(-4px); box-shadow: 0 14px 26px rgba(0,0,0,0.14); }
  .division-card:hover { transform: translateY(-5px); box-shadow: 0 26px 48px rgba(0,0,0,0.3); }
  .service-tile:hover { transform: translateY(-4px); }
  .brochure:hover { color: var(--ink); }
}

@media (min-width: 600px) {
  .wrap { padding: 0 20px; }
  .brand .brand-name { font-size: 23px; }
  .brand .brand-loc { font-size: 11px; }
  .header-logo { height: 50px; }
  .hero-carousel { margin-top: 20px; }
  .slide { aspect-ratio: 16 / 9; }
  .slide-caption { padding: 20px 22px 40px; }
  .division-grid { gap: 10px; }
  .division-card { padding: 22px 26px; }
  .band-title { font-size: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pcard-name { font-size: 16px; }
  .chip { font-size: 11px; }
  .service-grid { gap: 14px; }
  .service-tile { padding: 22px 14px 18px; }
  .service-tile .tile-icon { width: 54px; height: 54px; }
  .service-tile svg { width: 27px; height: 27px; }
  .tile-name { font-size: 14px; }
  .tile-desc { font-size: 11.5px; }
  .tile-arrow { font-size: 10px; padding: 7px 14px; }
}

@media (min-width: 900px) {
  .wrap { padding: 0 24px; }
  .topbar-inner { padding-top: 14px; padding-bottom: 14px; }
  .brand .brand-name { font-size: 26px; letter-spacing: 0.06em; }
  .brand .brand-loc { font-size: 15px; letter-spacing: 0.22em; }
  .header-logo { height: 58px; }
  .hero-carousel { margin-top: 26px; }
  .carousel { border-radius: 18px; }
  .slide { aspect-ratio: 21 / 8; }
  .slide-caption { padding: 26px 30px 40px; }
  .slide-kicker { font-size: 11px; }
  .slide-sub { font-size: 14px; }
  .car-btn.prev { left: 14px; }
  .btn3d { font-size: 13px; padding: 15px 28px; border-radius: 14px; }
  .btn3d.big { width: auto; max-width: none; font-size: 16px; min-height: 58px; padding: 19px 40px; border-radius: 16px; }
  .division-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .division-card { padding: 28px 34px; border-radius: 20px; }
  .division-card.bw { padding: 0; }
  .division-card.bw .division-info { padding: 22px 34px 24px; }
  .division-sub { font-size: 14px; }
  .band-head { margin-bottom: 16px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .service-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
  .service-tile { padding: 30px 18px 26px; border-radius: 18px; gap: 12px; }
  .service-tile .tile-icon { width: 62px; height: 62px; border-radius: 16px; }
  .service-tile svg { width: 32px; height: 32px; }
  .tile-name { font-size: 17px; }
  .tile-desc { font-size: 12.5px; }
  .tile-arrow { font-size: 11px; padding: 8px 18px; }
  .site-foot { margin-top: 56px; }
}

@media (min-width: 1250px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.theme-bw { --band-a:#101114; --band-b:#1a1c20; }
.theme-rw { --band-a:#7c0a06; --band-b:#e10600; }


.crumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  padding-top: 16px;
}
.crumb a { color: inherit; text-decoration: none; }
.crumb .sep { opacity: 0.5; }

.page-band { background: linear-gradient(140deg, var(--band-a, #101114), var(--band-b, #23262b)); color: #fff; padding: 14px 0 26px; }
.page-title { font-size: clamp(27px, 7.2vw, 42px); font-weight: 900; letter-spacing: 0.02em; margin-top: 8px; }
.page-sub { font-size: 13.5px; opacity: 0.88; max-width: 60ch; margin-top: 4px; }

.section { margin-top: 30px; }
.h2 { font-size: 20px; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 12px; }
.h2.small { font-size: 16px; }
.lead { font-size: 14px; color: var(--muted); line-height: 1.55; }

.snap-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 14px;
}
.snap-row::-webkit-scrollbar { display: none; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.form-grid { display: grid; gap: 12px; }
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.field input, .field select {
  width: 100%;
  min-height: 48px;
  font-size: 16px;
  font-family: inherit;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7078' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--honda-red);
  box-shadow: 0 0 0 3px rgba(225,6,0,0.14);
}
.btn-block { width: 100%; margin-top: 4px; }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; }

.success { display: none; text-align: center; padding: 26px 10px; }
.success.show { display: block; }
.tick {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(180deg, #37cd80, #1e9e57);
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 8px 18px rgba(30,158,87,0.4), inset 0 2px 0 rgba(255,255,255,0.4);
}
.success h3 { font-size: 19px; }
.success p { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.refid {
  font-family: Consolas, monospace;
  background: var(--paper);
  border: 1px dashed var(--line);
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.hours { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.hours td { padding: 9px 0; border-bottom: 1px dashed var(--line); color: var(--muted); }
.hours tr:last-child td { border-bottom: none; }
.hours td:last-child { text-align: right; font-weight: 700; color: var(--ink); }

.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.benefit {
  font-size: 12px;
  font-weight: 700;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #43464c;
}

.role { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px; }
.role + .role { margin-top: 12px; }
.role h3 { font-size: 15.5px; font-weight: 800; }
.role p { font-size: 12.5px; color: var(--muted); margin-top: 4px; line-height: 1.5; }
.role-meta { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.role .btn3d { margin-top: 14px; min-height: 44px; font-size: 11.5px; padding: 10px 18px; }

.back-stack { display: grid; gap: 12px; justify-items: stretch; padding: 38px 0 10px; max-width: 430px; margin: 0 auto; }

.btn3d.wa {
  background: linear-gradient(180deg, #35d36b 0%, #1faa53 55%, #128c7e 100%);
  box-shadow: 0 6px 0 #0e6e63, inset 0 2px 0 rgba(255,255,255,0.45), 0 12px 20px rgba(18,140,126,0.35);
}
.btn3d.wa:active { box-shadow: 0 1px 0 #0e6e63, inset 0 2px 0 rgba(255,255,255,0.35), 0 4px 8px rgba(18,140,126,0.3); }

main.pad-for-cta { padding-bottom: 96px; }

/* Site footer */
.site-footer {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  padding: 16px 12px 2px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.site-footer .hf { color: var(--honda-red); }
.site-footer a { color: var(--muted); text-decoration: underline; }
.site-footer a:hover, .site-footer a:active { color: var(--ink); }

/* Bottom tab navigation */
.tabbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 4px;
  padding: 6px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 18px rgba(0,0,0,0.06);
}
.tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 0 3px;
  border-radius: 12px;
  transition: color 0.15s ease, background 0.15s ease;
}
.tab svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tab.active { color: var(--honda-red); background: #ffeceb; }
@media (min-width: 600px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
  .back-stack { grid-template-columns: 1fr 1fr; max-width: 760px; justify-items: stretch; gap: 16px; padding: 46px 0 10px; }
}
@media (min-width: 900px) {
  .page-band { padding: 20px 0 32px; }
  .snap-row { padding-inline: 0; }
}

.topbar.th-bw { background: rgba(16,17,20,0.96); border-bottom-color: #34373e; }
.topbar.th-rw { background: rgba(124,10,6,0.97); border-bottom-color: rgba(255,255,255,0.25); }

.service-grid.quick { gap: 10px; }
.service-grid.quick .service-tile { padding: 18px 8px 14px; gap: 8px; }
.service-grid.quick .tile-desc { display: none; }
.service-grid.quick .tile-icon { width: 52px; height: 52px; }
@media (min-width: 600px) {
  .service-grid.quick { grid-template-columns: repeat(4, 1fr); }
  .service-grid.quick .tile-desc { display: block; font-size: 11.5px; }
}

/* Filled brand logos (WhatsApp, Google Maps, Google G, etc.)
   Must override the generic outline-svg rule above. */
svg.icon-fill,
.icon-fill { stroke: none !important; fill: currentColor !important; }

/* Multi-colour brand logos keep their own per-path fills */
svg.icon-brand { stroke: none !important; }

.service-grid.quick .btn3d svg { width: 30px; height: 30px; }
.service-grid.quick .btn3d svg.icon-fill { margin-bottom: 2px; }
/* Center the label + description inside quick action tiles */
.service-grid.quick .btn3d { text-align: center; }
.service-grid.quick .btn3d > span { display: block; width: 100%; }

/* Landing line-up cards — themed lower halves */
.pcard-body.bw {
  background: linear-gradient(165deg, #2b2e35 0%, #101114 70%);
  border-top-color: #34373e;
}
.pcard-body.bw .pcard-name { color: #f2f3f5; }
.pcard-body.bw .pcard-type { color: #9aa0a8; }
.pcard-body.bw .chip { background: rgba(255,255,255,.08); border-color: #4a4e56; color: #d7d9de; }
.pcard-body.bw .brochure { color: #d7d9de; border-color: #5a5e66; }

.pcard-body.rw {
  background: linear-gradient(165deg, #ff574f 0%, var(--honda-red) 55%, #8e0300 100%);
  border-top-color: rgba(255,255,255,.35);
}
.pcard-body.rw .pcard-name { color: #fff; }
.pcard-body.rw .pcard-type { color: #ffd9d6; }
.pcard-body.rw .chip { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.55); color: #fff; }
.pcard-body.rw .brochure { color: #fff; border-color: rgba(255,255,255,.6); }

.pcard-body.bw .badge-prebook,
.pcard-body.rw .badge-prebook { background: rgba(255,255,255,.92); }

/* RedWing Full Line-up cards: reduce vertical height */
body.theme-rw .pcard-media { aspect-ratio: 16 / 12; padding: 6px 8px; }
body.theme-rw .pcard-body { padding: 10px 10px 12px; }
body.theme-rw .chips { margin-top: 7px; }
body.theme-rw .pcard-foot { margin-top: 8px; }

/* BigWing Full Line-up cards: reduce vertical height */
body.theme-bw .pcard-media { aspect-ratio: 16 / 12; padding: 6px 8px; }
body.theme-bw .pcard-body { padding: 10px 10px 12px; }
body.theme-bw .chips { margin-top: 7px; }
body.theme-bw .pcard-foot { margin-top: 8px; }

/* ===== Accessibility: visually-hidden (crawler/AT only) ===== */
.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;
}

/* ===== Brochure-derived product typography ===== */
.f-bebas      { font-family: 'Bebas Neue', sans-serif; letter-spacing: 0.05em; }
.f-jost       { font-family: Jost, sans-serif; }
.f-archivo    { font-family: Archivo, sans-serif; }
.f-anton      { font-family: Anton, sans-serif; letter-spacing: 0.04em; }
.f-saira      { font-family: Saira, sans-serif; }
.f-tenor      { font-family: 'Tenor Sans', serif; letter-spacing: 0.04em; }
.f-poppins    { font-family: Poppins, sans-serif; }
.f-montserrat { font-family: Montserrat, sans-serif; }
.f-nunito     { font-family: 'Nunito Sans', sans-serif; }

.pcard-tag {
  font-size: 10.5px;
  font-style: italic;
  font-weight: 600;
  margin-top: 4px;
  line-height: 1.35;
  opacity: 0.92;
}
.pcard-body.bw .pcard-tag { color: #c9cdd4; }
.pcard-body.rw .pcard-tag { color: #ffe3e0; }

.division-stage {
  background: transparent;
  border-radius: 14px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40%;
  max-width: 170px;
  min-height: 84px;
}
.division-stage img { max-height: 94px; max-width: 100%; object-fit: contain; }

/* RedWing landing box: a single stitched image of Activa + Unicorn, both parallel & same direction */
.division-card.rw .division-stage {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: auto;
  max-width: 100%;
  max-height: 420px;
  z-index: 1;
}
.division-card.rw .division-stage img { max-height: 420px; width: auto; object-fit: contain; }

/* BigWing card: banner on top, button below, on solid black */
.division-card.bw {
  position: relative;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  background: #000;
  border: 1px solid #000;
  min-height: 200px;
  padding: 0;
  overflow: hidden;
}
.division-card.bw .division-stage { position: relative; inset: auto; flex: 0 0 auto; width: 100%; max-width: none; min-height: 110px; margin: 0; z-index: 0; }
.division-card.bw .division-stage img { width: 100%; height: 100%; object-fit: cover; display: block; }
.division-card.bw .division-info { padding: 14px 18px 16px; position: relative; z-index: 2; }
.division-card.bw .bw-bikes { position: absolute; right: 14px; bottom: 14px; width: auto; max-height: 130px; object-fit: contain; z-index: 1; }
.division-card.bw .division-explore { position: static; margin: 10px 0 0; z-index: 2; }

/* ===== BigWing banner 2 (#bigwing2): full background image, overlay text ===== */
#bigwing2 {
  position: relative;
  display: block;
  background: #000;
  border: 1px solid #000;
  aspect-ratio: 3/2;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
#bigwing2 .bw2-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
#bigwing2 .bw2-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0) 100%);
}
#bigwing2 .bw2-banner {
  margin-top: auto;
  margin-bottom: 10px;
  max-width: 100%;
}
#bigwing2 .bw2-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.25);
  padding: 3px 8px;
  border-radius: 6px;
}
#bigwing2 .bw2-cta {
  margin-bottom: 24px;
}
#bigwing2 .bw2-cta .btn3d {
  min-height: 40px;
  font-size: 11px;
  padding: 9px 14px;
  border-radius: 11px;
  white-space: nowrap;
}

@media (min-width: 600px) {
  #bigwing2 .bw2-content { padding: 22px 20px; }
  #bigwing2 .bw2-tag { font-size: 15px; }
  #bigwing2 .bw2-cta .btn3d { font-size: 12px; }
}
@media (min-width: 1024px) {
  #bigwing2 .bw2-tag { font-size: 17px; }
}

/* ===== RedWing banner 2 (#redwing2): full background image, red logo, overlay text ===== */
#redwing2 {
  position: relative;
  display: block;
  background: #000;
  border: 1px solid #e2001a;
  aspect-ratio: 3/2;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
#redwing2 .rw2-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
#redwing2 .rw2-bg::after {
  content: "";
}
#redwing2 .rw2-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
  padding: 18px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.05) 70%, rgba(0,0,0,0) 100%);
}
#redwing2 .rw2-headrow {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
#redwing2 .rw2-logo {
  width: auto;
  max-height: 40px;
  object-fit: contain;
}
#redwing2 .rw2-banner {
  margin-top: auto;
  margin-bottom: 10px;
  max-width: 100%;
}
#redwing2 .rw2-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
  background: rgba(0,0,0,0.25);
  padding: 3px 8px;
  border-radius: 6px;
}
#redwing2 .rw2-cta {
  margin-bottom: 24px;
}
#redwing2 .rw2-cta .btn3d {
  min-height: 40px;
  font-size: 11px;
  padding: 9px 14px;
  border-radius: 11px;
  white-space: nowrap;
}

@media (min-width: 600px) {
  #redwing2 .rw2-content { padding: 22px 20px; }
  #redwing2 .rw2-tag { font-size: 15px; }
  #redwing2 .rw2-cta .btn3d { font-size: 12px; }
}
@media (min-width: 1024px) {
  #redwing2 .rw2-tag { font-size: 17px; }
}

.snap-row .pcard { flex: 0 0 74%; max-width: 300px; scroll-snap-align: center; }
@media (min-width: 600px) {
  .division-stage { max-width: 240px; }
  .division-stage img { max-height: 150px; }
  .division-card.bw { min-height: 200px; }
  .division-card.bw .division-stage { max-width: none; min-height: 120px; height: auto; }
  .snap-row .pcard { flex-basis: 44%; }
}
@media (min-width: 1024px) { .snap-row .pcard { flex-basis: 30%; } }

/* ===== Refined 3D buttons + micro-interactions ===== */
.btn3d {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.15s ease;
}
.btn3d.red {
  box-shadow: 0 4px 0 var(--honda-red-dark), inset 0 1px 0 rgba(255,255,255,0.35), 0 10px 22px rgba(225,6,0,0.32);
}
.btn3d.silver {
  box-shadow: 0 4px 0 #83878f, inset 0 1px 0 rgba(255,255,255,0.9), 0 10px 22px rgba(16,17,20,0.22);
}
.btn3d.dark {
  box-shadow: 0 4px 0 #000, inset 0 1px 0 rgba(255,255,255,0.18), 0 10px 22px rgba(0,0,0,0.38);
}
.btn3d.wa {
  box-shadow: 0 4px 0 #0e6e63, inset 0 1px 0 rgba(255,255,255,0.35), 0 10px 22px rgba(18,140,126,0.38);
}
@media (hover: hover) {
  .btn3d:hover { transform: translateY(-2px); filter: brightness(1.05); }
  .btn3d.red:hover    { box-shadow: 0 5px 0 var(--honda-red-dark), inset 0 1px 0 rgba(255,255,255,0.35), 0 16px 34px rgba(225,6,0,0.48); }
  .btn3d.silver:hover { box-shadow: 0 5px 0 #83878f, inset 0 1px 0 rgba(255,255,255,0.9), 0 16px 34px rgba(16,17,20,0.3); }
  .btn3d.dark:hover   { box-shadow: 0 5px 0 #000, inset 0 1px 0 rgba(255,255,255,0.18), 0 16px 34px rgba(0,0,0,0.5); }
  .btn3d.wa:hover     { box-shadow: 0 5px 0 #0e6e63, inset 0 1px 0 rgba(255,255,255,0.35), 0 16px 34px rgba(18,140,126,0.52); }
}
.btn3d.red:active    { transform: translateY(3px); box-shadow: 0 1px 0 var(--honda-red-dark), 0 4px 10px rgba(225,6,0,0.35); }
.btn3d.silver:active { transform: translateY(3px); box-shadow: 0 1px 0 #83878f, 0 4px 10px rgba(16,17,20,0.25); }
.btn3d.dark:active   { transform: translateY(3px); box-shadow: 0 1px 0 #000, 0 4px 10px rgba(0,0,0,0.4); }
.btn3d.wa:active     { transform: translateY(3px); box-shadow: 0 1px 0 #0e6e63, 0 4px 10px rgba(18,140,126,0.4); }
.btn3d:focus-visible { outline: 3px solid rgba(225,6,0,0.4); outline-offset: 3px; }

/* Tap ripple */
.service-tile { position: relative; overflow: hidden; }
.ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(1);
  animation: rippleGrow 0.55s ease-out forwards;
}
@keyframes rippleGrow { to { transform: translate(-50%, -50%) scale(16); opacity: 0; } }

/* Entrance animation for rendered product cards */
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.pcard { animation: fadeUp 0.45s ease backwards; }
.snap-row .pcard:nth-child(3n+2) { animation-delay: 0.06s; }
.snap-row .pcard:nth-child(3n+3) { animation-delay: 0.12s; }

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