/* ==========================================================================
   ELITE CYCLE — エリートサイクル
   CONSULT-inspired corporate layout · Navy + metallic gold/silver
   ========================================================================== */

:root {
    --navy-900: #0B1D3A;
    --navy-800: #132B4A;
    --navy-700: #1A3A5C;
    --gold-500: #C5A46E;
    --gold-600: #B08D52;
    --silver-300: #C8CDD4;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --ink: #1C2430;
    --muted: #6B7380;
    --line: #E6E9EE;
    --font-display: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-num: 'DM Sans', 'Noto Sans JP', sans-serif;
    --radius: 4px;
    --radius-sm: 2px;
    --header-h: 78px;
    --topbar-h: 48px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --container-max: 1200px;
    --header-offset: calc(var(--topbar-h) + var(--header-h));
    --gold-grad: linear-gradient(135deg, var(--gold-500) 0%, #D4B88A 45%, var(--gold-600) 100%);
    --navy-grad: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
    --shadow-sm: 0 4px 16px rgba(11, 29, 58, 0.06);
    --shadow-md: 0 8px 28px rgba(11, 29, 58, 0.10);
    --border: 1px solid var(--line);
}

/* ---- 1. Reset / base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    background: var(--off-white);
    color: var(--ink);
    font-family: var(--font-jp);
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.75;
    word-break: keep-all;
    overflow-wrap: anywhere;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a {
    color: var(--navy-800);
    text-decoration: none;
    transition: color 0.25s var(--ease);
}
a:hover { color: var(--gold-600); }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.28;
    letter-spacing: -0.015em;
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
::selection { background: rgba(197, 164, 110, 0.28); color: var(--navy-900); }

.container {
    width: min(var(--container-max), calc(100% - 2.5rem));
    margin-inline: auto;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}
.skip-link {
    position: absolute;
    left: 1rem;
    top: -100px;
    z-index: 10001;
    background: var(--navy-900);
    color: var(--white);
    padding: 0.65rem 1.1rem;
    border-radius: var(--radius);
    font-weight: 600;
}
.skip-link:focus { top: calc(var(--topbar-h) + 0.5rem); }

.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }

.section-eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin: 0 0 0.55rem;
}
.section-title {
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    margin: 0 0 0.75rem;
}
.section-lead {
    color: var(--muted);
    max-width: 36rem;
    margin: 0;
}
.mx-auto-lead { margin-left: auto; margin-right: auto; text-align: center; }
.section-pad { padding: clamp(3.5rem, 8vw, 5.75rem) 0; position: relative; }

/* Inner pages offset for fixed top bar */
body:not(.page-home) { padding-top: var(--topbar-h); }
body:not(.page-home) .site-header {
    top: var(--topbar-h);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    padding: 0.72rem 1.45rem;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s var(--ease), color 0.25s var(--ease),
                border-color 0.25s var(--ease), transform 0.25s var(--ease),
                box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
    background: var(--gold-grad);
    color: var(--navy-900) !important;
    border-color: var(--gold-600);
    box-shadow: 0 6px 18px rgba(197, 164, 110, 0.28);
}
.btn-gold:hover {
    background: var(--gold-600);
    color: var(--white) !important;
    box-shadow: 0 8px 22px rgba(176, 141, 82, 0.32);
}
.btn-navy {
    background: var(--navy-900);
    color: var(--white) !important;
    border-color: var(--navy-900);
}
.btn-navy:hover {
    background: var(--navy-700);
    border-color: var(--navy-700);
    color: var(--white) !important;
}
.btn-ghost-light {
    background: transparent;
    color: var(--white) !important;
    border-color: rgba(255, 255, 255, 0.42);
}
.btn-ghost-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white) !important;
}
.btn-outline-navy {
    background: transparent;
    color: var(--navy-900) !important;
    border-color: var(--navy-900);
}
.btn-outline-navy:hover {
    background: var(--navy-900);
    color: var(--white) !important;
}
.btn-lg { padding: 0.88rem 1.75rem; font-size: 1rem; }
.btn-sm {
    padding: 0.48rem 1rem;
    font-size: 0.82rem;
    min-width: 44px;
    min-height: 44px;
}
.btn:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 3px;
}

/* ---- 2. Top bar ---- */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 300;
    height: var(--topbar-h);
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.top-bar-call {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 500;
}
.top-bar-call i { color: var(--gold-500); font-size: 0.72rem; }
.top-bar-call:hover { color: var(--gold-500) !important; }
.top-bar-social { display: flex; align-items: center; gap: 0.35rem; }
.top-bar-social a {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.65) !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.top-bar-social a:hover {
    color: var(--gold-500) !important;
    border-color: rgba(197, 164, 110, 0.45);
    background: rgba(197, 164, 110, 0.08);
}
.top-bar-social a:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 2px;
}

/* ---- 3. Header / nav ---- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 270;
    height: var(--header-h);
    background: var(--white);
    border-bottom: 1px solid var(--line);
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
                border-color 0.35s var(--ease);
}
.page-home .site-header--home {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--topbar-h);
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}
.page-home .site-header--home .navbar-brand,
.page-home .site-header--home .nav-link {
    color: var(--white) !important;
}
.page-home .site-header--home .brand-sub { color: rgba(255, 255, 255, 0.55); }
.page-home .site-header--home .nav-link::after { background: var(--gold-500); }
.page-home .site-header--home .nav-link.active { color: var(--gold-500) !important; }
.page-home .site-header--home .nav-hamburger { border-color: rgba(255, 255, 255, 0.35); }
.page-home .site-header--home .toggler-line { background: var(--white); }
.page-home .site-header--home .btn-navy {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}
.page-home .site-header--home.is-scrolled,
.site-header.is-scrolled {
    background: var(--white);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.page-home .site-header--home.is-scrolled .navbar-brand,
.page-home .site-header--home.is-scrolled .nav-link {
    color: var(--navy-900) !important;
}
.page-home .site-header--home.is-scrolled .brand-sub { color: var(--muted); }
.page-home .site-header--home.is-scrolled .nav-link.active { color: var(--gold-600) !important; }
.page-home .site-header--home.is-scrolled .nav-hamburger { border-color: var(--navy-900); }
.page-home .site-header--home.is-scrolled .toggler-line { background: var(--navy-900); }
.page-home .site-header--home.is-scrolled .btn-navy {
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.navbar { height: 100%; }
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
    gap: 1rem;
}
.navbar-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    color: var(--navy-900) !important;
    flex-shrink: 0;
}
.brand-mark {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.28rem;
    letter-spacing: 0.1em;
}
.brand-sub {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--muted);
}
.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-link {
    display: block;
    padding: 0.5rem 0.75rem;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--ink) !important;
    position: relative;
    letter-spacing: 0.02em;
}
.nav-link:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.25rem;
    height: 2px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: var(--gold-600) !important; }

.nav-hamburger {
    display: none;
    position: relative;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1.5px solid var(--navy-900);
    border-radius: var(--radius);
    background: transparent;
    cursor: pointer;
}
.toggler-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--navy-900);
    transition: transform 0.3s var(--ease), opacity 0.3s;
}
.nav-hamburger.is-active .toggler-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.is-active .toggler-line:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active .toggler-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 260;
    background: rgba(11, 29, 58, 0.55);
    opacity: 0;
    transition: opacity 0.3s var(--ease);
    backdrop-filter: blur(2px);
}
.nav-backdrop.is-visible { opacity: 1; }

@media (max-width: 991px) {
    .nav-hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 88vw);
        height: 100dvh;
        z-index: 265;
        background: var(--white);
        padding: calc(var(--header-offset) + 1rem) 1.5rem 2rem;
        transform: translateX(105%);
        transition: transform 0.35s var(--ease);
        box-shadow: -8px 0 32px rgba(11, 29, 58, 0.15);
        overflow-y: auto;
    }
    .nav-menu.is-open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
    .nav-link {
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--line);
        font-size: 0.95rem;
    }
    .nav-link::after { display: none; }
    .nav-cta { width: 100%; margin-top: 1.25rem; }
}

/* ---- 4. Loader / scroll progress / back-to-top ---- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 10000;
    background: var(--gold-grad);
    pointer-events: none;
}
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--navy-900);
    transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-inner { text-align: center; }
.loader-mark {
    display: block;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 0.22em;
    color: var(--white);
}
.loader-bar {
    display: block;
    width: 140px;
    height: 2px;
    margin: 1.1rem auto 0;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
}
.loader-bar-fill {
    display: block;
    height: 100%;
    width: 35%;
    background: var(--gold-grad);
    animation: loaderSlide 1.15s ease-in-out infinite;
}
@keyframes loaderSlide {
    0% { transform: translateX(-110%); }
    100% { transform: translateX(320%); }
}
.back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: var(--radius);
    background: var(--navy-900);
    color: var(--gold-500);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s var(--ease), visibility 0.3s, transform 0.3s var(--ease),
                background 0.25s;
    box-shadow: var(--shadow-md);
}
.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.back-to-top:hover { background: var(--navy-700); color: var(--white); }

/* ---- 5. Hero ---- */
.hero-full {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-offset);
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(11, 29, 58, 0.88) 0%, rgba(11, 29, 58, 0.62) 48%, rgba(11, 29, 58, 0.35) 100%),
        linear-gradient(180deg, transparent 55%, rgba(11, 29, 58, 0.75) 100%);
}
.hero-full-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: center;
    padding-block: clamp(2rem, 5vw, 4rem);
}
.hero-brand-signal {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0.06em;
    color: var(--white);
    margin: 0 0 0.65rem;
    opacity: 0.92;
}
.hero-title {
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1rem;
    max-width: 18ch;
}
.hero-lead {
    color: rgba(255, 255, 255, 0.78);
    max-width: 34rem;
    margin-bottom: 1.75rem;
    font-size: 0.98rem;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.hero-brand-label {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin: 0 0 0.35rem;
}

.hero-bike-stage {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}
.bike-3d {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 3 / 2;
    transform-style: preserve-3d;
}
.bike-3d-inner {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.15s ease-out;
    animation: bikeFloat 6s var(--ease) infinite;
}
@keyframes bikeFloat {
    0%, 100% { transform: rotateY(-8deg) rotateX(2deg); }
    50% { transform: rotateY(8deg) rotateX(-2deg); }
}
.bike-3d-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}
.bike-wheel {
    position: absolute;
    width: 22%;
    aspect-ratio: 1;
    border: 3px solid rgba(200, 205, 212, 0.55);
    border-radius: 50%;
    border-top-color: var(--gold-500);
    animation: wheelSpin 2.4s linear infinite;
}
.bike-wheel--front { bottom: 8%; left: 12%; }
.bike-wheel--rear { bottom: 8%; right: 10%; }
@keyframes wheelSpin { to { transform: rotate(360deg); } }

.hero-float-cards {
    position: absolute;
    right: clamp(1rem, 4vw, 3rem);
    bottom: clamp(1.5rem, 4vw, 3rem);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    z-index: 2;
    max-width: 280px;
}
.hero-float-card {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.95rem 1.1rem;
    background: var(--navy-900);
    border: 1px solid rgba(197, 164, 110, 0.22);
    border-left: 3px solid var(--gold-500);
    color: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-md);
}
.hero-float-card:nth-child(2) { margin-left: 1.5rem; }
.hero-float-card:nth-child(3) { margin-left: 0.75rem; }
.hero-float-card i {
    color: var(--gold-500);
    font-size: 1.15rem;
    margin-top: 0.15rem;
}
.hero-float-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.88rem;
    color: var(--white);
    margin-bottom: 0.15rem;
}
.hero-float-card span { font-size: 0.78rem; color: rgba(255, 255, 255, 0.65); }

@media (max-width: 991px) {
    .hero-full-inner { grid-template-columns: 1fr; }
    .hero-bike-stage { order: -1; max-width: 420px; margin-inline: auto; }
    .hero-float-cards {
        position: static;
        max-width: none;
        margin-top: 1.5rem;
    }
    .hero-float-card:nth-child(2),
    .hero-float-card:nth-child(3) { margin-left: 0; }
}

/* ---- 6. About split ---- */
.about-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}
.about-visual {
    position: relative;
}
.about-visual img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
}
.experience-badge {
    position: absolute;
    right: -1.25rem;
    bottom: 2rem;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--navy-900);
    color: var(--white);
    border: 2px solid var(--gold-500);
    box-shadow: var(--shadow-md);
}
.experience-num {
    font-family: var(--font-num);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--gold-500);
}
.experience-label {
    font-family: var(--font-display);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.35;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.75);
}
.about-copy p { color: var(--muted); margin-bottom: 1.25rem; }

@media (max-width: 991px) {
    .about-split-grid { grid-template-columns: 1fr; }
    .experience-badge { right: 1rem; bottom: 1rem; width: 110px; height: 110px; }
    .experience-num { font-size: 2rem; }
}

/* ---- 7. Featured viewer ---- */
.featured-section { background: var(--white); }
.viewer-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: start;
}
.viewer-stage {
    position: relative;
    background: var(--off-white);
    border: var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    min-height: 380px;
    overflow: hidden;
}
.viewer-orbit {
    display: grid;
    place-items: center;
    cursor: grab;
    touch-action: none;
    min-height: 300px;
}
.viewer-orbit:active { cursor: grabbing; }
.viewer-orbit img {
    max-height: 320px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s;
    will-change: transform;
    user-select: none;
}
.viewer-hint {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    font-size: 0.72rem;
    color: var(--muted);
    background: var(--white);
    border: var(--border);
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-sm);
}
.viewer-hint i { color: var(--gold-600); margin-right: 0.25rem; }
.viewer-exploded {
    position: absolute;
    inset: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    z-index: 2;
}
.viewer-exploded .layer {
    width: 70%;
    height: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(197, 164, 110, 0.35);
}
.viewer-exploded .layer-1 { background: linear-gradient(90deg, #2a2a2a, #555); transform: translateY(-20px); }
.viewer-exploded .layer-2 { background: linear-gradient(90deg, #1a1a1a, #444); }
.viewer-exploded .layer-3 { background: linear-gradient(90deg, #333, #666); transform: translateY(20px); }
.viewer-exploded span { font-size: 0.78rem; color: var(--muted); }
.viewer-tools {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.45rem;
}
.viewer-btn {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.4rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    color: var(--navy-900);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.viewer-btn:hover,
.viewer-btn[aria-pressed="true"] {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: var(--white);
}
.viewer-model {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    margin: 0 0 0.35rem;
}
.viewer-tagline {
    font-weight: 600;
    color: var(--navy-700);
    margin-bottom: 0.75rem;
}
.viewer-info > p { color: var(--muted); font-size: 0.94rem; }
.viewer-price {
    font-family: var(--font-num);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--navy-900);
    margin: 1rem 0 0.75rem;
}

@media (max-width: 991px) {
    .viewer-layout { grid-template-columns: 1fr; }
}

/* ---- 8. Category tilt cards ---- */
.category-tilt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.cat-tilt-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    color: inherit;
    transition: box-shadow 0.35s var(--ease);
    transform-style: preserve-3d;
    will-change: transform;
}
.cat-tilt-card:hover {
    color: inherit;
    box-shadow: var(--shadow-md);
}
.cat-tilt-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--line);
}
.cat-tilt-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
}
.cat-tilt-card:hover .cat-tilt-media img { transform: scale(1.05); }
.cat-tilt-body { padding: 1.2rem 1.25rem 1.35rem; flex: 1; }
.cat-tilt-en {
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gold-600);
    text-transform: uppercase;
}
.cat-tilt-body h3 {
    font-size: 1.12rem;
    margin: 0.35rem 0 0.5rem;
}
.cat-tilt-body p {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}
.cat-tilt-meta {
    font-family: var(--font-num);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy-700);
}

@media (max-width: 1100px) {
    .category-tilt-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .category-tilt-grid { grid-template-columns: 1fr; }
}

/* ---- 9. Services checkerboard ---- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.service-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--white);
    border-right: var(--border);
    border-bottom: var(--border);
    transition: background 0.3s var(--ease);
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }
.service-card:hover { background: var(--off-white); }
.service-card--featured {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.82);
}
.service-card--featured:hover { background: var(--navy-800); }
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255, 255, 255, 0.72); }
.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    color: var(--gold-500);
    border: 1px solid rgba(197, 164, 110, 0.35);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
}
.service-card--featured .service-icon {
    background: rgba(197, 164, 110, 0.12);
    border-color: rgba(197, 164, 110, 0.45);
}
.service-card h3 {
    font-size: 1.05rem;
    margin: 0 0 0.55rem;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

@media (max-width: 991px) {
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none !important; border-bottom: var(--border) !important; }
    .service-card:last-child { border-bottom: none !important; }
}

/* ---- 10. Value band ---- */
.value-band {
    background: var(--navy-grad);
    padding: clamp(3rem, 7vw, 5rem) 0;
    color: rgba(255, 255, 255, 0.85);
}
.value-band-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: center;
}
.value-band-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.value-band-media img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.play-fab {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border: none;
    border-radius: var(--radius);
    background: var(--gold-grad);
    color: var(--navy-900);
    font-size: 1.75rem;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s var(--ease);
}
.play-fab:hover { transform: translate(-50%, -50%) scale(1.06); }
.play-fab.is-pulse { animation: playPulse 0.55s var(--ease); }
@keyframes playPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.12); }
    100% { transform: translate(-50%, -50%) scale(1); }
}
.value-band-copy h2 {
    color: var(--white);
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    margin-bottom: 1.25rem;
}

@media (max-width: 991px) {
    .value-band-inner { grid-template-columns: 1fr; }
}

/* ---- 11. Stats bar ---- */
.stats-bar {
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    padding: clamp(2rem, 4vw, 2.75rem) 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.stat-num {
    display: block;
    font-family: var(--font-num);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--navy-900);
    margin-bottom: 0.35rem;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 0.02em;
}

@media (max-width: 767px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- 12. Guide icon cards ---- */
.guide-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}
.guide-icon-card {
    display: flex;
    flex-direction: column;
    padding: 1.35rem 1.25rem 1.5rem;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    color: inherit;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
    height: 100%;
}
.guide-icon-card:hover {
    color: inherit;
    border-color: rgba(197, 164, 110, 0.45);
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}
.guide-icon-wrap {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--navy-900);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    transition: background 0.3s, color 0.3s;
}
.guide-icon-card:hover .guide-icon-wrap {
    background: var(--navy-900);
    color: var(--gold-500);
    border-color: var(--navy-900);
}
.guide-icon-card h3,
.guide-icon-card .guide-card-title {
    font-size: 1.05rem;
    margin: 0 0 0.5rem;
}
.guide-icon-card .text-link { margin-top: auto; }
.guide-icon-card p {
    font-size: 0.88rem;
    color: var(--muted);
    flex: 1;
    margin-bottom: 0.85rem;
}

@media (max-width: 991px) {
    .guide-icon-grid { grid-template-columns: 1fr; }
}

/* ---- 13. Brand marquee ---- */
.brand-marquee {
    padding: 2.5rem 0;
    background: var(--white);
    border-top: var(--border);
    border-bottom: var(--border);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 38s linear infinite;
}
.marquee-set {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
    padding-right: clamp(2rem, 5vw, 4rem);
}
.marquee-logo {
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--silver-300);
    white-space: nowrap;
    transition: color 0.3s;
}
.marquee-logo:hover { color: var(--gold-500); }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- 14. Newsletter + FAQ ---- */
.newsletter-faq { background: var(--off-white); }
.nf-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: start;
}
.nf-visual { position: relative; }
.nf-visual img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
}
.nf-contact-card {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 1.1rem 1.2rem;
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.85);
    border-left: 3px solid var(--gold-500);
}
.nf-contact-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--gold-500);
    margin-bottom: 0.5rem;
}
.nf-contact-card a {
    display: block;
    color: var(--white) !important;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.nf-contact-card span {
    display: block;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.2rem;
}
.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0 1.5rem;
}
.subscribe-form-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.subscribe-form input[type="email"] {
    flex: 1;
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: var(--border);
    border-radius: var(--radius);
    font-family: var(--font-jp);
    font-size: 0.92rem;
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.subscribe-form input[type="email"]:focus {
    outline: none;
    border-color: var(--navy-700);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.12);
}
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.88rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1.5;
}
.form-consent input {
    width: 1.1rem;
    height: 1.1rem;
    min-width: 1.1rem;
    margin-top: 0.15rem;
    accent-color: var(--navy-800);
    flex-shrink: 0;
}
.form-consent a {
    color: var(--navy-800);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.form-note {
    font-size: 0.85rem;
    color: var(--gold-600);
    margin-bottom: 1.5rem;
}
.faq-heading {
    font-size: 1.15rem;
    margin: 0 0 1rem;
    padding-top: 0.5rem;
    border-top: var(--border);
}

/* Accordion restyle */
.ec-accordion .accordion-item {
    border: var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.55rem;
    overflow: hidden;
    background: var(--white);
}
.ec-accordion .accordion-button {
    font-family: var(--font-display);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--navy-900);
    background: var(--white);
    padding: 1rem 1.15rem;
    box-shadow: none;
}
.ec-accordion .accordion-button:not(.collapsed) {
    background: var(--off-white);
    color: var(--navy-900);
    box-shadow: inset 0 -1px 0 var(--line);
}
.ec-accordion .accordion-button::after {
    filter: none;
    background-size: 1rem;
}
.ec-accordion .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(197, 164, 110, 0.25);
    border-color: transparent;
}
.ec-accordion .accordion-body {
    font-size: 0.9rem;
    color: var(--muted);
    padding: 1rem 1.15rem 1.15rem;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .nf-grid { grid-template-columns: 1fr; }
}

/* ---- 15. Testimonials ---- */
.testimonials-section { background: var(--navy-900); }
.testimonials-section .section-eyebrow { color: var(--gold-500); }
.testimonials-section .section-title { color: var(--white); }
.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 280px;
    padding: 1.65rem 1.45rem 1.5rem;
    background: var(--navy-800);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 2px solid var(--gold-500);
    border-radius: var(--radius);
}
.quote-icon {
    font-size: 1.75rem;
    color: var(--gold-500);
    opacity: 0.55;
    margin-bottom: 0.65rem;
}
.testimonial-text {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    flex: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid rgba(197, 164, 110, 0.35);
}
.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}
.testimonial-author span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}
.testimonials-section .rating-score { color: var(--white); }
.testimonials-section .rating-count { color: rgba(255, 255, 255, 0.5); }

/* ---- Shared card swipers ---- */
.ec-swiper-wrap {
    position: relative;
    padding: 0 0 0.5rem;
}
.ec-card-swiper {
    overflow: hidden;
    padding: 0.35rem 0.15rem 0.5rem;
    width: 100%;
}
.ec-card-swiper .swiper-slide {
    height: auto;
    display: flex;
    box-sizing: border-box;
}
.ec-card-swiper .swiper-slide > * {
    width: 100%;
}
.ec-swiper-controls {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.15rem;
}
.ec-swiper-nav {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(11, 29, 58, 0.18);
    background: var(--white);
    color: var(--navy-900);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
}
.ec-swiper-nav i {
    font-size: 1.15rem;
    line-height: 1;
    pointer-events: none;
}
.ec-swiper-nav:hover {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: var(--white);
}

/* Side arrows on feature swiper */
.ec-swiper-wrap--sides {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-areas:
        "prev slide next"
        ". dots .";
    gap: 0.85rem 0.75rem;
    align-items: center;
    padding: 0;
}
.ec-swiper-wrap--sides .ec-card-swiper { grid-area: slide; padding: 0; }
.ec-swiper-wrap--sides .ec-swiper-prev { grid-area: prev; }
.ec-swiper-wrap--sides .ec-swiper-next { grid-area: next; }
.ec-swiper-wrap--sides .ec-swiper-pagination {
    grid-area: dots;
    margin-top: 0.15rem;
}
.ec-swiper-wrap--sides .ec-swiper-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    z-index: 2;
}
.selection-block--dark .ec-swiper-wrap--sides .ec-swiper-nav {
    background: var(--navy-800);
    border-color: rgba(197, 164, 110, 0.4);
    color: var(--gold-500);
}
.selection-block--dark .ec-swiper-wrap--sides .ec-swiper-nav:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}

@media (max-width: 767px) {
    .ec-swiper-wrap--sides {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "slide slide"
            "prev next"
            "dots dots";
        justify-items: center;
    }
    .ec-swiper-wrap--sides .ec-swiper-prev { justify-self: end; }
    .ec-swiper-wrap--sides .ec-swiper-next { justify-self: start; }
}
.testimonials-section .ec-swiper-nav {
    background: var(--navy-800);
    border-color: rgba(197, 164, 110, 0.35);
    color: var(--gold-500);
}
.testimonials-section .ec-swiper-nav:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}
.ec-swiper-pagination {
    position: static !important;
    margin-top: 0.85rem;
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}
.ec-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(11, 29, 58, 0.25);
    opacity: 1;
    transition: width 0.3s var(--ease), background 0.3s var(--ease);
}
.ec-swiper-pagination .swiper-pagination-bullet-active {
    width: 22px;
    border-radius: 999px;
    background: var(--navy-900);
}
.testimonials-section .ec-swiper-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.28);
}
.testimonials-section .ec-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--gold-500);
}

/* ---- Selection experience page ---- */
.selection-hero {
    position: relative;
    isolation: isolate;
    padding: clamp(3rem, 7vw, 5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
    color: var(--white);
    overflow: hidden;
}
.selection-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.selection-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.selection-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(11, 29, 58, 0.88) 0%, rgba(11, 29, 58, 0.72) 45%, rgba(11, 29, 58, 0.55) 100%);
}
.selection-hero-inner {
    max-width: 40rem;
}
.selection-hero .section-eyebrow { color: var(--gold-500); }
.selection-hero .section-title {
    color: var(--white);
    margin: 0.35rem 0 0.85rem;
}
.selection-hero .section-lead {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    max-width: 36rem;
}
.breadcrumb-nav--light a,
.breadcrumb-nav--light .sep { color: rgba(255, 255, 255, 0.65); }
.breadcrumb-nav--light a:hover { color: var(--gold-500); }
.breadcrumb-nav--light .current { color: var(--white); }

.selection-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 0;
    align-items: start;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1rem, 3vw, 1.5rem) clamp(3rem, 6vw, 4.5rem);
}
.selection-rail {
    position: sticky;
    top: 50vh;
    transform: translateY(-50%);
    align-self: start;
    z-index: 20;
    padding: 0 1rem 0 0;
}
.selection-rail-card {
    padding: 1.15rem 0.85rem;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.selection-rail-label {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin: 0 0 0.75rem;
    padding-left: 0.65rem;
}
.selection-tabs-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.selection-tab {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 0.75rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--muted);
    border-radius: var(--radius-sm);
    border-left: 3px solid transparent;
    transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.selection-tab i {
    font-size: 1.05rem;
    color: var(--gold-500);
    opacity: 0.7;
}
.selection-tab:hover {
    color: var(--navy-900);
    background: var(--off-white);
}
.selection-tab.is-active {
    color: var(--navy-900);
    background: rgba(197, 164, 110, 0.12);
    border-left-color: var(--gold-500);
}
.selection-tab.is-active i { opacity: 1; }

.selection-main {
    min-width: 0;
    padding: 1.25rem 0 0 1.25rem;
}
.selection-block {
    padding: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1.25rem;
    border-bottom: none;
    border-radius: var(--radius);
}
.selection-block--light {
    background: var(--off-white);
    border: 1px solid var(--line);
}
.selection-block--dark {
    background: var(--navy-900);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.selection-block--dark .section-eyebrow { color: var(--gold-500); }
.selection-block--dark .section-title { color: var(--white); }
.selection-block--dark .section-lead { color: rgba(255, 255, 255, 0.72); }
.selection-block--dark .bike-feature,
.selection-block--dark .bike-wide {
    border-color: rgba(255, 255, 255, 0.1);
}
.selection-block--dark .ec-swiper-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.28);
}
.selection-block--dark .ec-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--gold-500);
}
.selection-block-head {
    max-width: 40rem;
    margin-bottom: 1.5rem;
}
.selection-block-head .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}
.selection-block-head .section-title { margin: 0.35rem 0 0.65rem; }
.selection-block-head .section-lead { margin: 0; }

/* Feature swiper — 1 card, image left / content right (dots only, no side arrows) */
.ec-swiper-wrap--feature {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0;
}
.ec-swiper-wrap--feature .ec-card-swiper { padding: 0; }
.ec-swiper-wrap--feature .ec-swiper-pagination { margin-top: 0; }

.bike-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    width: 100%;
    min-height: 0;
    height: clamp(300px, 38vw, 420px);
}
.bike-feature-media {
    height: 100%;
    min-height: 0;
    background: var(--off-white);
    overflow: hidden;
}
.bike-feature-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
.bike-feature-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1.15rem, 2.5vw, 1.75rem);
    overflow: auto;
}
.bike-feature-body .bike-card-blurb {
    flex: 0 1 auto;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.bike-feature-body .spec-chips { margin: 0.65rem 0 0.25rem; }
.bike-feature-body .bike-card-price { margin: 0.65rem 0 0.85rem; }
.bike-feature-body .btn { align-self: flex-start; width: auto; min-width: 12rem; }

/* Duo swiper — 2 cards (image top / content below) */
.ec-swiper-wrap--duo {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0;
}
.ec-swiper-wrap--duo .ec-swiper-pagination {
    order: -1;
    margin: 0 0 0.25rem;
}
.ec-swiper-wrap--duo .ec-swiper-controls {
    margin-top: 0.25rem;
}
.ec-duo-swiper { padding: 0.15rem 0; }
.bike-duo {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.bike-duo:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.bike-duo-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--off-white);
}
.bike-duo-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
}
.bike-duo:hover .bike-duo-media img { transform: scale(1.04); }
.bike-duo-body {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bike-duo-body .bike-card-blurb {
    flex: 1;
    margin: 0.55rem 0 0.75rem;
}
.bike-duo-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.85rem;
}
.bike-duo-foot .bike-card-price { margin: 0; }
.bike-duo-foot .btn { width: auto; flex-shrink: 0; }

.selection-block--dark .bike-duo {
    border-color: rgba(255, 255, 255, 0.1);
}
.selection-block--dark .ec-swiper-wrap--duo .ec-swiper-nav {
    background: var(--navy-800);
    border-color: rgba(197, 164, 110, 0.4);
    color: var(--gold-500);
}
.selection-block--dark .ec-swiper-wrap--duo .ec-swiper-nav:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: var(--navy-900);
}

.btn-zoom {
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
    .btn-zoom:hover { transform: scale(1.05); }
    .btn-zoom:active { transform: scale(0.96); }
}
@media (prefers-reduced-motion: reduce) {
    .btn-zoom:hover, .btn-zoom:active { transform: none; }
}

/* Legacy wide cards (kept for category pages if used) */
.bike-wide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 1.75rem;
}
.bike-wide {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.bike-wide:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.bike-wide-media {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--off-white);
}
.bike-wide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
}
.bike-wide:hover .bike-wide-media img { transform: scale(1.04); }
.bike-wide-body {
    padding: 1.15rem 1.25rem 1.35rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.bike-wide-body .bike-card-blurb {
    flex: 1;
    margin: 0.55rem 0 0.75rem;
}
.bike-wide-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.85rem;
}
.bike-wide-foot .bike-card-price { margin: 0; }
.bike-wide-foot .btn { width: auto; flex-shrink: 0; }

.selection-cta-band {
    margin-top: 0.5rem;
    padding: clamp(2rem, 4vw, 2.75rem);
    background: var(--off-white);
    border: var(--border);
    border-radius: var(--radius);
    text-align: left;
}
.selection-cta-band .section-title { margin: 0.35rem 0 0.75rem; }
.selection-cta-band .section-lead { margin: 0 0 1.35rem; max-width: 36rem; }
.selection-cta-band .hero-ctas {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
}

@media (max-width: 991px) {
    .selection-layout {
        grid-template-columns: 1fr;
        padding-bottom: 3rem;
    }
    .selection-rail {
        position: sticky;
        top: 64px;
        transform: none;
        padding: 0.85rem 0;
        margin: 0;
        z-index: 30;
        background: var(--white);
    }
    .selection-rail-card {
        padding: 0.5rem;
        box-shadow: none;
        border-radius: var(--radius-sm);
    }
    .selection-rail-label { display: none; }
    .selection-tabs-list {
        flex-direction: row;
        overflow-x: auto;
        gap: 0.35rem;
        padding-bottom: 0.15rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .selection-tabs-list::-webkit-scrollbar { display: none; }
    .selection-tab {
        flex: 0 0 auto;
        white-space: nowrap;
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: var(--radius-sm) var(--radius-sm) 0 0;
        padding: 0.7rem 0.95rem;
    }
    .selection-tab.is-active {
        border-left-color: transparent;
        border-bottom-color: var(--gold-500);
    }
    .selection-main { padding: 1.5rem 0 0; }
    .bike-feature {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }
    .bike-feature-media {
        height: auto;
        aspect-ratio: 16 / 9;
        max-height: 260px;
    }
    .bike-feature-media img {
        object-position: center center;
    }
    .bike-wide-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .bike-wide-foot {
        flex-direction: column;
        align-items: stretch;
    }
    .bike-wide-foot .btn { width: 100%; }
}

/* ---- 16. Article grid ---- */
.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.article-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    color: inherit;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
    height: 100%;
}
.article-card:hover {
    color: inherit;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.article-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--line);
}
.article-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transition: transform 0.5s var(--ease);
}
.article-date {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    padding: 0.35rem 0.6rem;
    font-family: var(--font-num);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    background: var(--navy-900);
    color: var(--gold-500);
    border-radius: var(--radius-sm);
}
.article-card-body { padding: 1.2rem 1.25rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.article-card-body h3 {
    font-size: 1.05rem;
    margin: 0.45rem 0 0.55rem;
}
.article-card-body p {
    font-size: 0.88rem;
    color: var(--muted);
    flex: 1;
    margin-bottom: 0.85rem;
}

@media (max-width: 991px) {
    .article-grid { grid-template-columns: 1fr; }
}

/* ---- 17. Page hero / breadcrumbs / prose ---- */
.page-hero {
    position: relative;
    isolation: isolate;
    background: var(--off-white);
    border-bottom: var(--border);
    padding: clamp(2.25rem, 5vw, 3.25rem) 0 clamp(2rem, 4vw, 2.75rem);
}
.page-hero--media {
    border-bottom: none;
    color: var(--white);
    padding: clamp(3rem, 7vw, 4.75rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}
.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.page-hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(11, 29, 58, 0.9) 0%, rgba(11, 29, 58, 0.78) 50%, rgba(11, 29, 58, 0.58) 100%);
}
.page-hero-inner { position: relative; max-width: 44rem; }
.page-hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin: 0 0 0.75rem;
}
.page-hero--media .page-hero-title { color: var(--white); }
.page-hero-sub {
    color: var(--muted);
    max-width: 38rem;
    margin: 0;
    line-height: 1.7;
}
.page-hero--media .section-eyebrow { color: var(--gold-500); }
.page-hero--media .page-hero-sub { color: rgba(255, 255, 255, 0.78); }
.page-hero--media .breadcrumb-nav a,
.page-hero--media .breadcrumb-nav .sep { color: rgba(255, 255, 255, 0.65); }
.page-hero--media .breadcrumb-nav a:hover { color: var(--gold-500); }
.page-hero--media .breadcrumb-nav .current { color: var(--white); }

.breadcrumb-nav ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1.15rem;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--muted);
}
.breadcrumb-nav a { color: var(--muted); }
.breadcrumb-nav a:hover { color: var(--gold-600); }
.breadcrumb-nav .current { color: var(--navy-900); font-weight: 600; }
.breadcrumb-nav .sep { color: var(--silver-300); user-select: none; }

.prose-section { padding-bottom: 4rem; }
.prose-card {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 4vw, 2.5rem);
}
.prose-card h2 {
    font-size: 1.2rem;
    margin: 1.75rem 0 0.75rem;
}
.prose-card h2:first-child { margin-top: 0; }
.prose-card p,
.prose-card li { color: var(--muted); }
.prose-card ul { padding-left: 1.25rem; }

/* Guides listing */
.guides-listing { padding-top: clamp(2rem, 4vw, 3rem); }
.guides-listing .guide-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.65rem;
}
.guides-listing .guide-meta-date {
    color: var(--muted);
    font-size: 0.85rem;
}
.guides-listing .guide-card-title {
    font-size: 1.15rem;
    margin: 0 0 0.65rem;
    line-height: 1.45;
}

/* About page */
.about-page { padding-top: clamp(2rem, 4vw, 3rem); }
.about-page-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: start;
}
.about-pillars {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.about-pillar {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
}
.about-pillar-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(197, 164, 110, 0.12);
    border: 1px solid rgba(197, 164, 110, 0.35);
    color: var(--gold-600);
    font-size: 1.25rem;
}
.about-pillar-body h2 {
    font-size: 1.05rem;
    margin: 0 0 0.45rem;
}
.about-pillar-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
}
.about-pillar-cta { align-self: flex-start; margin-top: 0.35rem; }
.about-stats-panel {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--navy-900);
    border-radius: var(--radius);
}
.about-stats-panel .stat-label { color: rgba(255, 255, 255, 0.65); }
.about-stats-panel .stat-num { color: var(--gold-500); }

@media (max-width: 991px) {
    .about-page-grid { grid-template-columns: 1fr; }
}

/* ---- 18. Category listing / bike cards ---- */
.bike-carousel-section { padding-bottom: 4.5rem; }
.bike-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
    height: 100%;
    min-height: 0;
}
.bike-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.bike-card-media {
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--off-white);
    flex-shrink: 0;
}
.bike-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--ease);
}
.bike-card:hover .bike-card-media img { transform: scale(1.04); }
.bike-card-body { padding: 1.2rem 1.25rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.bike-card-brand {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 0.2rem;
}
.bike-card-model {
    font-size: 1.1rem;
    margin: 0 0 0.55rem;
}
.bike-card-blurb {
    font-size: 0.88rem !important;
    color: var(--muted) !important;
    line-height: 1.65;
    margin: 0.65rem 0 0.85rem !important;
    flex: 1;
}
.bike-card-body .spec-chips { margin-top: auto; }
.bike-card-price {
    font-family: var(--font-num);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-top: 0.85rem;
}
.bike-card-body .btn { margin-top: 0.85rem; width: 100%; }

/* Spotlight feature rows — lengthen category pages */
.bike-spotlight {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
    margin-top: clamp(3rem, 7vw, 5rem);
    padding-top: clamp(2rem, 4vw, 3rem);
    border-top: 1px solid var(--line);
}
.bike-spotlight--flip .bike-spotlight-media { order: 2; }
.bike-spotlight--flip .bike-spotlight-copy { order: 1; }
.bike-spotlight-media {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--off-white);
    box-shadow: var(--shadow-md);
}
.bike-spotlight-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.bike-spotlight:hover .bike-spotlight-media img { transform: scale(1.03); }
.bike-spotlight-copy .section-eyebrow { margin-bottom: 0.4rem; }
.bike-spotlight-copy p { color: var(--muted); max-width: 36rem; }

@media (max-width: 991px) {
    .bike-spotlight,
    .bike-spotlight--flip {
        grid-template-columns: 1fr;
    }
    .bike-spotlight--flip .bike-spotlight-media,
    .bike-spotlight--flip .bike-spotlight-copy { order: unset; }
    .bike-card { min-height: 0; }
}

/* ---- 19. Contact form ---- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: start;
}
.contact-benefits { list-style: none; padding: 0; margin: 0; }
.contact-benefit {
    display: flex;
    gap: 0.9rem;
    margin-bottom: 1.1rem;
}
.contact-benefit-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--gold-600);
}
.contact-benefit-body b {
    display: block;
    color: var(--navy-900);
    margin-bottom: 0.15rem;
    font-size: 0.95rem;
}
.contact-benefit-body,
.contact-benefit-body span { font-size: 0.9rem; color: var(--muted); }
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.contact-info-card {
    padding: 1.15rem;
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
}
.contact-info-card b {
    display: block;
    color: var(--navy-900);
    margin: 0.45rem 0 0.25rem;
}
.contact-info-card p { font-size: 0.88rem; color: var(--muted); margin: 0; }
.contact-info-icon { color: var(--gold-600); font-size: 1.2rem; }
.concierge-form {
    background: var(--white);
    border: var(--border);
    border-radius: var(--radius);
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: var(--shadow-sm);
}
.concierge-form .form-label {
    font-weight: 600;
    color: var(--navy-900);
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
}
.concierge-form .form-control,
.concierge-form .form-select {
    border-radius: var(--radius);
    border-color: var(--line);
    padding: 0.7rem 0.9rem;
    font-family: var(--font-jp);
}
.concierge-form .form-control:focus,
.concierge-form .form-select:focus {
    border-color: var(--navy-700);
    box-shadow: 0 0 0 3px rgba(26, 58, 92, 0.12);
}
.req { color: var(--gold-600); }
.contact-form-title { color: var(--navy-900); }
.contact-map-frame {
    border-radius: var(--radius);
    overflow: hidden;
    border: var(--border);
    aspect-ratio: 16 / 9;
    margin-top: 1rem;
}
.contact-map-frame iframe { width: 100%; height: 100%; border: 0; }

@media (max-width: 991px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
}

/* ---- 20. Footer ---- */
.site-footer {
    background: var(--navy-900);
    color: rgba(255, 255, 255, 0.72);
    padding: clamp(2.5rem, 6vw, 3.5rem) 0 1.75rem;
    margin-top: 0;
}
.footer-cta-band {
    padding: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 2.5rem;
    background: var(--navy-800);
    border: 1px solid rgba(197, 164, 110, 0.2);
    border-left: 3px solid var(--gold-500);
    border-radius: var(--radius);
}
.footer-eyebrow {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin: 0 0 0.4rem;
}
.footer-contact-title {
    color: var(--white);
    font-size: clamp(1.3rem, 2.5vw, 1.65rem);
    margin: 0 0 0.5rem;
}
.footer-contact-lead {
    color: rgba(255, 255, 255, 0.68);
    max-width: 40rem;
    margin: 0;
}
.footer-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}
.footer-mail {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-num);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85) !important;
}
.footer-mail:hover { color: var(--gold-500) !important; }
.footer-contact-meta {
    list-style: none;
    padding: 0;
    margin: 1.15rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.58);
}
.footer-contact-meta i { color: var(--gold-500); margin-right: 0.35rem; }
.footer-main { margin-bottom: 2rem; }
.footer-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    color: var(--white) !important;
    margin-bottom: 0.75rem;
}
.footer-brand .brand-sub { color: rgba(255, 255, 255, 0.45); }
.footer-desc {
    color: rgba(255, 255, 255, 0.62);
    max-width: 26rem;
    font-size: 0.92rem;
}
.footer-jp-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.5rem;
}
.footer-heading {
    color: var(--white);
    font-size: 0.92rem;
    margin: 0 0 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }
.footer-links a {
    color: rgba(255, 255, 255, 0.62) !important;
    font-size: 0.88rem;
}
.footer-links a:hover { color: var(--gold-500) !important; }
.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}
.footer-social a {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.75) !important;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.footer-social a:hover {
    background: rgba(197, 164, 110, 0.15);
    border-color: rgba(197, 164, 110, 0.4);
    color: var(--gold-500) !important;
}
.footer-social a:focus-visible {
    outline: 2px solid var(--gold-500);
    outline-offset: 2px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.42);
}
.footer-note { margin: 0; max-width: 28rem; }

/* ---- 21. Reveal + hero text animations ---- */
.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom {
    opacity: 0;
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal { transform: translateY(20px); }
.reveal-left { transform: translateX(-28px); }
.reveal-right { transform: translateX(28px); }
.reveal-zoom { transform: scale(0.96); }
.reveal.in,
.reveal-left.in,
.reveal-right.in,
.reveal-zoom.in {
    opacity: 1;
    transform: none;
}
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }

.hero-anim {
    opacity: 0;
    transform: translateY(18px);
    animation: heroFadeUp 0.85s var(--ease) forwards;
}
.hero-anim[data-delay="1"] { animation-delay: 0.12s; }
.hero-anim[data-delay="2"] { animation-delay: 0.28s; }
.hero-anim[data-delay="3"] { animation-delay: 0.44s; }
.hero-anim[data-delay="4"] { animation-delay: 0.6s; }
@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- 22. Rating stars ---- */
.rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    font-size: 0.88rem;
    margin: 0.65rem 0;
}
.rating-stars {
    display: inline-flex;
    gap: 2px;
    color: var(--gold-500);
}
.rating-stars i { font-size: 0.9rem; }
.rating--animate .rating-stars i {
    opacity: 0;
    transform: scale(0.55);
}
.rating.is-inview .rating-stars i {
    animation: starPop 0.35s var(--ease) forwards;
}
.rating.is-inview .rating-stars i:nth-child(1) { animation-delay: 0.05s; }
.rating.is-inview .rating-stars i:nth-child(2) { animation-delay: 0.11s; }
.rating.is-inview .rating-stars i:nth-child(3) { animation-delay: 0.17s; }
.rating.is-inview .rating-stars i:nth-child(4) { animation-delay: 0.23s; }
.rating.is-inview .rating-stars i:nth-child(5) { animation-delay: 0.29s; }
@keyframes starPop {
    to { opacity: 1; transform: scale(1); }
}
.rating-score {
    font-family: var(--font-num);
    font-weight: 700;
    color: var(--navy-900);
}
.rating-count { color: var(--muted); font-size: 0.82rem; }

/* ---- 23. Spec chips / check-list / tags / text-link ---- */
.spec-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.5rem;
}
.spec-chip {
    font-family: var(--font-num);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.35rem 0.65rem;
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--navy-700);
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-bottom: 0.65rem;
    font-size: 0.92rem;
    color: var(--ink);
}
.check-list i {
    color: var(--gold-600);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.check-list--light li { color: rgba(255, 255, 255, 0.85); }
.check-list--light i { color: var(--gold-500); }
.cat-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-600);
}
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--navy-900);
    transition: gap 0.25s var(--ease), color 0.25s;
}
.text-link i { font-size: 0.85rem; transition: transform 0.25s var(--ease); }
a:hover .text-link,
.text-link:hover {
    color: var(--gold-600);
    gap: 0.55rem;
}
a:hover .text-link i,
.text-link:hover i { transform: translateX(3px); }

/* Compare table + map + form success */
.compare-wrap {
    overflow-x: auto;
    margin: 1.25rem 0 1.75rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 0;
}
.compare-table th,
.compare-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    white-space: nowrap;
}
.compare-table th {
    background: var(--navy-900);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table tbody tr:nth-child(even) { background: var(--off-white); }
.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}
.map-wrap iframe { display: block; width: 100%; }
.form-success {
    margin-top: 1rem;
    padding: 0.85rem 1rem;
    background: rgba(197, 164, 110, 0.15);
    border-left: 3px solid var(--gold-500);
    color: var(--navy-900);
    font-size: 0.92rem;
}
.form-note { font-size: 0.85rem; color: var(--muted); }
.about-stats-inline {
    background: var(--navy-900);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
}
.about-stats-inline .stat-num { color: var(--gold-500); }
.about-stats-inline .stat-label { color: rgba(255,255,255,.7); }
.guide-meta { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }

/* ---- 24. 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;
    }
    .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
    .marquee-set:last-child { display: none; }
    .bike-3d-inner { animation: none; }
    .bike-wheel { animation: none; }
    .loader-bar-fill { animation: none; width: 100%; }
    .reveal, .reveal-left, .reveal-right, .reveal-zoom,
    .hero-anim {
        opacity: 1;
        transform: none;
        transition: none;
        animation: none !important;
    }
    .rating--animate .rating-stars i {
        opacity: 1;
        transform: none;
        animation: none !important;
    }
    .btn:hover,
    .bike-card:hover,
    .article-card:hover,
    .cat-tilt-card:hover,
    .guide-icon-card:hover { transform: none; }
    .play-fab.is-pulse { animation: none; }
}
