/* ==========================================================================
   Velocita Motors — vm- namespace
   Deep Midnight Navy / Hot Magenta / Electric Yellow — Tokyo Night JDM
   ========================================================================== */

:root {
    --vm-navy: #0B1426;
    --vm-navy-deep: #060a14;
    --vm-navy-soft: #131f38;
    --vm-navy-line: rgba(255, 255, 255, 0.09);
    --vm-magenta: #FF2E63;
    --vm-magenta-deep: #c81f4a;
    --vm-yellow: #F9F871;
    --vm-ink: #f4f6fb;
    --vm-muted: #9aa5bd;
    --vm-muted-2: #6b7690;
    --vm-glass: rgba(255, 255, 255, 0.04);
    --vm-glass-border: rgba(255, 255, 255, 0.10);
    --vm-font-display: "Shippori Mincho", "Zen Old Mincho", serif;
    --vm-font-body: "Noto Sans JP", "Shippori Mincho", sans-serif;
    --vm-container: 1200px;
    --vm-radius: 2px;
    --vm-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html, body { scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar, body::-webkit-scrollbar { width: 0; height: 0; display: none; }
* { scrollbar-width: none; }
*::-webkit-scrollbar { width: 0; height: 0; display: none; }

html {
    background: var(--vm-navy);
    -webkit-text-size-adjust: 100%;
}

body.vm-body {
    margin: 0;
    background: var(--vm-navy);
    color: var(--vm-ink);
    font-family: var(--vm-font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
address { font-style: normal; }
input, textarea { font-family: inherit; }

h1, h2, h3, h4 {
    font-family: var(--vm-font-display);
    font-weight: 500;
    margin: 0;
    letter-spacing: 0.01em;
    line-height: 1.3;
}
h1 { font-size: clamp(28px, 4.5vw, 32px); }
h2 { font-size: clamp(22px, 3.4vw, 26px); }
h3 { font-size: clamp(18px, 2.4vw, 20px); }
p { margin: 0 0 1em; font-size: 15px; }
p:last-child { margin-bottom: 0; }
.vm-cap { font-size: 12px; letter-spacing: 0.08em; }

.vm-skip {
    position: absolute; left: -9999px; top: 0;
    background: var(--vm-magenta); color: #fff; padding: 10px 16px; z-index: 999;
}
.vm-skip:focus { left: 10px; top: 10px; }

.vm-container {
    width: 100%;
    max-width: var(--vm-container);
    margin: 0 auto;
    padding: 0 24px;
}

.vm-section { padding: 96px 0; position: relative; }
.vm-section--tight { padding: 48px 0; }
@media (max-width: 720px) {
    .vm-section { padding: 64px 0; }
    .vm-section--tight { padding: 32px 0; }
}

.vm-section__head { max-width: 640px; margin: 0 0 44px; }
.vm-section__head p { color: var(--vm-muted); margin-top: 12px; }
.vm-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }

.vm-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--vm-font-body);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vm-magenta);
    margin-bottom: 14px;
}
.vm-tag::before {
    content: "";
    width: 18px; height: 1px;
    background: var(--vm-magenta);
}

.vm-mt { margin-top: 48px; }
.vm-text-center { text-align: center; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.vm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--vm-font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    border-radius: var(--vm-radius);
    transition: transform 0.35s var(--vm-ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}
.vm-btn--magenta { background: var(--vm-magenta); color: #fff; }
.vm-btn--magenta:hover { background: var(--vm-magenta-deep); transform: translateY(-2px); }
.vm-btn--ghost { border-color: var(--vm-glass-border); color: var(--vm-ink); }
.vm-btn--ghost:hover { border-color: var(--vm-magenta); color: var(--vm-magenta); transform: translateY(-2px); }
.vm-btn--outline-light { border-color: rgba(11,20,38,0.4); color: var(--vm-navy); }
.vm-btn--outline-light:hover { background: var(--vm-navy); color: #fff; }
.vm-btn--lg { padding: 16px 34px; font-size: 15px; }
.vm-btn--sm { padding: 9px 18px; font-size: 13px; }

/* ==========================================================================
   Header
   ========================================================================== */

.vm-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    background: linear-gradient(to bottom, rgba(6,10,20,0.85), transparent 130%);
    transition: background 0.4s ease;
}
.vm-header.is-scrolled { background: rgba(6, 10, 20, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--vm-navy-line); }
.vm-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 78px;
}
.vm-logo { display: flex; align-items: center; gap: 12px; }
.vm-logo__mark {
    display: flex; align-items: center; justify-content: center;
    width: 34px; height: 34px;
    background: var(--vm-magenta);
    color: #fff;
    font-family: var(--vm-font-display);
    font-size: 17px;
    flex-shrink: 0;
}
.vm-logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.vm-logo__text strong { font-family: var(--vm-font-display); font-size: 16px; font-weight: 500; letter-spacing: 0.02em; }
.vm-logo__text small { font-size: 10.5px; color: var(--vm-muted); letter-spacing: 0.08em; }

.vm-nav-desk { display: flex; align-items: center; gap: 32px; }
.vm-nav-desk__list { display: flex; gap: 28px; }
.vm-nav-desk__link {
    font-size: 13.5px; letter-spacing: 0.02em; color: var(--vm-ink);
    position: relative; padding-bottom: 4px;
}
.vm-nav-desk__link::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
    background: var(--vm-magenta); transition: width 0.3s var(--vm-ease);
}
.vm-nav-desk__link:hover::after, .vm-nav-desk__link.is-active::after { width: 100%; }
.vm-nav-desk__link.is-active { color: var(--vm-magenta); }

.vm-scroll-progress { height: 2px; background: transparent; }
.vm-scroll-progress span { display: block; height: 100%; width: 0%; background: var(--vm-magenta); transition: width 0.1s linear; }

.vm-menu-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; }
.vm-menu-toggle span { width: 100%; height: 1.5px; background: var(--vm-ink); transition: all 0.3s var(--vm-ease); }
.vm-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.vm-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.vm-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.vm-nav-backdrop {
    position: fixed; inset: 0; background: rgba(6,10,20,0.7);
    backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: opacity 0.35s ease;
    z-index: 550;
}
.vm-nav-backdrop.is-open { opacity: 1; visibility: visible; }

.vm-nav {
    position: fixed; top: 0; right: 0; height: 100%; width: min(88vw, 400px);
    background: var(--vm-navy-deep);
    border-left: 1px solid var(--vm-navy-line);
    z-index: 600;
    transform: translateX(100%);
    transition: transform 0.5s var(--vm-ease);
    display: flex; flex-direction: column;
    padding: 28px 28px 40px;
    overflow-y: auto;
}
.vm-nav.is-open { transform: translateX(0); }
.vm-nav__head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.vm-nav__title { font-family: var(--vm-font-display); font-size: 19px; margin: 0; }
.vm-nav__tag { font-size: 11.5px; color: var(--vm-muted); }
.vm-nav__close { font-size: 26px; line-height: 1; color: var(--vm-muted); }
.vm-nav__list { display: flex; flex-direction: column; margin-bottom: 32px; }
.vm-nav__list li {
    opacity: 0; transform: translateX(16px);
    transition: opacity 0.4s var(--vm-ease), transform 0.4s var(--vm-ease);
    transition-delay: calc(var(--nav-i, 0) * 0.05s);
    border-bottom: 1px solid var(--vm-navy-line);
}
.vm-nav.is-open .vm-nav__list li { opacity: 1; transform: translateX(0); }
.vm-nav__link { display: flex; align-items: baseline; gap: 14px; padding: 16px 4px; font-family: var(--vm-font-display); font-size: 20px; }
.vm-nav__link span { font-size: 12px; color: var(--vm-magenta); font-family: var(--vm-font-body); }
.vm-nav__link.is-active { color: var(--vm-magenta); }
.vm-menu-toggle { touch-action: manipulation; }

@media (max-width: 900px) {
    .vm-nav-desk { display: none; }
    .vm-menu-toggle { display: flex; }
}

/* ==========================================================================
   1. Hero — full bleed, brand-first, kanji overlay
   ========================================================================== */

.vm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    background: var(--vm-navy-deep);
}
.vm-hero__bg { position: absolute; inset: 0; z-index: 0; }
.vm-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.vm-hero__bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,10,20,0.96) 0%, rgba(6,10,20,0.55) 42%, rgba(6,10,20,0.25) 65%, rgba(11,20,38,0.35) 100%);
}
.vm-hero__kanji {
    position: absolute;
    top: -4vw; right: -1vw;
    font-family: var(--vm-font-display);
    font-size: min(46vw, 620px);
    line-height: 1;
    color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}
.vm-hero__content {
    position: relative; z-index: 2;
    padding: 160px 0 90px;
}
.vm-hero__kana {
    display: block;
    font-family: var(--vm-font-display);
    font-size: clamp(15px, 2vw, 19px);
    color: var(--vm-yellow);
    letter-spacing: 0.32em;
    margin-bottom: 12px;
}
.vm-hero__brand {
    font-family: var(--vm-font-display);
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 500;
    line-height: 1;
    color: var(--vm-ink);
    max-width: 900px;
    margin: 0 0 18px;
}
.vm-hero__content h1 {
    font-size: clamp(28px, 4vw, 32px);
    line-height: 1.35;
    color: var(--vm-ink);
    max-width: 640px;
    margin-bottom: 22px;
    font-weight: 500;
}
.vm-hero__content p {
    max-width: 480px;
    color: var(--vm-muted);
    font-size: 16px;
    margin-bottom: 34px;
}
.vm-hero__scroll {
    position: absolute;
    right: 24px;
    bottom: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--vm-muted);
    writing-mode: vertical-rl;
}
.vm-hero__scroll::after {
    content: "";
    display: block;
    width: 1px; height: 46px;
    background: linear-gradient(to bottom, var(--vm-magenta), transparent);
    animation: vmScrollLine 2.2s ease-in-out infinite;
}
@keyframes vmScrollLine { 0%, 100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

@media (max-width: 720px) {
    .vm-hero__content { padding: 130px 0 70px; }
    .vm-hero__scroll { display: none; }
}

/* ==========================================================================
   2. Vertical kanji / romaji running rail (decorative)
   ========================================================================== */

.vm-rail {
    position: relative;
    height: 74vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--vm-navy-deep);
    border-top: 1px solid var(--vm-navy-line);
    border-bottom: 1px solid var(--vm-navy-line);
}
.vm-rail__track {
    display: flex;
    flex-direction: column;
    gap: 0;
    animation: vmRailScroll 26s linear infinite;
}
.vm-rail__line {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--vm-font-display);
    font-size: clamp(28px, 4vw, 46px);
    letter-spacing: 0.5em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.16);
    padding: 20px 0;
    white-space: nowrap;
}
.vm-rail__line:nth-child(odd) { color: rgba(255,255,255,0.05); -webkit-text-stroke: 0; }
@keyframes vmRailScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
.vm-rail__center {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    z-index: 2;
    pointer-events: none;
}
.vm-rail__center span {
    font-family: var(--vm-font-display);
    font-size: 13px;
    letter-spacing: 0.3em;
    color: var(--vm-magenta);
    text-transform: uppercase;
}
.vm-rail__center strong {
    display: block;
    margin-top: 10px;
    font-size: clamp(22px, 3vw, 30px);
    color: var(--vm-ink);
    max-width: 480px;
    font-weight: 500;
}
@media (max-width: 720px) { .vm-rail { height: 52vh; } }

/* ==========================================================================
   3. Centerfold magazine spread
   ========================================================================== */

.vm-spread { padding: 40px 0; }
.vm-spread__grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 0;
}
.vm-spread__figure { position: relative; overflow: hidden; height: 62vh; }
.vm-spread__figure img { width: 100%; height: 100%; object-fit: cover; }
.vm-spread__figure figcaption {
    position: absolute; left: 20px; bottom: 20px;
    font-size: 12px; letter-spacing: 0.05em;
    color: rgba(255,255,255,0.85);
    background: rgba(6,10,20,0.55);
    padding: 6px 12px;
    backdrop-filter: blur(4px);
}
.vm-spread__gutter {
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--vm-navy);
}
.vm-spread__gutter::before {
    content: "";
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 1px; background: var(--vm-navy-line);
}
.vm-spread__gutter span {
    writing-mode: vertical-rl;
    font-family: var(--vm-font-display);
    font-size: 12.5px;
    letter-spacing: 0.15em;
    color: var(--vm-muted);
    background: var(--vm-navy);
    padding: 12px 0;
    z-index: 1;
}
@media (max-width: 860px) {
    .vm-spread__grid { grid-template-columns: 1fr; }
    .vm-spread__gutter { width: 100%; height: 44px; }
    .vm-spread__gutter::before { top: 50%; bottom: auto; left: 0; right: 0; width: 100%; height: 1px; }
    .vm-spread__gutter span { writing-mode: horizontal-tb; }
    .vm-spread__figure { height: 46vh; }
}

/* ==========================================================================
   4. Sticky chapter scroll
   ========================================================================== */

.vm-chapters__item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    border-top: 1px solid var(--vm-navy-line);
    padding: 0 0 0;
}
.vm-chapters__item:last-child { border-bottom: 1px solid var(--vm-navy-line); }
.vm-chapters__sticky {
    position: sticky;
    top: 96px;
    align-self: start;
    padding: 64px 0;
    height: max-content;
}
.vm-chapters__num { display: block; font-size: 12px; color: var(--vm-magenta); letter-spacing: 0.2em; margin-bottom: 10px; }
.vm-chapters__sticky h3 { font-size: clamp(24px, 3vw, 34px); margin-bottom: 6px; }
.vm-chapters__sticky p { color: var(--vm-muted); font-size: 13px; }
.vm-chapters__body { padding: 64px 0; display: flex; flex-direction: column; gap: 28px; }
.vm-chapters__body p { max-width: 640px; color: var(--vm-muted); }
.vm-chapters__body figure { margin: 0; overflow: hidden; max-width: 640px; }
.vm-chapters__body img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

@media (max-width: 860px) {
    .vm-chapters__item { grid-template-columns: 1fr; gap: 0; }
    .vm-chapters__sticky { position: relative; top: 0; padding: 40px 0 12px; }
    .vm-chapters__body { padding: 0 0 40px; }
}

/* ==========================================================================
   5. Spec strip — horizontal scrolling chips
   ========================================================================== */

.vm-chips {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 4px 20px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}
.vm-chip {
    flex: 0 0 auto;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 26px;
    border: 1px solid var(--vm-glass-border);
    background: var(--vm-glass);
    min-width: 176px;
}
.vm-chip span { font-size: 11.5px; letter-spacing: 0.1em; color: var(--vm-muted); text-transform: uppercase; }
.vm-chip strong { font-family: var(--vm-font-display); font-size: 22px; color: var(--vm-yellow); font-weight: 500; }

/* ==========================================================================
   6. Tuner craft photo essay — full bleed stacked
   ========================================================================== */

.vm-essay__item {
    position: relative;
    height: 78vh;
    overflow: hidden;
}
.vm-essay__item img { width: 100%; height: 100%; object-fit: cover; }
.vm-essay__item::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,10,20,0.9) 0%, transparent 55%);
}
.vm-essay__cap {
    position: absolute; left: 0; bottom: 0; right: 0;
    z-index: 2;
    padding: 32px;
}
.vm-essay__cap .vm-container { padding: 0; }
.vm-essay__cap span { display: block; font-size: 11px; color: var(--vm-magenta); letter-spacing: 0.1em; margin-bottom: 8px; }
.vm-essay__cap p { max-width: 520px; font-size: 16px; color: var(--vm-ink); margin: 0; }
@media (max-width: 720px) { .vm-essay__item { height: 56vh; } }

/* ==========================================================================
   7. Community voices — speech bubbles
   ========================================================================== */

.vm-bubbles { display: flex; flex-direction: column; gap: 28px; }
.vm-bubble {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    max-width: 640px;
}
.vm-bubble--right { align-self: flex-end; flex-direction: row-reverse; }
.vm-bubble__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid var(--vm-glass-border);
}
.vm-bubble__avatar img { width: 100%; height: 100%; object-fit: cover; }
.vm-bubble__balloon {
    position: relative;
    background: var(--vm-navy-soft);
    border: 1px solid var(--vm-glass-border);
    padding: 20px 22px;
    border-radius: 18px 18px 18px 4px;
}
.vm-bubble--right .vm-bubble__balloon { border-radius: 18px 18px 4px 18px; }
.vm-bubble__balloon p { font-size: 14.5px; color: var(--vm-ink); margin: 0 0 10px; }
.vm-bubble__balloon footer { display: flex; gap: 8px; font-size: 12px; color: var(--vm-muted); }
.vm-bubble__balloon cite { font-style: normal; color: var(--vm-yellow); }
@media (max-width: 640px) {
    .vm-bubble, .vm-bubble--right { max-width: 100%; }
}

/* ==========================================================================
   8. Event / meet calendar rows
   ========================================================================== */

.vm-events { display: flex; flex-direction: column; }
.vm-event-row {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 22px 4px;
    border-bottom: 1px solid var(--vm-navy-line);
    transition: background 0.3s ease;
}
.vm-event-row:hover { background: var(--vm-glass); }
.vm-event-row__date {
    display: flex; flex-direction: column; align-items: center;
    line-height: 1;
    border-right: 1px solid var(--vm-navy-line);
    padding-right: 20px;
}
.vm-event-row__date strong { font-family: var(--vm-font-display); font-size: 30px; color: var(--vm-yellow); font-weight: 500; }
.vm-event-row__date span { font-size: 11px; color: var(--vm-muted); letter-spacing: 0.1em; margin-top: 4px; }
.vm-event-row__info h3 { font-size: 17px; margin-bottom: 4px; }
.vm-event-row__info p { color: var(--vm-muted); font-size: 13px; margin: 0; }
.vm-event-row__time { font-size: 13px; color: var(--vm-magenta); white-space: nowrap; }
@media (max-width: 640px) {
    .vm-event-row { grid-template-columns: 64px 1fr; }
    .vm-event-row__time { grid-column: 2; font-size: 12px; }
}

/* ==========================================================================
   9. Journal preview — vertical timeline
   ========================================================================== */

.vm-timeline { position: relative; padding-left: 32px; }
.vm-timeline::before {
    content: "";
    position: absolute; top: 6px; bottom: 6px; left: 5px;
    width: 1px; background: var(--vm-navy-line);
}
.vm-timeline__item { position: relative; padding-bottom: 44px; display: grid; grid-template-columns: 140px 1fr; gap: 24px; }
.vm-timeline__item:last-child { padding-bottom: 0; }
.vm-timeline__item::before {
    content: ""; position: absolute; left: -32px; top: 6px;
    width: 11px; height: 11px; border-radius: 50%;
    background: var(--vm-navy); border: 2px solid var(--vm-magenta);
}
.vm-timeline__date { font-size: 12px; color: var(--vm-muted); padding-top: 2px; }
.vm-timeline__body h3 { font-size: 17px; margin-bottom: 6px; }
.vm-timeline__body p { color: var(--vm-muted); font-size: 13.5px; margin-bottom: 10px; }
.vm-timeline__body a { font-size: 12.5px; color: var(--vm-magenta); letter-spacing: 0.04em; }
@media (max-width: 600px) {
    .vm-timeline__item { grid-template-columns: 1fr; gap: 6px; }
}

/* ==========================================================================
   10. Magenta CTA + Tokyo contact
   ========================================================================== */

.vm-cta-band {
    position: relative;
    background: var(--vm-magenta);
    color: #fff;
    padding: 96px 0;
    overflow: hidden;
}
.vm-cta-band::before {
    content: "灯";
    position: absolute;
    right: -3vw; top: -8vw;
    font-family: var(--vm-font-display);
    font-size: 40vw;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    pointer-events: none;
}
.vm-cta-band__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; }
.vm-cta-band h2 { color: #fff; font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
.vm-cta-band p { color: rgba(255,255,255,0.85); max-width: 460px; margin-bottom: 26px; }
.vm-cta-band .vm-btn--magenta { background: #fff; color: var(--vm-magenta); }
.vm-cta-band .vm-btn--magenta:hover { background: var(--vm-navy); color: #fff; }
.vm-cta-band__info { border-left: 1px solid rgba(255,255,255,0.3); padding-left: 40px; }
.vm-cta-band__info p { color: rgba(255,255,255,0.9); font-size: 14px; margin-bottom: 10px; }
.vm-cta-band__info strong { display: block; font-family: var(--vm-font-display); font-size: 15px; margin-bottom: 4px; color: var(--vm-yellow); }
@media (max-width: 820px) {
    .vm-cta-band__grid { grid-template-columns: 1fr; }
    .vm-cta-band__info { border-left: none; border-top: 1px solid rgba(255,255,255,0.3); padding-left: 0; padding-top: 28px; }
}

/* ==========================================================================
   11. Philosophy prose block
   ========================================================================== */

.vm-prose { max-width: 760px; }
.vm-prose__drop::first-letter {
    font-family: var(--vm-font-display);
    font-size: 3.4em;
    float: left;
    line-height: 0.8;
    margin: 0.05em 0.12em 0 0;
    color: var(--vm-magenta);
}
.vm-prose p { color: var(--vm-muted); font-size: 15.5px; margin-bottom: 1.3em; }
.vm-prose blockquote {
    margin: 28px 0;
    padding-left: 22px;
    border-left: 2px solid var(--vm-yellow);
    font-family: var(--vm-font-display);
    font-size: 18px;
    color: var(--vm-ink);
    font-weight: 500;
}

/* ==========================================================================
   Page hero (about/services/blog/contact)
   ========================================================================== */

.vm-page-hero {
    position: relative;
    min-height: 68vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--vm-navy-deep);
}
.vm-page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.vm-page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.vm-page-hero__bg::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(6,10,20,0.97) 5%, rgba(6,10,20,0.5) 55%, rgba(6,10,20,0.35) 100%);
}
.vm-page-hero__content { position: relative; z-index: 1; padding: 130px 0 64px; }
.vm-page-hero__content h1 { font-size: clamp(28px, 4vw, 32px); max-width: 760px; margin-bottom: 14px; font-weight: 500; }
.vm-page-hero__content p { max-width: 480px; color: var(--vm-muted); font-size: 16px; }

/* ==========================================================================
   Generic components reused across inner pages
   ========================================================================== */

.vm-split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.vm-split__media { overflow: hidden; }
.vm-split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.vm-split__quote {
    font-family: var(--vm-font-display);
    font-size: 19px;
    font-weight: 500;
    color: var(--vm-ink);
    border-left: 2px solid var(--vm-magenta);
    padding-left: 20px;
    margin: 0 0 18px;
}
@media (max-width: 800px) { .vm-split { grid-template-columns: 1fr; gap: 28px; } }

/* Horizontal scroll timeline (about) */
.vm-htimeline { display: flex; gap: 0; overflow-x: auto; padding: 8px 4px 24px; }
.vm-htimeline__item {
    flex: 0 0 240px;
    padding: 0 26px 0 0;
    position: relative;
    border-left: 1px solid var(--vm-navy-line);
    padding-left: 26px;
}
.vm-htimeline__item strong.vm-htimeline__year {
    display: block;
    font-family: var(--vm-font-display);
    font-size: 30px;
    color: var(--vm-magenta);
    font-weight: 500;
    margin-bottom: 10px;
}
.vm-htimeline__item h3 { font-size: 15.5px; margin-bottom: 6px; }
.vm-htimeline__item p { font-size: 13px; color: var(--vm-muted); }

/* Mission stamps */
.vm-stamps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vm-stamp { border: 1px solid var(--vm-glass-border); padding: 32px 26px; background: var(--vm-glass); position: relative; }
.vm-stamp__glyph {
    width: 58px; height: 58px;
    border: 1px solid var(--vm-magenta);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--vm-font-display);
    font-size: 24px;
    color: var(--vm-magenta);
    margin-bottom: 20px;
}
.vm-stamp h3 { margin-bottom: 10px; }
.vm-stamp p { color: var(--vm-muted); font-size: 13.5px; }
@media (max-width: 800px) { .vm-stamps { grid-template-columns: 1fr; } }

/* Crew scroller */
.vm-crew { display: flex; gap: 20px; overflow-x: auto; padding: 4px 4px 20px; }
.vm-crew__item { flex: 0 0 200px; text-align: left; }
.vm-crew__photo { width: 100%; aspect-ratio: 3/4; overflow: hidden; margin-bottom: 14px; filter: grayscale(0.3); }
.vm-crew__photo img { width: 100%; height: 100%; object-fit: cover; }
.vm-crew__item h3 { font-size: 15px; margin-bottom: 3px; }
.vm-crew__item span { font-size: 12px; color: var(--vm-muted); }

/* Asymmetric gallery (about tour) */
.vm-gallery-asym { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; }
.vm-gallery-asym__main { overflow: hidden; grid-row: span 2; }
.vm-gallery-asym__main img { width: 100%; height: 100%; object-fit: cover; }
.vm-gallery-asym__side { overflow: hidden; }
.vm-gallery-asym__side img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
@media (max-width: 720px) { .vm-gallery-asym { grid-template-columns: 1fr; } .vm-gallery-asym__main { grid-row: auto; } .vm-gallery-asym__main img { aspect-ratio: 4/3; } }

/* Partner marquee */
.vm-marquee { overflow: hidden; border-top: 1px solid var(--vm-navy-line); border-bottom: 1px solid var(--vm-navy-line); padding: 26px 0; }
.vm-marquee__track { display: flex; gap: 56px; width: max-content; animation: vmMarquee 24s linear infinite; }
.vm-marquee__track span {
    font-family: var(--vm-font-display);
    font-size: 22px;
    letter-spacing: 0.06em;
    color: var(--vm-muted-2);
    white-space: nowrap;
}
@keyframes vmMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Stats bar */
.vm-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--vm-navy-line);
    border-bottom: 1px solid var(--vm-navy-line);
}
.vm-stats-bar__item { padding: 32px 20px; text-align: center; border-left: 1px solid var(--vm-navy-line); }
.vm-stats-bar__item:first-child { border-left: none; }
.vm-stats-bar__item strong { display: block; font-family: var(--vm-font-display); font-size: clamp(30px, 4vw, 42px); color: var(--vm-yellow); font-weight: 500; margin-bottom: 6px; }
.vm-stats-bar__item span { font-size: 12.5px; color: var(--vm-muted); letter-spacing: 0.03em; }
@media (max-width: 700px) { .vm-stats-bar { grid-template-columns: repeat(2, 1fr); } .vm-stats-bar__item:nth-child(3) { border-left: none; } }

/* Simple quote list (about voices) */
.vm-quotelist { display: flex; flex-direction: column; gap: 0; }
.vm-quotelist__item { padding: 28px 0; border-bottom: 1px solid var(--vm-navy-line); display: grid; grid-template-columns: 1fr 200px; gap: 24px; align-items: start; }
.vm-quotelist__item:first-child { border-top: 1px solid var(--vm-navy-line); }
.vm-quotelist__item p { font-family: var(--vm-font-display); font-size: 17px; color: var(--vm-ink); font-weight: 500; }
.vm-quotelist__item cite { display: block; font-style: normal; color: var(--vm-magenta); font-size: 13px; margin-top: 4px; }
.vm-quotelist__item span.vm-quotelist__car { color: var(--vm-muted); font-size: 12.5px; }
@media (max-width: 700px) { .vm-quotelist__item { grid-template-columns: 1fr; } }

/* ==========================================================================
   Services — numbered menu rows
   ========================================================================== */

.vm-menu-rows { display: flex; flex-direction: column; }
.vm-menu-row {
    display: grid;
    grid-template-columns: 80px 1fr 140px 160px;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid var(--vm-navy-line);
    position: relative;
    transition: padding-left 0.3s var(--vm-ease);
}
.vm-menu-row:first-child { border-top: 1px solid var(--vm-navy-line); }
.vm-menu-row:hover { padding-left: 12px; background: var(--vm-glass); }
.vm-menu-row__num { font-family: var(--vm-font-display); font-size: 22px; color: var(--vm-muted-2); }
.vm-menu-row__thumb { width: 64px; height: 64px; overflow: hidden; flex-shrink: 0; }
.vm-menu-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.vm-menu-row__body h3 { font-size: 17px; margin-bottom: 6px; }
.vm-menu-row__body p { color: var(--vm-muted); font-size: 13px; margin: 0; }
.vm-menu-row__price { font-family: var(--vm-font-display); color: var(--vm-yellow); font-size: 15px; text-align: right; }
.vm-menu-row__cta { text-align: right; }
@media (max-width: 760px) {
    .vm-menu-row { grid-template-columns: 40px 1fr; }
    .vm-menu-row__thumb { display: none; }
    .vm-menu-row__price, .vm-menu-row__cta { grid-column: 2; text-align: left; }
}

/* Process steps with connecting line */
.vm-process { position: relative; }
.vm-process__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.vm-process__steps::before {
    content: "";
    position: absolute; top: 18px; left: 0; right: 0; height: 1px;
    background: var(--vm-navy-line);
}
.vm-process__step { position: relative; padding-top: 52px; }
.vm-process__node {
    position: absolute; top: 0; left: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--vm-navy);
    border: 1px solid var(--vm-magenta);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--vm-font-display);
    font-size: 13px;
    color: var(--vm-magenta);
}
.vm-process__step h3 { font-size: 16px; margin-bottom: 8px; }
.vm-process__step p { font-size: 13px; color: var(--vm-muted); }
@media (max-width: 760px) {
    .vm-process__steps { grid-template-columns: 1fr; gap: 36px; }
    .vm-process__steps::before { top: 0; bottom: 0; left: 18px; right: auto; width: 1px; height: auto; }
}

/* Invoice slip */
.vm-invoice { border: 1px solid var(--vm-glass-border); background: var(--vm-glass); padding: 8px 32px; max-width: 620px; }
.vm-invoice__row { display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px dashed var(--vm-navy-line); font-size: 14px; }
.vm-invoice__row span:first-child { color: var(--vm-muted); }
.vm-invoice__row.vm-invoice__total { border-bottom: none; padding-top: 20px; font-family: var(--vm-font-display); font-size: 18px; color: var(--vm-yellow); }

/* Before / After */
.vm-ba { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.vm-ba__item h3 { margin-bottom: 6px; }
.vm-ba__item p { color: var(--vm-muted); font-size: 13.5px; margin-bottom: 16px; }
.vm-ba__compare { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.vm-ba__compare figure { position: relative; margin: 0; overflow: hidden; }
.vm-ba__compare img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.vm-ba__compare figcaption { position: absolute; top: 10px; left: 10px; font-size: 11px; letter-spacing: 0.1em; background: rgba(6,10,20,0.7); padding: 4px 10px; }
@media (max-width: 760px) { .vm-ba { grid-template-columns: 1fr; gap: 28px; } }

/* Pricing — stacked rows with accent border */
.vm-plans { display: flex; flex-direction: column; gap: 18px; }
.vm-plan {
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 32px;
    padding: 30px 32px;
    border: 1px solid var(--vm-glass-border);
    border-left: 3px solid var(--vm-glass-border);
    background: var(--vm-glass);
}
.vm-plan--featured { border-left-color: var(--vm-magenta); }
.vm-plan__title { position: relative; }
.vm-plan__badge { display: inline-block; font-size: 10.5px; letter-spacing: 0.08em; color: var(--vm-magenta); margin-bottom: 6px; }
.vm-plan__title h3 { margin-bottom: 4px; }
.vm-plan__title strong { font-family: var(--vm-font-display); color: var(--vm-yellow); font-size: 16px; font-weight: 500; }
.vm-plan__features { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.vm-plan__features li { font-size: 12.5px; color: var(--vm-muted); position: relative; padding-left: 14px; }
.vm-plan__features li::before { content: "—"; position: absolute; left: 0; color: var(--vm-magenta); }
@media (max-width: 800px) {
    .vm-plan { grid-template-columns: 1fr; text-align: left; gap: 14px; }
}

/* ==========================================================================
   Blog specific
   ========================================================================== */

.vm-feature-article { display: grid; grid-template-columns: 1.2fr 1fr; border: 1px solid var(--vm-glass-border); overflow: hidden; }
.vm-feature-article__media { overflow: hidden; }
.vm-feature-article__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.vm-feature-article__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 800px) { .vm-feature-article { grid-template-columns: 1fr; } }

.vm-chip-filter { display: flex; gap: 10px; overflow-x: auto; padding: 4px 4px 20px; }
.vm-chip-filter button {
    flex: 0 0 auto;
    padding: 9px 18px;
    font-size: 12.5px;
    border: 1px solid var(--vm-glass-border);
    color: var(--vm-muted);
    white-space: nowrap;
}
.vm-chip-filter button.is-active { border-color: var(--vm-magenta); color: var(--vm-magenta); background: rgba(255,46,99,0.08); }

.vm-mag-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.vm-mag-grid > *:nth-child(3n+1) { grid-row: span 2; }
.vm-mag-card { display: flex; flex-direction: column; border: 1px solid var(--vm-glass-border); background: var(--vm-glass); overflow: hidden; }
.vm-mag-card__media { overflow: hidden; flex: 1; }
.vm-mag-card__media img { width: 100%; height: 100%; object-fit: cover; min-height: 160px; }
.vm-mag-card__body { padding: 20px; }
.vm-mag-card__body h3 { font-size: 15.5px; margin-bottom: 8px; }
.vm-mag-card__body p { font-size: 12.5px; color: var(--vm-muted); margin: 0; }
.vm-blog-meta { display: flex; gap: 10px; align-items: center; font-size: 11.5px; color: var(--vm-muted); margin-bottom: 8px; }
.vm-blog-tag { color: var(--vm-magenta); border: 1px solid rgba(255,46,99,0.3); padding: 2px 8px; }
@media (max-width: 900px) { .vm-mag-grid { grid-template-columns: repeat(2, 1fr); } .vm-mag-grid > *:nth-child(3n+1) { grid-row: auto; } }
@media (max-width: 620px) { .vm-mag-grid { grid-template-columns: 1fr; } }

.vm-tagcloud { display: flex; flex-wrap: wrap; gap: 10px; }
.vm-tagcloud a { border: 1px solid var(--vm-glass-border); padding: 8px 16px; font-size: 13px; color: var(--vm-muted); }
.vm-tagcloud a:hover { color: var(--vm-magenta); border-color: var(--vm-magenta); }

.vm-archive { display: flex; flex-direction: column; }
.vm-archive__row { display: flex; justify-content: space-between; padding: 16px 4px; border-bottom: 1px solid var(--vm-navy-line); font-size: 14px; }
.vm-archive__row:first-child { border-top: 1px solid var(--vm-navy-line); }
.vm-archive__row span:last-child { color: var(--vm-muted); }

.vm-season-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.vm-season-strip__item { border: 1px solid var(--vm-glass-border); background: var(--vm-glass); padding: 22px; }
.vm-season-strip__item span { font-size: 12px; color: var(--vm-magenta); letter-spacing: 0.06em; }
.vm-season-strip__item h3 { margin-top: 8px; font-size: 15px; }
@media (max-width: 700px) { .vm-season-strip { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   Contact specific
   ========================================================================== */

.vm-contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
.vm-form-block { border: 1px solid var(--vm-glass-border); background: var(--vm-glass); padding: 40px; }
.vm-form { display: flex; flex-direction: column; gap: 18px; margin-top: 20px; }
.vm-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.vm-form label { display: flex; flex-direction: column; gap: 8px; font-size: 12.5px; color: var(--vm-muted); }
.vm-form input, .vm-form textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--vm-glass-border);
    color: var(--vm-ink);
    padding: 12px 14px;
    font-size: 14px;
    border-radius: var(--vm-radius);
}
.vm-form input:focus, .vm-form textarea:focus { outline: none; border-color: var(--vm-magenta); }
.vm-form textarea { resize: vertical; min-height: 110px; }
@media (max-width: 640px) { .vm-form__row { grid-template-columns: 1fr; } .vm-contact-grid { grid-template-columns: 1fr; } }

.vm-side-block { display: flex; flex-direction: column; gap: 28px; }
.vm-info-list { display: flex; flex-direction: column; gap: 16px; }
.vm-info-list__item strong { display: block; font-size: 11.5px; letter-spacing: 0.08em; color: var(--vm-muted); margin-bottom: 4px; }
.vm-info-list__item p { margin: 0; font-size: 14px; }
.vm-map { width: 100%; aspect-ratio: 16/10; overflow: hidden; border: 1px solid var(--vm-glass-border); }
.vm-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.4) invert(0.92) contrast(0.9); }

.vm-desk-slots { display: flex; flex-direction: column; }
.vm-desk-slot { display: grid; grid-template-columns: 160px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--vm-navy-line); }
.vm-desk-slot:first-child { border-top: 1px solid var(--vm-navy-line); }
.vm-desk-slot__time { font-family: var(--vm-font-display); color: var(--vm-yellow); font-size: 15px; }
.vm-desk-slot__body h3 { font-size: 15.5px; margin-bottom: 6px; }
.vm-desk-slot__body p { font-size: 13px; color: var(--vm-muted); margin: 0; }
@media (max-width: 620px) { .vm-desk-slot { grid-template-columns: 1fr; gap: 6px; } }

.vm-social-chips { display: flex; gap: 12px; flex-wrap: wrap; }
.vm-social-chips a { border: 1px solid var(--vm-glass-border); padding: 12px 22px; font-size: 13.5px; }
.vm-social-chips a:hover { border-color: var(--vm-magenta); color: var(--vm-magenta); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.vm-faq { border-top: 1px solid var(--vm-navy-line); }
.vm-faq__item { border-bottom: 1px solid var(--vm-navy-line); }
.vm-faq__q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 4px;
    font-family: var(--vm-font-display);
    font-size: 15.5px;
    text-align: left;
}
.vm-faq__q span { transition: transform 0.3s var(--vm-ease); color: var(--vm-magenta); font-size: 20px; font-family: var(--vm-font-body); }
.vm-faq__item.is-open .vm-faq__q span { transform: rotate(45deg); }
.vm-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--vm-ease); }
.vm-faq__a-inner { padding: 0 4px 22px; color: var(--vm-muted); font-size: 14px; max-width: 640px; }
.vm-faq__item.is-open .vm-faq__a { max-height: 400px; }

/* ==========================================================================
   Notices
   ========================================================================== */

.vm-notice { padding: 14px 18px; margin-bottom: 20px; font-size: 13.5px; border: 1px solid; }
.vm-notice--success { border-color: var(--vm-yellow); color: var(--vm-yellow); background: rgba(249,248,113,0.06); }
.vm-notice--error { border-color: var(--vm-magenta); color: var(--vm-magenta); background: rgba(255,46,99,0.06); }
.vm-notice ul { padding-left: 18px; list-style: disc; }

/* ==========================================================================
   CTA block (generic prose page ends)
   ========================================================================== */

.vm-cta-simple { text-align: center; max-width: 640px; margin: 0 auto; }
.vm-cta-simple h2 { margin-bottom: 14px; }
.vm-cta-simple p { color: var(--vm-muted); margin-bottom: 28px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.vm-footer { position: relative; background: var(--vm-navy-deep); border-top: 1px solid var(--vm-navy-line); padding-top: 80px; overflow: hidden; }
.vm-footer__glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(255,46,99,0.12), transparent 70%); pointer-events: none; }
.vm-footer__top { position: relative; z-index: 1; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid var(--vm-navy-line); }
.vm-footer__logo { display: flex; flex-direction: column; margin-bottom: 16px; }
.vm-footer__logo strong { font-family: var(--vm-font-display); font-size: 20px; }
.vm-footer__logo span { font-size: 12px; color: var(--vm-muted); margin-top: 4px; }
.vm-footer__desc { color: var(--vm-muted); font-size: 13.5px; max-width: 320px; margin-bottom: 20px; }
.vm-social { display: flex; gap: 14px; }
.vm-social a { font-size: 12.5px; color: var(--vm-muted); border: 1px solid var(--vm-glass-border); padding: 8px 14px; }
.vm-social a:hover { color: var(--vm-magenta); border-color: var(--vm-magenta); }
.vm-footer__col h3 { font-size: 13px; color: var(--vm-muted); letter-spacing: 0.06em; margin-bottom: 18px; }
.vm-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.vm-footer__col a { font-size: 13.5px; color: var(--vm-ink); }
.vm-footer__col a:hover { color: var(--vm-magenta); }
.vm-footer__col address p { font-size: 13px; color: var(--vm-muted); margin: 0 0 10px; }
.vm-footer__col address a { color: var(--vm-ink); }
.vm-footer__bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; padding: 24px 0 32px; font-size: 12px; color: var(--vm-muted-2); }
.vm-top { border: 1px solid var(--vm-glass-border); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.vm-top:hover { border-color: var(--vm-magenta); color: var(--vm-magenta); }
@media (max-width: 900px) {
    .vm-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .vm-footer__top { grid-template-columns: 1fr; }
    .vm-footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ==========================================================================
   Reveal / scroll animation utilities
   ========================================================================== */

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--vm-ease), transform 0.8s var(--vm-ease);
    transition-delay: calc(var(--reveal-delay, 0) * 0.08s);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal="scale"] { transform: scale(0.94); }
[data-reveal="scale"].is-visible { transform: scale(1); }
.js [data-reveal] { will-change: opacity, transform; }
html:not(.js) [data-reveal] { opacity: 1; transform: none; }

/* ==========================================================================
   Generic grid helpers
   ========================================================================== */

.vm-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.vm-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .vm-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .vm-grid-2, .vm-grid-3 { grid-template-columns: 1fr; } }
