: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: 320px;
  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;
}

body.maintenance-active {
  min-height: 100vh;
  overflow: hidden;
  background: var(--ink);
}

body.maintenance-active .skip-link,
body.maintenance-active .site-header,
body.maintenance-active .mobile-nav,
body.maintenance-active main,
body.maintenance-active .site-footer {
  display: none;
}

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;
}

.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);
}

.maintenance-gate {
  display: none;
}

body.maintenance-active .maintenance-gate {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(rgba(10, 11, 15, 0.82), rgba(10, 11, 15, 0.9)),
    url("./assets/fresh/shop_website_assets/web-ready/jpg/storefront/shop-exterior-storefront-bike-display-02.jpg") center / cover;
}

.maintenance-panel {
  width: min(100%, 520px);
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(10, 11, 15, 0.86);
  box-shadow: var(--shadow);
}

.maintenance-logo {
  width: 118px;
  height: auto;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 20px rgba(255, 208, 46, 0.34));
}

.maintenance-panel h1 {
  margin: 0 0 14px;
  max-width: 10ch;
  font-size: clamp(2.2rem, 8vw, 4.25rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.maintenance-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.maintenance-form {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.maintenance-form label {
  font-weight: 800;
  color: var(--white);
}

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

.maintenance-code-row input {
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.maintenance-code-row .button {
  min-height: 48px;
  border: 0;
}

.maintenance-error {
  font-weight: 800;
  color: #ffb4b4 !important;
}

.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);
}

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;
}

.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;
}

.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, 1fr) minmax(280px, 0.8fr);
  gap: 26px;
  align-items: center;
}

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

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

.brand-list span,
.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;
}

.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.85fr) minmax(320px, 0.65fr);
  gap: 28px;
  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-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);
}

.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 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-detail-grid,
  .service-hero,
  .about-layout,
  .contact-layout,
  .accessory-layout {
    grid-template-columns: 1fr;
  }

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

@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-actions .button,
  .section-cta-row .button {
    width: 100%;
  }

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

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

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

  .category-grid,
  .scene-grid,
  .service-packages,
  .note-grid,
  .accessory-grid {
    grid-template-columns: 1fr;
  }

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

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

  .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) {
  .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);
  }
}

@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;
  }
}
