/* ============================================================
   EMERALD VAULT — Public Stylesheet  v1.0.2-polished
   All class names identical to v1.0.1. Pure cosmetic upgrade.
   ============================================================ */

/* ── Custom properties ─────────────────────────────────────── */
:root {
    --evp-emerald:   #003f31;
    --evp-emerald-2: #005640;
    --evp-emerald-3: #00734f;
    --evp-ink:       #0b1715;
    --evp-muted:     #61706b;
    --evp-ivory:     #fbfaf7;
    --evp-warm:      #f3eee7;
    --evp-gold:      #c7ad73;
    --evp-gold-2:    #e2c98a;
    --evp-line:      rgba(4, 38, 30, .10);
    --evp-line-mid:  rgba(4, 38, 30, .16);
    --evp-shadow:    0 4px 6px rgba(18,30,28,.04), 0 12px 24px rgba(18,30,28,.08), 0 30px 60px rgba(18,30,28,.08);
    --evp-shadow-sm: 0 2px 4px rgba(18,30,28,.04), 0 6px 16px rgba(18,30,28,.07);
    --evp-shadow-lg: 0 8px 16px rgba(18,30,28,.06), 0 24px 52px rgba(18,30,28,.12), 0 48px 96px rgba(18,30,28,.10);
    --evp-serif:     Georgia, "Times New Roman", serif;
    --evp-sans:      Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --evp-ease:      cubic-bezier(.25, .46, .45, .94);
    --evp-ease-out:  cubic-bezier(.16, 1, .3, 1);
    --evp-radius:    14px;
    --evp-radius-sm: 9px;
}

/* ── Selection & scrollbar ─────────────────────────────────── */
::selection { background: rgba(0, 63, 49, .14); color: var(--evp-ink); }
.evp-page ::-webkit-scrollbar { width: 6px; height: 6px; }
.evp-page ::-webkit-scrollbar-track { background: transparent; }
.evp-page ::-webkit-scrollbar-thumb { background: rgba(0,63,49,.22); border-radius: 99px; }

/* ── Reset ─────────────────────────────────────────────────── */
.evp-page, .evp-page * { box-sizing: border-box; }

/* ── Page shell ────────────────────────────────────────────── */
.evp-page {
    color: var(--evp-ink);
    background: radial-gradient(ellipse at 0% 0%, #ffffff, var(--evp-ivory) 38%, #ede9e1 80%);
    font-family: var(--evp-sans);
    padding: 20px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.evp-shell {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .78);
    border: 1px solid var(--evp-line);
    border-radius: 20px;
    box-shadow: var(--evp-shadow-lg);
    overflow: hidden;
    backdrop-filter: blur(2px);
}
.evp-shell::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--evp-emerald) 0%, var(--evp-gold) 48%, var(--evp-emerald) 100%);
}

/* ── Dark page variant ─────────────────────────────────────── */
.evp-page-dark { background: #001814; color: #fff; }
.evp-page-dark .evp-shell {
    background: radial-gradient(ellipse at 28% 4%, rgba(0,105,76,.38), rgba(0,22,18,.97) 42%, #000f0c);
    border-color: rgba(199, 226, 211, .13);
}

/* ── Header ────────────────────────────────────────────────── */
.evp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 36px;
    border-bottom: 1px solid var(--evp-line);
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
}
.evp-header-dark {
    color: #fff;
    background: rgba(0,20,16,.72);
    border-color: rgba(255,255,255,.10);
}
.evp-logo {
    color: inherit;
    text-decoration: none;
    font-family: var(--evp-serif);
    font-size: 30px;
    letter-spacing: 7px;
    font-weight: 700;
    transition: opacity .2s var(--evp-ease);
}
.evp-logo:hover { opacity: .72; }
.evp-header nav { display: flex; align-items: center; gap: 34px; }
.evp-header nav a {
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    position: relative;
    padding-bottom: 2px;
    transition: color .2s var(--evp-ease);
}
.evp-header nav a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--evp-gold);
    transition: width .25s var(--evp-ease-out);
}
.evp-header nav a:hover { color: var(--evp-emerald); }
.evp-header nav a:hover::after { width: 100%; }
.evp-menu { display: none; width: 38px; height: 38px; border: 0; background: transparent; cursor: pointer; padding: 4px; }
.evp-menu span { display: block; height: 1.5px; background: currentColor; margin: 7px 4px; transition: transform .2s var(--evp-ease), opacity .2s; border-radius: 99px; }
.evp-icon { width: 26px; height: 26px; flex: 0 0 auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.evp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 28px;
    border: 1px solid var(--evp-line-mid);
    border-radius: 10px;
    color: var(--evp-ink);
    background: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    box-shadow: var(--evp-shadow-sm);
    transition: transform .2s var(--evp-ease-out), box-shadow .2s var(--evp-ease), background .2s var(--evp-ease), border-color .2s;
    cursor: pointer;
    font-family: var(--evp-sans);
}
.evp-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(18,30,28,.12), 0 2px 6px rgba(18,30,28,.08); border-color: rgba(4,38,30,.22); }
.evp-btn:active { transform: translateY(0); }
.evp-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--evp-emerald) 0%, var(--evp-emerald-2) 50%, var(--evp-emerald-3) 100%);
    border-color: rgba(255,255,255,.14);
    box-shadow: 0 4px 14px rgba(0,63,49,.30), 0 1px 3px rgba(0,63,49,.20);
}
.evp-btn-primary:hover { background: linear-gradient(135deg, #005040 0%, #006e52 50%, #009060 100%); box-shadow: 0 8px 24px rgba(0,63,49,.36), 0 2px 6px rgba(0,63,49,.20); border-color: rgba(255,255,255,.18); }
.evp-btn-outline, .evp-btn-ghost { color: #fff; background: transparent; border-color: rgba(255,255,255,.45); }
.evp-btn-outline:hover, .evp-btn-ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.70); box-shadow: 0 6px 20px rgba(0,0,0,.20); }
.evp-btn:focus-visible { outline: 2px solid var(--evp-gold); outline-offset: 3px; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3 { margin: 0; font-family: var(--evp-serif); font-weight: 500; letter-spacing: -.01em; }
p { line-height: 1.78; }

/* ── Hero grids ────────────────────────────────────────────── */
.evp-hero-grid, .evp-mission-hero, .evp-vault-hero, .evp-contact-hero, .evp-artist-hero { display: grid; grid-template-columns: 1fr 1.18fr; gap: 58px; padding: 36px 36px 48px; align-items: center; }
.evp-hero-copy h1, .evp-mission h1, .evp-contact h1, .evp-artist-hero h1 { color: var(--evp-emerald); font-size: clamp(40px, 5.6vw, 70px); line-height: .97; margin-bottom: 16px; }
.evp-contact h1 { color: #fffaf0; text-shadow: 0 10px 28px rgba(0,0,0,.42); }
.evp-hero-copy h2, .evp-vault h2, .evp-contact h2, .evp-artist-hero h2 { color: var(--evp-emerald-2); font-family: var(--evp-sans); font-size: 21px; font-weight: 450; margin-bottom: 20px; letter-spacing: -.01em; }
.evp-contact h2 { color: #b6e8c8; font-size: 26px; line-height: 1.38; }
.evp-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0; }

/* hero images */
.evp-hero-media > img, .evp-panel-image > img, .evp-vault-hero > div:first-child > img, .evp-artist-hero > div:first-child img { width: 100%; aspect-ratio: 1.45; object-fit: cover; border-radius: var(--evp-radius); box-shadow: var(--evp-shadow); transition: transform .6s var(--evp-ease-out), box-shadow .4s var(--evp-ease); }
.evp-hero-media > img:hover, .evp-artist-hero > div:first-child img:hover { transform: scale(1.012); box-shadow: var(--evp-shadow-lg); }
.evp-artist-hero > div:first-child img { aspect-ratio: .82; }

/* thumbs */
.evp-thumbs { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 16px; }
.evp-thumbs button { width: 90px; height: 68px; padding: 3px; border-radius: 8px; border: 1.5px solid var(--evp-line); background: #fff; box-shadow: var(--evp-shadow-sm); cursor: pointer; transition: transform .2s var(--evp-ease-out), border-color .2s, box-shadow .2s; }
.evp-thumbs button:hover { transform: translateY(-3px); border-color: var(--evp-gold); box-shadow: 0 8px 22px rgba(0,0,0,.12); }
.evp-thumbs img { width: 100%; height: 100%; object-fit: cover; border-radius: 5px; }

/* ── Feature row ───────────────────────────────────────────── */
.evp-feature-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 36px; }
.evp-feature-row article { text-align: center; padding: 0 14px 4px; border-right: 1px solid var(--evp-line); }
.evp-feature-row article:last-child { border-right: 0; }
.evp-feature-row svg, .evp-trust-strip svg { color: var(--evp-emerald); padding: 11px; width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(145deg, #eef4f0, #e2ede6); box-shadow: 0 2px 8px rgba(0,63,49,.10); transition: transform .25s var(--evp-ease-out), box-shadow .2s; }
.evp-feature-row article:hover svg { transform: scale(1.08) translateY(-2px); box-shadow: 0 6px 18px rgba(0,63,49,.16); }
.evp-feature-row strong, .evp-feature-row span { display: block; font-size: 11px; }
.evp-feature-row strong { text-transform: uppercase; letter-spacing: .8px; margin: 12px 0 6px; color: var(--evp-ink); }
.evp-feature-row span { color: var(--evp-muted); line-height: 1.5; }

/* ── Card section ──────────────────────────────────────────── */
.evp-card-section { margin: 0 26px 20px; padding: 28px 28px 24px; background: rgba(255, 255, 255, .86); border: 1px solid var(--evp-line); border-radius: var(--evp-radius); box-shadow: 0 4px 12px rgba(0,0,0,.04), 0 12px 32px rgba(0,0,0,.05); }
.evp-card-section > h2, .evp-section-head h2 { color: var(--evp-emerald); font-size: 30px; }
.evp-section-head { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 22px; }
.evp-section-head a { color: var(--evp-emerald); text-transform: uppercase; font-weight: 800; font-size: 11px; text-decoration: none; letter-spacing: 1.2px; transition: letter-spacing .2s var(--evp-ease), opacity .2s; }
.evp-section-head a:hover { letter-spacing: 1.8px; opacity: .8; }

/* ── Tabs ──────────────────────────────────────────────────── */
.evp-tabs { display: flex; gap: 0; margin: 8px 0 24px; overflow-x: auto; border-bottom: 1.5px solid var(--evp-line); }
.evp-tabs button, .evp-tab-buttons button { border: 0; background: transparent; color: var(--evp-muted); text-transform: uppercase; font-weight: 800; font-size: 10.5px; letter-spacing: 1.1px; padding: 12px 20px 12px 0; margin-right: 12px; border-bottom: 2px solid transparent; white-space: nowrap; cursor: pointer; transition: color .2s, border-color .2s; font-family: var(--evp-sans); }
.evp-tabs button:first-child, .evp-tab-buttons .is-active { color: var(--evp-emerald); border-bottom-color: var(--evp-gold); }
.evp-tabs button:hover { color: var(--evp-emerald); }

/* ── Art grid ──────────────────────────────────────────────── */
.evp-art-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.evp-art-grid-five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.evp-art-card { background: #fff; border: 1px solid var(--evp-line); border-radius: var(--evp-radius-sm); overflow: hidden; box-shadow: var(--evp-shadow-sm); transition: transform .28s var(--evp-ease-out), box-shadow .28s var(--evp-ease), border-color .2s; cursor: pointer; }
.evp-art-card:hover { transform: translateY(-5px) scale(1.012); box-shadow: 0 8px 20px rgba(18,30,28,.10), 0 20px 50px rgba(18,30,28,.10); border-color: rgba(199,173,115,.45); }
.evp-art-card img { width: 100%; aspect-ratio: 1.35; object-fit: cover; display: block; transition: transform .5s var(--evp-ease-out); }
.evp-art-card:hover img { transform: scale(1.04); }
.evp-art-card div { padding: 16px 18px 18px; }
.evp-art-card h3 { font-size: 15px; margin-bottom: 8px; font-family: var(--evp-sans); font-weight: 600; color: var(--evp-ink); letter-spacing: -.01em; }
.evp-art-card p { margin: 0 0 10px; color: var(--evp-muted); line-height: 1.25; font-size: 12.5px; }
.evp-art-card strong { color: var(--evp-emerald); font-size: 16px; font-weight: 700; }

/* ── Legacy / Help CTA dark band ───────────────────────────── */
.evp-legacy, .evp-help-cta { display: grid; grid-template-columns: .9fr 1.1fr .9fr; gap: 44px; align-items: center; margin: 0 26px 20px; padding: 34px 44px; color: #fff; background: radial-gradient(ellipse at 14% 28%, #027a59, #003b29 55%, #001f18); border-radius: 14px; overflow: hidden; position: relative; box-shadow: 0 8px 32px rgba(0,30,22,.28), 0 2px 6px rgba(0,30,22,.18); }
.evp-legacy::before, .evp-help-cta::before { content: ""; position: absolute; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E"); background-size: 180px; opacity: .6; pointer-events: none; }
.evp-legacy h2, .evp-help-cta h2 { color: #fff; font-size: 32px; line-height: 1.12; margin-bottom: 14px; }
.evp-legacy-art img, .evp-help-cta img { width: 100%; aspect-ratio: 1.2; object-fit: cover; border-radius: 50%; opacity: .90; box-shadow: 0 0 0 6px rgba(255,255,255,.07), 0 16px 40px rgba(0,0,0,.30); transition: transform .5s var(--evp-ease-out), box-shadow .4s; }
.evp-legacy-art img:hover, .evp-help-cta img:hover { transform: scale(1.03); box-shadow: 0 0 0 8px rgba(199,173,115,.18), 0 20px 50px rgba(0,0,0,.35); }
.evp-stat-stack { border-left: 1px solid rgba(255,255,255,.20); padding-left: 36px; display: grid; gap: 20px; }
.evp-stat-stack div { display: grid; grid-template-columns: 52px 1fr; column-gap: 16px; align-items: center; }
.evp-stat-stack svg { grid-row: span 2; padding: 12px; width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); transition: background .2s; }
.evp-stat-stack div:hover svg { background: rgba(255,255,255,.14); }
.evp-stat-stack strong { font-family: var(--evp-serif); font-size: 30px; line-height: 1; color: var(--evp-gold-2); }
.evp-stat-stack span { text-transform: uppercase; font-size: 10px; letter-spacing: 1.4px; opacity: .72; }

/* ── Artists ───────────────────────────────────────────────── */
.evp-artists { display: grid; grid-template-columns: repeat(8, 1fr); gap: 22px; text-align: center; }
.evp-artists img { width: 72px; height: 72px; object-fit: cover; border-radius: 50%; filter: grayscale(1); margin-bottom: 10px; border: 2px solid transparent; box-shadow: 0 4px 14px rgba(0,0,0,.10); transition: filter .3s var(--evp-ease), transform .28s var(--evp-ease-out), border-color .3s, box-shadow .3s; }
.evp-artists article:hover img { filter: grayscale(0); transform: translateY(-3px) scale(1.05); border-color: var(--evp-gold); box-shadow: 0 8px 22px rgba(0,0,0,.14); }
.evp-artists strong { font-size: 12px; letter-spacing: .2px; }

/* ── Journal grid ──────────────────────────────────────────── */
.evp-journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.evp-journal-grid article { display: grid; grid-template-columns: 108px 1fr; gap: 16px; background: #fff; border: 1px solid var(--evp-line); border-radius: 12px; padding: 16px; transition: transform .25s var(--evp-ease-out), box-shadow .25s var(--evp-ease), border-color .2s; }
.evp-journal-grid article:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(18,30,28,.10); border-color: rgba(4,38,30,.18); }
.evp-journal-grid img { width: 108px; height: 108px; object-fit: cover; border-radius: 7px; transition: transform .4s var(--evp-ease-out); }
.evp-journal-grid article:hover img { transform: scale(1.04); }
.evp-journal-grid span, .evp-kicker { color: var(--evp-emerald); text-transform: uppercase; font-size: 10px; font-weight: 900; letter-spacing: 2px; }
.evp-journal-grid h3 { font-size: 17px; font-family: var(--evp-serif); line-height: 1.3; margin: 5px 0 6px; }
.evp-journal-grid p { margin: 0 0 8px; font-size: 12.5px; line-height: 1.6; }
.evp-journal-grid a { color: var(--evp-emerald); text-transform: uppercase; font-weight: 900; font-size: 10px; text-decoration: none; letter-spacing: 1.2px; transition: letter-spacing .2s var(--evp-ease); }
.evp-journal-grid a:hover { letter-spacing: 1.8px; }

/* ── Mission ───────────────────────────────────────────────── */
.evp-mission-hero { align-items: start; }
.evp-mission h1 { margin: 16px 0 24px; }
.evp-value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 28px; }
.evp-value-grid article, .evp-info-cards article, .evp-contact-cards article, .evp-card { background: rgba(255, 255, 255, .86); border: 1px solid var(--evp-line); border-radius: 13px; padding: 26px 28px; box-shadow: 0 4px 14px rgba(0,0,0,.06), 0 12px 30px rgba(0,0,0,.05); transition: transform .25s var(--evp-ease-out), box-shadow .25s var(--evp-ease), border-color .2s; }
.evp-value-grid article:hover, .evp-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.08), 0 20px 44px rgba(0,0,0,.07); border-color: rgba(4,38,30,.16); }
.evp-value-grid h3 { font-size: 23px; color: var(--evp-ink); }
.evp-panel-image { background: #f6f3ec; border-radius: 13px; overflow: hidden; }
.evp-panel-image > div { padding: 34px; }
.evp-panel-image h2 { color: var(--evp-emerald); font-size: 34px; margin-bottom: 24px; }

/* ── Trust strip ───────────────────────────────────────────── */
.evp-trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 0 26px 26px; padding: 22px; background: rgba(255, 255, 255, .82); border: 1px solid var(--evp-line); border-radius: 13px; box-shadow: var(--evp-shadow-sm); }
.evp-trust-strip div { display: flex; gap: 16px; align-items: center; padding: 0 22px; border-right: 1px solid var(--evp-line); transition: background .2s; }
.evp-trust-strip div:last-child { border-right: 0; }
.evp-trust-strip div:hover { background: rgba(0,63,49,.03); }
.evp-trust-strip strong, .evp-trust-strip small { display: block; }
.evp-trust-strip small { color: var(--evp-muted); line-height: 1.55; font-size: 12px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.evp-faq-list { display: grid; gap: 0; margin-top: 20px; }
.evp-faq { border-bottom: 1px solid var(--evp-line); }
.evp-faq summary { cursor: pointer; display: grid; grid-template-columns: 62px 1fr 24px; gap: 20px; align-items: center; padding: 16px 4px; list-style: none; transition: color .2s; }
.evp-faq summary::-webkit-details-marker { display: none; }
.evp-faq[open] summary { color: var(--evp-emerald); }
.evp-faq small { display: block; margin-top: 6px; color: var(--evp-muted); }
.evp-faq > div { padding: 0 0 20px 82px; color: var(--evp-muted); line-height: 1.75; font-size: 14px; }

/* ── Search ────────────────────────────────────────────────── */
.evp-search { margin: 16px 36px; position: relative; }
.evp-search input { width: 100%; height: 46px; border: 1.5px solid var(--evp-line-mid); border-radius: 23px; padding: 0 54px 0 24px; font-size: 15px; background: rgba(255,255,255,.90); transition: border-color .2s, box-shadow .2s; font-family: var(--evp-sans); }
.evp-search input:focus { outline: none; border-color: var(--evp-emerald-2); box-shadow: 0 0 0 3px rgba(0,86,64,.12); }
.evp-search span { position: absolute; right: 20px; top: 7px; font-size: 26px; }

/* ── Subnav ────────────────────────────────────────────────── */
.evp-subnav { display: flex; justify-content: flex-end; align-items: center; gap: 36px; padding: 14px 36px; border-top: 1px solid var(--evp-line); border-bottom: 1px solid var(--evp-line); }
.evp-subnav a { color: var(--evp-ink); text-decoration: none; font-family: var(--evp-serif); font-size: 16px; transition: color .2s; }
.evp-subnav a:hover { color: var(--evp-emerald); }
.evp-subnav button { margin-right: auto; border: 0; background: transparent; cursor: pointer; }
.evp-subnav button span { display: block; width: 28px; height: 1.5px; background: currentColor; margin: 6px 0; border-radius: 99px; }

/* ── Vault hero ────────────────────────────────────────────── */
.evp-vault-hero h1 { color: #0b0b0b; font-size: clamp(36px, 4.6vw, 48px); line-height: 1.04; }
.evp-bullets { display: grid; gap: 16px; margin: 26px 0; }
.evp-bullets article { display: flex; gap: 18px; align-items: flex-start; }
.evp-bullets small { display: block; margin-top: 4px; line-height: 1.5; color: var(--evp-muted); }

/* ── Two-col / benefits ────────────────────────────────────── */
.evp-two-grid, .evp-benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 0 26px 18px; }
.evp-benefits { grid-template-columns: repeat(3, 1fr); }

/* ── Steps ─────────────────────────────────────────────────── */
.evp-steps { list-style: none; padding: 0; margin: 22px 0 0; counter-reset: evp-step; }
.evp-steps li { counter-increment: evp-step; position: relative; padding: 0 0 22px 58px; }
.evp-steps li::before { content: counter(evp-step); position: absolute; left: 0; top: 0; width: 34px; height: 34px; border-radius: 6px; background: linear-gradient(135deg, var(--evp-emerald), var(--evp-emerald-3)); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 13px; box-shadow: 0 4px 12px rgba(0,63,49,.28); }
.evp-steps span { display: block; font-size: 13px; margin-top: 4px; color: var(--evp-muted); }

/* ── Record / detail table ─────────────────────────────────── */
.evp-record-grid, .evp-detail-table { display: grid; grid-template-columns: 1fr 1.4fr; gap: 0; }
.evp-record-grid span, .evp-record-grid strong, .evp-detail-table span, .evp-detail-table strong { padding: 10px 0; border-bottom: 1px solid var(--evp-line); font-size: 13.5px; }
.evp-detail-table { background: linear-gradient(160deg, #f8f7f4, #f3efe8); border-radius: 12px; padding: 20px 28px; }
.evp-qr { margin-top: 18px; display: flex; align-items: center; gap: 16px; }
.evp-qr span { width: 96px; height: 96px; display: grid; place-items: center; border: 3px solid #111; font-weight: 900; border-radius: 8px; }

/* ── Benefits checklist ────────────────────────────────────── */
.evp-benefits ul { padding-left: 0; list-style: none; }
.evp-benefits li { margin: 8px 0; font-size: 14px; }
.evp-benefits li::before { content: "✓"; color: var(--evp-emerald); font-weight: 900; margin-right: 10px; }

/* ── Stars ─────────────────────────────────────────────────── */
.evp-stars { color: #e4a423; display: block; margin: 16px 0; letter-spacing: 2px; }

/* ── Video ─────────────────────────────────────────────────── */
.evp-video { display: grid; grid-template-columns: 1fr 280px; gap: 24px; margin: 0 26px 24px; }
.evp-video-thumb { position: relative; align-self: center; }
.evp-video-thumb img { width: 100%; aspect-ratio: 1.8; object-fit: cover; border-radius: 10px; transition: transform .3s var(--evp-ease-out); }
.evp-video-thumb:hover img { transform: scale(1.02); }
.evp-video-thumb span { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 52px; text-shadow: 0 8px 28px rgba(0,0,0,.45); transition: transform .2s var(--evp-ease-out); }
.evp-video-thumb:hover span { transform: scale(1.10); }

/* ── Contact ───────────────────────────────────────────────── */
.evp-contact-hero { grid-template-columns: 1fr 1.05fr; padding: 68px 54px 50px; }
.evp-contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 34px; }
.evp-contact-cards article, .evp-contact-form, .evp-page-dark .evp-card-section, .evp-page-dark .evp-trust-strip, .evp-help-dark { background: rgba(0, 38, 30, .54); border: 1px solid rgba(255, 255, 255, .12); box-shadow: 0 20px 52px rgba(0,0,0,.30), 0 4px 12px rgba(0,0,0,.20); backdrop-filter: blur(18px); color: #fff; }
.evp-contact-cards article { border-radius: 13px; padding: 24px 26px; transition: background .2s, border-color .2s, transform .25s var(--evp-ease-out); }
.evp-contact-cards article:hover { background: rgba(0, 46, 36, .68); border-color: rgba(255,255,255,.20); transform: translateY(-2px); }
.evp-contact-cards a { color: #aee6c5; text-decoration: none; }
.evp-contact-form { padding: 36px; border-radius: 14px; }
.evp-contact-form h2 { color: #fff; font-family: var(--evp-serif); margin-bottom: 28px; }
.evp-contact-form div { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.evp-contact-form label { position: relative; display: block; margin-bottom: 18px; }
.evp-contact-form svg { position: absolute; left: 18px; top: 18px; color: rgba(255,255,255,.6); }
.evp-contact-form input, .evp-contact-form textarea { width: 100%; min-height: 72px; padding: 0 18px 0 58px; border: 1.5px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(0,0,0,.10); color: #fff; font-family: var(--evp-sans); font-size: 14px; transition: border-color .2s, box-shadow .2s; }
.evp-contact-form input:focus, .evp-contact-form textarea:focus { outline: none; border-color: rgba(199,173,115,.55); box-shadow: 0 0 0 3px rgba(199,173,115,.12); }
.evp-contact-form textarea { height: 210px; padding: 22px 22px 22px 58px; }
.evp-contact-form p a { color: #c8f3d9; }
.evp-contact-form button { width: 100%; }
.evp-page-dark .evp-trust-strip strong, .evp-page-dark .evp-card-section h2, .evp-page-dark .evp-faq small { color: #fff; }
.evp-page-dark .evp-trust-strip small { color: rgba(255,255,255,.72); }
.evp-page-dark .evp-faq { border-color: rgba(255,255,255,.12); }
.evp-help-dark { grid-template-columns: 220px 1fr auto auto; border-radius: 14px; margin: 0 26px 18px; }
.evp-help-dark img { border-radius: 12px; aspect-ratio: 1.45; }

/* ── Info cards ────────────────────────────────────────────── */
.evp-info-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 38px; }
.evp-info-cards article { min-height: 152px; text-align: center; display: grid; place-items: center; transition: transform .25s var(--evp-ease-out), box-shadow .25s; }
.evp-info-cards article:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.10); }
.evp-info-cards span { font-size: 13px; line-height: 1.72; }

/* ── Artist tabs ───────────────────────────────────────────── */
.evp-tab-buttons { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1.5px solid var(--evp-line); margin-bottom: 28px; }
.evp-artist-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.evp-tab-buttons { grid-column: 1 / -1; }

/* ── Filters ───────────────────────────────────────────────── */
.evp-filters { display: flex; gap: 12px; flex-wrap: wrap; }
.evp-filters button { min-height: 40px; border: 1.5px solid var(--evp-line-mid); background: #fff; border-radius: 8px; padding: 0 18px; font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; cursor: pointer; font-family: var(--evp-sans); transition: background .2s, border-color .2s, transform .2s var(--evp-ease-out); }
.evp-filters button:hover { background: var(--evp-warm); border-color: rgba(4,38,30,.22); transform: translateY(-1px); }
.evp-filters button.is-active { background: var(--evp-emerald); color: #fff; border-color: transparent; }

/* ── Bottom CTA ────────────────────────────────────────────── */
.evp-bottom-cta { display: grid; grid-template-columns: 72px 1fr auto; align-items: center; gap: 24px; margin-top: 36px; padding: 22px 30px; background: linear-gradient(135deg, #f5f3ee, #ede9e2); border-radius: 11px; border: 1px solid var(--evp-line); }
.evp-bottom-cta span { width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--evp-emerald), var(--evp-emerald-3)); color: #fff; display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,63,49,.30); }

/* ── Footer trust ──────────────────────────────────────────── */
.evp-footer-trust { margin-bottom: 0; border-radius: 0; box-shadow: none; border-left: 0; border-right: 0; border-bottom: 0; }

/* ──────────────────────────────────────────────────────────── */
/* RESPONSIVE                                                   */
/* ──────────────────────────────────────────────────────────── */

@media (max-width: 980px) {
    .evp-header nav { display: none; }
    .evp-menu { display: block; }
    .evp-hero-grid, .evp-mission-hero, .evp-vault-hero, .evp-contact-hero, .evp-artist-hero, .evp-two-grid, .evp-benefits, .evp-video, .evp-artist-tabs { grid-template-columns: 1fr; }
    .evp-art-grid, .evp-art-grid-five { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .evp-feature-row, .evp-trust-strip, .evp-info-cards, .evp-artists { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .evp-feature-row article, .evp-trust-strip div { border-right: 0; }
    .evp-legacy, .evp-help-dark, .evp-help-cta { grid-template-columns: 1fr; }
    .evp-journal-grid { grid-template-columns: 1fr; }
    .evp-contact-form div, .evp-contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .evp-page { padding: 8px; }
    .evp-shell { border-radius: 14px; }
    .evp-header { padding: 18px 20px; }
    .evp-logo { font-size: 22px; letter-spacing: 4px; }
    .evp-hero-grid, .evp-mission-hero, .evp-vault-hero, .evp-contact-hero, .evp-artist-hero { padding: 24px 18px; gap: 26px; }
    .evp-card-section, .evp-trust-strip, .evp-legacy, .evp-help-cta, .evp-two-grid, .evp-benefits, .evp-video { margin-left: 10px; margin-right: 10px; padding: 20px 18px; }
    .evp-art-grid, .evp-art-grid-five, .evp-value-grid, .evp-feature-row, .evp-trust-strip, .evp-info-cards, .evp-artists { grid-template-columns: 1fr; }
    .evp-section-head, .evp-bottom-cta { grid-template-columns: 1fr; display: grid; }
    .evp-journal-grid article { grid-template-columns: 84px 1fr; }
    .evp-journal-grid img { width: 84px; height: 84px; }
    .evp-tab-buttons { grid-template-columns: 1fr; }
    .evp-subnav { gap: 16px; overflow-x: auto; justify-content: flex-start; }
    .evp-legacy, .evp-help-cta { padding: 28px 20px; }
    .evp-stat-stack { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.15); padding-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .evp-page *, .evp-page *::before, .evp-page *::after { transition: none !important; }
}
