/* ==========================================================================
   Japan Bike Imports — custom.css
   Flagship · Dark Navy #0b1c2d · Silver #a8b2c1 · Ice Blue
   Precision logistics luxury — Yokohama / JBI
   ========================================================================== */

:root {
  --navy: #0b1c2d;
  --navy-deep: #07131f;
  --navy-soft: #12283d;
  --silver: #a8b2c1;
  --silver-light: #c8d0db;
  --silver-mute: #7a8494;
  --ice: #4a7c9b;
  --ice-bright: #6a9db8;
  --ice-dim: #355f78;
  --white: #eef2f6;
  --line: rgba(168, 178, 193, 0.18);
  --stamp: rgba(74, 124, 155, 0.4);
  --glass: rgba(18, 40, 61, 0.55);
  --font-display: "Oswald", sans-serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: auto;
}

html.lenis,
html.lenis body { height: auto; }

.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(74, 124, 155, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 20%, rgba(168, 178, 193, 0.06), transparent 50%),
    var(--navy);
  color: var(--silver);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--ice);
  color: var(--white);
  padding: .75rem 1rem;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* --------------------------------------------------------------------------
   Loader · Scroll progress
   -------------------------------------------------------------------------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, #0e2436 100%);
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.page-loader__inner { text-align: center; padding: 2rem; }
.page-loader__mark {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  letter-spacing: .28em;
  color: var(--silver-light);
}
.page-loader__jp {
  margin: .35rem 0 0;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .18em;
  color: var(--silver);
}
.page-loader__port {
  margin: .5rem 0 1.75rem;
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .28em;
  color: var(--ice-bright);
  text-transform: uppercase;
}
.page-loader__track {
  width: min(220px, 60vw);
  height: 1px;
  margin: 0 auto;
  background: rgba(168, 178, 193, 0.2);
  overflow: hidden;
}
.page-loader__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--silver-mute), var(--ice-bright), var(--silver-light));
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  z-index: 120;
  background: linear-gradient(90deg, var(--ice-dim), var(--ice-bright), var(--silver-light));
  pointer-events: none;
  transform-origin: left center;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--ice-bright);
  margin-bottom: .75rem;
}
.sec-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: .04em;
  color: var(--silver-light);
  line-height: 1.15;
  margin: 0 0 .75rem;
}
.sec-title span.jp {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .55em;
  letter-spacing: .12em;
  color: var(--silver);
  margin-top: .35rem;
}
.sec-lede {
  max-width: 36rem;
  color: var(--silver-mute);
  margin: 0;
  font-size: .98rem;
}
.silver-grad {
  background: linear-gradient(120deg, #e8edf3 0%, #a8b2c1 45%, #6a9db8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* --------------------------------------------------------------------------
   Nav
   -------------------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 80;
  height: var(--nav-h);
  background: rgba(11, 28, 45, 0.55);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-nav.is-stuck {
  background: rgba(7, 19, 31, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.32);
}
.site-nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.site-nav__emblem {
  position: relative;
  color: var(--ice-bright);
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
}
.site-nav__emblem svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.site-nav__jbi {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: .62rem;
  letter-spacing: .12em;
  color: var(--silver-light);
}
.site-nav__titles { display: flex; flex-direction: column; line-height: 1.15; }
.site-nav__jp { font-weight: 700; font-size: .95rem; color: var(--silver-light); }
.site-nav__en {
  font-family: var(--font-display);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver-mute);
}
.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: auto;
}
.site-nav__link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--silver-mute);
  position: relative;
  padding: .25rem 0;
}
.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ice);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.site-nav__link:hover,
.site-nav__link.is-active { color: var(--silver-light); }
.site-nav__link:hover::after,
.site-nav__link.is-active::after { transform: scaleX(1); }
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .55rem 1.15rem;
  border: 1px solid var(--ice);
  color: var(--silver-light);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.site-nav__cta:hover {
  background: var(--ice);
  color: var(--white);
}
.site-nav__cta--mobile { display: none; margin-top: 1rem; }
.site-nav__burger {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.site-nav__burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--silver-light);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.site-nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.site-nav__burger.is-open span:nth-child(2) { opacity: 0; }
.site-nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .site-nav__burger { display: flex; }
  .site-nav__cta:not(.site-nav__cta--mobile) { display: none; }
  .site-nav__cta--mobile { display: inline-flex; width: fit-content; }
  .site-nav__menu {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(7, 19, 31, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
  }
  .site-nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav__link {
    padding: .9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .site-nav__link::after { display: none; }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.45rem;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .04em;
  border: 1px solid transparent;
  will-change: transform;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--solid {
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-dim) 100%);
  color: var(--white);
  border-color: var(--ice);
  box-shadow: 0 8px 24px rgba(74, 124, 155, 0.22);
}
.btn--solid:hover {
  background: linear-gradient(135deg, var(--ice-bright) 0%, var(--ice) 100%);
  border-color: var(--ice-bright);
}
.btn--ghost {
  border-color: var(--silver-mute);
  color: var(--silver-light);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--ice-bright); color: var(--white); }
.btn--line {
  border-color: var(--line);
  color: var(--silver);
  padding-inline: 0;
  border-width: 0 0 1px;
  border-radius: 0;
}
.btn--line:hover { color: var(--ice-bright); border-color: var(--ice-bright); transform: none; }

.btn-magnetic { position: relative; }

/* --------------------------------------------------------------------------
   Sections / layout
   -------------------------------------------------------------------------- */
.section {
  padding: clamp(4.25rem, 8vw, 7rem) 1.25rem;
  position: relative;
}
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--process {
  background:
    linear-gradient(180deg, transparent, rgba(18, 40, 61, 0.35), transparent);
}
.section--intl {
  background: linear-gradient(180deg, transparent, rgba(18, 40, 61, 0.45), transparent);
}
.section--inspect {
  background:
    radial-gradient(800px 400px at 80% 20%, rgba(74, 124, 155, 0.1), transparent 60%),
    var(--navy-deep);
}
.section--awards {
  background:
    linear-gradient(180deg, rgba(7, 19, 31, 0.4), transparent);
}
.container {
  max-width: 1240px;
  margin: 0 auto;
}
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.75rem;
  flex-wrap: wrap;
}
.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 2.75rem;
  align-items: center;
}
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
}

/* Passport stamp */
.stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border: 2px dashed var(--stamp);
  border-radius: 50%;
  color: var(--ice-bright);
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  line-height: 1.3;
  transform: rotate(-12deg);
  opacity: .88;
  box-shadow: inset 0 0 0 1px rgba(74, 124, 155, 0.15);
}
.stamp--sm { width: 4.3rem; height: 4.3rem; font-size: .52rem; }

/* Glass cards */
.glass-card {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(18, 40, 61, 0.72), rgba(11, 28, 45, 0.42));
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

/* --------------------------------------------------------------------------
   HERO — split + diagonal + video panel
   -------------------------------------------------------------------------- */
.hero-split {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-split__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4.5rem);
  z-index: 2;
}
.hero-split__panel--text {
  background:
    radial-gradient(500px 320px at 20% 30%, rgba(74, 124, 155, 0.14), transparent 60%),
    linear-gradient(135deg, rgba(11, 28, 45, 0.99) 0%, rgba(18, 40, 61, 0.96) 55%, rgba(11, 28, 45, 0.92) 100%);
  overflow: hidden;
}
.hero-parallax {
  position: relative;
  will-change: transform;
  z-index: 2;
}
.hero-split__panel--media {
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
  padding: 0;
  min-height: 420px;
  will-change: transform;
}
.hero-split__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-video,
.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.08) brightness(0.88);
}
.hero-fallback.kenburns {
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.1) translate(-2%, 1.5%); }
}
.hero-split__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 28, 45, 0.72) 0%, rgba(11, 28, 45, 0.18) 42%, rgba(7, 19, 31, 0.4) 100%),
    linear-gradient(0deg, rgba(7, 19, 31, 0.5), transparent 42%);
  pointer-events: none;
}
.hero-split__diag {
  position: absolute;
  top: 0; bottom: 0;
  left: 46%;
  width: 16%;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(105deg, rgba(11, 28, 45, 0.85) 0%, transparent 72%);
  mix-blend-mode: multiply;
  opacity: .65;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero-kicker__jbi {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .22em;
  color: var(--navy-deep);
  background: var(--silver-light);
  padding: .28rem .55rem;
}
.hero-kicker__port {
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .24em;
  color: var(--ice-bright);
  text-transform: uppercase;
}
.hero-kicker__line {
  width: 48px; height: 1px; background: var(--ice);
}
.hero-title {
  margin: 0 0 1.25rem;
  line-height: 1.05;
}
.hero-title__brand {
  display: block;
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  letter-spacing: .2em;
  color: var(--silver-light);
  margin-bottom: .55rem;
}
.hero-title__display {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.8rem, 6.2vw, 5rem);
  letter-spacing: .03em;
  line-height: 1.02;
}
.hero-lede {
  max-width: 28rem;
  color: var(--silver-mute);
  margin: 0 0 1.75rem;
  font-size: 1rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.hero-meta__item { min-width: 7rem; }
.hero-meta__n {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--silver-light);
  letter-spacing: .06em;
}
.hero-meta__l {
  font-size: .75rem;
  color: var(--silver-mute);
}
.hero-float-stamp {
  position: absolute;
  right: 8%;
  bottom: 14%;
  z-index: 4;
}
.hero-media-caption {
  position: absolute;
  left: 18%;
  bottom: 1.25rem;
  z-index: 4;
  margin: 0;
  font-family: var(--font-display);
  font-size: .62rem;
  letter-spacing: .24em;
  color: rgba(200, 208, 219, 0.72);
}
.hero-scroll {
  position: absolute;
  left: clamp(1.5rem, 5vw, 4.5rem);
  bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-display);
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--silver-mute);
  z-index: 4;
}
.hero-scroll__line {
  display: block;
  width: 1px;
  height: 42px;
  background: linear-gradient(180deg, var(--ice-bright), transparent);
  animation: scrollPulse 1.8s var(--ease) infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .35; transform: scaleY(0.7); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-split__panel--media {
    clip-path: none;
    min-height: 46vh;
    order: -1;
  }
  .hero-split__diag,
  .hero-float-stamp,
  .hero-media-caption { display: none; }
  .hero-scroll { display: none; }
  .hero-title__display { font-size: clamp(2.4rem, 10vw, 3.4rem); }
}

/* --------------------------------------------------------------------------
   Process timeline — animated draw line
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  padding-top: 1.75rem;
}
.timeline__track {
  position: absolute;
  top: 2.5rem;
  left: 4%;
  right: 4%;
  height: 2px;
  background: rgba(74, 124, 155, 0.18);
  overflow: hidden;
  z-index: 0;
}
.timeline__draw {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--ice-dim), var(--ice-bright), var(--silver-light));
  transform: scaleX(0);
  transform-origin: left center;
}
.timeline__step {
  position: relative;
  padding: 0 .25rem 1rem;
  opacity: 0;
  transform: translateY(32px);
  z-index: 1;
}
.timeline__step.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.timeline__num {
  width: 2.7rem; height: 2.7rem;
  border-radius: 50%;
  border: 1px solid var(--ice);
  background: var(--navy);
  color: var(--ice-bright);
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  transition: background .3s var(--ease), color .3s var(--ease), box-shadow .3s var(--ease);
}
.timeline__step:hover .timeline__num,
.timeline__step.is-active .timeline__num {
  background: var(--ice);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(74, 124, 155, 0.15);
}
.timeline__en {
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .18em;
  color: var(--ice);
  margin-bottom: .35rem;
}
.timeline__t {
  font-size: 1rem;
  font-weight: 700;
  color: var(--silver-light);
  margin: 0 0 .5rem;
}
.timeline__d {
  font-size: .82rem;
  color: var(--silver-mute);
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 1000px) {
  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .timeline__track {
    top: 0; bottom: 0;
    left: 1.3rem;
    right: auto;
    width: 2px; height: auto;
  }
  .timeline__draw {
    transform: scaleY(0);
    transform-origin: top center;
    width: 100%;
  }
  .timeline__step {
    display: grid;
    grid-template-columns: 2.7rem 1fr;
    gap: .25rem 1rem;
    padding: 0 0 2rem 0;
  }
  .timeline__num { grid-row: 1 / span 3; margin: 0; }
}

/* --------------------------------------------------------------------------
   International glass cards
   -------------------------------------------------------------------------- */
.intl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.intl-card {
  padding: 1.6rem 1.3rem;
  min-height: 100%;
  transition: border-color .35s var(--ease), transform .35s var(--ease), background .35s var(--ease);
}
.intl-card:hover {
  border-color: rgba(74, 124, 155, 0.55);
  transform: translateY(-5px);
  background: linear-gradient(160deg, rgba(26, 52, 74, 0.85), rgba(11, 28, 45, 0.55));
}
.intl-card__en {
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .18em;
  color: var(--ice);
  margin-bottom: .5rem;
}
.intl-card__t {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--silver-light);
  margin: 0 0 .6rem;
}
.intl-card__d {
  font-size: .86rem;
  color: var(--silver-mute);
  margin: 0;
}
.intl-card__icon {
  width: 2.25rem; height: 2.25rem;
  margin-bottom: 1rem;
  color: var(--ice-bright);
}
@media (max-width: 1000px) {
  .intl-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .intl-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Collections — Swiper + 3D hover
   -------------------------------------------------------------------------- */
.collections-swiper { overflow: hidden; padding-bottom: .5rem; }
.collections-swiper .swiper-slide {
  height: auto;
  width: min(360px, 82vw);
}
.bike-card {
  border: 1px solid var(--line);
  background: var(--navy-soft);
  overflow: hidden;
  height: 100%;
  transform-style: preserve-3d;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.bike-card:hover {
  border-color: rgba(74, 124, 155, 0.5);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}
.card-3d {
  perspective: 900px;
}
.bike-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  transform: translateZ(0);
}
.bike-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.bike-card:hover .bike-card__media img { transform: scale(1.07); }
.bike-card__cat {
  position: absolute;
  top: .85rem; left: .85rem;
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .55rem;
  background: rgba(11, 28, 45, 0.8);
  border: 1px solid var(--line);
  color: var(--ice-bright);
  z-index: 1;
}
.bike-card__body { padding: 1.15rem 1.2rem 1.35rem; }
.bike-card__jp { font-size: .8rem; color: var(--silver-mute); margin: 0 0 .2rem; }
.bike-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .06em;
  color: var(--silver-light);
  margin: 0 0 .55rem;
}
.bike-card__desc {
  font-size: .84rem;
  color: var(--silver-mute);
  margin: 0 0 .9rem;
}
.bike-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  font-size: .75rem;
  color: var(--silver);
  border-top: 1px solid var(--line);
  padding-top: .85rem;
}
.bike-card__meta strong { color: var(--ice-bright); font-weight: 500; }
.collections-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}
.collections-prev,
.collections-next {
  width: 2.6rem; height: 2.6rem;
  border: 1px solid var(--line);
  color: var(--silver-light);
  display: grid;
  place-items: center;
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.collections-prev:hover,
.collections-next:hover {
  border-color: var(--ice);
  color: var(--ice-bright);
  background: rgba(74, 124, 155, 0.1);
}
.collections-pagination { display: flex; gap: .4rem; }
.collections-pagination .swiper-pagination-bullet {
  width: 7px; height: 7px;
  background: var(--silver-mute);
  opacity: .45;
  border-radius: 999px;
  transition: width .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.collections-pagination .swiper-pagination-bullet-active {
  width: 22px;
  opacity: 1;
  background: var(--ice-bright);
}

/* --------------------------------------------------------------------------
   Inspection
   -------------------------------------------------------------------------- */
.inspect-cta { margin-top: 1.75rem; }
.inspect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.inspect-item {
  padding: 1.25rem 1.15rem;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.inspect-item:hover {
  border-color: rgba(74, 124, 155, 0.5);
  transform: translateY(-3px);
}
.inspect-item h3 {
  margin: 0 0 .4rem;
  font-size: 1rem;
  color: var(--silver-light);
}
.inspect-item p {
  margin: 0;
  font-size: .86rem;
  color: var(--silver-mute);
}
@media (max-width: 520px) {
  .inspect-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Awards / trust
   -------------------------------------------------------------------------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: rgba(18, 40, 61, 0.45);
  margin-bottom: 1.75rem;
}
.stats-strip--flagship {
  background:
    linear-gradient(120deg, rgba(18, 40, 61, 0.7), rgba(11, 28, 45, 0.5));
}
.stats-strip__item {
  padding: 1.5rem 1rem;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stats-strip__item:last-child { border-right: 0; }
.stats-strip__n {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--silver-light);
  letter-spacing: .06em;
}
.stats-strip__l {
  font-size: .78rem;
  color: var(--silver-mute);
  margin-top: .25rem;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.award-card {
  border: 1px solid var(--line);
  padding: 1.4rem 1.2rem;
  background: rgba(7, 19, 31, 0.35);
  position: relative;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.award-card:hover {
  border-color: rgba(74, 124, 155, 0.5);
  transform: translateY(-3px);
}
.award-card__mark {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .62rem;
  letter-spacing: .2em;
  color: var(--ice-bright);
  border: 1px dashed var(--stamp);
  padding: .25rem .45rem;
  margin-bottom: .85rem;
}
.award-card h3 {
  margin: 0 0 .45rem;
  font-size: 1rem;
  color: var(--silver-light);
}
.award-card p {
  margin: 0;
  font-size: .84rem;
  color: var(--silver-mute);
}
@media (max-width: 900px) {
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .stats-strip__item:nth-child(2) { border-right: 0; }
  .stats-strip__item:nth-child(1),
  .stats-strip__item:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .awards-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   News
   -------------------------------------------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.news-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(18, 40, 61, 0.35);
  overflow: hidden;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.news-card:hover {
  border-color: rgba(74, 124, 155, 0.45);
  transform: translateY(-3px);
}
.news-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.news-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.news-card:hover .news-card__media img { transform: scale(1.05); }
.news-card__body { padding: 1.15rem 1.2rem 1.35rem; flex: 1; display: flex; flex-direction: column; }
.news-card__meta {
  display: flex;
  gap: .75rem;
  align-items: center;
  font-size: .75rem;
  color: var(--silver-mute);
  margin-bottom: .55rem;
}
.news-card__cat {
  font-family: var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ice-bright);
}
.news-card__t {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--silver-light);
  margin: 0 0 .55rem;
  line-height: 1.45;
}
.news-card__x {
  font-size: .86rem;
  color: var(--silver-mute);
  margin: 0;
  margin-top: auto;
}
@media (max-width: 900px) {
  .news-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .news-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   Why choose
   -------------------------------------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-item {
  padding: 1.5rem 1.25rem;
  border-top: 1px solid var(--ice-dim);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.why-item:hover {
  border-color: var(--ice-bright);
  background: rgba(18, 40, 61, 0.35);
}
.why-item__n {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ice);
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.why-item h3 {
  margin: 0 0 .5rem;
  font-size: 1.05rem;
  color: var(--silver-light);
}
.why-item p {
  margin: 0;
  font-size: .86rem;
  color: var(--silver-mute);
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-band__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  margin: 0 0 .6rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: .04em;
  color: var(--silver-light);
}
.cta-band p {
  margin: 0;
  max-width: 32rem;
  color: var(--silver-mute);
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* --------------------------------------------------------------------------
   Page banner (inner pages)
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-banner__bg { position: absolute; inset: 0; }
.page-banner__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.75) brightness(.55);
}
.page-banner__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 19, 31, 0.92) 10%, rgba(11, 28, 45, 0.55) 60%, rgba(11, 28, 45, 0.35));
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 88%);
}
.page-banner__content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 2.75rem;
}
.page-banner h1 {
  margin: 0 0 .75rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: .05em;
  color: var(--silver-light);
}
.page-banner h1 .jp {
  display: block;
  font-family: var(--font-body);
  font-size: .45em;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--silver);
  margin-bottom: .35rem;
}
.page-banner p {
  margin: 0;
  max-width: 36rem;
  color: var(--silver-mute);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  font-size: .78rem;
  color: var(--silver-mute);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--ice-bright); }
.breadcrumb span { opacity: .5; }

/* Service blocks */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
  overflow: hidden;
  background: rgba(18, 40, 61, 0.25);
}
.service-block:nth-child(even) .service-block__media { order: 2; }
.service-block__media {
  position: relative;
  min-height: 280px;
}
.service-block__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.service-block__body {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-block__en {
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--ice);
  margin-bottom: .4rem;
}
.service-block h2 {
  margin: 0 0 .85rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--silver-light);
}
.service-block p {
  margin: 0 0 1.1rem;
  color: var(--silver-mute);
  font-size: .95rem;
}
.service-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-block li {
  position: relative;
  padding: .35rem 0 .35rem 1.15rem;
  font-size: .9rem;
  color: var(--silver);
}
.service-block li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: .55rem; height: 1px;
  background: var(--ice);
  transform: translateY(-50%);
}
@media (max-width: 800px) {
  .service-block { grid-template-columns: 1fr; }
  .service-block:nth-child(even) .service-block__media { order: 0; }
  .service-block__media { min-height: 220px; }
}

/* Forms */
.form { display: grid; gap: 1rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
}
.form label {
  display: block;
  font-size: .8rem;
  color: var(--silver-mute);
  margin-bottom: .4rem;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(7, 19, 31, 0.65);
  border: 1px solid var(--line);
  color: var(--silver-light);
  font: inherit;
  outline: none;
  transition: border-color .25s var(--ease);
}
.form input:focus,
.form select:focus,
.form textarea:focus { border-color: var(--ice); }
.form textarea { min-height: 150px; resize: vertical; }
.form-note {
  font-size: .8rem;
  color: var(--silver-mute);
  margin: 0;
}
.form-success {
  display: none;
  padding: 1rem 1.15rem;
  border: 1px solid var(--ice);
  background: rgba(74, 124, 155, 0.12);
  color: var(--silver-light);
  font-size: .92rem;
}
.form-success.is-show { display: block; }

/* FAQ */
.faq-list { display: grid; gap: .75rem; }
.faq-item {
  border: 1px solid var(--line);
  background: rgba(18, 40, 61, 0.3);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: var(--silver-light);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--ice-bright);
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--silver-mute);
  font-size: .92rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--navy-deep);
  padding: 3.75rem 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.site-footer__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 280px at 15% 0%, rgba(74, 124, 155, 0.12), transparent 55%),
    radial-gradient(500px 240px at 90% 80%, rgba(168, 178, 193, 0.05), transparent 50%);
  pointer-events: none;
}
.site-footer__top {
  max-width: 1240px;
  margin: 0 auto 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.site-footer__stamps {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.1rem;
}
.site-footer__const {
  margin: 0;
  font-family: var(--font-display);
  font-size: .68rem;
  letter-spacing: .28em;
  color: var(--ice);
}
.site-footer__grid {
  max-width: 1240px;
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.3fr;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.site-footer__jbi {
  margin: 0 0 .35rem;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: .22em;
  color: var(--silver-light);
}
.site-footer__jp {
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--silver-light);
  margin: 0 0 .25rem;
}
.site-footer__en {
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver-mute);
  margin: 0 0 .85rem;
}
.site-footer__tag,
.site-footer__catch {
  font-size: .88rem;
  color: var(--silver-mute);
  margin: 0 0 .5rem;
  max-width: 20rem;
}
.site-footer__h {
  font-family: var(--font-display);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ice-bright);
  margin: 0 0 1rem;
}
.site-footer__links,
.site-footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .45rem;
  font-size: .9rem;
  color: var(--silver-mute);
}
.site-footer__links a:hover,
.site-footer__contact a:hover { color: var(--ice-bright); }
.site-footer__social {
  display: flex;
  gap: .55rem;
  margin-top: 1rem;
}
.site-footer__social a {
  width: 2.1rem; height: 2.1rem;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .04em;
  color: var(--silver);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.site-footer__social a:hover {
  border-color: var(--ice);
  color: var(--ice-bright);
}
.site-footer__bar {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .78rem;
  color: var(--silver-mute);
  position: relative;
  z-index: 1;
}
.site-footer__domain {
  font-family: var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* Reveal (inner pages) */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* 404 */
.error-page {
  min-height: calc(100vh - var(--nav-h) - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}
.error-page h1 {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 7rem);
  letter-spacing: .12em;
  color: var(--silver-light);
  margin: 0 0 .5rem;
}
.error-page p { color: var(--silver-mute); margin: 0 0 1.5rem; }

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-fallback.kenburns { animation: none; }
  .hero-scroll__line { animation: none; }
  .page-loader { transition: none; }
  .timeline__step,
  .bike-card,
  .intl-card,
  .news-card { transform: none !important; }
}

.page-loader{display:none!important}

