/* ==========================================================================
   Ryvoka.site — Typography Showcase · Layout 56
   Premium Japanese bike · rv- prefix · no frameworks
   ========================================================================== */

:root,
[data-theme="dark"] {
    --rv-bg: #1a1816;
    --rv-bg-elevated: #242120;
    --rv-bg-muted: #2e2b28;
    --rv-bg-invert: #f4f0e8;
    --rv-text: #f4f0e8;
    --rv-text-muted: #a89f8f;
    --rv-text-subtle: #7a7268;
    --rv-text-invert: #1a1816;
    --rv-champagne: #c9b896;
    --rv-champagne-soft: rgba(201, 184, 150, 0.15);
    --rv-rust: #8b4513;
    --rv-rust-soft: rgba(139, 69, 19, 0.2);
    --rv-rule: #3d3832;
    --rv-rule-strong: #524c44;
    --rv-accent: #c9b896;
    --rv-accent-hover: #e0d4b8;
    --rv-shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(201, 184, 150, 0.08);
    --rv-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.55), 0 2px 0 rgba(201, 184, 150, 0.06);
    --rv-overlay: rgba(26, 24, 22, 0.75);
    --rv-nav-bg: rgba(26, 24, 22, 0.92);
    --rv-focus: #c9b896;
    --rv-wrap-max: 1240px;
    --rv-rail-width: 3.25rem;
    --rv-nav-height: 4.5rem;
    --rv-kern-height: 1.5rem;
    --rv-font-display: "Cormorant Garamond", "Noto Serif JP", Georgia, serif;
    --rv-font-serif: "Noto Serif JP", "Cormorant Garamond", serif;
    --rv-font-sans: "Noto Sans JP", "Space Grotesk", system-ui, sans-serif;
    --rv-font-micro: "Space Grotesk", "Noto Sans JP", monospace;
    --rv-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --rv-duration: 0.32s;
    color-scheme: dark;
}

[data-theme="light"] {
    --rv-bg: #f4f0e8;
    --rv-bg-elevated: #ffffff;
    --rv-bg-muted: #ebe6dc;
    --rv-bg-invert: #1a1816;
    --rv-text: #1a1816;
    --rv-text-muted: #5c554c;
    --rv-text-subtle: #8a8278;
    --rv-text-invert: #f4f0e8;
    --rv-rule: #d8d2c8;
    --rv-rule-strong: #c4bdb0;
    --rv-shadow: 0 4px 24px rgba(26, 24, 22, 0.08);
    --rv-shadow-lg: 0 12px 48px rgba(26, 24, 22, 0.12);
    --rv-overlay: rgba(244, 240, 232, 0.85);
    --rv-nav-bg: rgba(244, 240, 232, 0.94);
    color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }

body.rv-body {
    font-family: var(--rv-font-sans);
    font-weight: 400;
    line-height: 1.7;
    color: var(--rv-text);
    background: var(--rv-bg);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--rv-duration) var(--rv-ease), opacity var(--rv-duration) var(--rv-ease); }
button, input, select, textarea { font: inherit; color: inherit; background: none; border: none; outline: none; }
button { cursor: pointer; }
ul, ol { list-style: none; }
address { font-style: normal; }
::selection { background: var(--rv-champagne); color: var(--rv-text-invert); }
:focus-visible { outline: 2px solid var(--rv-focus); outline-offset: 3px; }

.rv-wrap {
    width: 100%;
    max-width: var(--rv-wrap-max);
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.rv-micro {
    font-family: var(--rv-font-micro);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--rv-text-subtle);
}

.rv-display {
    font-family: var(--rv-font-display);
    font-size: clamp(3rem, 10vw, 7.5rem);
    font-weight: 600;
    line-height: 0.92;
    letter-spacing: -0.03em;
    color: var(--rv-text);
}

.rv-display em {
    font-style: italic;
    color: var(--rv-champagne);
    display: block;
}

.rv-display--mega {
    font-size: clamp(3.5rem, 14vw, 10rem);
}

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.rv-skip {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--rv-champagne);
    color: var(--rv-text-invert);
}
.rv-skip:focus { top: 1rem; }

/* Kern bar */
.rv-kern-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
    height: var(--rv-kern-height);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    font-family: var(--rv-font-micro);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rv-text-subtle);
    background: var(--rv-bg-muted);
    border-bottom: 1px solid var(--rv-rule);
}

/* Type rail */
.rv-type-rail {
    position: fixed;
    left: 0;
    top: calc(var(--rv-kern-height) + var(--rv-nav-height));
    bottom: 0;
    width: var(--rv-rail-width);
    z-index: 900;
    display: none;
    border-right: 1px solid var(--rv-rule);
    background: var(--rv-bg);
}

@media (min-width: 1100px) {
    .page-home .rv-type-rail { display: block; }
    .page-home .rv-kern-bar { left: var(--rv-rail-width); }
    .page-home .rv-type-nav { left: var(--rv-rail-width); }
    .page-home .rv-type-world { margin-left: var(--rv-rail-width); }
}

.rv-type-rail__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 1rem 0;
    position: relative;
}

.rv-type-rail__glyph {
    font-family: var(--rv-font-serif);
    font-size: 1.25rem;
    color: var(--rv-champagne);
    margin-bottom: 1rem;
}

.rv-type-rail__list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    width: 100%;
}

.rv-type-rail__list button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    padding: 0.35rem 0;
    width: 100%;
    color: var(--rv-text-subtle);
    transition: color var(--rv-duration) var(--rv-ease);
}

.rv-type-rail__list button:hover,
.rv-type-rail__list button.is-active { color: var(--rv-champagne); }

.rv-type-rail__num {
    font-family: var(--rv-font-serif);
    font-size: 0.7rem;
}

.rv-type-rail__label {
    font-family: var(--rv-font-micro);
    font-size: 0.5rem;
    letter-spacing: 0.1em;
}

.rv-type-rail__bar {
    position: absolute;
    left: 0; bottom: 0;
    width: 2px;
    height: 0;
    background: var(--rv-champagne);
    transition: height 0.1s linear;
}

/* Nav */
.rv-type-nav {
    position: fixed;
    top: var(--rv-kern-height);
    left: 0; right: 0;
    z-index: 1000;
    height: var(--rv-nav-height);
    background: var(--rv-nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rv-rule);
    transition: box-shadow var(--rv-duration) var(--rv-ease);
}

.rv-type-nav.is-scrolled { box-shadow: var(--rv-shadow); }

.rv-type-nav__row {
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
    height: 100%;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.rv-type-nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rv-type-nav__display {
    font-family: var(--rv-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--rv-champagne);
    line-height: 1;
}

.rv-type-nav__word {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.rv-type-nav__word strong {
    font-family: var(--rv-font-display);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.rv-type-nav__word em {
    font-family: var(--rv-font-micro);
    font-size: 0.6rem;
    font-style: normal;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rv-text-subtle);
}

.rv-type-nav__links {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .rv-type-nav__links { display: flex; }
}

.rv-nav-link {
    font-family: var(--rv-font-micro);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rv-text-muted);
    position: relative;
}

.rv-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--rv-champagne);
    transition: width var(--rv-duration) var(--rv-ease);
}

.rv-nav-link:hover,
.rv-nav-link.is-active { color: var(--rv-champagne); }
.rv-nav-link.is-active::after,
.rv-nav-link:hover::after { width: 100%; }

.rv-type-nav__tools {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rv-tool-btn,
.rv-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid var(--rv-rule);
    color: var(--rv-text-muted);
    transition: border-color var(--rv-duration), color var(--rv-duration);
}

.rv-tool-btn:hover,
.rv-cart-btn:hover { border-color: var(--rv-champagne); color: var(--rv-champagne); }

.rv-cart-btn { position: relative; gap: 0; }
.rv-cart-btn span {
    position: absolute;
    top: -4px; right: -4px;
    min-width: 1rem;
    height: 1rem;
    padding: 0 0.2rem;
    font-size: 0.6rem;
    font-weight: 600;
    line-height: 1rem;
    text-align: center;
    background: var(--rv-rust);
    color: #fff;
    border-radius: 50%;
}

[data-theme="dark"] .rv-icon-moon,
[data-theme="light"] .rv-icon-sun { display: none; }

.rv-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0.5rem;
}

@media (min-width: 768px) { .rv-burger { display: none; } }

.rv-burger span {
    display: block;
    height: 1px;
    background: var(--rv-text);
    transition: transform var(--rv-duration) var(--rv-ease);
}

.rv-burger.is-open span:first-child { transform: translateY(3px) rotate(45deg); }
.rv-burger.is-open span:last-child { transform: translateY(-3px) rotate(-45deg); }

/* Overlays */
.rv-search-veil,
.rv-drawer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--rv-duration) var(--rv-ease);
}

.rv-search-veil.is-open,
.rv-drawer.is-open { pointer-events: auto; opacity: 1; }

.rv-search-veil__shade,
.rv-drawer__shade {
    position: absolute;
    inset: 0;
    background: var(--rv-overlay);
}

.rv-search-veil__panel {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: min(90vw, 480px);
    padding: 2rem;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
    box-shadow: var(--rv-shadow-lg);
    transition: transform var(--rv-duration) var(--rv-ease);
}

.rv-search-veil.is-open .rv-search-veil__panel { transform: translate(-50%, -50%) scale(1); }

.rv-search-veil__form {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.rv-search-veil__form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--rv-rule);
    background: var(--rv-bg);
}

.rv-search-veil__hints {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--rv-text-muted);
}

.rv-search-veil__hints button {
    padding: 0.25rem 0.6rem;
    border: 1px solid var(--rv-rule);
    font-size: 0.75rem;
    color: var(--rv-champagne);
}

.rv-drawer__sheet {
    position: absolute;
    top: 0; right: 0;
    width: min(85vw, 320px);
    height: 100%;
    padding: calc(var(--rv-nav-height) + var(--rv-kern-height) + 1.5rem) 1.5rem 2rem;
    background: var(--rv-bg-elevated);
    border-left: 1px solid var(--rv-rule);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform var(--rv-duration) var(--rv-ease);
}

.rv-drawer.is-open .rv-drawer__sheet { transform: translateX(0); }

.rv-drawer__sheet a {
    font-family: var(--rv-font-display);
    font-size: 1.35rem;
    color: var(--rv-text);
    border-bottom: 1px solid var(--rv-rule);
    padding-bottom: 0.5rem;
}

.rv-drawer__meta {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--rv-text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

/* Buttons */
.rv-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--rv-font-micro);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid transparent;
    transition: background var(--rv-duration), border-color var(--rv-duration), color var(--rv-duration), transform var(--rv-duration);
}

.rv-btn--accent {
    background: var(--rv-champagne);
    color: var(--rv-text-invert);
    border-color: var(--rv-champagne);
}

.rv-btn--accent:hover {
    background: var(--rv-accent-hover);
    transform: translateY(-1px);
}

.rv-btn--ghost {
    border-color: var(--rv-rule-strong);
    color: var(--rv-champagne);
}

.rv-btn--ghost:hover { border-color: var(--rv-champagne); }

.rv-btn--outline {
    border-color: var(--rv-rule-strong);
    color: var(--rv-text);
}

.rv-btn--outline:hover { border-color: var(--rv-champagne); color: var(--rv-champagne); }

.rv-btn--sm { padding: 0.5rem 1rem; font-size: 0.65rem; }
.rv-btn--large { padding: 1rem 2rem; font-size: 0.75rem; }

/* Main offset */
.rv-main {
    padding-top: calc(var(--rv-nav-height) + var(--rv-kern-height));
}

.page-home .rv-main { padding-top: 0; }

/* Fade reveal */
.rv-fade {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--rv-ease), transform 0.7s var(--rv-ease);
}

.rv-fade.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Chapters */
.rv-chapter {
    position: relative;
    padding: clamp(4rem, 10vh, 7rem) clamp(1.25rem, 4vw, 2.5rem);
    border-bottom: 1px solid var(--rv-rule);
}

/* 01 Prologue */
.rv-prologue {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding-top: calc(var(--rv-nav-height) + var(--rv-kern-height) + 2rem);
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
}

@media (min-width: 900px) {
    .rv-prologue {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

.rv-prologue__glyph-wall {
    position: relative;
    margin-bottom: 1rem;
    height: clamp(4rem, 15vw, 8rem);
}

.rv-prologue__kanji {
    font-family: var(--rv-font-serif);
    font-size: clamp(5rem, 18vw, 12rem);
    font-weight: 700;
    line-height: 0.85;
    color: var(--rv-champagne);
    position: absolute;
    left: 0; top: 0;
}

.rv-prologue__kanji--ghost {
    left: clamp(2rem, 8vw, 5rem);
    top: clamp(0.5rem, 2vw, 1.5rem);
    color: transparent;
    -webkit-text-stroke: 1px var(--rv-rule-strong);
    opacity: 0.5;
}

.rv-prologue__title {
    font-family: var(--rv-font-display);
    margin-bottom: 1rem;
}

.rv-prologue__title em {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--rv-text);
}

.rv-prologue__title span {
    display: block;
    font-family: var(--rv-font-serif);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    color: var(--rv-text-muted);
    margin-top: 0.5rem;
}

.rv-prologue__deck {
    font-size: 0.95rem;
    color: var(--rv-text-muted);
    max-width: 36ch;
    margin-bottom: 1.5rem;
}

.rv-prologue__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.rv-prologue__kern {
    display: flex;
    gap: 2rem;
}

.rv-prologue__kern li {
    display: flex;
    flex-direction: column;
}

.rv-prologue__kern em {
    font-family: var(--rv-font-display);
    font-size: 1.75rem;
    font-style: normal;
    color: var(--rv-champagne);
}

.rv-prologue__kern span {
    font-family: var(--rv-font-micro);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rv-text-subtle);
}

.rv-prologue__aside {
    position: relative;
    box-shadow: var(--rv-shadow-lg);
}

.rv-prologue__aside img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: saturate(0.85);
}

.rv-prologue__aside figcaption {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
}

/* 02 Manifesto */
.rv-manifesto {
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 800px) {
    .rv-manifesto { grid-template-columns: 1.2fr 0.8fr; }
}

.rv-manifesto__verse {
    font-family: var(--rv-font-serif);
    font-size: 1.05rem;
    line-height: 1.9;
}

.rv-manifesto__drop {
    float: left;
    font-family: var(--rv-font-display);
    font-size: 5rem;
    line-height: 0.8;
    color: var(--rv-champagne);
    margin-right: 0.5rem;
    margin-top: 0.1rem;
}

.rv-manifesto__verse p { margin-bottom: 1.25rem; color: var(--rv-text-muted); }
.rv-manifesto__verse strong { color: var(--rv-champagne); font-weight: 600; }

.rv-manifesto__verse blockquote {
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 2px solid var(--rv-champagne);
    font-style: italic;
    color: var(--rv-text);
    font-size: 1.15rem;
}

.rv-manifesto__frame {
    position: relative;
    box-shadow: var(--rv-shadow-lg);
    transform: rotate(1.5deg);
}

.rv-manifesto__frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.rv-manifesto__caption {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-family: var(--rv-font-micro);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--rv-champagne);
}

.rv-manifesto__num {
    font-family: var(--rv-font-display);
    font-size: 2rem;
    font-style: italic;
}

/* 03 Spec Strip */
.rv-strip-head {
    max-width: var(--rv-wrap-max);
    margin: 0 auto 2rem;
}

.rv-strip-head__deck {
    margin-top: 1rem;
    color: var(--rv-text-muted);
    max-width: 40ch;
}

.rv-strip-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
    cursor: grab;
    scrollbar-width: thin;
    scrollbar-color: var(--rv-champagne) var(--rv-bg-muted);
}

.rv-strip-track::-webkit-scrollbar { height: 4px; }
.rv-strip-track::-webkit-scrollbar-thumb { background: var(--rv-champagne); }

.rv-strip-card {
    flex: 0 0 min(85vw, 520px);
    scroll-snap-align: start;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
    box-shadow: var(--rv-shadow);
    overflow: hidden;
}

.rv-strip-card__type {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rv-strip-card__index {
    font-family: var(--rv-font-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--rv-champagne);
}

.rv-strip-card__type h3 {
    font-family: var(--rv-font-display);
    font-size: 1.25rem;
}

.rv-strip-card__specs {
    font-size: 0.75rem;
    color: var(--rv-text-muted);
}

.rv-strip-card__specs li {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
    border-bottom: 1px solid var(--rv-rule);
}

.rv-strip-card__specs em { color: var(--rv-text); font-style: normal; }

.rv-strip-card__price {
    font-family: var(--rv-font-display);
    font-size: 1.35rem;
    color: var(--rv-champagne);
    margin-top: auto;
}

.rv-strip-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 200px;
}

/* 04 Type Dial */
.rv-dial {
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 800px) {
    .rv-dial { grid-template-columns: 0.4fr 0.6fr; align-items: start; }
}

.rv-dial__intro p { color: var(--rv-text-muted); margin-top: 1rem; }

.rv-dial__stage {
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
    padding: 2rem;
    box-shadow: var(--rv-shadow-lg);
}

.rv-dial__wheel {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-family: var(--rv-font-micro);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rv-text-subtle);
}

.rv-dial__mark.is-active { color: var(--rv-champagne); font-weight: 600; }

.rv-dial__slider {
    width: 100%;
    margin-bottom: 2rem;
    accent-color: var(--rv-champagne);
}

.rv-dial__preview {
    text-align: center;
    margin-bottom: 2rem;
}

.rv-dial__glyph {
    font-family: var(--rv-font-serif);
    font-size: clamp(4rem, 12vw, 8rem);
    display: block;
    color: var(--rv-champagne);
    transition: font-weight 0.4s var(--rv-ease), transform 0.4s var(--rv-ease), filter 0.4s;
    margin-bottom: 1rem;
}

.rv-dial__glyph[data-weight="light"] { font-weight: 300; transform: scale(0.95); }
.rv-dial__glyph[data-weight="regular"] { font-weight: 400; }
.rv-dial__glyph[data-weight="bold"] { font-weight: 700; transform: scale(1.05); }
.rv-dial__glyph[data-weight="black"] { font-weight: 900; transform: scale(1.1); letter-spacing: -0.05em; }

.rv-dial__label {
    font-family: var(--rv-font-micro);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--rv-champagne);
    margin-bottom: 0.5rem;
}

.rv-dial__desc {
    font-size: 0.85rem;
    color: var(--rv-text-muted);
    max-width: 32ch;
    margin: 0 auto;
}

.rv-dial__bikes {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.rv-dial__bike {
    position: relative;
    border: 2px solid var(--rv-rule);
    overflow: hidden;
    transition: border-color var(--rv-duration);
}

.rv-dial__bike.is-active { border-color: var(--rv-champagne); }

.rv-dial__bike img { width: 80px; height: 60px; object-fit: cover; }

.rv-dial__bike span {
    position: absolute;
    bottom: 2px; right: 2px;
    font-family: var(--rv-font-serif);
    font-size: 0.7rem;
    color: var(--rv-champagne);
    background: rgba(26,24,22,0.7);
    padding: 0.1rem 0.3rem;
}

/* 05 Fleet */
.rv-fleet-head {
    max-width: var(--rv-wrap-max);
    margin: 0 auto 3rem;
}

.rv-fleet-list {
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.rv-fleet-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .rv-fleet-item { grid-template-columns: 0.45fr 0.55fr; }
    .rv-fleet-item--flip { direction: rtl; }
    .rv-fleet-item--flip > * { direction: ltr; }
}

.rv-fleet-item__num {
    position: absolute;
    top: -1rem;
    left: -0.5rem;
    font-family: var(--rv-font-display);
    font-size: clamp(6rem, 15vw, 10rem);
    font-style: italic;
    color: var(--rv-champagne-soft);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

.rv-fleet-item__type { position: relative; z-index: 1; }

.rv-fleet-item__badge {
    font-family: var(--rv-font-serif);
    font-size: 2rem;
    color: var(--rv-champagne);
    display: block;
    margin-bottom: 0.5rem;
}

.rv-fleet-item__type h3 {
    font-family: var(--rv-font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.rv-fleet-item__type p {
    color: var(--rv-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.rv-fleet-item__meta {
    display: flex;
    gap: 1.5rem;
    font-family: var(--rv-font-micro);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.rv-fleet-item__meta em {
    font-family: var(--rv-font-display);
    font-size: 1.25rem;
    font-style: normal;
    color: var(--rv-champagne);
}

.rv-fleet-item__frame {
    box-shadow: var(--rv-shadow-lg);
    transform: translateX(calc(var(--fleet-i, 0) * 8px)) rotate(calc(var(--fleet-i, 0) * -0.5deg));
}

.rv-fleet-item__frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* 06 Verse Pin */
.rv-verse-pin {
    position: relative;
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
}

.rv-verse-pin__sticky {
    position: sticky;
    top: calc(var(--rv-nav-height) + var(--rv-kern-height) + 2rem);
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 70vh;
}

@media (min-width: 768px) {
    .rv-verse-pin__sticky { grid-template-columns: 1fr 1fr; align-items: center; }
}

.rv-verse-line {
    font-family: var(--rv-font-serif);
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--rv-rule);
    color: var(--rv-text-subtle);
    opacity: 0.35;
    transition: opacity 0.5s var(--rv-ease), color 0.5s;
}

.rv-verse-line.is-active {
    opacity: 1;
    color: var(--rv-text);
}

.rv-verse-line span {
    font-family: var(--rv-font-display);
    font-size: 2rem;
    font-style: italic;
    color: var(--rv-champagne);
    display: block;
    margin-bottom: 0.25rem;
}

.rv-verse-pin__img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    box-shadow: var(--rv-shadow-lg);
}

.rv-verse-spacer { height: 50vh; }

/* 07 Glyph Lab */
.rv-glyph-lab {
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
}

.rv-glyph-lab__intro {
    margin-bottom: 2rem;
}

.rv-glyph-lab__intro p { color: var(--rv-text-muted); margin-top: 1rem; }

.rv-glyph-lab__stage {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rv-glyph-lab__stage { grid-template-columns: 1fr 1.2fr; }
}

.rv-glyph-morph {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
    padding: 2rem;
}

.rv-glyph-morph__char {
    font-family: var(--rv-font-serif);
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--rv-champagne);
    transition: transform 0.5s var(--rv-ease), filter 0.5s;
}

.rv-glyph-lab__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.rv-glyph-btn {
    padding: 0.5rem 1rem;
    font-family: var(--rv-font-micro);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--rv-rule);
    color: var(--rv-text-muted);
    transition: all var(--rv-duration);
}

.rv-glyph-btn.is-active,
.rv-glyph-btn:hover {
    border-color: var(--rv-champagne);
    color: var(--rv-champagne);
    background: var(--rv-champagne-soft);
}

.rv-glyph-lab__frame {
    position: relative;
    overflow: hidden;
    box-shadow: var(--rv-shadow-lg);
}

.rv-glyph-lab__frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.rv-glyph-lab__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: background 0.5s;
}

/* 08 Routes */
.rv-routes-head {
    max-width: var(--rv-wrap-max);
    margin: 0 auto 2.5rem;
}

.rv-routes-head p { color: var(--rv-text-muted); margin-top: 1rem; }

.rv-routes-grid {
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.rv-route-card {
    position: relative;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
    overflow: hidden;
    transition: transform var(--rv-duration), box-shadow var(--rv-duration);
}

.rv-route-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rv-shadow-lg);
}

.rv-route-card__glyph {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    font-family: var(--rv-font-serif);
    font-size: 2.5rem;
    color: var(--rv-champagne);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.rv-route-card__img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.rv-route-card__body { padding: 1.25rem; }

.rv-route-card__body h3 {
    font-family: var(--rv-font-display);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.rv-route-card__meta {
    display: flex;
    gap: 1rem;
    font-family: var(--rv-font-micro);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    color: var(--rv-champagne);
    margin-bottom: 0.5rem;
}

.rv-route-card__body p {
    font-size: 0.85rem;
    color: var(--rv-text-muted);
}

/* 09 Voices */
.rv-voices {
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

@media (min-width: 800px) {
    .rv-voices {
        grid-template-columns: 1fr 0.5fr;
        grid-template-rows: auto auto 1fr;
    }
    .rv-voices > h2 { grid-column: 1 / -1; }
    .rv-voices__wall { grid-column: 1; }
    .rv-voices__nav { grid-column: 1; }
    .rv-voices__portrait { grid-column: 2; grid-row: 2 / 4; }
}

.rv-voice-quote {
    display: none;
    font-family: var(--rv-font-serif);
    font-size: 1.15rem;
    line-height: 1.85;
    padding: 1.5rem;
    border-left: 3px solid var(--rv-champagne);
    background: var(--rv-bg-elevated);
}

.rv-voice-quote.is-active { display: block; }

.rv-voice-quote footer {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--rv-text-muted);
}

.rv-voice-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--rv-champagne);
    display: block;
}

.rv-voices__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.rv-voice-tab {
    padding: 0.5rem 1rem;
    font-family: var(--rv-font-micro);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    border: 1px solid var(--rv-rule);
    color: var(--rv-text-muted);
    transition: all var(--rv-duration);
}

.rv-voice-tab.is-active,
.rv-voice-tab:hover {
    border-color: var(--rv-champagne);
    color: var(--rv-champagne);
}

.rv-voices__portrait img {
    width: 100%;
    aspect-ratio: 5/6;
    object-fit: cover;
    box-shadow: var(--rv-shadow-lg);
}

/* 10 Finale */
.rv-finale {
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 900px) {
    .rv-finale { grid-template-columns: 1fr 1fr; }
}

.rv-finale__deck {
    color: var(--rv-text-muted);
    margin: 1.5rem 0;
    max-width: 38ch;
}

.rv-finale__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.rv-finale__trust {
    display: flex;
    gap: 2rem;
}

.rv-finale__trust li {
    display: flex;
    flex-direction: column;
}

.rv-finale__trust em {
    font-family: var(--rv-font-display);
    font-size: 2rem;
    font-style: normal;
    color: var(--rv-champagne);
}

.rv-finale__trust span {
    font-family: var(--rv-font-micro);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rv-text-subtle);
}

.rv-finale__frame {
    position: relative;
    box-shadow: var(--rv-shadow-lg);
}

.rv-finale__frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.rv-finale__stamp {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    text-align: right;
    font-family: var(--rv-font-display);
    color: var(--rv-champagne);
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.rv-finale__stamp span {
    display: block;
    font-size: 1.5rem;
    font-style: italic;
}

.rv-finale__stamp em {
    font-family: var(--rv-font-micro);
    font-size: 0.6rem;
    font-style: normal;
    letter-spacing: 0.12em;
}

/* Footer */
.rv-type-foot {
    border-top: 1px solid var(--rv-rule);
    padding: 4rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
    background: var(--rv-bg-muted);
}

.rv-type-foot__masthead {
    max-width: var(--rv-wrap-max);
    margin: 0 auto 3rem;
    text-align: center;
}

.rv-type-foot__display {
    font-family: var(--rv-font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-style: italic;
    color: var(--rv-champagne);
    display: block;
    line-height: 1;
}

.rv-type-foot__tag {
    margin-top: 0.5rem;
    font-family: var(--rv-font-serif);
    color: var(--rv-text-muted);
}

.rv-type-foot__columns {
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.rv-type-foot__block h4 {
    font-family: var(--rv-font-micro);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rv-champagne);
    margin-bottom: 1rem;
}

.rv-type-foot__block a {
    display: block;
    font-size: 0.9rem;
    color: var(--rv-text-muted);
    padding: 0.2rem 0;
}

.rv-type-foot__block a:hover { color: var(--rv-champagne); }

.rv-type-foot__block address {
    font-size: 0.85rem;
    color: var(--rv-text-muted);
    line-height: 1.8;
}

.rv-type-foot__news {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.rv-type-foot__news input {
    flex: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--rv-rule);
    background: var(--rv-bg);
    font-size: 0.8rem;
}

.rv-type-foot__baseline {
    max-width: var(--rv-wrap-max);
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--rv-rule);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--rv-text-subtle);
}

/* Back to top */
.rv-back-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 800;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv-champagne);
    color: var(--rv-text-invert);
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity var(--rv-duration), transform var(--rv-duration), visibility var(--rv-duration);
}

.rv-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Toast */
.rv-toast {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    z-index: 3000;
    padding: 0.75rem 1.5rem;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-champagne);
    color: var(--rv-text);
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--rv-duration), transform var(--rv-duration), visibility var(--rv-duration);
    box-shadow: var(--rv-shadow-lg);
}

.rv-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Inner pages */
.rv-page { padding-bottom: 4rem; }

.rv-page-mast {
    padding: calc(var(--rv-nav-height) + var(--rv-kern-height) + 3rem) 0 3rem;
    border-bottom: 1px solid var(--rv-rule);
}

.rv-page-title {
    font-family: var(--rv-font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin: 0.75rem 0;
}

.rv-page-title em { font-style: italic; color: var(--rv-champagne); }

.rv-page-deck {
    color: var(--rv-text-muted);
    max-width: 50ch;
    font-size: 1rem;
}

.rv-section-title {
    font-family: var(--rv-font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.rv-section-title em { font-style: italic; color: var(--rv-champagne); }

/* About */
.rv-about-narrative {
    display: grid;
    gap: 3rem;
    padding: 4rem 0;
    align-items: start;
}

@media (min-width: 768px) {
    .rv-about-narrative { grid-template-columns: 1.1fr 0.9fr; }
}

.rv-about-narrative__copy h2 { margin-bottom: 1rem; }
.rv-about-narrative__copy p { color: var(--rv-text-muted); margin-bottom: 1rem; }

.rv-about-narrative__still img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--rv-shadow-lg);
}

.rv-about-mission { padding: 3rem 0; }

.rv-about-mission__triad {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rv-about-mission__triad { grid-template-columns: repeat(3, 1fr); }
}

.rv-type-card {
    padding: 2rem;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
    box-shadow: var(--rv-shadow);
}

.rv-type-card__glyph {
    font-family: var(--rv-font-serif);
    font-size: 2.5rem;
    color: var(--rv-champagne);
    display: block;
    margin-bottom: 0.75rem;
}

.rv-type-card h3 {
    font-family: var(--rv-font-display);
    margin-bottom: 0.75rem;
}

.rv-type-card p { font-size: 0.9rem; color: var(--rv-text-muted); }

.rv-about-timeline { padding: 3rem 0; background: var(--rv-bg-muted); }

.rv-about-timeline__stream {
    max-width: var(--rv-wrap-max);
    margin: 0 auto;
    padding: 2rem clamp(1.25rem, 4vw, 2.5rem);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.rv-timeline-beat {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
}

@media (min-width: 600px) {
    .rv-timeline-beat { grid-template-columns: auto 1fr auto; align-items: center; }
}

.rv-timeline-beat__year {
    font-family: var(--rv-font-display);
    font-size: 2.5rem;
    font-style: italic;
    color: var(--rv-champagne);
}

.rv-timeline-beat__img img {
    width: 160px;
    height: 100px;
    object-fit: cover;
}

.rv-about-values { padding: 3rem 0; }

.rv-about-values__list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--rv-rule);
    color: var(--rv-text-muted);
    font-size: 0.95rem;
}

.rv-about-values__list strong {
    color: var(--rv-champagne);
    margin-right: 0.5rem;
}

.rv-about-location {
    display: grid;
    gap: 2rem;
    padding: 3rem 0;
    align-items: center;
}

@media (min-width: 768px) {
    .rv-about-location { grid-template-columns: 1fr 1fr; }
}

.rv-about-location__copy p,
.rv-about-location address {
    color: var(--rv-text-muted);
    margin: 1rem 0;
    font-size: 0.9rem;
}

.rv-about-location__frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: var(--rv-shadow-lg);
}

.rv-page-cta {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid var(--rv-rule);
}

.rv-page-cta h2 {
    font-family: var(--rv-font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    margin-bottom: 1.5rem;
}

/* Shop */
.rv-shop-layout {
    display: grid;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 900px) {
    .rv-shop-layout { grid-template-columns: 220px 1fr; }
}

.rv-shop-sidebar {
    padding: 1.5rem;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
    height: fit-content;
    position: sticky;
    top: calc(var(--rv-nav-height) + var(--rv-kern-height) + 1.5rem);
}

.rv-shop-sidebar h2 {
    font-family: var(--rv-font-micro);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rv-champagne);
    margin-bottom: 1rem;
}

.rv-shop-filter {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.rv-shop-filter__btn {
    text-align: left;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    color: var(--rv-text-muted);
    border-left: 2px solid transparent;
    transition: all var(--rv-duration);
}

.rv-shop-filter__btn.is-active,
.rv-shop-filter__btn:hover {
    color: var(--rv-champagne);
    border-left-color: var(--rv-champagne);
    background: var(--rv-champagne-soft);
}

.rv-shop-sidebar__meta {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--rv-text-subtle);
}

.rv-shop-sidebar__sort {
    margin-top: 1rem;
}

.rv-shop-sidebar__sort label {
    display: block;
    font-size: 0.75rem;
    color: var(--rv-text-subtle);
    margin-bottom: 0.35rem;
}

.rv-shop-sidebar__sort select {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--rv-rule);
    background: var(--rv-bg);
    font-size: 0.85rem;
}

.rv-shop-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.rv-shop-tile--wide { grid-column: span 2; }

@media (max-width: 700px) {
    .rv-shop-tile--wide { grid-column: span 1; }
}

.rv-shop-tile {
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
    overflow: hidden;
    transition: box-shadow var(--rv-duration), transform var(--rv-duration);
}

.rv-shop-tile:hover {
    box-shadow: var(--rv-shadow-lg);
    transform: translateY(-2px);
}

.rv-shop-tile__img {
    position: relative;
    overflow: hidden;
}

.rv-shop-tile__img img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.5s var(--rv-ease);
}

.rv-shop-tile:hover .rv-shop-tile__img img { transform: scale(1.03); }

.rv-shop-tile__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    font-family: var(--rv-font-serif);
    font-size: 1.25rem;
    color: var(--rv-champagne);
    background: rgba(26,24,22,0.7);
    padding: 0.2rem 0.5rem;
}

.rv-shop-tile__body { padding: 1.25rem; }

.rv-shop-tile__cat {
    font-family: var(--rv-font-micro);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rv-text-subtle);
}

.rv-shop-tile__body h3 {
    font-family: var(--rv-font-display);
    font-size: 1.2rem;
    margin: 0.35rem 0 0.5rem;
}

.rv-shop-tile__body p {
    font-size: 0.85rem;
    color: var(--rv-text-muted);
    margin-bottom: 0.75rem;
}

.rv-shop-tile__spec {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    font-size: 0.7rem;
    margin-bottom: 1rem;
}

.rv-shop-tile__spec dt { color: var(--rv-text-subtle); }
.rv-shop-tile__spec dd { font-weight: 500; }

.rv-shop-tile__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.rv-shop-tile__price {
    font-family: var(--rv-font-display);
    font-size: 1.25rem;
    color: var(--rv-champagne);
}

.rv-shop-tile__actions { display: flex; gap: 0.5rem; }

.rv-shop-process {
    padding: 3rem 0;
    border-top: 1px solid var(--rv-rule);
}

.rv-shop-process__steps {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

@media (min-width: 600px) {
    .rv-shop-process__steps { grid-template-columns: repeat(4, 1fr); }
}

.rv-shop-process__steps li {
    padding: 1.25rem;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
    font-size: 0.85rem;
    color: var(--rv-text-muted);
}

.rv-shop-process__steps strong {
    font-family: var(--rv-font-serif);
    font-size: 1.5rem;
    color: var(--rv-champagne);
    display: block;
    margin-bottom: 0.5rem;
}

.rv-shop-process__note {
    font-size: 0.85rem;
    color: var(--rv-text-subtle);
}

/* FAQ */
.rv-faq-layout {
    display: grid;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .rv-faq-layout { grid-template-columns: 200px 1fr; }
}

.rv-faq-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    height: fit-content;
    position: sticky;
    top: calc(var(--rv-nav-height) + var(--rv-kern-height) + 1.5rem);
}

.rv-faq-tab {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    color: var(--rv-text-muted);
    border-left: 2px solid transparent;
    transition: all var(--rv-duration);
}

.rv-faq-tab.is-active,
.rv-faq-tab:hover {
    color: var(--rv-champagne);
    border-left-color: var(--rv-champagne);
    background: var(--rv-champagne-soft);
}

.rv-faq-panel { display: none; }
.rv-faq-panel.is-active { display: block; }

.rv-faq-panel__title {
    font-family: var(--rv-font-display);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--rv-champagne);
}

.rv-faq-item {
    border: 1px solid var(--rv-rule);
    margin-bottom: 0.5rem;
    background: var(--rv-bg-elevated);
}

.rv-faq-item summary {
    padding: 1rem 1.25rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rv-faq-item summary::-webkit-details-marker { display: none; }

.rv-faq-item summary::after {
    content: '+';
    font-family: var(--rv-font-display);
    font-size: 1.25rem;
    color: var(--rv-champagne);
    transition: transform var(--rv-duration);
}

.rv-faq-item[open] summary::after { transform: rotate(45deg); }

.rv-faq-item__body {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: var(--rv-text-muted);
    line-height: 1.8;
}

.rv-faq-cta {
    text-align: center;
    padding: 4rem 0;
    border-top: 1px solid var(--rv-rule);
}

.rv-faq-cta h2 {
    font-family: var(--rv-font-display);
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 0.75rem;
}

.rv-faq-cta p {
    color: var(--rv-text-muted);
    margin-bottom: 1.5rem;
}

/* Contact */
.rv-contact-split {
    display: grid;
    gap: 2.5rem;
    padding: 3rem 0;
}

@media (min-width: 800px) {
    .rv-contact-split { grid-template-columns: 1.2fr 0.8fr; }
}

.rv-contact-form-wrap {
    padding: 2rem;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
}

.rv-contact-form-wrap h2 {
    font-family: var(--rv-font-display);
    margin-bottom: 1.5rem;
}

.rv-form-row {
    margin-bottom: 1.25rem;
}

.rv-form-row label {
    display: block;
    font-size: 0.8rem;
    color: var(--rv-text-muted);
    margin-bottom: 0.35rem;
}

.rv-form-row label span { color: var(--rv-rust); }

.rv-form-row input,
.rv-form-row select,
.rv-form-row textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--rv-rule);
    background: var(--rv-bg);
    transition: border-color var(--rv-duration);
}

.rv-form-row input:focus,
.rv-form-row select:focus,
.rv-form-row textarea:focus { border-color: var(--rv-champagne); }

.rv-contact-card {
    padding: 1.5rem;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
    margin-bottom: 1.5rem;
}

.rv-contact-card h2 {
    font-family: var(--rv-font-display);
    margin-bottom: 1rem;
}

.rv-contact-card address {
    font-size: 0.9rem;
    color: var(--rv-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.rv-contact-info__list li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--rv-rule);
    font-size: 0.85rem;
}

.rv-contact-info__list span {
    font-family: var(--rv-font-micro);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rv-text-subtle);
}

.rv-contact-map img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.rv-contact-map figcaption { margin-top: 0.5rem; }

.rv-contact-access h3 {
    font-family: var(--rv-font-display);
    margin-bottom: 0.75rem;
}

.rv-contact-access li {
    font-size: 0.85rem;
    color: var(--rv-text-muted);
    padding: 0.35rem 0;
}

/* Cart */
.rv-cart-layout {
    display: grid;
    gap: 2rem;
    padding: 3rem 0;
}

@media (min-width: 800px) {
    .rv-cart-layout { grid-template-columns: 1.5fr 1fr; }
}

.rv-cart-empty {
    padding: 3rem;
    text-align: center;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
}

.rv-cart-empty p { color: var(--rv-text-muted); margin-bottom: 1rem; }

.rv-cart-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rv-cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 1.25rem;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
}

.rv-cart-item img {
    width: 120px;
    height: 80px;
    object-fit: cover;
}

.rv-cart-item__info h3 {
    font-family: var(--rv-font-display);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.rv-cart-item__price {
    font-family: var(--rv-font-display);
    color: var(--rv-champagne);
    margin-bottom: 0.5rem;
}

.rv-cart-remove {
    font-size: 0.75rem;
    color: var(--rv-text-subtle);
    text-decoration: underline;
}

.rv-cart-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid var(--rv-rule);
}

.rv-cart-qty button {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rv-champagne);
}

.rv-cart-qty span {
    min-width: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.rv-cart-summary {
    padding: 2rem;
    background: var(--rv-bg-elevated);
    border: 1px solid var(--rv-rule);
    height: fit-content;
    position: sticky;
    top: calc(var(--rv-nav-height) + var(--rv-kern-height) + 1.5rem);
}

.rv-cart-summary h2 {
    font-family: var(--rv-font-display);
    margin-bottom: 1.5rem;
}

.rv-cart-totals div {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--rv-text-muted);
    border-bottom: 1px solid var(--rv-rule);
}

.rv-cart-totals__grand {
    font-size: 1.1rem !important;
    color: var(--rv-text) !important;
    font-weight: 600;
    margin-top: 0.5rem;
    border-bottom: none !important;
}

.rv-cart-totals__grand dd {
    font-family: var(--rv-font-display);
    font-size: 1.5rem;
    color: var(--rv-champagne);
}

.rv-cart-coupon {
    margin: 1.5rem 0;
}

.rv-cart-coupon label {
    display: block;
    font-size: 0.8rem;
    color: var(--rv-text-muted);
    margin-bottom: 0.35rem;
}

.rv-cart-coupon__row {
    display: flex;
    gap: 0.5rem;
}

.rv-cart-coupon__row input {
    flex: 1;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--rv-rule);
    background: var(--rv-bg);
}

.rv-cart-checkout {
    width: 100%;
    margin-bottom: 0.75rem;
}

.rv-cart-note {
    font-size: 0.75rem;
    color: var(--rv-text-subtle);
    text-align: center;
}

/* Legal */
.rv-legal-body {
    padding: 3rem 0 4rem;
    max-width: 720px;
}

.rv-legal-body section {
    margin-bottom: 2.5rem;
}

.rv-legal-body h2 {
    font-family: var(--rv-font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--rv-champagne);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--rv-rule);
}

.rv-legal-body h3 {
    font-size: 1rem;
    margin: 1.25rem 0 0.75rem;
    color: var(--rv-text);
}

.rv-legal-body p {
    font-size: 0.9rem;
    color: var(--rv-text-muted);
    line-height: 1.85;
    margin-bottom: 0.75rem;
}

.rv-legal-body ul {
    margin: 0.75rem 0 1rem 1.25rem;
    list-style: disc;
}

.rv-legal-body li {
    font-size: 0.9rem;
    color: var(--rv-text-muted);
    line-height: 1.75;
    margin-bottom: 0.35rem;
}

.rv-legal-body address {
    font-size: 0.9rem;
    color: var(--rv-text-muted);
    line-height: 1.8;
    margin-top: 0.75rem;
}

.rv-legal-body a { color: var(--rv-champagne); text-decoration: underline; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .rv-fade { opacity: 1; transform: none; }
}
