/* ═══════════════════════════════════════════
   Virezo.shop — Asymmetric Flow Blocks
   Premium editorial · muted luxury · diagonal
   ═══════════════════════════════════════════ */

:root {
    --vz-bg: #1C1B19;
    --vz-bg-elevated: #262422;
    --vz-bg-soft: #2E2C29;
    --vz-sand: #E8E2D8;
    --vz-sand-dim: #C9C2B6;
    --vz-text: #F0EBE3;
    --vz-text-muted: #9A948A;
    --vz-copper: #B87333;
    --vz-copper-light: #D4954E;
    --vz-line: #3D3A36;
    --vz-shadow: rgba(0, 0, 0, 0.45);
    --vz-font-display: 'Shippori Mincho', 'Yu Mincho', serif;
    --vz-font-ui: 'Outfit', 'Hiragino Sans', sans-serif;
    --vz-radius: 2px;
    --vz-nav-h: 64px;
    --vz-transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.theme-light {
    --vz-bg: #F4F0EA;
    --vz-bg-elevated: #FFFFFF;
    --vz-bg-soft: #EDE8DF;
    --vz-text: #2A2724;
    --vz-text-muted: #7A756C;
    --vz-line: #D9D3C8;
    --vz-shadow: rgba(42, 39, 36, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body.vz-body {
    font-family: var(--vz-font-ui);
    background: var(--vz-bg);
    color: var(--vz-text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--vz-copper-light); text-decoration: none; transition: color 0.25s; }
a:hover { color: var(--vz-copper); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.vz-sr {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}
.vz-skip {
    position: fixed; top: -100px; left: 1rem; z-index: 9999;
    padding: 0.5rem 1rem; background: var(--vz-copper); color: #fff;
}
.vz-skip:focus { top: 1rem; }

.vz-micro {
    font-size: 0.68rem; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--vz-text-muted);
    font-weight: 500;
}

/* ── Buttons ── */
.vz-btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.4rem; padding: 0.75rem 1.6rem;
    font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
    border-radius: var(--vz-radius); transition: var(--vz-transition);
    white-space: nowrap;
}
.vz-btn--copper {
    background: var(--vz-copper); color: #fff;
    box-shadow: 0 4px 20px rgba(184, 115, 51, 0.35);
}
.vz-btn--copper:hover {
    background: var(--vz-copper-light); color: #fff;
    transform: translateY(-2px);
}
.vz-btn--line {
    border: 1px solid var(--vz-line); color: var(--vz-text);
    background: transparent;
}
.vz-btn--line:hover { border-color: var(--vz-copper); color: var(--vz-copper); }
.vz-btn--ghost { color: var(--vz-text); border-bottom: 1px solid var(--vz-copper); padding: 0.5rem 0; }
.vz-btn--ghost:hover { color: var(--vz-copper); }
.vz-btn--sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.vz-btn--lg { padding: 1rem 2rem; font-size: 0.9rem; }

/* ── Ribbon Nav (diagonal sticky) ── */
.vz-ribbon {
    position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    height: var(--vz-nav-h);
    transition: var(--vz-transition);
}
.vz-ribbon__slant {
    position: absolute; inset: 0;
    background: var(--vz-bg-elevated);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    border-bottom: 1px solid var(--vz-line);
    transition: var(--vz-transition);
}
.vz-ribbon.is-scrolled .vz-ribbon__slant {
    background: rgba(28, 27, 25, 0.92);
    backdrop-filter: blur(12px);
}
.theme-light .vz-ribbon.is-scrolled .vz-ribbon__slant {
    background: rgba(244, 240, 234, 0.92);
}
.vz-ribbon__inner {
    position: relative; z-index: 1;
    max-width: 1400px; margin: 0 auto;
    padding: 0 2rem; height: 100%;
    display: flex; align-items: center; justify-content: space-between;
}
.vz-ribbon__brand {
    display: flex; align-items: center; gap: 0.6rem;
    color: var(--vz-text); font-weight: 600;
}
.vz-ribbon__brand:hover { color: var(--vz-copper); }
.vz-ribbon__kanji {
    font-family: var(--vz-font-display);
    font-size: 1.4rem; color: var(--vz-copper);
    writing-mode: vertical-rl;
}
.vz-ribbon__word { font-size: 1.1rem; letter-spacing: 0.12em; }
.vz-ribbon__links { display: flex; gap: 2rem; }
.vz-ribbon__link {
    font-size: 0.78rem; letter-spacing: 0.1em;
    color: var(--vz-text-muted); position: relative;
    padding-bottom: 4px;
}
.vz-ribbon__link::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--vz-copper);
    transition: width 0.3s;
}
.vz-ribbon__link:hover,
.vz-ribbon__link.is-active { color: var(--vz-text); }
.vz-ribbon__link:hover::after,
.vz-ribbon__link.is-active::after { width: 100%; }
.vz-ribbon__tools { display: flex; align-items: center; gap: 0.6rem; }
.vz-ribbon__tool {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    color: var(--vz-text-muted); border-radius: 50%;
    transition: var(--vz-transition); position: relative;
}
.vz-ribbon__tool:hover { color: var(--vz-copper); background: var(--vz-bg-soft); }
.vz-ribbon__badge {
    position: absolute; top: 2px; right: 2px;
    min-width: 16px; height: 16px; padding: 0 4px;
    background: var(--vz-copper); color: #fff;
    font-size: 0.6rem; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}

/* Mobile bar */
.vz-mobilebar {
    display: none; position: fixed; top: 0; left: 0; right: 0; z-index: 900;
    height: 56px; padding: 0 1.2rem;
    background: var(--vz-bg-elevated);
    border-bottom: 1px solid var(--vz-line);
    align-items: center; justify-content: space-between;
}
.vz-mobilebar__brand {
    font-family: var(--vz-font-display);
    font-size: 1.2rem; color: var(--vz-text); font-weight: 600;
}
.vz-mobilebar__actions { display: flex; align-items: center; gap: 0.5rem; }
.vz-mobilebar__icon {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    color: var(--vz-text-muted); position: relative;
}
.vz-mobilebar__badge {
    position: absolute; top: 4px; right: 4px;
    min-width: 14px; height: 14px; background: var(--vz-copper);
    color: #fff; font-size: 0.55rem; border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
}
.vz-mobilebar__burger {
    width: 40px; height: 40px;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.vz-mobilebar__burger span {
    width: 20px; height: 1.5px; background: var(--vz-text);
    transition: var(--vz-transition);
}

/* Drawer */
.vz-drawer {
    position: fixed; inset: 0; z-index: 950;
    background: var(--vz-bg); transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 2rem; display: flex; flex-direction: column;
}
.vz-drawer.is-open { transform: translateX(0); }
.vz-drawer__head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 3rem;
}
.vz-drawer__close { font-size: 2rem; color: var(--vz-text-muted); }
.vz-drawer__nav { display: flex; flex-direction: column; gap: 1.5rem; flex: 1; }
.vz-drawer__nav a {
    font-family: var(--vz-font-display);
    font-size: 1.6rem; color: var(--vz-text);
    border-bottom: 1px solid var(--vz-line); padding-bottom: 0.5rem;
}
.vz-drawer__nav a:hover { color: var(--vz-copper); }
.vz-drawer__tel a { font-size: 1.1rem; color: var(--vz-copper); }

/* Search overlay */
.vz-search {
    position: fixed; inset: 0; z-index: 980;
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; opacity: 0;
    transition: opacity 0.35s;
}
.vz-search.is-open { pointer-events: auto; opacity: 1; }
.vz-search__veil {
    position: absolute; inset: 0;
    background: rgba(28, 27, 25, 0.85);
    backdrop-filter: blur(8px);
}
.vz-search__panel {
    position: relative; z-index: 1;
    width: min(520px, 90vw); padding: 2.5rem;
    background: var(--vz-bg-elevated);
    border: 1px solid var(--vz-line);
    transform: translateY(20px);
    transition: transform 0.35s;
}
.vz-search.is-open .vz-search__panel { transform: translateY(0); }
.vz-search__close {
    position: absolute; top: 1rem; right: 1rem;
    font-size: 1.5rem; color: var(--vz-text-muted);
}
.vz-search__panel form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.vz-search__panel input[type="search"] {
    width: 100%; padding: 0.9rem 1rem;
    background: var(--vz-bg-soft); border: 1px solid var(--vz-line);
    color: var(--vz-text); font-size: 1rem; border-radius: var(--vz-radius);
}
.vz-search__panel input:focus { outline: none; border-color: var(--vz-copper); }

/* Main */
.vz-main { padding-top: var(--vz-nav-h); }

/* Reveal */
[data-reveal] {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ══ HOMEPAGE: Asymmetric Flow Blocks ══ */
.vz-flow__block {
    position: relative; overflow: hidden;
}

/* S1: Threshold */
.vz-threshold {
    min-height: 100vh; display: flex; align-items: center;
    padding: 4rem 0;
}
.vz-threshold__slant {
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: var(--vz-bg-soft);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}
.vz-threshold__grid {
    max-width: 1400px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 1fr 1.1fr;
    gap: 3rem; align-items: center; width: 100%;
}
.vz-threshold__title {
    font-family: var(--vz-font-display);
    display: flex; align-items: flex-start; gap: 1rem;
    margin: 1rem 0 1.5rem; line-height: 1.15;
}
.vz-threshold__vert {
    font-size: clamp(4rem, 8vw, 7rem);
    color: var(--vz-copper); writing-mode: vertical-rl;
    font-weight: 700; opacity: 0.85;
}
.vz-threshold__main {
    font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 600;
}
.vz-threshold__main em {
    font-style: normal; color: var(--vz-copper);
}
.vz-threshold__lead {
    font-size: 0.95rem; color: var(--vz-text-muted);
    max-width: 420px; margin-bottom: 2rem;
}
.vz-threshold__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.vz-threshold__meta {
    display: flex; gap: 2rem; font-size: 0.78rem;
}
.vz-threshold__meta dt { color: var(--vz-text-muted); letter-spacing: 0.1em; }
.vz-threshold__meta dd { font-weight: 500; margin-top: 0.2rem; }
.vz-threshold__frame {
    position: relative; margin-right: -4rem;
    clip-path: polygon(8% 0, 100% 0, 100% 88%, 0 100%);
}
.vz-threshold__frame img {
    width: 100%; aspect-ratio: 3/2; object-fit: cover;
    filter: contrast(1.05) saturate(0.92);
}
.vz-threshold__frame figcaption {
    position: absolute; bottom: 1rem; left: 1.5rem;
    font-size: 0.68rem; letter-spacing: 0.12em;
    color: var(--vz-sand); display: flex; flex-direction: column; gap: 0.2rem;
}
.vz-threshold__mask {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(184, 115, 51, 0.15));
    pointer-events: none;
}
.vz-threshold__scroll {
    position: absolute; bottom: 3rem; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
    font-size: 0.65rem; letter-spacing: 0.2em;
    color: var(--vz-text-muted); animation: vz-float 2.5s ease-in-out infinite;
}
@keyframes vz-float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* S2: Manifesto */
.vz-manifesto {
    background: var(--vz-bg-soft);
    padding: 8rem 0; position: relative;
}
.vz-manifesto__wedge {
    position: absolute; top: 0; left: 0; right: 0; height: 80px;
    background: var(--vz-bg);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.vz-manifesto__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem; align-items: center;
}
.vz-manifesto__visual {
    position: relative; margin-left: -3rem;
    clip-path: polygon(0 5%, 100% 0, 95% 100%, 0 92%);
}
.vz-manifesto__visual img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.vz-manifesto__stamp {
    position: absolute; top: 2rem; right: -1rem;
    font-family: var(--vz-font-display);
    font-size: 1.2rem; padding: 0.5rem 1rem;
    background: var(--vz-copper); color: #fff;
    transform: rotate(-6deg);
}
.vz-manifesto__text h2 {
    font-family: var(--vz-font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1.5rem; line-height: 1.3;
}
.vz-manifesto__text h2 em { font-style: normal; color: var(--vz-copper); }
.vz-manifesto__body p {
    color: var(--vz-text-muted); margin-bottom: 1rem;
    font-size: 0.92rem;
}
.vz-manifesto__body { margin-bottom: 2rem; }

/* S3: Metric Drift */
.vz-drift {
    padding: 7rem 2rem;
    max-width: 1200px; margin: 0 auto;
}
.vz-drift__head h2 {
    font-family: var(--vz-font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-top: 0.5rem;
}
.vz-drift__head h2 em { font-style: normal; color: var(--vz-copper); }
.vz-drift__stream {
    display: flex; flex-wrap: wrap; gap: 1.5rem;
    margin-top: 3rem;
}
.vz-drift__cell {
    flex: 0 0 calc(33.33% - 1rem);
    padding: 2rem 1.5rem;
    background: var(--vz-bg-elevated);
    border: 1px solid var(--vz-line);
    position: relative;
    transition: var(--vz-transition);
}
.vz-drift__cell--left { margin-left: 0; transform: translateX(0); }
.vz-drift__cell--right { margin-left: auto; transform: translateX(2rem); }
.vz-drift__cell:hover {
    border-color: var(--vz-copper);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--vz-shadow);
}
.vz-drift__cell--right:hover { transform: translateX(2rem) translateY(-4px); }
.vz-drift__val {
    font-family: var(--vz-font-display);
    font-size: 2.8rem; font-weight: 700; color: var(--vz-copper);
    display: block;
}
.vz-drift__val small { font-size: 1rem; margin-left: 0.2rem; }
.vz-drift__label {
    font-size: 0.78rem; color: var(--vz-text-muted);
    letter-spacing: 0.08em; margin-top: 0.5rem; display: block;
}

/* S4: Collection Rail */
.vz-rail {
    padding: 6rem 0 4rem;
    background: var(--vz-bg-soft);
    clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
}
.vz-rail__head {
    max-width: 1400px; margin: 0 auto 2.5rem;
    padding: 0 2rem;
    display: flex; justify-content: space-between; align-items: flex-end;
}
.vz-rail__head h2 {
    font-family: var(--vz-font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 0.3rem;
}
.vz-rail__head h2 em { font-style: normal; color: var(--vz-copper); }
.vz-rail__track {
    display: flex; gap: 1.5rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 1rem 2rem 2rem;
    cursor: grab; scrollbar-width: none;
}
.vz-rail__track::-webkit-scrollbar { display: none; }
.vz-rail__track.is-dragging { cursor: grabbing; }
.vz-rail__card {
    flex: 0 0 340px; scroll-snap-align: start;
    background: var(--vz-bg-elevated);
    border: 1px solid var(--vz-line);
    transition: var(--vz-transition);
}
.vz-rail__card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: 0 20px 50px var(--vz-shadow);
}
.vz-rail__card-img { position: relative; overflow: hidden; }
.vz-rail__card-img img { aspect-ratio: 10/7; object-fit: cover; width: 100%; transition: transform 0.6s; }
.vz-rail__card:hover .vz-rail__card-img img { transform: scale(1.04); }
.vz-rail__badge {
    position: absolute; top: 1rem; left: 1rem;
    font-size: 0.65rem; letter-spacing: 0.1em;
    padding: 0.3rem 0.7rem; background: var(--vz-copper); color: #fff;
}
.vz-rail__card-body { padding: 1.2rem 1.4rem 1.4rem; }
.vz-rail__card-body h3 {
    font-family: var(--vz-font-display);
    font-size: 1rem; margin: 0.4rem 0 0.3rem;
}
.vz-rail__card-body p { font-size: 0.8rem; color: var(--vz-text-muted); }
.vz-rail__card-foot {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--vz-line);
}
.vz-rail__price { font-weight: 600; color: var(--vz-copper); font-size: 0.9rem; }
.vz-rail__hint {
    text-align: center; font-size: 0.7rem;
    color: var(--vz-text-muted); letter-spacing: 0.15em;
    padding-bottom: 1rem;
}

/* S5: Compare */
.vz-compare {
    padding: 7rem 2rem; max-width: 1100px; margin: 0 auto;
}
.vz-compare__head { text-align: center; margin-bottom: 3rem; }
.vz-compare__head h2 {
    font-family: var(--vz-font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0.5rem 0;
}
.vz-compare__head h2 em { font-style: normal; color: var(--vz-copper); }
.vz-compare__sub { color: var(--vz-text-muted); font-size: 0.88rem; }
.vz-compare__tabs {
    display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem;
}
.vz-compare__tab {
    padding: 0.6rem 1.2rem; font-size: 0.78rem;
    border: 1px solid var(--vz-line); color: var(--vz-text-muted);
    transition: var(--vz-transition);
}
.vz-compare__tab.is-active,
.vz-compare__tab:hover {
    border-color: var(--vz-copper); color: var(--vz-copper);
    background: rgba(184, 115, 51, 0.08);
}
.vz-compare__split {
    position: relative; overflow: hidden;
    aspect-ratio: 16/10; margin-bottom: 2rem;
    border: 1px solid var(--vz-line);
}
.vz-compare__pane { position: absolute; inset: 0; }
.vz-compare__pane img { width: 100%; height: 100%; object-fit: cover; }
.vz-compare__pane--b { clip-path: inset(0 0 0 50%); }
.vz-compare__handle {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 3px; background: var(--vz-copper);
    transform: translateX(-50%); z-index: 2;
    box-shadow: 0 0 12px rgba(184, 115, 51, 0.6);
}
.vz-compare__handle::after {
    content: '◆'; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--vz-copper); font-size: 1.2rem;
    background: var(--vz-bg); padding: 0.3rem;
}
.vz-compare__slider {
    width: 100%; margin-bottom: 1.5rem;
    accent-color: var(--vz-copper);
}
.vz-compare__specs dl {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}
.vz-compare__specs dt {
    font-size: 0.68rem; color: var(--vz-text-muted);
    letter-spacing: 0.1em; text-transform: uppercase;
}
.vz-compare__specs dd {
    font-family: var(--vz-font-display);
    font-size: 1.1rem; margin-top: 0.2rem;
}

/* S6: Experimental Rift */
.vz-rift {
    background: var(--vz-bg);
    padding: 8rem 0; position: relative;
}
.vz-rift__slant--top {
    position: absolute; top: 0; left: 0; right: 0; height: 60px;
    background: var(--vz-bg-soft);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.vz-rift__slant--bottom {
    position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
    background: var(--vz-bg-soft);
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.vz-rift__inner {
    max-width: 1200px; margin: 0 auto; padding: 0 2rem;
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 3rem; align-items: center;
}
.vz-rift__copy h2 {
    font-family: var(--vz-font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0.5rem 0 1rem;
}
.vz-rift__copy h2 em { font-style: normal; color: var(--vz-copper); }
.vz-rift__copy p { color: var(--vz-text-muted); font-size: 0.9rem; }
.vz-rift__tag {
    display: inline-block; margin-top: 1.5rem;
    font-size: 0.68rem; letter-spacing: 0.15em;
    padding: 0.4rem 0.8rem; border: 1px solid var(--vz-copper);
    color: var(--vz-copper);
}
.vz-rift__layers {
    position: relative; height: 420px;
    clip-path: polygon(5% 0, 100% 8%, 92% 100%, 0 90%);
}
.vz-rift__layer {
    position: absolute; overflow: hidden;
    box-shadow: 0 20px 60px var(--vz-shadow);
    transition: transform 0.1s linear;
}
.vz-rift__layer img { width: 100%; height: 100%; object-fit: cover; }
.vz-rift__layer--back {
    width: 85%; height: 75%; top: 5%; left: 0;
    clip-path: polygon(0 0, 100% 5%, 95% 100%, 5% 95%);
    opacity: 0.6;
}
.vz-rift__layer--mid {
    width: 80%; height: 70%; top: 15%; left: 10%;
    clip-path: polygon(3% 0, 97% 8%, 100% 92%, 0 100%);
    opacity: 0.8;
}
.vz-rift__layer--front {
    width: 75%; height: 65%; top: 25%; left: 18%;
    clip-path: polygon(0 5%, 100% 0, 98% 95%, 2% 100%);
    border: 2px solid var(--vz-copper);
}
.vz-rift__grid-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(var(--vz-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--vz-line) 1px, transparent 1px);
    background-size: 40px 40px; opacity: 0.15;
}

/* S7: Zigzag */
.vz-zigzag {
    padding: 7rem 2rem; max-width: 900px; margin: 0 auto;
    background: var(--vz-bg-soft);
}
.vz-zigzag__head h2 {
    font-family: var(--vz-font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 0.3rem;
}
.vz-zigzag__head h2 em { font-style: normal; color: var(--vz-copper); }
.vz-zigzag__path { margin-top: 3rem; position: relative; }
.vz-zigzag__path::before {
    content: ''; position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 1px; background: var(--vz-line);
}
.vz-zigzag__step {
    display: flex; align-items: flex-start; gap: 1.5rem;
    margin-bottom: 3rem; position: relative;
    width: 55%;
}
.vz-zigzag__step--left { margin-right: auto; padding-right: 2rem; text-align: right; flex-direction: row-reverse; }
.vz-zigzag__step--right { margin-left: auto; padding-left: 2rem; }
.vz-zigzag__num {
    font-family: var(--vz-font-display);
    font-size: 2rem; color: var(--vz-copper); opacity: 0.5;
    flex-shrink: 0;
}
.vz-zigzag__content h3 {
    font-family: var(--vz-font-display);
    font-size: 1.2rem; margin-bottom: 0.4rem;
}
.vz-zigzag__content p { font-size: 0.85rem; color: var(--vz-text-muted); }
.vz-zigzag__node {
    position: absolute; top: 0.5rem; left: 50%;
    transform: translateX(-50%);
    width: 10px; height: 10px;
    background: var(--vz-copper); border-radius: 50%;
    box-shadow: 0 0 0 4px var(--vz-bg-soft);
}

/* S8: Voices */
.vz-voices {
    padding: 7rem 2rem; max-width: 1200px; margin: 0 auto;
}
.vz-voices__head h2 {
    font-family: var(--vz-font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 0.3rem;
}
.vz-voices__head h2 em { font-style: normal; color: var(--vz-copper); }
.vz-voices__grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3rem;
}
.vz-voices__card {
    padding: 2rem; background: var(--vz-bg-elevated);
    border: 1px solid var(--vz-line);
    position: relative; transition: var(--vz-transition);
}
.vz-voices__card--up { transform: translateY(-1.5rem); }
.vz-voices__card--down { transform: translateY(1.5rem); }
.vz-voices__card:hover {
    border-color: var(--vz-copper);
    transform: translateY(0);
    box-shadow: 0 16px 40px var(--vz-shadow);
}
.vz-voices__card p {
    font-size: 0.88rem; color: var(--vz-text-muted);
    font-style: italic; margin-bottom: 1.5rem; line-height: 1.7;
}
.vz-voices__card cite {
    font-style: normal; font-weight: 600;
    display: block; font-size: 0.9rem;
}
.vz-voices__card footer span {
    font-size: 0.75rem; color: var(--vz-text-muted);
}

/* S9: Trust */
.vz-trust {
    padding: 6rem 2rem;
    background: var(--vz-bg-soft);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}
.vz-trust__inner { max-width: 1100px; margin: 0 auto; }
.vz-trust__inner h2 {
    font-family: var(--vz-font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem); margin-top: 0.3rem;
}
.vz-trust__inner h2 em { font-style: normal; color: var(--vz-copper); }
.vz-trust__grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; margin-top: 3rem;
}
.vz-trust__item {
    padding: 1.5rem; text-align: center;
    border: 1px solid var(--vz-line);
    transition: var(--vz-transition);
}
.vz-trust__item:hover { border-color: var(--vz-copper); transform: translateY(-4px); }
.vz-trust__icon {
    font-size: 1.4rem; color: var(--vz-copper);
    display: block; margin-bottom: 0.8rem;
}
.vz-trust__item h3 {
    font-family: var(--vz-font-display);
    font-size: 0.95rem; margin-bottom: 0.5rem;
}
.vz-trust__item p { font-size: 0.78rem; color: var(--vz-text-muted); }

/* S10: Vault */
.vz-vault {
    padding: 8rem 2rem;
    background: linear-gradient(160deg, var(--vz-bg) 0%, #2a1f18 100%);
    min-height: 80vh;
}
.vz-vault__inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 0.85fr;
    gap: 4rem; align-items: center;
    transition: var(--vz-transition);
}
.vz-vault__inner.is-pinned { position: sticky; top: 100px; }
.vz-vault__copy h2 {
    font-family: var(--vz-font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem); margin: 0.5rem 0 1rem;
}
.vz-vault__copy h2 em { font-style: normal; color: var(--vz-copper-light); }
.vz-vault__copy > p { color: var(--vz-text-muted); margin-bottom: 2rem; font-size: 0.92rem; }
.vz-vault__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.vz-vault__contact {
    display: flex; gap: 2rem; font-size: 0.82rem;
}
.vz-vault__contact dt { color: var(--vz-text-muted); }
.vz-vault__contact a { color: var(--vz-copper-light); }
.vz-vault__frame {
    position: relative;
    clip-path: polygon(10% 0, 100% 5%, 90% 100%, 0 95%);
}
.vz-vault__frame img { aspect-ratio: 6/7; object-fit: cover; width: 100%; }
.vz-vault__glow {
    position: absolute; inset: -20%;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.25) 0%, transparent 70%);
    pointer-events: none;
}

/* ══ Inner Pages ══ */
.vz-page-hero {
    padding: 5rem 2rem 4rem;
    position: relative; overflow: hidden;
}
.vz-page-hero--slant::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40px;
    background: var(--vz-bg-soft);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.vz-page-hero__inner { max-width: 800px; }
.vz-page-hero h1 {
    font-family: var(--vz-font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin: 0.5rem 0 1rem; line-height: 1.2;
}
.vz-page-hero h1 em { font-style: normal; color: var(--vz-copper); }
.vz-page-hero__lead { color: var(--vz-text-muted); font-size: 0.95rem; max-width: 560px; }

/* About */
.vz-about-story { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.vz-about-story__grid {
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: center;
}
.vz-about-story__visual {
    clip-path: polygon(0 0, 95% 5%, 100% 95%, 5% 100%);
    position: relative;
}
.vz-about-story__visual img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.vz-about-story__caption {
    position: absolute; bottom: 1rem; left: 1rem;
    font-size: 0.68rem; letter-spacing: 0.12em; color: var(--vz-sand);
}
.vz-about-story__copy h2 {
    font-family: var(--vz-font-display);
    font-size: 1.8rem; margin-bottom: 1.5rem;
}
.vz-about-story__copy h2 em { font-style: normal; color: var(--vz-copper); }
.vz-about-story__copy p { color: var(--vz-text-muted); margin-bottom: 1rem; font-size: 0.9rem; }

.vz-about-mission {
    background: var(--vz-bg-soft); padding: 5rem 2rem; position: relative;
}
.vz-about-mission__slant {
    position: absolute; top: 0; left: 0; right: 0; height: 50px;
    background: var(--vz-bg); clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.vz-about-mission__inner { max-width: 700px; margin: 0 auto; text-align: center; }
.vz-about-mission blockquote {
    font-family: var(--vz-font-display);
    font-size: 1.4rem; margin: 1rem 0 1.5rem; line-height: 1.6;
    color: var(--vz-copper);
}
.vz-about-mission p { color: var(--vz-text-muted); font-size: 0.9rem; }

.vz-about-values { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.vz-about-values__head h2 {
    font-family: var(--vz-font-display);
    font-size: 2rem; margin-top: 0.3rem;
}
.vz-about-values__head h2 em { font-style: normal; color: var(--vz-copper); }
.vz-about-values__grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; margin-top: 2.5rem;
}
.vz-about-values__card {
    padding: 2rem; border: 1px solid var(--vz-line);
    transition: var(--vz-transition);
}
.vz-about-values__card:hover { border-color: var(--vz-copper); }
.vz-about-values__num {
    font-family: var(--vz-font-display);
    font-size: 2.5rem; color: var(--vz-copper); opacity: 0.3;
}
.vz-about-values__card h3 {
    font-family: var(--vz-font-display);
    margin: 0.5rem 0; font-size: 1.1rem;
}
.vz-about-values__card p { font-size: 0.85rem; color: var(--vz-text-muted); }

.vz-about-timeline { padding: 5rem 2rem; background: var(--vz-bg-soft); }
.vz-about-timeline__head { max-width: 1100px; margin: 0 auto 2.5rem; }
.vz-about-timeline__head h2 {
    font-family: var(--vz-font-display); font-size: 2rem; margin-top: 0.3rem;
}
.vz-about-timeline__head h2 em { font-style: normal; color: var(--vz-copper); }
.vz-about-timeline__wrap {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 3rem;
}
.vz-about-timeline__visual img { aspect-ratio: 5/7; object-fit: cover; width: 100%; }
.vz-about-timeline__event {
    display: flex; gap: 1.5rem; margin-bottom: 2rem;
    padding-bottom: 2rem; border-bottom: 1px solid var(--vz-line);
}
.vz-about-timeline__year {
    font-family: var(--vz-font-display);
    font-size: 1.4rem; color: var(--vz-copper); flex-shrink: 0;
    width: 60px;
}
.vz-about-timeline__content h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.vz-about-timeline__content p { font-size: 0.85rem; color: var(--vz-text-muted); }

.vz-about-location { padding: 5rem 2rem; max-width: 900px; margin: 0 auto; }
.vz-about-location__inner {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem;
}
.vz-about-location__copy h2 {
    font-family: var(--vz-font-display); font-size: 1.8rem; margin: 0.5rem 0 1rem;
}
.vz-about-location__copy h2 em { font-style: normal; color: var(--vz-copper); }
.vz-about-location__copy p { font-size: 0.88rem; color: var(--vz-text-muted); margin-bottom: 0.8rem; }
.vz-about-location__meta {
    padding: 1.5rem; background: var(--vz-bg-soft);
    border: 1px solid var(--vz-line);
}
.vz-about-location__meta div { margin-bottom: 1rem; }
.vz-about-location__meta dt { font-size: 0.7rem; color: var(--vz-text-muted); letter-spacing: 0.1em; }
.vz-about-location__meta dd { font-size: 0.9rem; margin-top: 0.2rem; }

.vz-about-cta {
    padding: 5rem 2rem; background: var(--vz-bg-soft);
    text-align: center;
}
.vz-about-cta h2 {
    font-family: var(--vz-font-display); font-size: 2rem; margin-bottom: 0.8rem;
}
.vz-about-cta h2 em { font-style: normal; color: var(--vz-copper); }
.vz-about-cta p { color: var(--vz-text-muted); margin-bottom: 1.5rem; }
.vz-about-cta__actions { display: flex; gap: 1rem; justify-content: center; }

/* Shop */
.vz-shop {
    max-width: 1400px; margin: 0 auto; padding: 3rem 2rem 5rem;
    display: grid; grid-template-columns: 260px 1fr; gap: 3rem;
}
.vz-shop__filter {
    position: sticky; top: calc(var(--vz-nav-h) + 2rem);
    align-self: start;
    padding: 1.5rem; background: var(--vz-bg-elevated);
    border: 1px solid var(--vz-line);
}
.vz-shop__filter-head {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 1.5rem;
}
.vz-shop__filter-head h2 { font-size: 0.9rem; letter-spacing: 0.08em; }
.vz-shop__filter-reset {
    font-size: 0.72rem; color: var(--vz-copper);
}
.vz-shop__search { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.vz-shop__search input {
    padding: 0.7rem; background: var(--vz-bg-soft);
    border: 1px solid var(--vz-line); color: var(--vz-text);
    font-size: 0.85rem;
}
.vz-shop__search input:focus { outline: none; border-color: var(--vz-copper); }
.vz-shop__cats { display: flex; flex-direction: column; gap: 0.3rem; }
.vz-shop__cat {
    padding: 0.5rem 0.8rem; font-size: 0.82rem;
    color: var(--vz-text-muted); transition: var(--vz-transition);
}
.vz-shop__cat:hover,
.vz-shop__cat.is-active { color: var(--vz-copper); background: rgba(184, 115, 51, 0.08); }
.vz-shop__filter-meta {
    margin-top: 1.5rem; padding-top: 1rem;
    border-top: 1px solid var(--vz-line);
    font-size: 0.78rem; color: var(--vz-text-muted);
}
.vz-shop__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}
.vz-shop__card {
    background: var(--vz-bg-elevated); border: 1px solid var(--vz-line);
    transition: var(--vz-transition); overflow: hidden;
}
.vz-shop__card:hover {
    transform: translateY(-4px) rotate(0.3deg);
    box-shadow: 0 16px 40px var(--vz-shadow);
    border-color: var(--vz-copper);
}
.vz-shop__card-img { position: relative; overflow: hidden; }
.vz-shop__card-img img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.vz-shop__badge {
    position: absolute; top: 0.8rem; left: 0.8rem;
    font-size: 0.62rem; padding: 0.25rem 0.6rem;
    background: var(--vz-copper); color: #fff;
}
.vz-shop__card-body { padding: 1.2rem; }
.vz-shop__card-body h3 {
    font-family: var(--vz-font-display);
    font-size: 0.95rem; margin: 0.3rem 0 0.5rem;
}
.vz-shop__specs { font-size: 0.75rem; color: var(--vz-text-muted); }
.vz-shop__specs li { margin-bottom: 0.2rem; }
.vz-shop__card-foot {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--vz-line);
}
.vz-shop__price { font-weight: 600; color: var(--vz-copper); font-size: 0.88rem; }
.vz-shop__empty { grid-column: 1 / -1; text-align: center; padding: 4rem; }
.vz-shop__empty p { color: var(--vz-text-muted); margin-bottom: 1rem; }

.vz-shop-process {
    padding: 4rem 2rem 6rem; max-width: 1100px; margin: 0 auto;
    border-top: 1px solid var(--vz-line);
}
.vz-shop-process h2 {
    font-family: var(--vz-font-display); font-size: 1.8rem; margin-top: 0.3rem;
}
.vz-shop-process h2 em { font-style: normal; color: var(--vz-copper); }
.vz-shop-process__steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem; margin-top: 2rem;
}
.vz-shop-process__steps article {
    padding: 1.5rem; border: 1px solid var(--vz-line);
}
.vz-shop-process__steps span {
    font-family: var(--vz-font-display);
    font-size: 1.8rem; color: var(--vz-copper); opacity: 0.4;
}
.vz-shop-process__steps h3 { font-size: 0.9rem; margin: 0.5rem 0; }
.vz-shop-process__steps p { font-size: 0.78rem; color: var(--vz-text-muted); }
.vz-shop-process__note {
    margin-top: 2rem; font-size: 0.78rem; color: var(--vz-text-muted);
    text-align: center;
}

/* FAQ */
.vz-faq { max-width: 800px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.vz-faq__tabs {
    display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 2rem;
}
.vz-faq__tab {
    padding: 0.6rem 1rem; font-size: 0.78rem;
    border: 1px solid var(--vz-line); color: var(--vz-text-muted);
    transition: var(--vz-transition);
}
.vz-faq__tab.is-active,
.vz-faq__tab:hover { border-color: var(--vz-copper); color: var(--vz-copper); }
.vz-faq__item {
    border-bottom: 1px solid var(--vz-line); margin-bottom: 0;
}
.vz-faq__item summary {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 0; cursor: pointer; list-style: none;
}
.vz-faq__item summary::-webkit-details-marker { display: none; }
.vz-faq__q { font-size: 0.92rem; font-weight: 500; padding-right: 1rem; }
.vz-faq__toggle {
    width: 20px; height: 20px; flex-shrink: 0;
    border: 1px solid var(--vz-line); position: relative;
    transition: var(--vz-transition);
}
.vz-faq__toggle::before,
.vz-faq__toggle::after {
    content: ''; position: absolute; background: var(--vz-copper);
    top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.vz-faq__toggle::before { width: 10px; height: 1px; }
.vz-faq__toggle::after { width: 1px; height: 10px; transition: var(--vz-transition); }
.vz-faq__item[open] .vz-faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.vz-faq__a { padding: 0 0 1.2rem; }
.vz-faq__a p { font-size: 0.88rem; color: var(--vz-text-muted); line-height: 1.7; }

.vz-faq-cta {
    padding: 4rem 2rem; background: var(--vz-bg-soft);
    text-align: center;
}
.vz-faq-cta h2 {
    font-family: var(--vz-font-display); font-size: 1.8rem; margin-bottom: 0.8rem;
}
.vz-faq-cta h2 em { font-style: normal; color: var(--vz-copper); }
.vz-faq-cta p { color: var(--vz-text-muted); margin-bottom: 1.5rem; font-size: 0.9rem; }
.vz-faq-cta__actions { display: flex; gap: 1rem; justify-content: center; }

/* Contact */
.vz-contact {
    max-width: 1100px; margin: 0 auto; padding: 3rem 2rem 4rem;
}
.vz-contact__grid {
    display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem;
}
.vz-contact__info h2,
.vz-contact__form h2 {
    font-family: var(--vz-font-display);
    font-size: 1.4rem; margin-bottom: 1.5rem;
}
.vz-contact__dl div { margin-bottom: 1.2rem; }
.vz-contact__dl dt { font-size: 0.7rem; color: var(--vz-text-muted); letter-spacing: 0.1em; }
.vz-contact__dl dd { font-size: 0.9rem; margin-top: 0.2rem; }
.vz-contact__visual { margin-top: 2rem; clip-path: polygon(0 0, 100% 5%, 95% 100%, 5% 95%); }
.vz-contact__visual img { aspect-ratio: 3/2; object-fit: cover; width: 100%; }
.vz-contact__form {
    padding: 2rem; background: var(--vz-bg-elevated);
    border: 1px solid var(--vz-line);
}
.vz-contact__field { margin-bottom: 1.2rem; }
.vz-contact__field label {
    display: block; font-size: 0.78rem; margin-bottom: 0.4rem;
    color: var(--vz-text-muted);
}
.vz-contact__field label span { color: var(--vz-copper); }
.vz-contact__field input,
.vz-contact__field select,
.vz-contact__field textarea {
    width: 100%; padding: 0.75rem 1rem;
    background: var(--vz-bg-soft); border: 1px solid var(--vz-line);
    color: var(--vz-text); font-size: 0.9rem; font-family: inherit;
    border-radius: var(--vz-radius);
}
.vz-contact__field input:focus,
.vz-contact__field select:focus,
.vz-contact__field textarea:focus {
    outline: none; border-color: var(--vz-copper);
}
.vz-contact__note { font-size: 0.75rem; color: var(--vz-text-muted); margin-top: 1rem; }

.vz-contact-map { padding: 0 2rem 5rem; max-width: 1100px; margin: 0 auto; }
.vz-contact-map h2 {
    font-family: var(--vz-font-display); font-size: 1.4rem; margin-bottom: 1rem;
}
.vz-contact-map__frame {
    border: 1px solid var(--vz-line); overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%);
}
.vz-contact-map__addr {
    margin-top: 1rem; font-size: 0.82rem; color: var(--vz-text-muted);
}

/* Cart */
.vz-cart {
    max-width: 1100px; margin: 0 auto; padding: 2rem 2rem 5rem;
    display: grid; grid-template-columns: 1fr 320px; gap: 2rem;
}
.vz-cart__empty {
    grid-column: 1 / -1; text-align: center; padding: 4rem;
}
.vz-cart__empty p { color: var(--vz-text-muted); margin-bottom: 1.5rem; }
.vz-cart__table { border: 1px solid var(--vz-line); }
.vz-cart__head {
    display: grid; grid-template-columns: 2fr 1fr 0.8fr 1fr 40px;
    gap: 1rem; padding: 0.8rem 1.2rem;
    font-size: 0.72rem; color: var(--vz-text-muted);
    letter-spacing: 0.08em; border-bottom: 1px solid var(--vz-line);
    background: var(--vz-bg-soft);
}
.vz-cart-row {
    display: grid; grid-template-columns: 2fr 1fr 0.8fr 1fr 40px;
    gap: 1rem; padding: 1rem 1.2rem; align-items: center;
    border-bottom: 1px solid var(--vz-line);
}
.vz-cart-row__product { display: flex; align-items: center; gap: 1rem; }
.vz-cart-row__product img {
    width: 80px; height: 56px; object-fit: cover;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}
.vz-cart-row__name { font-size: 0.85rem; }
.vz-cart-qty {
    display: flex; align-items: center; gap: 0.5rem;
}
.vz-cart-qty button {
    width: 28px; height: 28px; border: 1px solid var(--vz-line);
    color: var(--vz-text); font-size: 1rem;
}
.vz-cart-qty button:hover { border-color: var(--vz-copper); color: var(--vz-copper); }
.vz-cart-row__remove {
    font-size: 1.2rem; color: var(--vz-text-muted);
}
.vz-cart-row__remove:hover { color: #c44; }
.vz-cart__side {
    padding: 1.5rem; background: var(--vz-bg-elevated);
    border: 1px solid var(--vz-line); align-self: start;
    position: sticky; top: calc(var(--vz-nav-h) + 2rem);
}
.vz-cart__side h2 { font-size: 1rem; margin-bottom: 1.2rem; }
.vz-cart__totals div {
    display: flex; justify-content: space-between;
    font-size: 0.85rem; margin-bottom: 0.6rem;
    color: var(--vz-text-muted);
}
.vz-cart__total {
    font-weight: 600; color: var(--vz-text) !important;
    padding-top: 0.8rem; margin-top: 0.8rem;
    border-top: 1px solid var(--vz-line); font-size: 1rem !important;
}
.vz-cart__coupon { margin: 1.5rem 0; }
.vz-cart__coupon label { font-size: 0.78rem; color: var(--vz-text-muted); }
.vz-cart__coupon-row { display: flex; gap: 0.5rem; margin-top: 0.4rem; }
.vz-cart__coupon-row input {
    flex: 1; padding: 0.6rem; background: var(--vz-bg-soft);
    border: 1px solid var(--vz-line); color: var(--vz-text);
}
.vz-cart__coupon-hint { font-size: 0.72rem; color: var(--vz-text-muted); margin-top: 0.4rem; }
.vz-cart__checkout { width: 100%; margin-top: 0.5rem; }
.vz-cart__note { font-size: 0.72rem; color: var(--vz-text-muted); margin-top: 1rem; }

/* Legal */
.vz-legal {
    max-width: 760px; margin: 0 auto; padding: 3rem 2rem 5rem;
}
.vz-legal__head { margin-bottom: 3rem; padding-bottom: 2rem; border-bottom: 1px solid var(--vz-line); }
.vz-legal__head h1 {
    font-family: var(--vz-font-display);
    font-size: 2rem; margin: 0.5rem 0;
}
.vz-legal__updated { font-size: 0.78rem; color: var(--vz-text-muted); }
.vz-legal__body section { margin-bottom: 2.5rem; }
.vz-legal__body h2 {
    font-family: var(--vz-font-display);
    font-size: 1.2rem; margin-bottom: 1rem; color: var(--vz-copper);
}
.vz-legal__body h3 { font-size: 0.95rem; margin: 1.2rem 0 0.6rem; }
.vz-legal__body p { font-size: 0.88rem; color: var(--vz-text-muted); margin-bottom: 0.8rem; line-height: 1.75; }
.vz-legal__body ul { margin: 0.8rem 0 1rem 1.2rem; }
.vz-legal__body li {
    font-size: 0.88rem; color: var(--vz-text-muted);
    margin-bottom: 0.4rem; list-style: disc;
}

/* Footer */
.vz-ledger {
    position: relative; background: var(--vz-bg-elevated);
    border-top: 1px solid var(--vz-line);
    margin-top: 4rem;
}
.vz-ledger__slant {
    position: absolute; top: -40px; left: 0; right: 0; height: 40px;
    background: var(--vz-bg-elevated);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.vz-ledger__wrap {
    max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 2rem;
}
.vz-ledger__mast {
    display: flex; justify-content: space-between; align-items: flex-start;
    margin-bottom: 3rem; padding-bottom: 2rem;
    border-bottom: 1px solid var(--vz-line);
}
.vz-ledger__brand { display: flex; align-items: center; gap: 1rem; }
.vz-ledger__kanji {
    font-family: var(--vz-font-display);
    font-size: 2.5rem; color: var(--vz-copper);
    writing-mode: vertical-rl;
}
.vz-ledger__brand strong { font-size: 1.3rem; display: block; }
.vz-ledger__brand p { font-size: 0.82rem; color: var(--vz-text-muted); }
.vz-ledger__domain { font-size: 0.72rem; color: var(--vz-text-muted); letter-spacing: 0.1em; }
.vz-ledger__cols {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem;
}
.vz-ledger__col h3 {
    font-size: 0.72rem; letter-spacing: 0.12em;
    color: var(--vz-copper); margin-bottom: 1rem;
}
.vz-ledger__col p,
.vz-ledger__col a {
    display: block; font-size: 0.82rem;
    color: var(--vz-text-muted); margin-bottom: 0.4rem;
}
.vz-ledger__col a:hover { color: var(--vz-copper); }
.vz-ledger__base {
    max-width: 1200px; margin: 0 auto;
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--vz-line);
    display: flex; justify-content: space-between; align-items: center;
}
.vz-ledger__base p { font-size: 0.72rem; color: var(--vz-text-muted); }
.vz-ledger__top {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.72rem; color: var(--vz-text-muted);
    letter-spacing: 0.1em; transition: var(--vz-transition);
}
.vz-ledger__top:hover { color: var(--vz-copper); }

/* Toast */
.vz-toast {
    position: fixed; bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 0.8rem 1.6rem;
    background: var(--vz-bg-elevated);
    border: 1px solid var(--vz-copper);
    color: var(--vz-text); font-size: 0.85rem;
    z-index: 990; opacity: 0;
    transition: transform 0.4s, opacity 0.4s;
    pointer-events: none;
}
.vz-toast.is-visible {
    transform: translateX(-50%) translateY(0); opacity: 1;
}

body.menu-open { overflow: hidden; }

/* ══ Responsive ══ */
@media (max-width: 1100px) {
    .vz-threshold__grid { grid-template-columns: 1fr; }
    .vz-threshold__frame { margin-right: 0; clip-path: none; }
    .vz-manifesto__inner { grid-template-columns: 1fr; }
    .vz-manifesto__visual { margin-left: 0; }
    .vz-drift__cell { flex: 0 0 calc(50% - 0.75rem); }
    .vz-drift__cell--right { transform: none; }
    .vz-rift__inner { grid-template-columns: 1fr; }
    .vz-rift__layers { height: 320px; }
    .vz-voices__grid { grid-template-columns: 1fr; }
    .vz-voices__card--up,
    .vz-voices__card--down { transform: none; }
    .vz-trust__grid { grid-template-columns: repeat(2, 1fr); }
    .vz-vault__inner { grid-template-columns: 1fr; }
    .vz-about-story__grid,
    .vz-about-timeline__wrap,
    .vz-about-location__inner { grid-template-columns: 1fr; }
    .vz-shop { grid-template-columns: 1fr; }
    .vz-shop__filter { position: static; }
    .vz-shop-process__steps { grid-template-columns: repeat(2, 1fr); }
    .vz-contact__grid { grid-template-columns: 1fr; }
    .vz-cart { grid-template-columns: 1fr; }
    .vz-cart__side { position: static; }
    .vz-ledger__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .vz-ribbon { display: none; }
    .vz-mobilebar { display: flex; }
    .vz-main { padding-top: 56px; }
    .vz-drift__cell { flex: 0 0 100%; }
    .vz-zigzag__path::before { display: none; }
    .vz-zigzag__step,
    .vz-zigzag__step--left,
    .vz-zigzag__step--right {
        width: 100%; margin: 0; padding: 0;
        flex-direction: row; text-align: left;
    }
    .vz-zigzag__node { display: none; }
    .vz-trust__grid { grid-template-columns: 1fr; }
    .vz-about-values__grid { grid-template-columns: 1fr; }
    .vz-shop-process__steps { grid-template-columns: 1fr; }
    .vz-cart__head { display: none; }
    .vz-cart-row {
        grid-template-columns: 1fr; gap: 0.5rem;
        padding: 1.2rem;
    }
    .vz-ledger__mast { flex-direction: column; gap: 1rem; }
    .vz-ledger__cols { grid-template-columns: 1fr; }
    .vz-rail__card { flex: 0 0 280px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}
