/* ═══════════════════════════════════════════════════════
   home.css — YokaNova homepage (Veloura design system)
   All classes prefixed vl- to avoid collisions with
   the existing style.css
═══════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────── */
:root {
  --vl-ink:      #1a1714;
  --vl-ink2:     #2e2a26;
  --vl-ink3:     #4a4540;
  --vl-muted:    #6b6560;
  --vl-bone:     #f5f0e8;
  --vl-cream:    #faf8f4;
  --vl-gold:     #c9a96e;
  --vl-gold-lt:  #e0c99a;
  --vl-border:   rgba(201,169,110,.22);
  --vl-ease:     cubic-bezier(.22,.68,0,1.2);
  --vl-ff-disp:  'Cormorant Garamond', Georgia, serif;
  --vl-ff-body:  'Inter', system-ui, sans-serif;
}

/* ── RESET / BASE ────────────────────────────────────── */
.vl-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) { .vl-container { padding: 0 20px; } }

/* ── NAVBAR ──────────────────────────────────────────── */
.vl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .35s, padding .35s, backdrop-filter .35s;
}
.vl-nav--scrolled {
  background: rgba(26,23,20,.93);
  backdrop-filter: blur(16px);
  padding: 14px 0;
}
.vl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vl-nav-logo {
  font-family: var(--vl-ff-disp);
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: .3em;
  text-transform: uppercase;
  text-decoration: none;
}
.vl-nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin: 0; padding: 0;
}
.vl-nav-links a {
  font-family: var(--vl-ff-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s;
}
.vl-nav-links a:hover { color: #fff; }
.vl-nav-actions { display: flex; align-items: center; gap: 16px; }
.vl-nav-icon {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.78);
  padding: 4px; line-height: 1;
  transition: color .2s; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.vl-nav-icon:hover { color: #fff; }
.vl-cart-btn { text-decoration: none; }
.vl-cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--vl-gold); color: var(--vl-ink);
  font-size: .58rem; font-weight: 700;
  width: 16px; height: 16px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.vl-user-menu { display: flex; align-items: center; gap: 6px; }
.vl-user-greeting {
  font-family: var(--vl-ff-body);
  font-size: .72rem; letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  transition: color .2s;
}
.vl-user-greeting:hover { color: #fff; }
.vl-logout-btn { opacity: .55; transition: opacity .2s; }
.vl-logout-btn:hover { opacity: 1; }
.vl-hamburger { display: none; }
@media (max-width: 900px) {
  .vl-nav-links  { display: none; }
  .vl-hamburger  { display: flex; }
}

/* Search bar */
.vl-search-bar {
  max-height: 0;
  overflow: hidden;
  background: rgba(26,23,20,.97);
  transition: max-height .3s ease, padding .3s;
}
.vl-search-bar.open { max-height: 80px; padding: 14px 0; }
.vl-search-form {
  display: flex;
  border: 1px solid var(--vl-border);
  overflow: hidden;
  max-width: 540px;
  margin: 0 auto;
}
.vl-search-form input {
  flex: 1; border: none; outline: none;
  padding: 11px 16px;
  background: transparent; color: #fff;
  font-family: var(--vl-ff-body); font-size: .9rem;
}
.vl-search-form input::placeholder { color: rgba(255,255,255,.35); }
.vl-search-form button {
  background: none; border: none; cursor: pointer;
  padding: 11px 16px; color: rgba(255,255,255,.6);
  transition: color .2s;
}
.vl-search-form button:hover { color: #fff; }

/* Mobile drawer */
.vl-mobile-drawer {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: 300px; background: var(--vl-ink);
  z-index: 300; padding: 28px 24px;
  transform: translateX(-100%);
  transition: transform .3s var(--vl-ease);
  overflow-y: auto;
}
.vl-mobile-drawer.vl-open { transform: translateX(0); }
.vl-drawer-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 299; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.vl-drawer-overlay.vl-open { opacity: 1; pointer-events: all; }
.vl-drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.vl-drawer-close {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.5); font-size: 1.5rem; line-height: 1;
}
.vl-drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.vl-drawer-nav a, .vl-drawer-link-btn {
  font-family: var(--vl-ff-body);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.7); text-decoration: none;
  padding: 10px 0; border: none; background: none;
  cursor: pointer; display: block; width: 100%; text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s;
}
.vl-drawer-nav a:hover, .vl-drawer-link-btn:hover { color: #fff; }
.vl-drawer-nav hr { border: none; border-top: 1px solid var(--vl-border); margin: 12px 0; }

/* ── HERO ────────────────────────────────────────────── */
.vl-hero {
  position: relative;
  height: 100svh; min-height: 620px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.vl-hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.04);
  transition: transform 9s ease-out;
}
.vl-hero-bg.vl-loaded { transform: scale(1); }
.vl-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,17,14,.85) 0%,
    rgba(20,17,14,.52) 44%,
    rgba(20,17,14,.06) 100%
  );
}
.vl-hero-content {
  position: relative; z-index: 2;
  padding-bottom: 88px;
  max-width: 560px;
}
.vl-hero-tag {
  display: inline-block;
  font-family: var(--vl-ff-body);
  font-size: .63rem; font-weight: 600;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--vl-gold); margin-bottom: 20px;
}
.vl-hero-content h1 {
  font-family: var(--vl-ff-disp);
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 300; color: #fff;
  line-height: .88; letter-spacing: -.02em;
  margin-bottom: 16px;
}
.vl-hero-divider {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.vl-hero-divider::before,
.vl-hero-divider::after {
  content: ''; display: block;
  width: 52px; height: 1px;
  background: var(--vl-gold); opacity: .7;
}
.vl-hero-divider svg { color: var(--vl-gold); opacity: .9; }
.vl-hero-content p {
  font-family: var(--vl-ff-body);
  font-size: .9rem; color: rgba(255,255,255,.68);
  line-height: 1.7; margin-bottom: 34px;
  max-width: 360px;
}
.vl-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.vl-hero-side-label {
  position: absolute; right: 32px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: .58rem; letter-spacing: .38em;
  text-transform: uppercase; color: rgba(255,255,255,.28);
  z-index: 2; white-space: nowrap; pointer-events: none;
}
.vl-hero-badges {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; display: flex; align-items: center;
  justify-content: center; gap: 16px;
  background: rgba(20,17,14,.55);
  backdrop-filter: blur(8px);
  padding: 12px 20px;
  font-family: var(--vl-ff-body);
  font-size: .62rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.vl-sep { opacity: .3; }

/* ── BUTTONS ─────────────────────────────────────────── */
.vl-btn-primary {
  display: inline-block; padding: 13px 28px;
  background: #fff; color: var(--vl-ink);
  font-family: var(--vl-ff-body); font-size: .72rem;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: background .2s, color .2s;
}
.vl-btn-primary:hover { background: var(--vl-bone); }

.vl-btn-outline {
  display: inline-block; padding: 12px 28px;
  background: transparent; color: #fff;
  font-family: var(--vl-ff-body); font-size: .72rem;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.55); cursor: pointer;
  transition: border-color .2s, background .2s;
}
.vl-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.07); }

.vl-btn-outline-dark {
  display: inline-block; padding: 13px 32px;
  background: transparent; color: #fff;
  font-family: var(--vl-ff-body); font-size: .72rem;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  text-decoration: none; border: 1.5px solid rgba(255,255,255,.45); cursor: pointer;
  transition: border-color .2s, background .2s;
}
.vl-btn-outline-dark:hover { border-color: #fff; background: rgba(255,255,255,.06); }

/* ── TRUST STRIP ─────────────────────────────────────── */
.vl-trust-strip { background: var(--vl-ink); padding: 22px 0; }
.vl-trust-inner {
  display: flex; justify-content: space-around;
  align-items: center; gap: 20px; flex-wrap: wrap;
}
.vl-trust-item { display: flex; align-items: center; gap: 12px; }
.vl-trust-item svg { color: var(--vl-gold); flex-shrink: 0; }
.vl-trust-item strong {
  display: block; font-size: .68rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase; color: #fff;
}
.vl-trust-item span { font-size: .75rem; color: rgba(255,255,255,.48); }

/* ── SECTION SCAFFOLDING ─────────────────────────────── */
.vl-section { padding: 100px 0; }

.vl-section-head {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
  flex-wrap: wrap; gap: 18px;
}
.vl-eyebrow {
  display: block;
  font-family: var(--vl-ff-body);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--vl-gold); margin-bottom: 10px;
}
.vl-section-title {
  font-family: var(--vl-ff-disp);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; color: var(--vl-ink);
  line-height: 1.08; letter-spacing: -.01em;
  margin: 0;
}
.vl-gold-divider {
  display: flex; align-items: center; gap: 10px;
  margin-top: 8px; width: fit-content;
}
.vl-gold-divider::before,
.vl-gold-divider::after {
  content: ''; display: block;
  width: 44px; height: 1px; background: var(--vl-gold);
}
.vl-gold-divider span {
  font-family: var(--vl-ff-disp); font-size: .75rem;
  color: var(--vl-gold); letter-spacing: .1em;
}
.vl-view-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--vl-ff-body); font-size: .68rem;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--vl-ink); text-decoration: none;
  border-bottom: 1px solid var(--vl-ink);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.vl-view-all:hover { color: var(--vl-muted); border-color: var(--vl-muted); }
.vl-empty-state {
  color: var(--vl-muted); font-size: .9rem;
  text-align: center; padding: 60px 0;
}

/* ── CATEGORY TILES ──────────────────────────────────── */
.vl-cat-section { padding: 60px 0; background: var(--vl-bone); }
.vl-cat-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 600px) { .vl-cat-tiles { grid-template-columns: 1fr; } }
.vl-cat-tile {
  position: relative; display: block; text-decoration: none;
  aspect-ratio: 3/2; overflow: hidden;
  background: var(--vl-ink2);
}
.vl-cat-tile-inner {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(20,17,14,.7) 0%, transparent 60%);
  transition: background .3s;
}
.vl-cat-tile:hover .vl-cat-tile-inner { background: linear-gradient(to top, rgba(20,17,14,.85) 0%, rgba(20,17,14,.15) 60%); }
.vl-cat-tile-inner span {
  font-family: var(--vl-ff-disp);
  font-size: 1.5rem; font-weight: 400; color: #fff;
  letter-spacing: .08em;
}
.vl-cat-tile--women  { background: #2e2a26; }
.vl-cat-tile--men    { background: #252220; }
.vl-cat-tile--accessories { background: #3a3430; }

/* ── PRODUCT CARDS ───────────────────────────────────── */
.vl-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1100px) { .vl-products-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px)  { .vl-products-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px)  { .vl-products-grid { grid-template-columns: 1fr; } }

.vl-product-card { cursor: pointer; }

.vl-product-img-wrap {
  display: block; position: relative;
  overflow: hidden; background: var(--vl-ink2);
  aspect-ratio: 3/4; margin-bottom: 18px;
  text-decoration: none;
}
.vl-product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s var(--vl-ease);
}
.vl-product-card:hover .vl-product-img-wrap img { transform: scale(1.04); }

.vl-product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.vl-product-img-placeholder span {
  font-family: var(--vl-ff-disp);
  font-size: 1rem; font-weight: 300;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.22);
}

.vl-product-badge {
  position: absolute; top: 14px; left: 14px;
  font-size: .58rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 10px;
  background: var(--vl-gold); color: var(--vl-ink);
}

.vl-product-actions {
  position: absolute; bottom: -50px;
  left: 0; right: 0;
  padding: 13px 16px;
  background: rgba(26,23,20,.9);
  display: flex; justify-content: center;
  align-items: center; gap: 8px;
  transition: bottom .28s var(--vl-ease);
}
.vl-product-card:hover .vl-product-actions { bottom: 0; }
.vl-product-actions a {
  color: #fff; text-decoration: none;
  font-family: var(--vl-ff-body); font-size: .65rem;
  font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  transition: color .2s; white-space: nowrap;
}
.vl-product-actions a:hover { color: var(--vl-gold); }
.vl-actions-sep { color: rgba(255,255,255,.25); font-size: .7rem; }

.vl-product-cat {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--vl-muted); margin: 0 0 5px;
}
.vl-product-name {
  font-family: var(--vl-ff-disp);
  font-size: 1.1rem; font-weight: 500;
  margin: 0 0 6px; line-height: 1.2;
}
.vl-product-name a {
  color: var(--vl-ink); text-decoration: none;
  transition: color .2s;
}
.vl-product-name a:hover { color: var(--vl-ink3); }
.vl-product-price-row { display: flex; align-items: center; gap: 10px; }
.vl-product-price { font-size: .9rem; font-weight: 600; color: var(--vl-ink); }
.vl-product-price-old {
  font-size: .85rem; color: var(--vl-muted);
  text-decoration: line-through;
}

/* ── NEW ARRIVALS ────────────────────────────────────── */
.vl-arrivals-section { background: var(--vl-bone); }
.vl-arrivals-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) { .vl-arrivals-track { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) {
  .vl-arrivals-track {
    display: flex; overflow-x: auto;
    gap: 16px; scrollbar-width: none; padding-bottom: 8px;
  }
  .vl-arrivals-track::-webkit-scrollbar { display: none; }
  .vl-arrival-card { min-width: 220px; flex-shrink: 0; }
}
.vl-arrival-card .vl-product-img-wrap { aspect-ratio: 2/3; }

/* ── EDITORIAL BAND ──────────────────────────────────── */
.vl-editorial {
  background: var(--vl-ink);
  padding: 108px 0; text-align: center;
  position: relative; overflow: hidden;
}
.vl-editorial::before {
  content: 'VELOURA';
  position: absolute;
  font-family: var(--vl-ff-disp);
  font-size: 22vw; font-weight: 300;
  color: rgba(255,255,255,.022);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap; pointer-events: none;
  letter-spacing: .08em;
}
.vl-editorial-inner { position: relative; z-index: 1; }
.vl-editorial .vl-eyebrow { margin-bottom: 14px; }
.vl-editorial-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 28px;
}
.vl-editorial-divider::before,
.vl-editorial-divider::after {
  content: ''; display: block;
  width: 80px; height: 1px;
  background: var(--vl-gold); opacity: .45;
}
.vl-editorial-divider svg { color: var(--vl-gold); opacity: .8; }
.vl-editorial h2 {
  font-family: var(--vl-ff-disp);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300; color: #fff;
  margin-bottom: 18px; letter-spacing: -.01em; line-height: 1.08;
}
.vl-editorial p {
  font-size: .88rem; color: rgba(255,255,255,.5);
  max-width: 400px; margin: 0 auto 36px; line-height: 1.7;
}

/* ── NEWSLETTER ──────────────────────────────────────── */
.vl-newsletter { padding: 100px 0; background: var(--vl-cream); }
.vl-newsletter-box {
  max-width: 520px; margin: 0 auto;
  text-align: center;
}
.vl-newsletter-box .vl-eyebrow { margin-bottom: 14px; }
.vl-newsletter-box h2 {
  font-family: var(--vl-ff-disp);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400; color: var(--vl-ink);
  margin-bottom: 14px; line-height: 1.08;
}
.vl-newsletter-box p {
  font-size: .88rem; color: var(--vl-muted);
  margin-bottom: 32px; line-height: 1.65;
}
.vl-nl-input-wrap {
  display: flex;
  border: 1.5px solid rgba(26,23,20,.2);
  overflow: hidden; max-width: 420px;
  margin: 0 auto 14px;
  transition: border-color .2s;
}
.vl-nl-input-wrap:focus-within { border-color: var(--vl-ink); }
.vl-nl-input-wrap input {
  flex: 1; border: none; outline: none;
  padding: 13px 16px; font-family: var(--vl-ff-body);
  font-size: .85rem; background: transparent; color: var(--vl-ink);
}
.vl-nl-input-wrap input::placeholder { color: var(--vl-muted); }
.vl-nl-input-wrap button {
  padding: 13px 20px;
  background: var(--vl-ink); color: #fff;
  border: none; font-family: var(--vl-ff-body);
  font-size: .65rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer; transition: background .2s; white-space: nowrap;
}
.vl-nl-input-wrap button:hover { background: var(--vl-ink2); }
.vl-nl-note { font-size: .73rem; color: var(--vl-muted); }
.vl-nl-success {
  padding: 14px 20px; max-width: 420px; margin: 0 auto 14px;
  background: rgba(201,169,110,.1); border: 1px solid var(--vl-border);
  color: var(--vl-ink); font-size: .85rem;
}
.vl-nl-error {
  padding: 12px 16px; max-width: 420px; margin: 0 auto 14px;
  background: #fff5f5; border: 1px solid #fcc; color: #c0392b;
  font-size: .85rem;
}
.vl-nl-form { display: contents; }

/* ── FOOTER ──────────────────────────────────────────── */
.vl-footer {
  background: var(--vl-ink);
  border-top: 1px solid var(--vl-border);
  padding: 72px 0 32px;
}
.vl-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 56px;
}
@media (max-width: 900px)  { .vl-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px)  { .vl-footer-grid { grid-template-columns: 1fr; } }
.vl-footer-brand {
  display: block;
  font-family: var(--vl-ff-disp);
  font-size: 1.3rem; letter-spacing: .3em;
  text-transform: uppercase; color: #fff; margin-bottom: 14px;
}
.vl-footer-tagline { font-size: .82rem; color: var(--vl-muted); line-height: 1.65; max-width: 230px; }
.vl-footer-socials { display: flex; gap: 14px; margin-top: 20px; }
.vl-footer-socials a {
  color: var(--vl-muted); transition: color .2s;
  display: flex; align-items: center;
}
.vl-footer-socials a:hover { color: var(--vl-gold); }
.vl-footer-col-title {
  font-size: .62rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--vl-gold); margin-bottom: 18px;
}
.vl-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.vl-footer-links a { font-size: .82rem; color: var(--vl-muted); text-decoration: none; transition: color .2s; }
.vl-footer-links a:hover { color: #fff; }
.vl-footer-bottom {
  border-top: 1px solid var(--vl-border);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .72rem; color: var(--vl-muted);
}
.vl-pay-badges { display: flex; gap: 8px; }
.vl-pay-badges span {
  padding: 3px 8px;
  border: 1px solid var(--vl-border);
  font-size: .6rem; font-weight: 600;
  letter-spacing: .1em; color: rgba(255,255,255,.4);
  border-radius: 2px;
}

/* ── AUTH MODAL ──────────────────────────────────────── */
.vl-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(20,17,14,.78);
  z-index: 200; display: flex;
  align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(4px);
}
.vl-modal-backdrop.vl-open { opacity: 1; pointer-events: all; }
.vl-modal {
  background: #fff; width: 100%; max-width: 420px;
  padding: 48px 44px 40px; position: relative; margin: 20px;
  transform: translateY(20px);
  transition: transform .3s var(--vl-ease);
}
.vl-modal-backdrop.vl-open .vl-modal { transform: translateY(0); }
.vl-modal-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: var(--vl-muted); font-size: 1.3rem; line-height: 1;
  transition: color .2s;
}
.vl-modal-close:hover { color: var(--vl-ink); }
.vl-modal-logo {
  display: block;
  font-family: var(--vl-ff-disp); font-size: 1.25rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--vl-ink); margin-bottom: 28px;
}
.vl-modal-tabs {
  display: flex; gap: 28px;
  border-bottom: 1px solid rgba(26,23,20,.12);
  margin-bottom: 28px;
}
.vl-modal-tab {
  background: none; border: none; padding: 0 0 12px;
  font-family: var(--vl-ff-body); font-size: .68rem;
  font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--vl-muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color .2s, border-color .2s;
}
.vl-modal-tab.active { color: var(--vl-ink); border-color: var(--vl-gold); }
.vl-modal-panel { display: none; }
.vl-modal-panel.active { display: block; }
.vl-modal-field { margin-bottom: 18px; }
.vl-modal-field label {
  display: block; font-size: .62rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--vl-ink3); margin-bottom: 8px;
}
.vl-modal-field input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid rgba(26,23,20,.18); outline: none;
  font-family: var(--vl-ff-body); font-size: .9rem;
  color: var(--vl-ink); background: var(--vl-cream);
  transition: border-color .2s;
}
.vl-modal-field input:focus { border-color: var(--vl-ink); background: #fff; }
.vl-check-row { display: flex !important; flex-direction: row !important; justify-content: space-between; align-items: center; }
.vl-checkbox-label {
  display: flex; align-items: center; gap: 8px;
  font-size: .8rem; color: var(--vl-muted); cursor: pointer;
  font-weight: 400; letter-spacing: 0; text-transform: none;
}
.vl-forgot { font-size: .75rem; color: var(--vl-muted); text-decoration: none; }
.vl-forgot:hover { color: var(--vl-ink); text-decoration: underline; }
.vl-modal-submit {
  width: 100%; padding: 14px;
  background: var(--vl-ink); color: #fff; border: none;
  font-family: var(--vl-ff-body); font-size: .68rem;
  font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  cursor: pointer; transition: background .2s; margin-top: 6px;
}
.vl-modal-submit:hover { background: var(--vl-ink2); }
.vl-modal-footer {
  margin-top: 16px; text-align: center;
  font-size: .78rem; color: var(--vl-muted);
}
.vl-modal-footer a { color: var(--vl-ink); font-weight: 600; text-decoration: none; }
.vl-modal-footer a:hover { text-decoration: underline; }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.vl-reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.vl-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .vl-reveal { transition: none; }
  .vl-hero-bg { transition: none; }
}
