:root {
    --ink: #1c2740;
    --navy: #243056;
    --gold: #c9a227;
    --gold-deep: #9a7a18;
    --paper: #f6efe2;
    --paper-2: #efe4d0;
    --cream: #fffaf3;
    --rose: #b85c4a;
    --line: #d9cbb3;
    --muted: #6b6258;
    --ok: #2f6b4f;
    --bad: #8b2e2e;
    --shadow: 0 18px 40px rgba(28, 39, 64, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Karla, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--navy);
    text-decoration: none;
}

a:hover {
    color: var(--gold-deep);
}

h1, h2, h3, h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    margin: 0 0 12px;
    color: var(--ink);
}

p {
    margin: 0 0 14px;
}

.vt-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.vt-wrap {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.vt-body {
    flex: 1;
}

/* Masthead — centered magazine, not left-logo right-nav */
.vt-mast {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}

.vt-rail {
    display: flex;
    justify-content: center;
    gap: 28px;
    padding: 8px 16px;
    background: var(--ink);
    color: #f3ead8;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vt-rail a {
    color: #f3ead8;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vt-rail a:hover {
    color: var(--gold);
}

.vt-mast-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 0 8px;
    position: relative;
}

.vt-brand img {
    width: 220px;
    height: auto;
}

.vt-menu-btn {
    display: none;
    position: absolute;
    right: 0;
    top: 22px;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    cursor: pointer;
}

.vt-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 10px 0 16px;
    padding: 0;
    flex-wrap: wrap;
}

.vt-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 14px;
    letter-spacing: 0.04em;
    color: var(--ink);
}

.vt-link i {
    font-size: 12px;
}

.vt-link.is-current:not(.vt-kind-stamp) {
    box-shadow: inset 0 -2px 0 var(--gold);
}

.vt-kind-stamp {
    background: var(--gold);
    color: var(--ink);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 12px 22px;
    box-shadow: 4px 4px 0 var(--ink);
    margin-left: 10px;
}

.vt-kind-stamp:hover,
.vt-kind-stamp.is-current,
.vt-kind-stamp.is-current:hover {
    color: var(--ink);
    background: #d8b33a;
}

.vt-link.is-current {
    color: var(--gold-deep);
}

.vt-kind-stamp.is-current {
    outline: 2px solid var(--ink);
    outline-offset: 3px;
}

/* Cover plate — image first, caption below */
.vt-cover {
    background: var(--ink);
}

.vt-cover-art {
    position: relative;
}

.vt-cover-art > img {
    width: 100%;
    height: calc(100svh - 210px);
    min-height: 320px;
    max-height: 620px;
    object-fit: cover;
    display: block;
}

.vt-cover-play {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(255, 250, 243, 0.94);
    border: 2px solid var(--gold);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.vt-cover-play a {
    line-height: 0;
}

.vt-cover-play img {
    height: 76px;
    width: auto;
    display: block;
}

.vt-cover-play a:hover img {
    transform: scale(1.05);
    transition: transform 0.15s ease;
}

.vt-cover-caption {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 28px 0 36px;
    color: var(--cream);
}

.vt-cover-caption h1 {
    color: var(--cream);
    font-size: clamp(36px, 6vw, 64px);
    margin-bottom: 8px;
}

.vt-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.vt-lead {
    font-size: 18px;
    max-width: 680px;
    color: inherit;
}

.vt-play-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.vt-play-row img {
    height: 48px;
    width: auto;
}

/* Folio / editorial sections */
.vt-folio {
    padding: 56px 0;
}

.vt-folio + .vt-folio {
    padding-top: 0;
}

.vt-statement {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.vt-statement h2 {
    font-size: 40px;
}

.vt-ribbon {
    display: grid;
    gap: 28px;
    margin-bottom: 48px;
}

.vt-ribbon-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
}

.vt-ribbon-row.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

.vt-ribbon-row.reverse .vt-copy {
    order: 2;
}

.vt-frame {
    overflow: hidden;
    border: 8px solid var(--cream);
    box-shadow: var(--shadow);
}

.vt-frame img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.vt-copy h3 {
    font-size: 32px;
}

.vt-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--gold-deep);
}

.vt-shots {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.vt-shots img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border: 6px solid var(--cream);
    box-shadow: var(--shadow);
}

.vt-shots img:first-child {
    height: 360px;
}

.vt-shots img:nth-child(3) {
    margin-top: 40px;
}

.vt-ledger-strip {
    background: var(--navy);
    color: var(--cream);
    padding: 36px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
}

.vt-ledger-strip h3 {
    color: var(--cream);
    font-size: 32px;
}

.vt-ledger-strip p {
    margin: 0;
    color: #e7dcc4;
}

.vt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vt-btn-gold {
    background: var(--gold);
    color: var(--ink);
    box-shadow: 4px 4px 0 #0e1424;
}

.vt-btn-gold:hover {
    background: #d8b33a;
    color: var(--ink);
}

.vt-btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.vt-btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-deep);
}

.vt-calling-mini {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 20px;
    border-top: 1px dashed var(--line);
    border-bottom: 1px dashed var(--line);
}

.vt-calling-mini i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: grid;
    place-items: center;
}

/* Inner pages */
.vt-chapter {
    padding: 36px 0 64px;
}

.vt-banner-art {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    margin-bottom: 36px;
}

.vt-prose {
    max-width: 700px;
    margin: 0 auto;
}

.vt-prose h1 {
    font-size: 46px;
    text-align: center;
}

.vt-pull {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-style: italic;
    font-size: 28px;
    line-height: 1.35;
    color: var(--gold-deep);
    margin: 28px 0;
    padding: 8px 0 8px 22px;
    border-left: 3px solid var(--gold);
}

.vt-facts {
    margin-top: 36px;
    display: grid;
    gap: 10px;
}

.vt-facts div {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.vt-facts dt {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--muted);
}

/* Game chapter */
.vt-game-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 40px;
}

.vt-game-open > img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.vt-game-open .vt-play-row img {
    width: auto;
    height: 64px;
    border-radius: 0;
    box-shadow: none;
}

.vt-feature-lane {
    display: grid;
    gap: 28px;
}

.vt-feature {
    display: grid;
    grid-template-columns: 88px 1fr 280px;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.vt-feature:nth-child(even) {
    grid-template-columns: 280px 88px 1fr;
}

.vt-feature:nth-child(even) .vt-feature-num { order: 2; }
.vt-feature:nth-child(even) .vt-feature-copy { order: 3; }
.vt-feature:nth-child(even) img { order: 1; }

.vt-feature-num {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 42px;
    color: var(--gold);
}

.vt-feature img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border: 4px solid var(--cream);
}

.vt-gallery-offset {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.vt-gallery-offset img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border: 6px solid var(--cream);
    box-shadow: var(--shadow);
}

.vt-gallery-offset img:nth-child(2) {
    margin-top: 48px;
}

/* Contact — letterhead, stacked rows */
.vt-letterhead img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    margin-bottom: 28px;
}

.vt-card-sheet {
    max-width: 640px;
    margin: 0 auto;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 32px;
    box-shadow: var(--shadow);
}

.vt-card-sheet h1 {
    text-align: center;
    margin-bottom: 24px;
}

.vt-line {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px dashed var(--line);
}

.vt-line:last-of-type {
    border-bottom: 0;
}

.vt-badge {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.vt-line strong {
    display: block;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Store — coin row then full-width ledger */
.vt-notes {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 10px;
}

.vt-notes li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: var(--cream);
    padding: 12px 16px;
    border-left: 4px solid var(--gold);
}

.vt-money-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
}

.vt-money-btn {
    border: 1px solid var(--line);
    background: var(--cream);
    padding: 8px 14px;
    cursor: pointer;
    font-family: inherit;
    font-weight: 700;
}

.vt-money-btn.is-on {
    background: var(--gold);
    border-color: var(--gold);
}

.vt-coin-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    max-height: 220px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding: 8px;
    border: 1px solid var(--line);
    background: var(--paper-2);
}

.vt-coin {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 6px 8px;
    cursor: pointer;
    text-align: left;
}

.vt-coin img {
    width: 28px;
    height: 28px;
    margin: 0;
    flex-shrink: 0;
}

.vt-coin-meta {
    min-width: 0;
    flex: 1;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.vt-coin-title {
    font-weight: 700;
    font-size: 12px;
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vt-coin-price {
    color: var(--gold-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.vt-coin.is-on {
    border-color: var(--gold);
    box-shadow: 2px 2px 0 var(--ink);
    background: #fff8e5;
}

.vt-order-sheet {
    max-width: 680px;
    margin: 0 auto;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 28px;
}

.vt-order-sheet h2 {
    font-size: 32px;
    text-align: center;
}

.vt-picked {
    text-align: center;
    margin-bottom: 18px;
    color: var(--muted);
}

.vt-field {
    margin-bottom: 16px;
}

.vt-field label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}

.vt-field input[type="text"],
.vt-field input[type="email"] {
    width: 100%;
    height: 46px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 0 12px;
    font-family: inherit;
    font-size: 15px;
}

.vt-field input[readonly] {
    background: var(--paper-2);
}

.vt-pay-list {
    display: grid;
    gap: 8px;
}

.vt-pay {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    padding: 10px 12px;
    cursor: pointer;
}

.vt-pay.is-on {
    border-color: var(--gold);
    background: #fff8e5;
}

.vt-pay.is-show-only {
    opacity: 0.72;
}

.vt-agree {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 16px 0;
    font-size: 14px;
}

.vt-err {
    display: block;
    color: var(--bad);
    font-size: 13px;
    min-height: 16px;
    margin-top: 4px;
}

.vt-alert {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #f8e6e4;
    color: var(--bad);
    padding: 12px 14px;
    margin-bottom: 18px;
    border-left: 4px solid var(--bad);
}

.vt-trap {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

.vt-empty,
.vt-load {
    padding: 24px;
    text-align: center;
    color: var(--muted);
}

/* Confirm / result */
.vt-letter {
    max-width: 640px;
    margin: 40px auto;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 32px;
    box-shadow: var(--shadow);
}

.vt-letter table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}

.vt-letter th,
.vt-letter td {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.vt-letter th {
    width: 140px;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vt-total {
    font-size: 22px;
    color: var(--gold-deep);
    font-family: "Cormorant Garamond", Georgia, serif;
}

.vt-count {
    font-size: 48px;
    text-align: center;
    font-family: "Cormorant Garamond", Georgia, serif;
    color: var(--gold);
}

.vt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.vt-result {
    max-width: 640px;
    margin: 48px auto;
    text-align: center;
    background: var(--cream);
    border: 1px solid var(--line);
    padding: 40px 28px;
}

.vt-result i {
    font-size: 46px;
    margin-bottom: 12px;
}

.vt-result.ok i { color: var(--ok); }
.vt-result.bad i { color: var(--bad); }

/* Footer — stacked sitemap, not brand-left or centered-only */
.vt-colophon {
    background: var(--ink);
    color: #e7dcc4;
    padding: 36px 0 24px;
    margin-top: auto;
}

.vt-colophon-grid {
    display: grid;
    gap: 18px;
}

.vt-colophon-mark {
    display: flex;
    gap: 16px;
    align-items: center;
}

.vt-colophon-mark img {
    width: 140px;
    background: var(--cream);
    padding: 6px;
}

.vt-colophon-mark span,
.vt-colophon-mark strong {
    display: block;
}

.vt-colophon-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
}

.vt-colophon-nav a {
    color: #e7dcc4;
    font-size: 14px;
}

.vt-colophon-nav a:hover {
    color: var(--gold);
}

.vt-colophon-copy {
    margin: 0;
    font-size: 13px;
    color: #b7ae9d;
}

.vt-zoom {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(14, 20, 36, 0.88);
    z-index: 80;
    place-items: center;
    padding: 24px;
}

.vt-zoom.is-open {
    display: grid;
}

.vt-zoom img {
    max-width: min(1100px, 92vw);
    max-height: 86vh;
}

.vt-zoom-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    background: var(--gold);
    cursor: pointer;
}

@media (max-width: 900px) {
    .vt-ribbon-row,
    .vt-ribbon-row.reverse,
    .vt-feature,
    .vt-feature:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .vt-ribbon-row.reverse .vt-copy,
    .vt-feature:nth-child(even) .vt-feature-num,
    .vt-feature:nth-child(even) .vt-feature-copy,
    .vt-feature:nth-child(even) img {
        order: initial;
    }

    .vt-shots,
    .vt-gallery-offset {
        grid-template-columns: 1fr 1fr;
    }

    .vt-shots img:first-child,
    .vt-shots img:nth-child(3),
    .vt-gallery-offset img:nth-child(2) {
        height: 200px;
        margin-top: 0;
    }

    .vt-ledger-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .vt-coin-band {
        grid-template-columns: repeat(2, 1fr);
        max-height: 200px;
    }
}

@media (max-width: 720px) {
    .vt-menu-btn {
        display: grid;
        place-items: center;
    }

    .vt-nav {
        display: none;
        width: 100%;
    }

    .vt-nav.is-open {
        display: block;
    }

    .vt-nav-list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .vt-kind-stamp {
        margin-left: 0;
        justify-content: center;
    }

    .vt-rail {
        display: none;
    }

    .vt-cover-art > img {
        height: calc(100svh - 150px);
        max-height: none;
    }

    .vt-cover-play {
        width: calc(100% - 24px);
        bottom: 14px;
        gap: 10px;
        padding: 10px 12px;
    }

    .vt-cover-play img {
        height: 56px;
    }

    .vt-shots,
    .vt-gallery-offset,
    .vt-facts div {
        grid-template-columns: 1fr;
    }

    .vt-coin-band {
        grid-template-columns: 1fr 1fr;
        max-height: 180px;
    }
}
