:root {
  --font-body: "Manrope", sans-serif;
  --font-display: "Sora", sans-serif;
  --bg: #efefef;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: #ffffff;
  --surface-muted: #f5f5f6;
  --ink: #0d0f14;
  --muted: #646871;
  --line: rgba(13, 15, 20, 0.08);
  --line-dark: rgba(255, 255, 255, 0.14);
  --red: #e41f27;
  --red-deep: #a60d14;
  --dark: #08090d;
  --dark-soft: #13151c;
  --shadow: 0 24px 80px rgba(15, 18, 25, 0.12);
  --shadow-strong: 0 30px 90px rgba(10, 12, 18, 0.32);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: min(1240px, calc(100vw - 32px));
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  --cursor-glow-opacity: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background:
    radial-gradient(circle at top left, rgba(228, 31, 39, 0.08), transparent 20%),
    linear-gradient(180deg, #090a0e 0, #090a0e 760px, #f3f3f4 760px, #efefef 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black 0 42%, transparent 68%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--cursor-glow-opacity);
  background:
    radial-gradient(
      240px circle at var(--cursor-x) var(--cursor-y),
      rgba(228, 31, 39, 0.12) 0%,
      rgba(228, 31, 39, 0.06) 26%,
      rgba(228, 31, 39, 0.02) 44%,
      transparent 72%
    );
  filter: blur(18px);
  transition: opacity 0.22s ease;
}

body.detail-page {
  background:
    radial-gradient(circle at top right, rgba(228, 31, 39, 0.08), transparent 24%),
    linear-gradient(180deg, #ececec 0%, #f7f7f8 100%);
}

body.inventory-page {
  background:
    radial-gradient(circle at top right, rgba(228, 31, 39, 0.08), transparent 24%),
    linear-gradient(180deg, #f3f3f4 0%, #efefef 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 8px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 16, 0.46);
  backdrop-filter: blur(20px);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

body.is-scrolled .header-inner {
  background: rgba(10, 12, 16, 0.74);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 40px rgba(5, 6, 10, 0.28);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(228, 31, 39, 0.26);
}

.site-nav {
  display: inline-flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--red), transparent);
  transition: transform 0.22s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button,
.card-link,
.card-ghost,
.detail-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  --mag-x: 0px;
  --mag-y: 0px;
  --hover-lift: 0px;
  transform: translate3d(var(--mag-x), calc(var(--mag-y) + var(--hover-lift)), 0);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
  will-change: transform;
}

.header-cta,
.button-primary,
.card-link,
.detail-cta {
  padding: 0 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #ff4d55);
  box-shadow: 0 18px 38px rgba(228, 31, 39, 0.26);
  font-size: 0.92rem;
}

.button-secondary,
.card-ghost {
  padding: 0 16px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.card-ghost {
  color: var(--ink);
  border-color: rgba(13, 15, 20, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 246, 0.9));
}

.inventory-filter-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.inventory-filter-toggle svg {
  width: 18px;
  height: 18px;
}

.inventory-filter-toggle:hover,
.inventory-filter-toggle:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 10px 24px rgba(5, 6, 10, 0.2);
}

.inventory-filter-toggle.has-active-filters {
  background: rgba(228, 31, 39, 0.22);
  border-color: rgba(255, 102, 109, 0.42);
}

.header-cta:hover,
.button:hover,
.card-link:hover,
.card-ghost:hover,
.detail-cta:hover {
  --hover-lift: -2px;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 28%, rgba(228, 31, 39, 0.18), transparent 22%),
    linear-gradient(145deg, #090b10 0%, #10141b 54%, #0b0e13 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -92px;
  height: 190px;
  background: #f3f3f4;
  transform: rotate(-3.2deg);
  transform-origin: center;
  z-index: 0;
}

.hero-media,
.hero-liquid,
.hero-overlay,
.hero-tail {
  position: absolute;
  inset: 0;
}

.hero-media {
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  border: 0;
  transform: perspective(1600px) rotate(0deg);
  transform-origin: center;
  box-shadow: none;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 18, 62, 0.2), transparent 16%),
    radial-gradient(circle at 78% 16%, rgba(255, 52, 104, 0.14), transparent 18%),
    radial-gradient(circle at 82% 82%, rgba(121, 0, 28, 0.24), transparent 20%),
    linear-gradient(142deg, #040507 0%, #12050b 22%, #1b0610 44%, #0a0a0f 70%, #040507 100%);
}

.hero-media-noise {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, 0.06), transparent 16%),
    radial-gradient(circle at 76% 26%, rgba(255, 255, 255, 0.035), transparent 18%),
    radial-gradient(circle at 68% 70%, rgba(255, 255, 255, 0.03), transparent 18%),
    repeating-linear-gradient(118deg, rgba(255, 255, 255, 0.014) 0 2px, transparent 2px 9px);
  opacity: 0.55;
  filter: blur(1.2px);
  mix-blend-mode: screen;
}

.hero-liquid {
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: calc(0.88 + var(--hero-liquid-press, 0) * 0.12);
  transition: opacity 220ms ease, filter 260ms ease;
  filter: blur(calc(var(--hero-liquid-press, 0) * 5px));
}

.hero-liquid-layer {
  position: absolute;
  inset: -10%;
  border-radius: 46%;
  mix-blend-mode: screen;
  will-change: transform, opacity;
}

.hero-liquid-base {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 24, 66, 0.84), transparent 18%),
    radial-gradient(circle at 46% 34%, rgba(255, 40, 92, 0.56), transparent 18%),
    radial-gradient(circle at 74% 22%, rgba(189, 0, 42, 0.46), transparent 18%),
    radial-gradient(circle at 64% 68%, rgba(255, 56, 102, 0.48), transparent 20%),
    radial-gradient(circle at 30% 78%, rgba(108, 0, 16, 0.4), transparent 18%);
  filter: blur(calc(46px + var(--hero-liquid-press, 0) * 10px)) saturate(calc(1.16 + var(--hero-liquid-press, 0) * 0.18));
  transform:
    translate3d(calc(var(--hero-liquid-x, 0px) * 0.016), calc(var(--hero-liquid-y, 0px) * 0.016), 0)
    scale(calc(1.08 + var(--hero-liquid-press, 0) * 0.06));
  animation: heroLiquidFlow 18s ease-in-out infinite alternate;
}

.hero-liquid-ribbon {
  inset: -14%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(255, 114, 146, 0.46), transparent 16%),
    radial-gradient(ellipse at 42% 52%, rgba(255, 18, 74, 0.5), transparent 16%),
    radial-gradient(ellipse at 68% 20%, rgba(255, 92, 130, 0.4), transparent 16%),
    radial-gradient(ellipse at 86% 54%, rgba(140, 0, 28, 0.4), transparent 16%);
  filter: blur(calc(24px + var(--hero-liquid-press, 0) * 8px)) saturate(calc(1.32 + var(--hero-liquid-press, 0) * 0.16));
  opacity: 0.8;
  transform:
    translate3d(calc(var(--hero-liquid-x, 0px) * -0.028), calc(var(--hero-liquid-y, 0px) * -0.02), 0)
    rotate(var(--hero-liquid-rotate, 0deg))
    scale(calc(1.06 + var(--hero-liquid-press, 0) * 0.07));
  animation: heroLiquidRibbon 14s ease-in-out infinite alternate;
}

.hero-liquid-ribbon-secondary {
  inset: -16%;
  background:
    radial-gradient(ellipse at 24% 18%, rgba(255, 0, 69, 0.44), transparent 15%),
    radial-gradient(ellipse at 52% 34%, rgba(255, 134, 168, 0.28), transparent 14%),
    radial-gradient(ellipse at 76% 22%, rgba(222, 9, 63, 0.34), transparent 14%),
    radial-gradient(ellipse at 66% 78%, rgba(56, 0, 13, 0.5), transparent 18%);
  filter: blur(calc(28px + var(--hero-liquid-press, 0) * 10px)) saturate(calc(1.18 + var(--hero-liquid-press, 0) * 0.16));
  opacity: 0.7;
  transform:
    translate3d(calc(var(--hero-liquid-x, 0px) * 0.022), calc(var(--hero-liquid-y, 0px) * -0.03), 0)
    rotate(calc(var(--hero-liquid-rotate, 0deg) * -0.8))
    scale(calc(1.1 + var(--hero-liquid-press, 0) * 0.08));
  animation: heroLiquidFlowReverse 20s ease-in-out infinite alternate;
}

.hero-liquid-vein {
  inset: -12%;
  background:
    radial-gradient(ellipse at 16% 34%, rgba(255, 210, 224, 0.18), transparent 10%),
    radial-gradient(ellipse at 28% 28%, rgba(255, 239, 244, 0.12), transparent 8%),
    radial-gradient(ellipse at 48% 48%, rgba(255, 196, 218, 0.15), transparent 10%),
    radial-gradient(ellipse at 72% 24%, rgba(255, 208, 225, 0.12), transparent 8%),
    radial-gradient(ellipse at 86% 62%, rgba(255, 190, 212, 0.11), transparent 10%);
  filter: blur(calc(10px + var(--hero-liquid-press, 0) * 4px));
  opacity: 0.42;
  transform:
    translate3d(calc(var(--hero-liquid-x, 0px) * -0.018), calc(var(--hero-liquid-y, 0px) * 0.018), 0)
    rotate(calc(var(--hero-liquid-rotate, 0deg) * 0.55))
    scale(calc(1.04 + var(--hero-liquid-press, 0) * 0.03));
  animation: heroLiquidVein 16s ease-in-out infinite alternate;
}

.hero-liquid-glow {
  inset: auto;
  width: 42vw;
  height: 42vw;
  min-width: 360px;
  min-height: 360px;
  left: calc(var(--hero-liquid-local-x, 68%) - 21vw);
  top: calc(var(--hero-liquid-local-y, 46%) - 21vw);
  background: radial-gradient(circle, rgba(255, 54, 102, 0.34) 0%, rgba(255, 54, 102, 0.14) 34%, transparent 64%);
  filter: blur(20px);
  opacity: calc(0.78 + var(--hero-liquid-press, 0) * 0.28);
  transition: left 160ms ease-out, top 160ms ease-out, opacity 180ms ease-out;
  animation: heroLiquidPulse 7.5s ease-in-out infinite;
}

.hero-liquid-ripple {
  position: absolute;
  width: clamp(220px, 26vw, 420px);
  height: clamp(220px, 26vw, 420px);
  left: calc(var(--hero-liquid-local-x, 68%) - clamp(110px, 13vw, 210px));
  top: calc(var(--hero-liquid-local-y, 46%) - clamp(110px, 13vw, 210px));
  border-radius: 999px;
  border: 1px solid rgba(255, 162, 186, 0.16);
  box-shadow:
    0 0 0 1px rgba(255, 120, 156, 0.06) inset,
    0 0 40px rgba(255, 52, 104, 0.1);
  opacity: 0;
  transform: scale(0.26);
}

.hero.is-rippling .hero-liquid-ripple {
  animation: heroRipple 620ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 11, 16, 0.88) 0%, rgba(9, 11, 16, 0.66) 28%, rgba(9, 11, 16, 0.16) 58%, rgba(9, 11, 16, 0.4) 100%),
    linear-gradient(180deg, rgba(9, 11, 16, 0.16) 0%, rgba(9, 11, 16, 0.02) 38%, rgba(9, 11, 16, 0.62) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 18px;
  align-items: center;
  padding: 112px 0 96px;
  color: #fff;
}

.hero-copy {
  position: relative;
  max-width: 520px;
  padding: 24px 22px 26px 0;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -22px -18px -26px -44px;
  background:
    radial-gradient(circle at 18% 28%, rgba(255, 42, 86, 0.1), transparent 34%),
    linear-gradient(90deg, rgba(6, 7, 10, 0.92) 0%, rgba(6, 7, 10, 0.72) 44%, rgba(6, 7, 10, 0.16) 100%);
  filter: blur(18px);
  border-radius: 34px;
  z-index: -1;
}

.hero-copy > * {
  opacity: 0;
  animation: revealUp 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero h1 {
  animation-delay: 0.08s;
}

.hero-subtitle {
  animation-delay: 0.18s;
}

.hero-actions {
  animation-delay: 0.3s;
}

.hero h1,
.section-head h2,
.about-copy h2,
.contact-copy h2,
.detail-title,
.detail-price strong {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: none;
  font-size: clamp(5.6rem, 10vw, 9.8rem);
  line-height: 0.82;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  color: rgba(255, 214, 225, 0.18);
  text-shadow:
    0 0 34px rgba(255, 40, 92, 0.1),
    0 0 88px rgba(255, 24, 73, 0.08);
}

.hero h1 span {
  display: block;
}

.hero h1 span + span {
  margin-top: 0.08em;
}

.hero h1 span:first-child {
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 30ch;
  margin: 24px 0 0;
  font-size: 1rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.section-kicker {
  margin: 0 0 16px;
  color: #ff656b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-panel-label {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel {
  position: relative;
  align-self: end;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 12, 16, 0.5);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-strong);
  transform: rotate(-1.5deg);
  transform-origin: bottom right;
  opacity: 0;
  animation:
    revealRight 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.5s forwards,
    heroFloat 7.5s ease-in-out 1.55s infinite;
}

.hero-panel-top {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.hero-panel-thumb-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.hero-panel-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-panel-copy {
  min-width: 0;
}

.hero-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-panel-price {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #fff;
}

.hero-panel p {
  margin: 10px 0 18px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
  font-size: 0.92rem;
}

.hero-panel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.hero-tail {
  inset: auto -4% -60px;
  height: 160px;
  background: radial-gradient(circle, rgba(228, 31, 39, 0.18), transparent 62%);
  filter: blur(18px);
  transform: rotate(-3deg);
  transform-origin: center;
  pointer-events: none;
}

.section-space {
  position: relative;
  padding: 88px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.section-head-wide {
  align-items: center;
}

.featured,
.inventory,
.services,
.contact {
  position: relative;
}

.inventory::after,
.services::after,
.contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -72px;
  height: 144px;
  pointer-events: none;
  filter: blur(34px);
  opacity: 0.92;
}

.featured::before,
.inventory::before,
.services::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(228, 31, 39, 0.05), transparent 24%);
}

.services {
  background:
    linear-gradient(180deg, rgba(248, 246, 245, 0.94), rgba(243, 240, 239, 0.98));
}

.services::before {
  background:
    radial-gradient(circle at 18% 28%, rgba(228, 31, 39, 0.06), transparent 28%),
    radial-gradient(circle at 84% 76%, rgba(13, 15, 20, 0.035), transparent 22%);
}

.services::after {
  background:
    linear-gradient(
      180deg,
      rgba(245, 245, 246, 0) 0%,
      rgba(245, 245, 246, 0.6) 22%,
      rgba(246, 243, 242, 0.96) 100%
    );
}

.inventory {
  background:
    linear-gradient(180deg, rgba(238, 239, 241, 0.92), rgba(245, 245, 246, 0.98));
}

.inventory::before {
  background:
    radial-gradient(circle at 82% 22%, rgba(228, 31, 39, 0.06), transparent 24%),
    radial-gradient(circle at 10% 70%, rgba(13, 15, 20, 0.03), transparent 20%);
}

.inventory::after {
  background:
    linear-gradient(
      180deg,
      rgba(244, 241, 240, 0) 0%,
      rgba(244, 241, 240, 0.54) 18%,
      rgba(239, 241, 243, 0.96) 100%
    );
}

.inventory-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(13, 15, 20, 0.08);
  box-shadow: 0 10px 24px rgba(15, 18, 25, 0.06);
  font-weight: 600;
}

.inventory-meta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(13, 15, 20, 0.1);
  box-shadow: 0 14px 28px rgba(15, 18, 25, 0.08);
  font-weight: 700;
}

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

.bike-card {
  position: relative;
  overflow: hidden;
  --card-rx: 0deg;
  --card-ry: 0deg;
  --card-shift: 0px;
  --card-x: 50%;
  --card-y: 28%;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 248, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateX(var(--card-rx)) rotateY(var(--card-ry)) translate3d(0, var(--card-shift), 0);
  transition:
    transform 0.22s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
  cursor: pointer;
}

.bike-card::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -40%;
  width: 60%;
  height: 300%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(18deg);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.bike-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--card-x) var(--card-y), rgba(228, 31, 39, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%);
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.bike-card:hover,
.bike-card:focus-within {
  --card-shift: -10px;
  box-shadow:
    0 34px 80px rgba(12, 16, 24, 0.18),
    0 0 0 2px rgba(228, 31, 39, 0.55);
  border-color: rgba(228, 31, 39, 0.5);
}

.bike-card:hover::before,
.bike-card:focus-within::before {
  transform: rotate(18deg) translateY(24%);
}

.bike-card:hover::after,
.bike-card:focus-within::after {
  opacity: 1;
}

.bike-card:active {
  --card-shift: -4px;
  box-shadow:
    0 22px 48px rgba(12, 16, 24, 0.18),
    0 0 0 2px rgba(228, 31, 39, 0.8);
}

.bike-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
  overflow: hidden;
}

.bike-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.4));
}

.bike-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.bike-card:hover .bike-card-media img {
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.04);
}

.bike-card:focus-visible {
  outline: none;
}

.bike-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.bike-card-body {
  padding: 22px;
}

.bike-card-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.42rem;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.bike-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.bike-card-specs span,
.detail-spec span,
.detail-highlights span,
.contact-info-card {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--surface-muted);
  color: var(--muted);
  font-size: 0.92rem;
}

.bike-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.bike-card-price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.bike-card-price small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.bike-card-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.card-link,
.card-ghost {
  flex: 1;
}

.filter-panel {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  position: relative;
  z-index: 20;
  overflow: visible;
}

.filter-bar,
.filter-sort-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 248, 0.92));
  box-shadow: 0 14px 34px rgba(12, 16, 24, 0.07);
  backdrop-filter: blur(12px);
}

.filter-bar {
  grid-template-columns: repeat(5, minmax(0, 1fr)) auto;
  align-items: end;
  position: relative;
  z-index: 21;
  overflow: visible;
}

.filter-sort-panel {
  display: none;
  position: absolute;
  right: 14px;
  top: calc(100% + 10px);
  min-width: 220px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid rgba(13, 15, 20, 0.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 44px rgba(12, 16, 24, 0.12);
  z-index: 40;
}

.filter-bar label,
.filter-sort-panel label {
  display: grid;
  gap: 8px;
  min-width: 0;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: -0.02em;
}

.inventory-filter-toggle-inline {
  align-self: end;
  margin-bottom: 0;
  width: 46px;
  height: 46px;
  background: rgba(225, 230, 239, 0.82);
  color: var(--ink);
  border-color: rgba(13, 15, 20, 0.08);
  box-shadow: none;
}

.inventory-filter-toggle-inline:hover,
.inventory-filter-toggle-inline:focus-visible {
  background: rgba(216, 223, 235, 0.96);
  border-color: rgba(13, 15, 20, 0.12);
  box-shadow: 0 10px 24px rgba(12, 16, 24, 0.08);
}

.filter-bar input,
.filter-bar select,
.contact-form input,
.contact-form textarea {
  min-height: 46px;
  width: 100%;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(13, 15, 20, 0.08);
  background: rgba(243, 243, 245, 0.95);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 600;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.filter-bar input:focus,
.filter-bar select:focus,
.filter-sort-panel select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(228, 31, 39, 0.28);
  box-shadow: 0 0 0 4px rgba(228, 31, 39, 0.08);
  transform: translateY(-1px);
}

.filter-panel.sort-open .filter-sort-panel {
  display: grid;
}

.sort-option {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.sort-option:hover,
.sort-option:focus-visible {
  background: rgba(225, 230, 239, 0.74);
  transform: translateX(2px);
}

.sort-option.is-active {
  background: rgba(228, 31, 39, 0.12);
  color: var(--red-deep);
}

.inventory-page .section-head h2 {
  font-size: clamp(2rem, 4.6vw, 3.5rem);
}

.inventory-grid {
  position: relative;
  z-index: 1;
  margin-top: 20px;
}

.inventory-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 247, 248, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(12, 16, 24, 0.08);
}

.pagination-summary {
  color: var(--muted);
  font-weight: 600;
}

.pagination-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.pagination-button {
  min-width: 46px;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  background: rgba(243, 243, 245, 0.95);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.pagination-button:hover:not(:disabled) {
  transform: translateY(-1px);
  background: rgba(228, 31, 39, 0.1);
}

.pagination-button.is-active {
  background: var(--accent);
  color: #fff;
}

.pagination-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.inventory-preview-grid .bike-card:nth-child(n + 7) {
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
  perspective: 1400px;
}

.service-card,
.contact-copy,
.contact-form,
.detail-gallery,
.detail-panel,
.detail-specs-card,
.detail-text-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 249, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.contact-copy,
.contact-form,
.detail-panel,
.detail-specs-card,
.detail-text-card {
  padding: 30px;
}

.contact-copy::before,
.service-card::before,
.detail-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(228, 31, 39, 0.12), transparent 70%);
  pointer-events: none;
}

.contact {
  overflow: hidden;
}

.contact::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -72px;
  height: 144px;
  background:
    linear-gradient(
      180deg,
      rgba(242, 243, 244, 0) 0%,
      rgba(242, 243, 244, 0.58) 20%,
      rgba(242, 243, 244, 0.95) 100%
    );
  filter: blur(34px);
  opacity: 0.92;
  pointer-events: none;
}

.contact .container::after {
  content: "";
  position: absolute;
  inset: auto -18% -34% 18%;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 31, 39, 0.1), rgba(228, 31, 39, 0.04) 28%, rgba(228, 31, 39, 0.015) 44%, transparent 76%);
  filter: blur(92px);
  opacity: 0.52;
  pointer-events: none;
}

.contact-copy,
.contact-form {
  isolation: isolate;
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 54px rgba(12, 16, 24, 0.1);
}

.contact-copy {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 248, 0.94));
  transform: none;
}

.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 246, 248, 0.94));
  transform: none;
  animation: none;
  overflow: visible;
  padding-bottom: 36px;
}

.contact-form::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -6px;
  height: 96px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(228, 31, 39, 0.1), rgba(228, 31, 39, 0.045) 30%, transparent 76%);
  filter: blur(40px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.contact-copy p,
.service-card p,
.detail-note,
.detail-text-card p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-copy > p {
  max-width: 22ch;
  margin: 12px 0 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.contact-cards,
.services-grid {
  display: grid;
  gap: 12px;
}

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

.service-card {
  isolation: isolate;
  padding: 28px;
  min-height: 210px;
  border: 1px solid rgba(13, 15, 20, 0.06);
  --mx: 50%;
  --my: 50%;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 72px rgba(12, 16, 24, 0.16);
  border-color: rgba(228, 31, 39, 0.36);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background:
    radial-gradient(
      140px circle at var(--mx) var(--my),
      rgba(228, 31, 39, 0.95) 0%,
      rgba(228, 31, 39, 0.55) 22%,
      rgba(228, 31, 39, 0.14) 40%,
      transparent 64%
    );
  opacity: 0;
  transition:
    opacity 0.24s ease,
    background-position 0.08s linear;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card.is-active::after {
  opacity: 1;
}

.service-card h3,
.detail-spec strong {
  margin: 0;
  font-family: var(--font-display);
}

.service-card h3 {
  font-size: 1.6rem;
  max-width: 14ch;
  line-height: 1.08;
}

.service-card p {
  max-width: 34ch;
  margin-top: 14px;
  line-height: 1.65;
}

.contact-phone {
  display: inline-flex;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.contact-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-mini-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px 0 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 242, 244, 0.92));
  border: 1px solid rgba(13, 15, 20, 0.08);
  box-shadow: 0 14px 26px rgba(12, 16, 24, 0.08);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(13, 15, 20, 0.06);
  flex: 0 0 34px;
}

.contact-mini-icon svg {
  width: 18px;
  height: 18px;
}

.contact-mini-link:hover,
.contact-mini-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(228, 31, 39, 0.24);
  background: rgba(228, 31, 39, 0.08);
  box-shadow: 0 20px 36px rgba(12, 16, 24, 0.12);
}

.contact-mini-link:focus-visible {
  outline: none;
}

.contact-mini-link.is-whatsapp {
  color: #0f8f57;
}

.contact-mini-link.is-whatsapp .contact-mini-icon {
  background: rgba(15, 143, 87, 0.12);
}

.contact-mini-link.is-instagram {
  color: #c13584;
}

.contact-mini-link.is-instagram .contact-mini-icon {
  background: rgba(193, 53, 132, 0.12);
}

.contact-mini-link.is-tiktok {
  color: #111319;
}

.contact-mini-link.is-tiktok .contact-mini-icon {
  background: rgba(17, 19, 25, 0.08);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form > * {
  position: relative;
  z-index: 1;
}

.contact-form label {
  display: block;
}

.contact-form textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.contact-form .detail-cta {
  margin-top: 4px;
  box-shadow: 0 10px 18px rgba(228, 31, 39, 0.08);
}

.inventory-empty,
.detail-not-found-card {
  padding: 48px 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 249, 0.92));
  box-shadow: var(--shadow);
  text-align: center;
}

.site-footer {
  position: relative;
  margin-top: 0;
  padding: 52px 0 40px;
  background:
    linear-gradient(180deg, #0b0c10 0%, #08090d 100%);
  color: rgba(255, 255, 255, 0.84);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -96px;
  left: 0;
  right: 0;
  height: 160px;
  background:
    linear-gradient(
      180deg,
      rgba(239, 239, 239, 0) 0%,
      rgba(239, 239, 239, 0.58) 18%,
      rgba(228, 31, 39, 0.06) 38%,
      rgba(11, 12, 16, 0.56) 72%,
      rgba(11, 12, 16, 0.96) 100%
    );
  filter: blur(28px);
  opacity: 0.95;
  pointer-events: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-inner p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.52);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.detail-main {
  padding: 120px 0 72px;
}

.inventory-main {
  padding: 96px 0 72px;
}

.inventory-page .inventory.section-space {
  padding-top: 26px;
}

.inventory-page .inventory .section-head h2 {
  position: relative;
  z-index: 2;
  color: #0d0f14 !important;
  text-shadow: none;
}

.inventory-page .inventory .section-kicker {
  position: relative;
  z-index: 2;
  color: #ff7f84 !important;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.94fr);
  gap: 22px;
  align-items: start;
}

.detail-gallery {
  padding: 0;
}

.detail-hero-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111;
}

.detail-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(7, 8, 10, 0.18));
  pointer-events: none;
}

.detail-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  touch-action: pan-y;
}

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

.detail-thumbs button {
  padding: 0;
  border: 1px solid rgba(13, 15, 20, 0.06);
  border-radius: 20px;
  overflow: hidden;
  background: #ddd;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.detail-thumbs button.is-active {
  border-color: rgba(228, 31, 39, 0.38);
  box-shadow: 0 16px 30px rgba(228, 31, 39, 0.16);
}

.detail-thumbs button:hover {
  transform: translateY(-3px);
  border-color: rgba(228, 31, 39, 0.2);
  box-shadow: 0 16px 30px rgba(12, 16, 24, 0.12);
}

.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(10, 12, 16, 0.56);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 32px rgba(8, 10, 15, 0.2);
  transform: translateY(-50%);
}

.detail-gallery-nav span {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-1px);
}

.detail-gallery-prev {
  left: 16px;
}

.detail-gallery-next {
  right: 16px;
}

.detail-breadcrumb {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 700;
}

.detail-title {
  font-size: clamp(2.6rem, 5vw, 4.9rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.detail-highlights,
.detail-spec-grid {
  display: grid;
  gap: 10px;
}

.detail-highlights {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0;
}

.detail-price {
  padding: 24px 0;
  margin-bottom: 20px;
  border-top: 1px solid rgba(13, 15, 20, 0.08);
  border-bottom: 1px solid rgba(13, 15, 20, 0.08);
}

.detail-price strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.detail-price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.detail-actions {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

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

.detail-spec {
  padding: 18px;
  border-radius: 22px;
  background: rgba(245, 245, 246, 0.84);
}

.detail-spec strong {
  display: block;
  margin-top: 6px;
  font-size: 1.15rem;
}

.detail-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

[data-reveal] {
  opacity: 0;
  animation: revealUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.08s;
}

[data-reveal="left"] {
  animation-name: revealLeft;
}

[data-reveal="right"] {
  animation-name: revealRight;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(12px);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes heroDrift {
  0% {
    transform: scale(1.06) translate3d(0, 0, 0);
  }
  100% {
    transform: scale(1.11) translate3d(-10px, 8px, 0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.09);
  }
}

@keyframes heroLiquidFlow {
  0% {
    transform:
      translate3d(calc(var(--hero-liquid-x, 0px) * 0.016), calc(var(--hero-liquid-y, 0px) * 0.016), 0)
      scale(1.04)
      rotate(-2deg);
  }
  100% {
    transform:
      translate3d(calc(var(--hero-liquid-x, 0px) * 0.016 + 16px), calc(var(--hero-liquid-y, 0px) * 0.016 - 10px), 0)
      scale(1.1)
      rotate(2deg);
  }
}

@keyframes heroLiquidRibbon {
  0% {
    transform:
      translate3d(calc(var(--hero-liquid-x, 0px) * -0.028), calc(var(--hero-liquid-y, 0px) * -0.02), 0)
      rotate(-5deg)
      scale(1.02);
  }
  100% {
    transform:
      translate3d(calc(var(--hero-liquid-x, 0px) * -0.028 - 20px), calc(var(--hero-liquid-y, 0px) * -0.02 + 14px), 0)
      rotate(4deg)
      scale(1.1);
  }
}

@keyframes heroLiquidFlowReverse {
  0% {
    transform:
      translate3d(calc(var(--hero-liquid-x, 0px) * 0.022), calc(var(--hero-liquid-y, 0px) * -0.03), 0)
      rotate(7deg)
      scale(1.04);
  }
  100% {
    transform:
      translate3d(calc(var(--hero-liquid-x, 0px) * 0.022 + 18px), calc(var(--hero-liquid-y, 0px) * -0.03 - 12px), 0)
      rotate(-5deg)
      scale(1.12);
  }
}

@keyframes heroLiquidVein {
  0% {
    transform:
      translate3d(calc(var(--hero-liquid-x, 0px) * -0.018), calc(var(--hero-liquid-y, 0px) * 0.018), 0)
      rotate(-2deg)
      scale(1.01);
    opacity: 0.28;
  }
  100% {
    transform:
      translate3d(calc(var(--hero-liquid-x, 0px) * -0.018 - 12px), calc(var(--hero-liquid-y, 0px) * 0.018 + 8px), 0)
      rotate(2deg)
      scale(1.08);
    opacity: 0.5;
  }
}

@keyframes heroLiquidPulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

@keyframes heroRipple {
  0% {
    opacity: 0.58;
    transform: scale(0.24);
    filter: blur(0px);
  }
  70% {
    opacity: 0.18;
    transform: scale(1.12);
    filter: blur(2px);
  }
  100% {
    opacity: 0;
    transform: scale(1.44);
    filter: blur(8px);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes revealLeft {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes revealRight {
  from {
    opacity: 0;
    transform: translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  body {
    background:
      linear-gradient(180deg, #090a0e 0, #090a0e 620px, #f3f3f4 620px, #efefef 100%);
  }

  .hero-content,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    padding-right: 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-media {
    inset: 0;
    transform: none;
  }

  .hero-liquid {
    opacity: 0.8;
  }

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

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

  .filter-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .filter-sort-panel {
    grid-template-columns: minmax(0, 1fr);
    justify-content: stretch;
  }

  .inventory-filter-toggle-inline {
    justify-self: start;
  }

  .detail-grid > *:first-child,
  .detail-grid > *:nth-child(2) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    padding: 10px 0 0;
  }

  .hero-actions,
  .bike-card-actions,
  .detail-actions,
  .section-head,
  .footer-inner,
  .inventory-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 18px;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    width: auto;
    min-width: 112px;
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.98rem;
    flex: 0 0 auto;
  }

  .brand {
    min-width: 0;
    flex: 1;
    font-size: 0.72rem;
  }

  .brand-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 9px;
  }

  .button,
  .card-link,
  .card-ghost,
  .detail-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    left: -3%;
    right: -3%;
    bottom: -74px;
    height: 128px;
    transform: rotate(-1.4deg);
  }

  .hero-media {
    inset: 0;
    border-radius: 0;
    transform: none;
    box-shadow: none;
  }

  .hero-liquid-ribbon,
  .hero-liquid-glow {
    opacity: 0.54;
  }

  .hero-content {
    gap: 16px;
    padding: 18px 0 44px;
  }

  .hero-copy {
    max-width: 100%;
    padding: 10px 0 0;
  }

  .hero-copy::before {
    inset: -12px -8px -18px -14px;
    filter: blur(14px);
    border-radius: 26px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.2rem, 12vw, 4.4rem);
    line-height: 0.84;
    letter-spacing: -0.055em;
  }

  .hero h1 span + span {
    margin-top: 0.12em;
  }

  .hero-subtitle {
    max-width: 22ch;
    margin-top: 12px;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .hero-actions {
    flex-direction: row;
    align-items: stretch;
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    width: auto;
    flex: 1 1 0;
    min-height: 50px;
    padding-inline: 12px;
  }

  .hero-panel {
    max-width: none;
    transform: none;
    padding: 14px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(12, 14, 20, 0.88);
    backdrop-filter: none;
    box-shadow: 0 18px 36px rgba(4, 6, 10, 0.24);
  }

  .hero-panel-top {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 12px;
  }

  .hero-panel strong {
    font-size: 1.18rem;
  }

  .hero-panel-price {
    margin-top: 12px;
    font-size: 1.72rem;
  }

  .hero-panel p {
    display: none;
  }

  .hero-panel::before,
  .hero-panel::after {
    display: none;
  }

  .contact-inline-links {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-tail {
    bottom: -28px;
    height: 72px;
  }

  .featured-grid,
  .inventory-grid,
  .services-grid,
  .filter-sort-panel,
  .detail-highlights,
  .detail-spec-grid,
  .detail-thumbs {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .filter-control {
    grid-column: 1 / -1;
  }

  .inventory-filter-toggle-inline {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    align-self: start;
    margin-top: 1px;
  }

  .filter-sort-panel {
    right: 12px;
    top: 62px;
    min-width: 200px;
  }

  .inventory-main {
    padding-top: 28px;
  }

  .contact-copy,
  .contact-form,
  .detail-panel,
  .detail-specs-card,
  .detail-text-card {
    padding: 22px;
  }

  .detail-main {
    padding-top: 28px;
  }

  .detail-gallery {
    gap: 12px;
  }

  .detail-hero-image {
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 5 / 4;
  }

  .detail-thumbs {
    display: flex;
    gap: 10px;
    padding: 0 2px 4px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .detail-thumbs::-webkit-scrollbar {
    display: none;
  }

  .detail-thumbs button {
    flex: 0 0 92px;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    scroll-snap-align: start;
  }

  .detail-gallery-nav {
    width: 42px;
    height: 42px;
  }

  .detail-gallery-nav span {
    font-size: 1.8rem;
  }

  .pagination-actions {
    justify-content: stretch;
  }
}
