:root {
  color-scheme: light;
  --ink: #0a0b0f;
  --ink-2: #151821;
  --panel: #202431;
  --paper: #f4f7fb;
  --white: #ffffff;
  --muted: #626978;
  --line: #dfe5ee;
  --neon-yellow: #ffd02e;
  --neon-red: #ff3434;
  --electric-blue: #2574ff;
  --chain-green: #38d27d;
  --shadow: 0 18px 55px rgba(10, 11, 15, 0.18);
  --soft-shadow: 0 12px 38px rgba(10, 11, 15, 0.12);
  --radius: 8px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

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

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--neon-yellow);
  outline-offset: 3px;
}

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

[data-archived-service-section] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--neon-yellow);
  color: var(--ink);
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 10px clamp(16px, 3vw, 42px);
  background: rgba(10, 11, 15, 0.92);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  width: 72px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 208, 46, 0.28));
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-name {
  color: var(--neon-yellow);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

.desktop-nav > a,
.nav-menu-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.nav-cluster {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: min(720px, calc(100vw - 48px));
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(16, 18, 25, 0.98);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.nav-cluster:hover .mega-menu,
.nav-cluster:focus-within .mega-menu,
.mega-menu.is-open {
  display: grid;
}

.mega-menu a {
  min-height: 84px;
  display: grid;
  align-content: end;
  padding: 12px;
  border-radius: 6px;
  overflow: hidden;
  background: linear-gradient(rgba(10, 11, 15, 0.16), rgba(10, 11, 15, 0.76)), var(--category-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.mega-menu a:hover {
  transform: translateY(-2px);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: var(--white);
  font-weight: 900;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--neon-yellow);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(255, 208, 46, 0.24);
}

.button-primary:hover {
  background: #ffe271;
}

.button-secondary {
  border-color: rgba(10, 11, 15, 0.16);
  background: var(--white);
  color: var(--ink);
}

.section-dark .button-secondary,
.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

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

.nav-toggle {
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  position: absolute;
  content: "";
  left: 0;
}

.nav-toggle-bars::before {
  top: -7px;
}

.nav-toggle-bars::after {
  top: 7px;
}

.nav-open .nav-toggle-bars {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-bars::before {
  transform: translateY(7px) rotate(90deg);
}

.nav-open .nav-toggle-bars::after {
  opacity: 0;
}

.mobile-nav {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  z-index: 45;
  overflow-y: auto;
  padding: 18px;
  background: var(--ink);
  color: var(--white);
}

.mobile-nav nav {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 0 auto;
}

.mobile-nav a,
.mobile-nav summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
}

.mobile-nav details {
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav summary {
  cursor: pointer;
}

.mobile-bike-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
}

.mobile-bike-links a {
  min-height: 58px;
  background: rgba(255, 255, 255, 0.11);
}

.mobile-shop {
  margin-top: 6px;
}

.section-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.announcement {
  background: var(--neon-yellow);
  color: var(--ink);
}

.announcement-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 9px 0;
  text-align: center;
}

.announcement p {
  margin: 0;
  font-weight: 900;
}

.announcement a {
  border-bottom: 2px solid currentColor;
  font-weight: 900;
}

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

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 11, 15, 0.92) 0%, rgba(10, 11, 15, 0.7) 45%, rgba(10, 11, 15, 0.3) 100%),
    linear-gradient(0deg, rgba(10, 11, 15, 0.95) 0%, rgba(10, 11, 15, 0.05) 40%),
    url("./assets/fresh/shop_website_assets/web-ready/jpg/storefront/shop-exterior-storefront-bike-display-02.jpg");
  background-size: cover;
  background-position: center 42%;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: clamp(64px, 9vw, 128px) 0 28px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--electric-blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--neon-yellow);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: var(--neon-yellow);
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 0 18px rgba(255, 208, 46, 0.28),
    0 6px 34px rgba(0, 0, 0, 0.72);
}

.hero h1 {
  max-width: 1040px;
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.94;
}

h2 {
  max-width: 860px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1.08rem, 2vw, 1.38rem);
}

.hero-actions,
.section-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(36px, 8vw, 80px);
}

.quick-actions a {
  min-height: 108px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border-top: 4px solid var(--neon-yellow);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.quick-actions a:nth-child(2) {
  border-top-color: var(--neon-red);
}

.quick-actions a:nth-child(3) {
  border-top-color: var(--chain-green);
}

.quick-actions strong {
  color: var(--white);
  font-size: 1.05rem;
}

.quick-actions span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.section {
  padding: clamp(64px, 9vw, 112px) 0;
}

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

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

.section-dark {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    var(--ink);
  color: var(--white);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 32px;
}

.section-heading p,
.split-row p,
.service-hero p,
.about-layout p {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark .section-heading p,
.section-dark .about-layout p {
  color: rgba(255, 255, 255, 0.76);
}

.inventory-strip {
  border-bottom: 1px solid var(--line);
}

.split-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.split-row h2 {
  max-width: 740px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.split-row p {
  max-width: 760px;
  margin-bottom: 0;
}

.trust-proof {
  border-bottom: 1px solid var(--line);
}

.trust-proof-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: 28px;
  align-items: center;
}

.trust-proof-inner p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.trust-proof-actions {
  margin-top: 18px;
}

.trust-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-proof-list span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
}

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

.shop-scenes {
  padding-top: clamp(56px, 8vw, 92px);
}

.scene-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-auto-rows: 240px;
  gap: 14px;
}

.scene-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.scene-card:first-child {
  grid-row: span 2;
}

.scene-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 48px 16px 14px;
  background: linear-gradient(0deg, rgba(10, 11, 15, 0.92), rgba(10, 11, 15, 0));
  color: var(--white);
  font-weight: 900;
}

.category-card {
  min-height: 306px;
  display: grid;
  grid-template-rows: 172px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.category-card img {
  width: 100%;
  height: 172px;
  object-fit: contain;
  padding: 16px;
  background: #f7f9fd;
}

.category-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 18px;
}

.category-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

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

.card-link {
  align-self: end;
  color: var(--electric-blue);
  font-weight: 900;
}

.local-category-seo {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.local-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.local-category-grid article {
  display: grid;
  gap: 10px;
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.local-category-grid h3 {
  margin-bottom: 0;
  font-size: 1.2rem;
}

.local-category-grid p {
  margin: 0;
  color: var(--muted);
}

.local-category-grid a {
  align-self: end;
  color: var(--electric-blue);
  font-weight: 900;
}

.bike-finder {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.bike-finder-intro {
  display: grid;
  align-content: center;
  gap: 12px;
}

.bike-finder h3,
.bike-finder h4,
.bike-finder p {
  margin: 0;
}

.bike-finder h3 {
  max-width: 420px;
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  line-height: 0.98;
}

.bike-finder h4 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.08;
}

.bike-finder-intro p:not(.eyebrow),
.bike-finder-panel > p:not(.bike-finder-kicker),
.bike-finder-result p {
  color: rgba(255, 255, 255, 0.76);
}

.bike-finder-panel {
  min-height: 268px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(37, 116, 255, 0.18), rgba(255, 208, 46, 0.08)),
    rgba(255, 255, 255, 0.06);
}

.bike-finder-kicker {
  margin-bottom: 8px;
  color: var(--neon-yellow);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bike-finder-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.bike-finder-option,
.bike-finder-reset {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 900;
  text-align: left;
}

.bike-finder-option {
  padding: 10px 12px;
}

.bike-finder-option:hover,
.bike-finder-reset:hover {
  border-color: var(--neon-yellow);
  background: rgba(255, 208, 46, 0.14);
}

.bike-finder-result {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.bike-finder-result img {
  width: 100%;
  height: 156px;
  object-fit: contain;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--white);
}

.bike-finder-note {
  margin-top: 8px;
}

.bike-finder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.bike-finder-reset {
  padding: 0 14px;
}

.brand-band,
.arrival-section {
  margin-top: 28px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.brand-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: 26px;
  align-items: stretch;
}

.brand-band h3,
.arrival-section h3 {
  margin-bottom: 0;
}

.brand-band p:not(.eyebrow) {
  max-width: 460px;
  color: rgba(255, 255, 255, 0.74);
}

.brand-guide {
  display: grid;
  gap: 14px;
}

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

.brand-chip,
.service-chip-list span,
.trust-grid span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
}

.brand-chip {
  border: 1px solid transparent;
}

.brand-chip:hover,
.brand-chip:focus-visible,
.brand-chip.is-selected {
  border-color: var(--neon-yellow);
  background: rgba(255, 208, 46, 0.16);
}

.brand-chip.is-selected {
  box-shadow: 0 0 0 2px rgba(255, 208, 46, 0.22);
}

.brand-detail {
  min-height: 154px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.brand-detail h4,
.brand-detail p {
  margin: 0;
}

.brand-detail h4 {
  font-size: 1.4rem;
}

.brand-detail p:not(.bike-finder-kicker) {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
}

.brand-detail-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--neon-yellow);
  font-weight: 900;
}

.arrival-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(37, 116, 255, 0.24), rgba(255, 52, 52, 0.12)),
    var(--ink-2);
}

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

.arrival-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--neon-yellow);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.category-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.category-detail-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 236px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.category-detail-card img {
  width: 100%;
  height: 100%;
  min-height: 236px;
  object-fit: contain;
  padding: 14px;
  background: #f5f7fb;
}

.category-detail-body {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
}

.category-detail-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.brand-line {
  color: var(--neon-yellow);
  font-weight: 900;
}

.mini-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.mini-link-row a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
}

.mini-link-row a:first-child {
  background: var(--neon-yellow);
  color: var(--ink);
}

.related-line {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.accessory-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

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

.accessory-visual img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
}

.accessory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.accessory-card,
.service-package,
.note-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.accessory-card {
  min-height: 148px;
  padding: 18px;
}

.accessory-card h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
}

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

#accessories .section-cta-row {
  margin-top: 24px;
}

.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: clamp(26px, 5vw, 54px);
  align-items: center;
  margin-bottom: 28px;
}

.service-hero img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-direct .service-hero {
  margin-bottom: 46px;
}

.service-photo-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: end;
}

.service-photo-stack img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.service-photo-stack .service-photo-main {
  grid-column: 1 / -1;
  aspect-ratio: 1.72 / 1;
  border-width: 0;
  box-shadow: var(--shadow);
}

.service-hero-focused {
  gap: clamp(32px, 6vw, 72px);
  padding: 28px 0 8px;
}

.service-hero-focused h2 {
  max-width: 780px;
}

.service-hero-focused p:not(.eyebrow) {
  max-width: 700px;
}

.service-hero-proof {
  display: grid;
  gap: 9px;
  max-width: 620px;
  margin: 22px 0 26px;
}

.service-hero-proof span {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.service-hero-proof span::before {
  content: "";
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--neon-yellow);
  box-shadow: 0 0 0 4px rgba(255, 208, 46, 0.2);
}

.service-photo-story {
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-photo-story img {
  border-width: 0;
}

.service-photo-caption {
  grid-column: 1 / -1;
  display: grid;
  gap: 4px;
  padding: 12px 14px 2px;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-photo-caption strong {
  color: var(--ink);
  font-size: 1rem;
}

.tuneup-showcase {
  margin: 30px 0 32px;
  border: 1px solid rgba(10, 11, 15, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(244, 247, 251, 0.94), rgba(255, 255, 255, 0.98)),
    var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.tuneup-showcase-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.24fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  border-bottom: 1px solid rgba(10, 11, 15, 0.1);
}

.tuneup-showcase-header h3 {
  margin-bottom: 10px;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.tuneup-showcase-header p:not(.eyebrow) {
  max-width: 790px;
  margin-bottom: 0;
  color: #3d4656;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}

.tuneup-price-lockup {
  min-width: 170px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(10, 11, 15, 0.18);
  border-top: 6px solid var(--neon-yellow);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.tuneup-price-lockup span {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 950;
  line-height: 0.9;
}

.tuneup-price-lockup small {
  color: rgba(10, 11, 15, 0.74);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tuneup-definition {
  display: grid;
  grid-template-columns: minmax(180px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px clamp(24px, 4vw, 42px);
  border-bottom: 1px solid rgba(10, 11, 15, 0.1);
  background: rgba(255, 255, 255, 0.58);
}

.tuneup-definition strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.tuneup-definition span {
  color: #3d4656;
}

.tuneup-worklist {
  display: grid;
  border-bottom: 1px solid rgba(10, 11, 15, 0.1);
}

.tuneup-worklist-head,
.tuneup-worklist article {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px clamp(24px, 4vw, 42px);
}

.tuneup-worklist-head {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.tuneup-worklist article {
  align-items: start;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(10, 11, 15, 0.1);
}

.tuneup-worklist article:nth-child(odd) {
  background: rgba(244, 247, 251, 0.8);
}

.tuneup-worklist h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.08;
}

.tuneup-worklist p {
  margin: 0;
  color: var(--muted);
}

.tuneup-bottom-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px clamp(24px, 4vw, 42px);
  background: var(--ink);
  color: var(--white);
}

.tuneup-bottom-line div {
  display: grid;
  gap: 3px;
}

.tuneup-bottom-line strong {
  color: var(--neon-yellow);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.tuneup-bottom-line span {
  color: rgba(255, 255, 255, 0.78);
}

.service-scope-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  align-items: stretch;
  margin: 0 0 36px;
}

.service-scope-copy,
.service-scope-note {
  padding: 24px;
  border-radius: var(--radius);
}

.service-scope-copy {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-scope-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.service-scope-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.service-scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-scope-list li {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
}

.service-scope-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--electric-blue);
}

.service-scope-note {
  display: grid;
  align-content: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
}

.service-scope-note strong {
  color: var(--neon-yellow);
  font-size: 1.45rem;
  line-height: 1.08;
}

.service-scope-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.repair-menu {
  margin-top: 34px;
}

.repair-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.repair-menu-grid article {
  min-height: 186px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid #c9d8ef;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.repair-menu-grid h4 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.1;
}

.repair-menu-grid p {
  margin: 0;
  color: var(--muted);
}

.ebike-mechanical-callout,
.emoto-mechanical-callout {
  display: grid;
  gap: 24px;
  margin: 34px 0 0;
  padding: 18px;
  border: 1px solid rgba(30, 41, 59, 0.16);
  border-radius: var(--radius);
  background: #f8fafc;
  color: #172033;
}

.ebike-mechanical-callout {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr) minmax(250px, 0.9fr);
  align-items: center;
  background: var(--white);
}

.emoto-mechanical-callout {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: stretch;
}

.ebike-mechanical-copy,
.ebike-mechanical-note {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ebike-mechanical-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 14px;
  border: 1px solid rgba(30, 41, 59, 0.12);
  border-radius: var(--radius);
  background: #f8fafc;
}

.ebike-mechanical-photo img {
  width: 100%;
  max-height: 260px;
  object-fit: contain;
}

.ebike-mechanical-copy h3,
.ebike-mechanical-copy p,
.ebike-mechanical-note p {
  margin: 0;
}

.ebike-mechanical-note {
  padding: 16px;
  border: 1px solid rgba(30, 41, 59, 0.12);
  border-radius: var(--radius);
  background: #f8fafc;
}

.emoto-mechanical-callout img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(30, 41, 59, 0.12);
  background: #e5e7eb;
}

.emoto-mechanical-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 8px 8px 8px 0;
}

.emoto-mechanical-copy h3,
.emoto-mechanical-copy p {
  margin: 0;
}

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

.emoto-mechanical-list {
  padding: 14px;
  border: 1px solid rgba(30, 41, 59, 0.12);
  border-radius: var(--radius);
  background: var(--white);
}

.emoto-mechanical-list strong {
  display: block;
  margin-bottom: 8px;
  color: #111827;
}

.emoto-mechanical-list ul {
  margin: 0;
  padding-left: 18px;
}

.emoto-mechanical-list li + li {
  margin-top: 5px;
}

.emoto-mechanical-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.emoto-mechanical-cta span {
  color: #475569;
  font-size: 0.95rem;
}

.service-direct [id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.service-subheading {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.service-subheading h3 {
  margin-bottom: 10px;
}

.service-subheading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.common-repairs {
  margin-bottom: 28px;
}

.repair-popout-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.repair-popout {
  min-height: 214px;
  border: 1px solid #c9d8ef;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.repair-popout[open] {
  border-color: rgba(37, 116, 255, 0.54);
}

.repair-popout summary {
  min-height: 214px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 22px 52px 22px 22px;
  position: relative;
  cursor: pointer;
  list-style: none;
}

.repair-popout summary::-webkit-details-marker {
  display: none;
}

.repair-popout summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  bottom: 18px;
  color: var(--ink);
  font-size: 1.6rem;
  font-weight: 950;
  line-height: 1;
}

.repair-popout[open] summary {
  min-height: 0;
  padding-bottom: 12px;
}

.repair-popout[open] summary::after {
  content: "-";
}

.repair-card-title {
  max-width: 240px;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 950;
  line-height: 1.12;
}

.repair-card-copy {
  max-width: 270px;
  color: var(--muted);
  font-size: 0.98rem;
}

.repair-popout-body {
  display: grid;
  gap: 10px;
  padding: 0 22px 22px;
}

.repair-popout-body p {
  margin: 0;
  padding: 12px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.94rem;
}

.repair-popout-body strong {
  color: var(--ink);
}

.featured-tuneup {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 30px 0 24px;
  padding: 24px;
  border: 1px solid rgba(37, 116, 255, 0.36);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(37, 116, 255, 0.1), rgba(255, 208, 46, 0.08)),
    var(--white);
  box-shadow: var(--soft-shadow);
}

.featured-tuneup-badge {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 8px solid var(--ink);
  border-radius: 50%;
  background: var(--neon-yellow);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
}

.featured-tuneup h3 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.featured-tuneup p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
}

.tuneup-clarifiers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tuneup-clarifiers span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(37, 116, 255, 0.16);
}

.repair-flow-wrap {
  margin-top: 30px;
  text-align: center;
}

.repair-flow-wrap > h3 {
  max-width: none;
  margin-bottom: 20px;
}

.repair-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
}

.repair-flow article,
.other-work-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.repair-flow article {
  min-height: 160px;
  padding: 18px;
  text-align: left;
}

.repair-flow span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--neon-yellow);
  color: var(--ink);
  font-weight: 950;
}

.repair-flow h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.repair-flow p,
.other-work-panel p {
  color: var(--muted);
}

.service-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: stretch;
}

.service-direct .tuneup-panel {
  margin-top: 0;
}

.other-work-panel {
  padding: 22px;
}

.other-work-panel h3 {
  margin-bottom: 8px;
}

.other-work-panel .service-chip-list {
  margin-top: 18px;
}

.ebike-band {
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(37, 116, 255, 0.24);
  border-radius: var(--radius);
  background: #edf4ff;
}

.ebike-band img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: var(--radius);
}

.ebike-band h3 {
  margin-bottom: 8px;
}

.ebike-band p:not(.eyebrow) {
  margin-bottom: 0;
  color: #3d4858;
}

.service-direct .question-grid {
  padding-top: 0;
  border-top: 0;
}

.repair-keyword-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.repair-keyword-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.repair-keyword-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.repair-keyword-panel li {
  color: var(--ink);
  font-weight: 750;
}

.service-packages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-package {
  min-height: 188px;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.service-package .price {
  color: var(--electric-blue);
  font-weight: 950;
}

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

.tuneup-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.tuneup-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.tuneup-panel ul {
  columns: 2;
  column-gap: 28px;
  margin: 0;
  padding-left: 18px;
}

.tuneup-panel li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.service-list-wrap {
  margin-top: 28px;
}

.service-list-wrap h3 {
  margin-bottom: 14px;
}

.service-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-chip-list span {
  background: var(--ink);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.note-card {
  min-height: 130px;
  padding: 18px;
}

.note-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

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

.service-faq {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-faq h3 {
  margin-bottom: 14px;
}

.service-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.service-faq details + details {
  margin-top: 10px;
}

.service-faq summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
}

.service-faq p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.64fr);
  gap: 36px;
  align-items: center;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.trust-grid span:nth-child(1) {
  background: rgba(255, 208, 46, 0.16);
}

.trust-grid span:nth-child(2) {
  background: rgba(255, 52, 52, 0.16);
}

.trust-grid span:nth-child(3) {
  background: rgba(37, 116, 255, 0.18);
}

.trust-grid span:nth-child(4) {
  background: rgba(56, 210, 125, 0.16);
}

.about-photo {
  margin: 0;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-photo figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.45fr) minmax(0, 1fr);
  gap: 24px;
}

.contact-info {
  display: grid;
  gap: 16px;
  align-content: start;
}

.status-pill {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

address {
  font-style: normal;
}

.contact-link {
  width: fit-content;
  border-bottom: 2px solid var(--electric-blue);
  color: var(--ink);
  font-weight: 900;
}

.hours-list,
.footer-hours {
  display: grid;
  gap: 6px;
}

.hours-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 10px;
}

.hours-row span:first-child {
  color: var(--muted);
  font-weight: 800;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.map-wrap {
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.site-footer {
  padding: 48px 0 24px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-mark {
  width: 120px;
  height: auto;
  margin-bottom: 12px;
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.2;
}

.site-footer a {
  width: fit-content;
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 800;
}

.footer-links {
  columns: 2;
}

.footer-hours .hours-row {
  grid-template-columns: 88px minmax(0, 1fr);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .nav-toggle {
    display: grid;
  }

  .category-grid,
  .service-packages,
  .repair-popout-grid,
  .repair-flow,
  .repair-menu-grid,
  .local-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tuneup-worklist-head,
  .tuneup-worklist article {
    grid-template-columns: minmax(140px, 0.3fr) minmax(0, 1fr);
  }

  .tuneup-worklist-head span:last-child,
  .tuneup-worklist article p:last-child {
    grid-column: 2;
  }

  .category-detail-grid,
  .service-hero,
  .service-scope-layout,
  .repair-keyword-panel,
  .service-two-column,
  .ebike-band,
  .ebike-mechanical-callout,
  .emoto-mechanical-callout,
  .trust-proof-inner,
  .about-layout,
  .contact-layout,
  .accessory-layout,
  .bike-finder {
    grid-template-columns: 1fr;
  }

  .service-hero img,
  .about-photo img {
    max-height: 520px;
  }

  .ebike-mechanical-photo {
    min-height: 180px;
  }

  .emoto-mechanical-copy {
    padding: 0;
  }

  .emoto-mechanical-callout img {
    min-height: 240px;
    max-height: 360px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    gap: 12px;
    padding: 8px 14px;
  }

  .brand-mark {
    width: 58px;
    height: 42px;
  }

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

  .brand-place,
  .header-call {
    display: none;
  }

  .header-shop {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.86rem;
  }

  .section-inner {
    width: min(100% - 24px, 1160px);
  }

  .announcement-inner {
    display: grid;
    gap: 4px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(10, 11, 15, 0.72) 0%, rgba(10, 11, 15, 0.9) 62%, rgba(10, 11, 15, 0.98) 100%),
      url("./assets/fresh/shop_website_assets/web-ready/jpg/storefront/shop-exterior-storefront-bike-display-02.jpg");
    background-size: cover;
    background-position: center top;
  }

  .hero-content {
    padding-top: 52px;
  }

  h1 {
    font-size: clamp(3.4rem, 17vw, 6.2rem);
  }

  .hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.8rem);
  }

  .hero-actions .button,
  .section-cta-row .button {
    width: 100%;
  }

  .quick-actions,
  .split-row,
  .brand-band,
  .brand-guide,
  .arrival-section,
  .featured-tuneup,
  .tuneup-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-actions {
    margin-top: 32px;
  }

  .quick-actions a {
    min-height: 92px;
  }

  .category-grid,
  .bike-finder-options,
  .bike-finder-result,
  .scene-grid,
  .service-packages,
  .repair-popout-grid,
  .repair-flow,
  .repair-menu-grid,
  .local-category-grid,
  .note-grid,
  .accessory-grid,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .scene-grid {
    grid-auto-rows: 260px;
  }

  .scene-card:first-child {
    grid-row: span 1;
  }

  .service-direct .service-hero {
    margin-bottom: 34px;
  }

  .service-photo-stack {
    gap: 8px;
  }

  .service-hero-proof span {
    min-height: 0;
  }

  .service-subheading {
    text-align: left;
  }

  .tuneup-showcase-header,
  .tuneup-definition,
  .tuneup-bottom-line,
  .service-scope-list,
  .tuneup-worklist article {
    grid-template-columns: 1fr;
  }

  .tuneup-worklist-head {
    display: none;
  }

  .tuneup-showcase-header {
    gap: 20px;
  }

  .tuneup-price-lockup {
    width: min(260px, 100%);
    min-width: 0;
    justify-self: start;
  }

  .tuneup-worklist article p:last-child {
    grid-column: auto;
  }

  .tuneup-bottom-line .button {
    width: 100%;
  }

  .repair-popout,
  .repair-popout summary {
    min-height: 0;
  }

  .repair-popout summary {
    padding: 20px 50px 20px 18px;
  }

  .featured-tuneup {
    align-items: start;
  }

  .featured-tuneup .button {
    width: 100%;
  }

  .category-detail-card {
    grid-template-columns: 1fr;
  }

  .category-detail-card img {
    height: 210px;
    min-height: 210px;
  }

  .tuneup-panel ul {
    columns: 1;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }

  .footer-links {
    columns: 1;
  }
}

@media (max-width: 460px) {
  .emoto-mechanical-lists {
    grid-template-columns: 1fr;
  }

  .header-shop {
    display: none;
  }

  .mobile-bike-links {
    grid-template-columns: 1fr;
  }

  .accessory-visual {
    grid-template-columns: 1fr;
  }

  .button {
    padding-inline: 14px;
  }

  .hours-row {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}

/* Cohesive visual system: warm workshop editorial direction. */
:root {
  --ink: #11110f;
  --ink-2: #1c1c18;
  --panel: #292821;
  --paper: #f3efe6;
  --white: #fffdf8;
  --muted: #69655d;
  --line: #ddd5c7;
  --neon-yellow: #f7ca18;
  --electric-blue: #245c96;
  --shadow: 0 22px 60px rgba(17, 17, 15, 0.16);
  --soft-shadow: 0 10px 30px rgba(17, 17, 15, 0.09);
  --radius: 14px;
  --header-height: 78px;
}

body {
  min-width: 0;
  background: var(--paper);
  font-size: 1rem;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.brand-name,
.button,
.desktop-nav,
.mobile-nav,
.status-pill {
  font-family: "Arial Narrow", "Franklin Gothic Medium", "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.page-top-anchor {
  display: block;
  height: 0;
  scroll-margin-top: var(--header-height);
}

html.hash-restoring {
  scroll-behavior: auto;
}

.site-header {
  min-height: var(--header-height);
  gap: clamp(14px, 2vw, 26px);
  padding: 8px clamp(16px, 3vw, 46px);
  border-bottom: 2px solid rgba(247, 202, 24, 0.78);
  background: rgba(17, 17, 15, 0.96);
  box-shadow: 0 8px 24px rgba(17, 17, 15, 0.18);
}

.brand-mark {
  width: 68px;
  height: 48px;
  border-radius: 6px;
  filter: saturate(0.94) drop-shadow(0 0 16px rgba(247, 202, 24, 0.22));
}

.brand-name {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.brand-place {
  margin-top: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.desktop-nav {
  gap: 2px;
}

.desktop-nav > a,
.nav-menu-button {
  padding-inline: 11px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.mega-menu {
  top: calc(100% + 25px);
  gap: 12px;
  padding: 16px;
  border-color: rgba(247, 202, 24, 0.22);
  border-radius: 18px;
  background: rgba(17, 17, 15, 0.99);
}

.mega-menu a {
  min-height: 98px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.header-call,
.button,
.nav-toggle {
  border-radius: 10px;
}

.header-call {
  font-size: 0.9rem;
}

.button {
  min-height: 48px;
  letter-spacing: 0.01em;
}

.button-primary {
  background: var(--neon-yellow);
  box-shadow: 0 9px 24px rgba(247, 202, 24, 0.2);
}

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

.mobile-nav {
  padding: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(247, 202, 24, 0.12), transparent 30%),
    var(--ink);
}

.mobile-nav nav {
  gap: 8px;
}

.mobile-nav a,
.mobile-nav summary {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.section-inner {
  width: min(1200px, calc(100% - 40px));
}

.announcement {
  border-bottom: 1px solid rgba(17, 17, 15, 0.18);
  background: var(--neon-yellow);
}

.announcement-inner {
  min-height: 44px;
  font-size: 0.9rem;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  align-items: center;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--neon-yellow) 0 34%, var(--neon-red) 34% 67%, var(--chain-green) 67%);
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.96) 0%, rgba(17, 17, 15, 0.75) 50%, rgba(17, 17, 15, 0.3) 100%),
    linear-gradient(0deg, rgba(17, 17, 15, 0.94) 0%, rgba(17, 17, 15, 0.05) 58%),
    url("./assets/fresh/shop_website_assets/web-ready/jpg/storefront/shop-exterior-storefront-bike-display-02.jpg");
  background-position: center 44%;
  transform: none;
}

.hero-content {
  padding: clamp(72px, 8vw, 118px) 0 30px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.eyebrow::after {
  width: 38px;
  height: 2px;
  content: "";
  background: currentColor;
  opacity: 0.58;
}

.hero h1 {
  max-width: 970px;
  margin-bottom: 22px;
  font-size: clamp(3.7rem, 7.1vw, 6.75rem);
  line-height: 0.91;
  letter-spacing: -0.035em;
  text-shadow: 0 7px 36px rgba(0, 0, 0, 0.62);
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
}

.quick-actions {
  gap: 14px;
  margin-top: clamp(38px, 6vw, 68px);
}

.quick-actions a {
  min-height: 96px;
  padding: 17px 18px;
  border-radius: 12px 12px 0 0;
  background: rgba(17, 17, 15, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
}

.section {
  padding: clamp(76px, 8vw, 118px) 0;
}

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

.section-light {
  background:
    radial-gradient(circle at 88% 12%, rgba(247, 202, 24, 0.08), transparent 24%),
    var(--paper);
}

.section-dark {
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 8% 10%, rgba(247, 202, 24, 0.08), transparent 22%),
    var(--ink);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.section-heading {
  max-width: 900px;
  margin-bottom: clamp(32px, 5vw, 52px);
}

.section-heading h2,
.about-layout h2,
.service-hero h2 {
  font-size: clamp(2.45rem, 5vw, 4.65rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.section-heading p,
.split-row p,
.service-hero p,
.about-layout p {
  font-size: 1.04rem;
}

.inventory-strip {
  padding: clamp(42px, 5vw, 62px) 0;
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 4px 0 rgba(247, 202, 24, 0.7);
}

.trust-proof {
  padding: clamp(64px, 7vw, 92px) 0;
}

.trust-proof-list span {
  border-color: #d7cfbf;
  background: #f7f2e8;
  transition: border-color 160ms ease, background 160ms ease;
}

.scene-grid {
  gap: 18px;
}

.scene-card,
.category-card,
.category-detail-card,
.accessory-visual img,
.map-wrap,
.about-photo img {
  border-radius: 18px;
}

.scene-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.scene-card img,
.category-card img {
  transition: transform 280ms ease;
}

.category-grid {
  gap: 18px;
}

.category-card {
  min-height: 320px;
  border-color: #d9d1c3;
  box-shadow: 0 8px 24px rgba(17, 17, 15, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card img {
  background: #f6f1e8;
}

.category-card-body {
  padding: 20px;
}

.card-link,
.brand-detail-link {
  text-decoration: underline;
  text-decoration-color: rgba(36, 92, 150, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.bike-finder,
.brand-band,
.arrival-section {
  border: 1px solid rgba(247, 202, 24, 0.14);
  border-radius: 20px;
}

.bike-finder-panel,
.brand-detail {
  border-radius: 14px;
}

.category-detail-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.075);
}

.accessory-card {
  border-color: #d8d0c2;
  border-top: 3px solid var(--neon-yellow);
  border-radius: 12px;
  box-shadow: none;
}

.about-photo img {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-info {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f8f4eb;
}

.map-wrap {
  border-color: #d5ccbd;
}

.site-footer {
  border-top: 5px solid var(--neon-yellow);
  background:
    radial-gradient(circle at 12% 0%, rgba(247, 202, 24, 0.08), transparent 28%),
    var(--ink);
}

/* Five-block service journey. Public hash IDs live on the complete visual blocks. */
.service-direct {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 4%, rgba(247, 202, 24, 0.11), transparent 22%),
    var(--white);
}

.service-direct::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--neon-yellow), #e7ad00 58%, var(--ink) 58%);
}

#service,
#service-flow-title,
#tuneup-title,
#repair-menu-title,
#standard-ebike-title,
#emoto-mechanical-title,
#ebike-service-detail-title {
  scroll-margin-top: 16px;
}

.service-hero {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.72fr);
  gap: clamp(38px, 7vw, 82px);
  align-items: center;
  margin: 0 0 52px;
  padding: 8px 0 64px;
  border-bottom: 1px solid var(--line);
}

.service-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
}

.service-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 700px;
  margin: 24px 0 28px;
}

.service-hero-proof span {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #d8d0c2;
  border-radius: 999px;
  background: #f7f2e8;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.service-hero-proof span::before {
  width: 8px;
  height: 8px;
  box-shadow: none;
}

.service-photo-story {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d5ccbd;
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.service-photo-story .service-photo-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-photo-story figcaption {
  display: grid;
  gap: 3px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.service-photo-story figcaption strong {
  color: var(--white);
  font-size: 1rem;
}

.repair-flow-wrap {
  margin: 0 0 42px;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 8%, rgba(247, 202, 24, 0.15), transparent 28%),
    var(--ink);
  color: var(--white);
  box-shadow: var(--soft-shadow);
}

.service-block-heading {
  max-width: 700px;
  margin-bottom: 28px;
}

.service-block-heading h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.repair-flow {
  position: relative;
  gap: 0;
  margin: 0;
}

.repair-flow article {
  min-height: 172px;
  padding: 22px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.repair-flow article:first-child {
  border-left: 0;
}

.repair-flow span {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
}

.repair-flow h4 {
  margin: 0 0 7px;
  font-size: 1.14rem;
}

.repair-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.tuneup-showcase {
  margin: 0 0 42px;
  border-color: #d0c6b5;
  border-radius: 22px;
  background: #f8f4eb;
  box-shadow: 0 16px 42px rgba(17, 17, 15, 0.12);
}

.tuneup-showcase-header {
  padding: clamp(28px, 5vw, 52px);
}

.tuneup-showcase-header h3 {
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  letter-spacing: -0.045em;
}

.tuneup-showcase-header p:not(.eyebrow) {
  color: var(--muted);
}

.tuneup-price-lockup {
  min-width: 185px;
  border: 0;
  border-top: 7px solid var(--neon-yellow);
  border-radius: 14px;
  background: var(--white);
}

.tuneup-definition {
  padding: 24px clamp(28px, 5vw, 52px);
  background: var(--white);
}

.tuneup-definition p {
  margin: 0;
  color: var(--muted);
}

.tuneup-table-wrap {
  overflow-x: auto;
}

.tuneup-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.tuneup-table th,
.tuneup-table td {
  padding: 18px clamp(18px, 3vw, 32px);
  text-align: left;
  vertical-align: top;
}

.tuneup-table thead {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tuneup-table thead th:first-child {
  width: 24%;
}

.tuneup-table tbody tr {
  border-bottom: 1px solid #ded6c9;
}

.tuneup-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.72);
}

.tuneup-table tbody th {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.tuneup-table tbody td {
  color: var(--muted);
}

.tuneup-bottom-line {
  padding: 24px clamp(28px, 5vw, 52px);
}

.repair-help {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 72px);
  margin: 0 0 42px;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid #d6cebf;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(247, 202, 24, 0.08), transparent 38%),
    var(--paper);
}

.repair-help-intro h3 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.035em;
}

.repair-help-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.repair-help-note {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px;
  border-left: 5px solid var(--ink);
  border-radius: 0 12px 12px 0;
  background: var(--neon-yellow);
}

.repair-help-note span {
  font-size: 0.91rem;
}

.repair-help-list {
  display: grid;
  align-content: start;
}

.repair-help-list article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 19px 0;
  border-top: 1px solid #d2cabd;
}

.repair-help-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.repair-help-list article > span {
  color: #9b7800;
  font-family: "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.repair-help-list h4,
.repair-help-list p {
  margin: 0;
}

.repair-help-list h4 {
  margin-bottom: 5px;
  font-size: 1.16rem;
}

.repair-help-list p {
  color: var(--muted);
  font-size: 0.93rem;
}

.service-alias-anchor {
  display: block;
  height: 0;
}

.electric-service {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #cbd3ca;
  border-radius: 22px;
  background:
    radial-gradient(circle at 5% 10%, rgba(56, 210, 125, 0.1), transparent 26%),
    #edf1eb;
}

.electric-service-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.electric-service-photo {
  display: grid;
  place-items: center;
  min-height: 310px;
  padding: 22px;
  border: 1px solid #d3d9d1;
  border-radius: 18px;
  background: var(--white);
}

.electric-service-photo img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.electric-service-copy h3 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  letter-spacing: -0.035em;
}

.electric-service-copy > p:not(.eyebrow) {
  color: #4f5b50;
}

.mechanical-scope-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.mechanical-scope-list li {
  display: flex;
  gap: 9px;
  font-weight: 800;
}

.mechanical-scope-list li::before {
  flex: 0 0 auto;
  content: "+";
  color: #247248;
  font-weight: 950;
}

.call-first-note {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 12px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.call-first-note strong {
  color: var(--neon-yellow);
}

.emoto-boundary {
  display: grid;
  grid-template-columns: minmax(240px, 0.4fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: stretch;
  margin-top: 34px;
  padding: clamp(22px, 4vw, 36px);
  border-top: 5px solid var(--neon-yellow);
  border-radius: 16px;
  background: var(--ink);
  color: var(--white);
}

.emoto-boundary > img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: 12px;
}

.emoto-boundary-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.emoto-boundary-copy h3 {
  margin: 0;
  font-size: clamp(1.75rem, 3.3vw, 2.8rem);
}

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

.scope-columns > div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.scope-columns strong {
  color: var(--neon-yellow);
}

.scope-columns ul,
.scope-columns p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.scope-columns ul {
  padding-left: 19px;
}

.emoto-boundary-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.emoto-boundary-cta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

@media (hover: hover) {
  .button:hover,
  .category-card:hover,
  .scene-card:hover {
    transform: translateY(-3px);
  }

  .category-card:hover {
    border-color: #bcae96;
    box-shadow: 0 16px 38px rgba(17, 17, 15, 0.13);
  }

  .category-card:hover img,
  .scene-card:hover img {
    transform: scale(1.025);
  }

  .mega-menu a:hover {
    border-color: rgba(247, 202, 24, 0.52);
  }
}

@media (max-width: 1100px) {
  .service-hero,
  .electric-service-main,
  .emoto-boundary {
    grid-template-columns: 1fr;
  }

  .service-photo-story .service-photo-main {
    max-height: 520px;
  }

  .service-photo-story {
    width: min(760px, 100%);
  }

  .repair-help {
    grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1fr);
  }

  .emoto-boundary > img {
    max-height: 420px;
  }
}

@media (max-width: 780px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    padding: 7px 12px;
  }

  .brand-mark {
    width: 56px;
    height: 40px;
  }

  .section-inner {
    width: min(100% - 28px, 1200px);
  }

  .announcement-inner {
    gap: 2px;
    padding: 8px 0;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(17, 17, 15, 0.68) 0%, rgba(17, 17, 15, 0.9) 58%, rgba(17, 17, 15, 0.98) 100%),
      url("./assets/fresh/shop_website_assets/web-ready/jpg/storefront/shop-exterior-storefront-bike-display-02.jpg");
    background-position: center top;
  }

  .hero-content {
    padding: 58px 0 26px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 12.2vw, 4.9rem);
    line-height: 0.92;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .quick-actions {
    gap: 8px;
    margin-top: 30px;
  }

  .quick-actions a {
    min-height: 78px;
    border-radius: 10px;
  }

  .section {
    padding: 68px 0;
  }

  .section-heading h2,
  .about-layout h2,
  .service-hero h2 {
    font-size: clamp(2.25rem, 11vw, 3.8rem);
  }

  .scene-grid {
    gap: 12px;
  }

  .service-hero {
    gap: 28px;
    margin-bottom: 36px;
    padding-bottom: 44px;
  }

  .service-hero-proof {
    display: grid;
  }

  .repair-flow-wrap,
  .tuneup-showcase,
  .repair-help,
  .electric-service {
    margin-bottom: 30px;
    border-radius: 16px;
  }

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

  .repair-flow article:nth-child(3) {
    border-left: 0;
  }

  .repair-flow article:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .tuneup-showcase-header,
  .tuneup-definition,
  .tuneup-bottom-line,
  .repair-help {
    grid-template-columns: 1fr;
  }

  .tuneup-price-lockup {
    width: min(240px, 100%);
  }

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

  .tuneup-table,
  .tuneup-table tbody,
  .tuneup-table tr,
  .tuneup-table th,
  .tuneup-table td {
    display: block;
    width: 100%;
  }

  .tuneup-table tbody tr {
    padding: 20px clamp(22px, 6vw, 32px);
  }

  .tuneup-table th,
  .tuneup-table td {
    padding: 0;
  }

  .tuneup-table td {
    margin-top: 12px;
  }

  .tuneup-table td::before {
    display: block;
    margin-bottom: 3px;
    content: attr(data-label);
    color: #877b69;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .repair-help {
    gap: 34px;
  }

  .mechanical-scope-list,
  .scope-columns {
    grid-template-columns: 1fr;
  }

  .electric-service-photo {
    min-height: 240px;
  }

  .emoto-boundary {
    padding: 18px;
  }

  .emoto-boundary > img {
    min-height: 230px;
  }
}

@media (max-width: 460px) {
  .brand-copy {
    line-height: 1;
  }

  .brand-name {
    font-size: 0.82rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12.8vw, 3.7rem);
  }

  .hero-actions,
  .section-cta-row {
    gap: 9px;
  }

  .quick-actions a span {
    font-size: 0.84rem;
  }

  .repair-flow {
    grid-template-columns: 1fr;
  }

  .repair-flow article,
  .repair-flow article:nth-child(3) {
    min-height: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .repair-flow article:first-child {
    border-top: 0;
  }

  .tuneup-showcase-header h3 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .tuneup-price-lockup span {
    font-size: 2.15rem;
  }

  .repair-help-list article {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .electric-service {
    padding: 20px;
  }

  .electric-service-photo {
    min-height: 190px;
    padding: 14px;
  }

  .emoto-boundary-cta .button {
    width: 100%;
  }
}

/* Reviews, video embeds, and performance-safe motion enhancements. */
.category-grid {
  margin-top: clamp(20px, 2.4vw, 30px);
}

.bike-finder-option,
.bike-finder-reset,
.instagram-load {
  cursor: pointer;
}

.reviews-section {
  overflow: hidden;
}

.reviews-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: center;
}

.reviews-copy h2 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 4.65rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.reviews-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 1.04rem;
}

.reviews-copy .trust-proof-list {
  margin-top: 4px;
}

.google-reviews-embed {
  overflow: hidden;
  border: 1px solid #d5ccbd;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(17, 17, 15, 0.13);
}

.google-reviews-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: #f8f4eb;
}

.google-reviews-heading div {
  display: grid;
  gap: 2px;
}

.google-reviews-heading strong {
  color: var(--ink);
  font-size: 1rem;
}

.google-reviews-heading span:not(.google-reviews-mark) {
  color: var(--muted);
  font-size: 0.86rem;
}

.google-reviews-mark {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 3px 12px rgba(17, 17, 15, 0.11);
}

.google-reviews-frame {
  min-height: 360px;
  aspect-ratio: 16 / 10;
  background: #e9e6df;
}

.google-reviews-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.google-reviews-note {
  margin: 0;
  padding: 14px 20px 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.instagram-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.instagram-heading {
  display: flex;
  max-width: none;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
}

.instagram-heading > div {
  max-width: 850px;
}

.instagram-heading .button {
  flex: 0 0 auto;
  margin-bottom: 4px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.instagram-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d8d0c2;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 17, 15, 0.1);
}

.instagram-media-shell {
  position: relative;
  aspect-ratio: 9 / 13;
  overflow: hidden;
  background: var(--ink);
}

.instagram-load {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  color: var(--white);
  text-align: left;
}

.instagram-load::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(17, 17, 15, 0.04) 34%, rgba(17, 17, 15, 0.88) 100%),
    linear-gradient(135deg, rgba(247, 202, 24, 0.08), transparent 42%);
}

.instagram-load img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.instagram-load-label {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 900;
}

.instagram-play-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  padding-left: 3px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: var(--neon-yellow);
  color: var(--ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.instagram-load:focus-visible {
  outline: 4px solid var(--electric-blue);
  outline-offset: -4px;
}

.instagram-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.instagram-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
}

.instagram-card-kicker {
  margin: 0;
  color: #8a6900;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.instagram-card-body h3,
.instagram-card-body p {
  margin: 0;
}

.instagram-card-body h3 {
  font-size: 1.35rem;
  line-height: 1.08;
}

.instagram-card-body > p:not(.instagram-card-kicker) {
  color: var(--muted);
}

.instagram-card-link {
  align-self: end;
  margin-top: 6px;
  color: var(--electric-blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(36, 92, 150, 0.35);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.instagram-privacy-note,
.instagram-empty-state {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.instagram-empty-state {
  grid-column: 1 / -1;
  padding: 24px;
  border: 1px dashed #c9bfaf;
  border-radius: 14px;
  background: var(--white);
}

@media (hover: hover) {
  .instagram-load:hover img {
    transform: scale(1.035);
    filter: saturate(1.06);
  }
}

@media (max-width: 1100px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .google-reviews-embed {
    width: min(760px, 100%);
  }

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

@media (max-width: 780px) {
  .reviews-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.8rem);
  }

  .google-reviews-frame {
    min-height: 340px;
    aspect-ratio: 1 / 1;
  }

  .instagram-heading {
    display: grid;
    align-items: start;
  }

  .instagram-heading .button {
    width: 100%;
    margin-bottom: 0;
  }

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

  .instagram-media-shell {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 460px) {
  .google-reviews-heading {
    padding: 15px;
  }

  .google-reviews-frame {
    min-height: 0;
    height: clamp(270px, 88vw, 330px);
    aspect-ratio: auto;
  }

  .google-reviews-note {
    padding: 12px 15px 14px;
  }

  .instagram-card-body {
    padding: 18px;
  }
}

/* Local-photo integration: inventory proof, kids spotlight, and tune-up result. */
.brands-section .brand-band,
.kids-section .kids-spotlight {
  margin-top: 0;
  margin-bottom: 0;
}

.brands-section .brand-band {
  padding: clamp(28px, 5vw, 48px);
}

.brands-section .brand-band h2 {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.inventory-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.08fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.inventory-copy {
  display: grid;
  justify-items: start;
  align-content: center;
}

.inventory-copy h2 {
  max-width: 680px;
  font-size: clamp(2.35rem, 4.8vw, 4.5rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.inventory-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.inventory-copy .button {
  margin-top: 26px;
}

.inventory-media {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  gap: 14px;
}

.inventory-photo {
  min-height: clamp(300px, 33vw, 430px);
  margin: 0;
  overflow: hidden;
  border: 1px solid #cfc5b4;
  border-radius: 18px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.inventory-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inventory-photo-primary img {
  object-position: 50% 64%;
}

.inventory-photo-secondary img {
  object-position: 50% 54%;
}

.inventory-caption {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.kids-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  min-height: 520px;
  margin: 34px 0;
  overflow: hidden;
  border: 1px solid rgba(247, 202, 24, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 10%, rgba(247, 202, 24, 0.12), transparent 28%),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.kids-spotlight-media {
  min-height: 520px;
  overflow: hidden;
}

.kids-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 62%;
}

.kids-spotlight-copy {
  display: grid;
  justify-items: start;
  align-content: center;
  padding: clamp(30px, 5vw, 58px);
}

.kids-spotlight-copy h3 {
  max-width: 500px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.kids-spotlight-copy p:not(.eyebrow) {
  max-width: 480px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.kids-spotlight .eyebrow,
.tuneup-result-proof .eyebrow {
  color: var(--neon-yellow);
}

.tuneup-result-proof {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin: 0;
  padding: clamp(28px, 5vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 86% 18%, rgba(247, 202, 24, 0.11), transparent 30%),
    var(--ink);
  color: var(--white);
}

.tuneup-result-proof img {
  width: 100%;
  max-width: 390px;
  height: auto;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.tuneup-result-proof figcaption {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.tuneup-result-proof figcaption strong {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.tuneup-result-proof figcaption > span:last-child {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
}

.scene-card:nth-child(1) img {
  object-position: 50% 58%;
}

.scene-card:nth-child(2) img {
  object-position: 50% 70%;
}

.scene-card:nth-child(5) img {
  object-position: 50% 60%;
}

@media (max-width: 1100px) {
  .inventory-feature {
    grid-template-columns: 1fr;
  }

  .inventory-copy {
    max-width: 760px;
  }

  .kids-spotlight {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    min-height: 460px;
  }

  .kids-spotlight-media {
    min-height: 460px;
  }
}

@media (max-width: 780px) {
  .inventory-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inventory-photo {
    min-height: 280px;
  }

  .kids-spotlight {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .kids-spotlight-media {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .kids-spotlight-media img {
    object-position: 50% 58%;
  }

  .tuneup-result-proof {
    grid-template-columns: 1fr;
  }

  .tuneup-result-proof img {
    max-width: 360px;
  }
}

@media (max-width: 460px) {
  .inventory-feature {
    gap: 28px;
  }

  .inventory-media {
    gap: 8px;
  }

  .inventory-photo {
    min-height: 230px;
    border-radius: 14px;
  }

  .kids-spotlight,
  .tuneup-result-proof img {
    border-radius: 14px;
  }

  .kids-spotlight-copy,
  .tuneup-result-proof {
    padding: 24px;
  }
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-chip {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
}

.brand-chip img {
  width: auto;
  max-width: 104px;
  height: 24px;
  object-fit: contain;
}

.brand-detail-logo {
  display: block;
  width: auto;
  max-width: 150px;
  height: 28px;
  margin: 10px 0 12px;
  object-fit: contain;
}

.brand-chip[data-brand-name="SE Bikes"] img {
  max-width: 112px;
  height: 28px;
}

.brand-chip[data-brand-name="Sunday"] img {
  max-width: 36px;
  height: 36px;
}

.brand-detail[data-brand-name="SE Bikes"] .brand-detail-logo {
  max-width: 178px;
  height: 42px;
}

.brand-detail[data-brand-name="Sunday"] .brand-detail-logo {
  max-width: 58px;
  height: 58px;
}

.brand-logo-row {
  display: grid;
  gap: 7px;
  margin-top: 2px;
}

.brand-logo-label,
.category-card .brand-logo-label,
.bike-finder-result .brand-logo-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.brand-logo-badge {
  display: inline-flex;
  min-width: 46px;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  padding: 5px 8px;
  border: 1px solid #ded8ce;
  border-radius: 7px;
  background: #f8f5ef;
}

.brand-logo-badge img {
  width: auto;
  max-width: 72px;
  height: 16px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.brand-logo-badge[data-brand-name="SE Bikes"] img {
  max-width: 82px;
  height: 20px;
}

.brand-logo-badge[data-brand-name="Sunday"] img {
  max-width: 24px;
  height: 24px;
}

.spotlight-brand-lockup {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.spotlight-brand-lockup > img {
  width: auto;
  max-width: 168px;
  height: 34px;
  object-fit: contain;
}

.spotlight-brand-lockup .eyebrow {
  margin: 0;
}

.accessory-brand-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.accessory-brand-photo > img {
  height: 100%;
}

.accessory-brand-photo figcaption,
.photo-brand-label {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: rgba(12, 14, 18, 0.86);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.accessory-brand-photo figcaption {
  right: auto;
  bottom: 8px;
  left: 8px;
  justify-content: center;
  gap: 0;
  max-width: calc(100% - 16px);
  padding: 7px 9px;
}

.accessory-brand-photo figcaption img,
.photo-brand-label img {
  width: auto;
  max-width: 104px;
  height: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
  aspect-ratio: auto;
  box-shadow: none;
}

.accessory-brand-photo figcaption img {
  max-width: 92px;
  height: 16px;
}

.electric-service-photo {
  position: relative;
}

.photo-brand-label span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 780px) {
  .brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .brand-chip img {
    max-width: 88px;
    height: 21px;
  }

  .photo-brand-label {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .accessory-brand-photo figcaption {
    right: auto;
    bottom: 8px;
    left: 8px;
  }
}

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

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .hero-content > .eyebrow,
  .motion-ready .hero-content > h1,
  .motion-ready .hero-content > .hero-lede,
  .motion-ready .hero-content > .hero-actions,
  .motion-ready .hero-content > .quick-actions {
    animation: bp-hero-enter 620ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
  }

  .motion-ready .hero-content > h1 {
    animation-delay: 70ms;
  }

  .motion-ready .hero-content > .hero-lede {
    animation-delay: 130ms;
  }

  .motion-ready .hero-content > .hero-actions {
    animation-delay: 190ms;
  }

  .motion-ready .hero-content > .quick-actions {
    animation-delay: 250ms;
  }

  .reveal-ready [data-reveal] {
    --reveal-x: 0px;
    --reveal-y: 20px;
    --reveal-scale: 1;
  }

  .reveal-ready [data-reveal="left"] {
    --reveal-x: -22px;
    --reveal-y: 6px;
  }

  .reveal-ready [data-reveal="right"] {
    --reveal-x: 22px;
    --reveal-y: 6px;
  }

  .reveal-ready [data-reveal="zoom"] {
    --reveal-y: 14px;
    --reveal-scale: 0.985;
  }

  .reveal-ready [data-reveal]:not(.is-revealed) {
    opacity: 0;
    transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
    will-change: opacity, transform;
  }

  .reveal-ready [data-reveal].is-revealed {
    animation: bp-section-reveal 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms) backwards;
  }

  @keyframes bp-hero-enter {
    from {
      opacity: 0;
      transform: translate3d(0, 18px, 0);
    }
  }

  @keyframes bp-section-reveal {
    from {
      opacity: 0;
      transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(var(--reveal-scale));
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }
  }
}

@media (prefers-reduced-motion: no-preference) and (max-width: 780px) {
  .reveal-ready [data-reveal="left"],
  .reveal-ready [data-reveal="right"] {
    --reveal-x: 0px;
    --reveal-y: 18px;
  }
}

/* Bike Genie --------------------------------------------------------------- */

.bike-genie {
  margin-top: 30px;
  padding: clamp(22px, 4vw, 38px);
  scroll-margin-top: 110px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #f8fafc 0%, #eef3f9 100%);
  box-shadow: var(--soft-shadow);
}

.bike-genie [hidden] {
  display: none !important;
}

.bike-genie-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 22px;
}

.bike-genie-heading h3,
.bike-genie-heading p,
.bike-genie-screen h4,
.bike-genie-screen p,
.bike-genie-ranking h4,
.bike-genie-ranking p {
  margin-top: 0;
}

.bike-genie-heading h3 {
  max-width: 760px;
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.04;
}

.bike-genie-heading > div > p:last-child {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
}

.bike-genie-heading-note {
  display: grid;
  gap: 5px;
  padding: 16px;
  border-left: 5px solid var(--neon-yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
}

.bike-genie-heading-note span {
  color: var(--muted);
  font-size: 0.94rem;
}

.bike-genie-app {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.34fr);
  overflow: hidden;
  border: 1px solid rgba(10, 11, 15, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.bike-genie-main {
  min-width: 0;
  padding: clamp(22px, 4vw, 38px);
}

.bike-genie-screen {
  min-height: 410px;
}

.bike-genie-intro,
.bike-genie-result-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.bike-genie-orb,
.bike-genie-result-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, #fff7bd 0 8%, transparent 9%),
    radial-gradient(circle at 50% 44%, #ffd02e 0 18%, #ffb000 55%, #8a4d00 100%);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(255, 176, 0, 0.28);
}

.bike-genie-orb-mark,
.bike-genie-result-icon {
  font-size: 2rem;
  font-weight: 950;
}

.bike-genie-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: #705500;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bike-genie-intro h4,
.bike-genie-result-head h4,
.bike-genie-question {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.05;
}

.bike-genie-intro p,
.bike-genie-result-head p,
.bike-genie-hint {
  margin-bottom: 0;
  color: var(--muted);
}

.bike-genie-start-actions,
.bike-genie-result-actions,
.bike-genie-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.bike-genie-start-actions {
  margin-top: 28px;
}

.bike-genie-start-actions span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.bike-genie-safety-copy {
  max-width: 760px;
  margin: 28px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.bike-genie-question-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.bike-genie-question-meta .bike-genie-kicker {
  margin-bottom: 0;
}

.bike-genie-progress,
.bike-genie-rank-bar {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: #e3e8f0;
}

.bike-genie-progress {
  margin: 10px 0 28px;
}

.bike-genie-progress span,
.bike-genie-rank-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: var(--neon-yellow);
  transition: width 180ms ease;
}

.bike-genie-question {
  max-width: 820px;
}

.bike-genie-question:focus-visible,
.bike-genie-result-head h4:focus-visible {
  outline: 3px solid var(--electric-blue);
  outline-offset: 5px;
}

.bike-genie-hint {
  min-height: 48px;
}

.bike-genie-answers {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 24px;
}

.bike-genie-answer {
  min-height: 58px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}

.bike-genie-answer:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 11, 15, 0.36);
  background: var(--white);
}

.bike-genie-answer.is-primary {
  border-color: var(--neon-yellow);
  background: var(--neon-yellow);
}

.bike-genie-controls {
  margin-top: 18px;
}

.bike-genie-text-button,
.bike-genie-copy {
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.bike-genie-text-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.bike-genie-copy {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  text-decoration: none;
}

.bike-genie-result-head {
  margin-bottom: 20px;
}

.bike-genie-alert {
  display: grid;
  gap: 4px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 52, 52, 0.28);
  border-left: 5px solid var(--neon-red);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: #fff1f1;
}

.bike-genie-alert span {
  color: #6d3030;
  font-size: 0.92rem;
}

.bike-genie-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.bike-genie-result-grid article,
.bike-genie-alternatives {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.bike-genie-result-grid article > span,
.bike-genie-alternatives > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bike-genie-result-grid article p {
  margin: 8px 0 0;
  color: var(--muted);
}

.bike-genie-alternatives {
  margin-top: 12px;
}

.bike-genie-alternative {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.bike-genie-alternative:first-child {
  border-top: 0;
}

.bike-genie-alternative small {
  color: var(--muted);
  font-weight: 850;
}

.bike-genie-result-actions {
  margin-top: 18px;
}

.bike-genie-copy-status {
  min-height: 24px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.bike-genie-ranking {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px 22px;
  background: var(--ink);
  color: var(--white);
}

.bike-genie-ranking .eyebrow {
  color: var(--neon-yellow);
}

.bike-genie-ranking h4 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.bike-genie-ranking p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.bike-genie-ranking-list {
  display: grid;
  gap: 16px;
}

.bike-genie-rank {
  display: grid;
  gap: 6px;
}

.bike-genie-rank-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 850;
}

.bike-genie-rank-head small {
  color: rgba(255, 255, 255, 0.6);
}

.bike-genie-rank-bar {
  background: rgba(255, 255, 255, 0.14);
}

.bike-genie-ranking-note {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
}

.bike-genie-noscript {
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.bike-genie-noscript a {
  font-weight: 900;
  text-decoration: underline;
}

@media (max-width: 920px) {
  .bike-genie-heading,
  .bike-genie-app {
    grid-template-columns: 1fr;
  }

  .bike-genie-ranking {
    min-height: 0;
  }

  .bike-genie-ranking-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .bike-genie {
    margin-inline: -2px;
    padding: 18px;
  }

  .bike-genie-main,
  .bike-genie-ranking {
    padding: 20px 16px;
  }

  .bike-genie-screen {
    min-height: 0;
  }

  .bike-genie-intro,
  .bike-genie-result-head {
    display: grid;
  }

  .bike-genie-orb,
  .bike-genie-result-icon {
    width: 62px;
    height: 62px;
  }

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

  .bike-genie-answer.is-unknown {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .bike-genie-result-grid,
  .bike-genie-ranking-list {
    grid-template-columns: 1fr;
  }

  .bike-genie-start-actions,
  .bike-genie-result-actions {
    align-items: stretch;
  }

  .bike-genie-start-actions .button,
  .bike-genie-result-actions .button,
  .bike-genie-copy {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bike-genie-progress span,
  .bike-genie-rank-bar span,
  .bike-genie-answer {
    transition: none;
  }
}
