/* =========================================================================
   VELVET FAUNA — design system
   Luxe natural-history: velvet dark, antique brass, bone, editorial serif.
   No external CSS deps. Fonts loaded via <link> in HTML (with system fallbacks).
   ========================================================================= */

:root {
  /* Surfaces — deep velvet greens/charcoals */
  --vf-ink:        #0E1311;   /* page base */
  --vf-ink-2:      #131A17;   /* raised panel */
  --vf-ink-3:      #18211D;   /* card */
  --vf-line:       #26322C;   /* hairline border */
  --vf-line-soft:  #1E2823;

  /* Metals & light */
  --vf-brass:      #C9A24B;   /* primary accent */
  --vf-brass-2:    #E3C883;   /* brass highlight */
  --vf-brass-deep: #9C7A33;
  --vf-bone:       #F4EFE4;   /* primary text on dark */
  --vf-bone-dim:   #CFC9BB;
  --vf-moss:       #8FB59B;   /* secondary accent (sage) */
  --vf-clay:       #C2461E;   /* warm pop (used sparingly) */

  /* Text */
  --vf-fg:         #F4EFE4;
  --vf-fg-muted:   #A7B0A8;
  --vf-fg-faint:   #8A958E;

  /* Light-section (story/cards on bone) */
  --vf-paper:      #F4EFE4;
  --vf-paper-2:    #EAE3D4;
  --vf-paper-ink:  #1B211E;
  --vf-paper-muted:#5C645E;

  /* Type */
  --vf-serif: "Fraunces", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --vf-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --vf-wrap: 1200px;
  --vf-gut: clamp(20px, 4vw, 40px);
  --vf-radius: 16px;
  --vf-radius-sm: 11px;
  --vf-radius-lg: 26px;

  /* Motion */
  --vf-ease: cubic-bezier(.22, 1, .36, 1);
  --vf-ease-soft: cubic-bezier(.4, 0, .2, 1);

  --vf-shadow: 0 24px 60px -28px rgba(0,0,0,.7);
  --vf-shadow-card: 0 18px 40px -24px rgba(0,0,0,.65);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  background: var(--vf-ink);
  color: var(--vf-fg);
  font-family: var(--vf-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--vf-brass); color: var(--vf-ink); }

/* Accessible focus */
:focus-visible {
  outline: 2px solid var(--vf-brass-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.vf-skip {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--vf-brass); color: var(--vf-ink);
  padding: 12px 18px; border-radius: 0 0 10px 0; font-weight: 600;
}
.vf-skip:focus { left: 0; }

/* ---------- layout ---------- */
.vf-wrap { width: 100%; max-width: var(--vf-wrap); margin-inline: auto; padding-inline: var(--vf-gut); }
.vf-section { padding-block: clamp(64px, 9vw, 130px); position: relative; }
.vf-center { text-align: center; }

/* ---------- type ---------- */
.vf-display {
  font-family: var(--vf-serif);
  font-weight: 350;
  line-height: 1.02;
  letter-spacing: -.015em;
  font-optical-sizing: auto;
}
h1.vf-hero-title {
  font-family: var(--vf-serif);
  font-weight: 350;
  font-size: clamp(2.85rem, 8.2vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.02em;
}
.vf-h2 {
  font-family: var(--vf-serif);
  font-weight: 360;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -.015em;
}
.vf-h3 {
  font-family: var(--vf-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.12;
}
.vf-italic { font-style: italic; }
.vf-brass-text { color: var(--vf-brass); }
.vf-moss-text { color: var(--vf-moss); }

.vf-eyebrow {
  font-family: var(--vf-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--vf-brass);
  display: inline-flex; align-items: center; gap: 10px;
}
.vf-eyebrow::before {
  content: ""; width: 26px; height: 1px; background: var(--vf-brass); opacity: .6;
}
.vf-eyebrow.is-centered { justify-content: center; }

.vf-lede { color: var(--vf-fg-muted); font-size: clamp(1.02rem, 1.5vw, 1.2rem); line-height: 1.65; max-width: 56ch; }
.vf-small { font-size: .82rem; color: var(--vf-fg-faint); }

/* ---------- buttons ---------- */
.vf-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  padding: 15px 26px; border-radius: 999px;
  transition: transform .25s var(--vf-ease), box-shadow .25s var(--vf-ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.vf-btn svg { transition: transform .35s var(--vf-ease); }
.vf-btn--brass {
  background: linear-gradient(180deg, var(--vf-brass-2), var(--vf-brass));
  color: #20180A;
  box-shadow: 0 12px 30px -10px rgba(201,162,75,.5), inset 0 1px 0 rgba(255,255,255,.35);
}
.vf-btn--brass:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(201,162,75,.6), inset 0 1px 0 rgba(255,255,255,.4); }
.vf-btn--brass:hover svg { transform: translateX(4px); }
.vf-btn--ghost {
  background: transparent; color: var(--vf-bone);
  border: 1px solid var(--vf-line);
}
.vf-btn--ghost:hover { border-color: var(--vf-brass); color: var(--vf-brass); transform: translateY(-2px); }
.vf-btn--paper { background: var(--vf-paper-ink); color: var(--vf-paper); }
.vf-btn--paper:hover { transform: translateY(-2px); }
.vf-btn--block { width: 100%; }
.vf-btn--sm { padding: 11px 18px; font-size: .85rem; }

/* ---------- header / nav ---------- */
.vf-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(14, 19, 17, .82); /* fallback for no color-mix support */
  background: color-mix(in srgb, var(--vf-ink) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s;
}
.vf-nav.is-stuck { background: rgba(14, 19, 17, .95); background: color-mix(in srgb, var(--vf-ink) 92%, transparent); border-bottom-color: var(--vf-line-soft); }
.vf-nav-in { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.vf-brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.vf-brand-mark { width: 34px; height: 34px; flex-shrink: 0; }
.vf-brand-name {
  font-family: var(--vf-serif); font-size: 1.32rem; font-weight: 400; letter-spacing: -.01em; color: var(--vf-bone);
}
.vf-brand-name b { font-weight: 400; }
.vf-nav-links { display: flex; align-items: center; gap: 30px; }
.vf-nav-links a {
  font-size: .92rem; color: var(--vf-fg-muted); position: relative; padding-block: 6px; transition: color .2s;
}
.vf-nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--vf-brass); transition: width .3s var(--vf-ease);
}
.vf-nav-links a:hover { color: var(--vf-bone); }
.vf-nav-links a:hover::after, .vf-nav-links a[aria-current="page"]::after { width: 100%; }
.vf-nav-links a[aria-current="page"] { color: var(--vf-bone); }
.vf-nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.vf-icon-btn { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 999px; color: var(--vf-bone); transition: background .2s, color .2s; position: relative; }
.vf-icon-btn:hover { background: var(--vf-ink-3); color: var(--vf-brass); }
.vf-cart-count {
  position: absolute; top: 4px; right: 2px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--vf-brass); color: var(--vf-ink); font-size: .66rem; font-weight: 700;
  border-radius: 999px; display: grid; place-items: center; transform: scale(0); transition: transform .25s var(--vf-ease);
}
.vf-cart-count.is-active { transform: scale(1); }
.vf-burger { display: none; }

/* ---------- hero ---------- */
.vf-hero { position: relative; overflow: hidden; padding-block: clamp(40px, 7vw, 90px) clamp(56px, 8vw, 110px); }
.vf-hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(32px, 5vw, 72px); align-items: center; position: relative; z-index: 2; }
.vf-hero-eyebrow { margin-bottom: 26px; }
.vf-hero-title .accent { color: var(--vf-brass); font-style: italic; }
.vf-hero-sub { margin-top: 26px; max-width: 44ch; }
.vf-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.vf-hero-trust { display: flex; flex-wrap: wrap; gap: 22px 30px; margin-top: 40px; }
.vf-hero-trust .t { display: inline-flex; align-items: center; gap: 9px; font-size: .85rem; color: var(--vf-fg-muted); }
.vf-hero-trust .t svg { color: var(--vf-moss); flex-shrink: 0; }

/* hero showpiece — animated "specimen" case */
.vf-hero-art { position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; }
.vf-specimen {
  position: relative; width: min(82%, 360px); aspect-ratio: 1000 / 2050;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,.55));
  animation: vf-float 7s var(--vf-ease-soft) infinite;
}
@keyframes vf-float { 0%,100% { transform: translateY(-10px) rotate(-1deg); } 50% { transform: translateY(10px) rotate(1deg); } }
.vf-hero-ring {
  position: absolute; inset: 4%; border-radius: 50%;
  border: 1px solid var(--vf-line); opacity: .5;
}
.vf-hero-ring.r2 { inset: 14%; border-style: dashed; opacity: .3; animation: vf-spin 60s linear infinite; }
@keyframes vf-spin { to { transform: rotate(360deg); } }
.vf-glow { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; z-index: 0; }
.vf-glow--brass { width: 460px; height: 460px; background: radial-gradient(circle, rgba(201,162,75,.34), transparent 70%); top: -10%; right: -8%; }
.vf-glow--moss { width: 420px; height: 420px; background: radial-gradient(circle, rgba(99,135,110,.30), transparent 70%); bottom: -14%; left: -10%; }

/* floating fact tag on hero art */
.vf-hero-tag {
  position: absolute; z-index: 3; background: color-mix(in srgb, var(--vf-ink-2) 86%, transparent);
  backdrop-filter: blur(8px); border: 1px solid var(--vf-line); border-radius: 12px;
  padding: 11px 14px; box-shadow: var(--vf-shadow-card); max-width: 215px;
  animation: vf-float 7s var(--vf-ease-soft) infinite; animation-delay: .4s;
}
.vf-hero-tag .k { font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--vf-brass); }
.vf-hero-tag .v { font-family: var(--vf-serif); font-size: 1.05rem; color: var(--vf-bone); line-height: 1.15; margin-top: 2px; }
.vf-hero-tag.tag-1 { top: 10%; left: -6%; }
.vf-hero-tag.tag-2 { bottom: 12%; right: -5%; animation-delay: .9s; }

/* ---------- marquee strip ---------- */
.vf-strip { border-block: 1px solid var(--vf-line-soft); background: var(--vf-ink-2); overflow: hidden; }
.vf-strip-track { display: flex; gap: 56px; padding-block: 18px; width: max-content; animation: vf-marquee 38s linear infinite; }
.vf-strip:hover .vf-strip-track { animation-play-state: paused; }
.vf-strip-item { display: inline-flex; align-items: center; gap: 12px; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--vf-fg-muted); white-space: nowrap; }
.vf-strip-item svg { color: var(--vf-brass); }
@keyframes vf-marquee { to { transform: translateX(-50%); } }

/* ---------- section heading block ---------- */
.vf-head { max-width: 720px; }
.vf-head.is-centered { margin-inline: auto; text-align: center; }
.vf-head .vf-eyebrow { margin-bottom: 20px; }
.vf-head .vf-lede { margin-top: 20px; }
.vf-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; max-width: none; flex-wrap: wrap; }

/* ---------- collections ---------- */
.vf-collections { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; margin-top: 54px; }
.vf-col-card {
  position: relative; overflow: hidden; border-radius: var(--vf-radius);
  border: 1px solid var(--vf-line); min-height: 260px; padding: 26px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: var(--vf-ink-3); isolation: isolate;
  transition: transform .4s var(--vf-ease), border-color .4s;
}
.vf-col-card::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--c-grad); opacity: .9; transition: transform .6s var(--vf-ease), opacity .4s;
}
.vf-col-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(8,11,9,.82) 100%);
}
.vf-col-card:hover { transform: translateY(-4px); border-color: color-mix(in srgb, var(--vf-brass) 55%, transparent); }
.vf-col-card:hover::before { transform: scale(1.06); }
.vf-col-card .c-name { font-family: var(--vf-serif); font-size: 1.7rem; color: #fff; line-height: 1; }
.vf-col-card .c-blurb { color: rgba(244,239,228,.82); font-size: .9rem; margin-top: 8px; max-width: 34ch; }
.vf-col-card .c-go { margin-top: 16px; display: inline-flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 600; letter-spacing: .04em; color: #fff; }
.vf-col-card .c-go svg { transition: transform .3s var(--vf-ease); }
.vf-col-card:hover .c-go svg { transform: translateX(4px); }
/* spans */
.vf-col-card.span-7 { grid-column: span 7; }
.vf-col-card.span-5 { grid-column: span 5; }
.vf-col-card.span-4 { grid-column: span 4; }
.vf-col-card.span-8 { grid-column: span 8; }

/* ---------- product grid + cards ---------- */
.vf-controls { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-top: 40px; }
.vf-filter {
  font-size: .85rem; color: var(--vf-fg-muted); padding: 9px 18px; border-radius: 999px;
  border: 1px solid var(--vf-line); background: var(--vf-ink-2); transition: all .22s var(--vf-ease); white-space: nowrap;
}
.vf-filter:hover { color: var(--vf-bone); border-color: var(--vf-fg-faint); }
.vf-filter.is-active { background: var(--vf-brass); color: var(--vf-ink); border-color: var(--vf-brass); font-weight: 600; }
.vf-select {
  margin-left: auto; font-size: .85rem; color: var(--vf-bone); padding: 9px 16px; border-radius: 999px;
  border: 1px solid var(--vf-line); background: var(--vf-ink-2); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A7B0A8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer;
}

.vf-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr)); gap: clamp(16px, 2vw, 26px); margin-top: 34px; }

.vf-card {
  position: relative; border-radius: var(--vf-radius); overflow: hidden;
  background: var(--vf-ink-3); border: 1px solid var(--vf-line);
  transition: transform .4s var(--vf-ease), border-color .4s, box-shadow .4s;
  display: flex; flex-direction: column;
}
.vf-card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--vf-brass) 45%, transparent); box-shadow: var(--vf-shadow-card); }
.vf-card-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; display: grid; place-items: center; }
.vf-card-media .vf-specimen-img { width: 62%; transition: transform .6s var(--vf-ease); will-change: transform; }
.vf-card:hover .vf-card-media .vf-specimen-img { transform: translateY(-6px) scale(1.04); }
.vf-card-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; font-size: .66rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
  background: var(--vf-bone); color: var(--vf-ink);
}
.vf-card-badge.is-new { background: var(--vf-moss); color: #0c1410; }
.vf-card-fav {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 36px; height: 36px; border-radius: 999px;
  background: color-mix(in srgb, var(--vf-ink) 60%, transparent); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: var(--vf-bone); opacity: 0; transform: translateY(-4px); transition: all .3s var(--vf-ease);
}
.vf-card:hover .vf-card-fav,
.vf-card:focus-within .vf-card-fav { opacity: 1; transform: translateY(0); }
.vf-card-fav:focus-visible { opacity: 1; transform: translateY(0); }
.vf-card-fav:hover { color: var(--vf-clay); }
.vf-card-fav.is-fav { color: var(--vf-clay); opacity: 1; transform: translateY(0); }
.vf-quick {
  position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 2;
  background: color-mix(in srgb, var(--vf-ink) 82%, transparent); backdrop-filter: blur(8px);
  border: 1px solid var(--vf-line); color: var(--vf-bone); border-radius: 999px; padding: 11px;
  font-size: .82rem; font-weight: 600; opacity: 0; transform: translateY(10px); transition: all .35s var(--vf-ease);
}
.vf-card:hover .vf-quick,
.vf-card:focus-within .vf-quick { opacity: 1; transform: translateY(0); }
.vf-quick:hover, .vf-quick:focus-visible { background: var(--vf-brass); color: var(--vf-ink); border-color: var(--vf-brass); }
/* Touch / no-hover devices: keep purchase controls always visible */
@media (hover: none) {
  .vf-quick, .vf-card-fav { opacity: 1; transform: none; }
}
.vf-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.vf-card-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.vf-card-title { font-family: var(--vf-serif); font-size: 1.28rem; color: var(--vf-bone); line-height: 1; }
.vf-card-species { font-size: .8rem; color: var(--vf-fg-muted); }
.vf-card-latin { font-style: italic; font-size: .78rem; color: var(--vf-fg-faint); }
.vf-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.vf-price { display: inline-flex; align-items: baseline; gap: 8px; }
.vf-price .now { font-size: 1.05rem; font-weight: 600; color: var(--vf-bone); }
.vf-price .was { font-size: .82rem; color: var(--vf-fg-faint); text-decoration: line-through; }
.vf-rating { display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--vf-fg-muted); }
.vf-rating svg { color: var(--vf-brass); }

/* ---------- "why" / promise band ---------- */
.vf-promise { background: var(--vf-ink-2); border-block: 1px solid var(--vf-line-soft); }
.vf-promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.vf-promise-item { padding: 4px; }
.vf-promise-item .ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--vf-ink-3); border: 1px solid var(--vf-line); color: var(--vf-brass); margin-bottom: 16px; }
.vf-promise-item h3 { font-family: var(--vf-serif); font-size: 1.22rem; color: var(--vf-bone); font-weight: 400; }
.vf-promise-item p { font-size: .9rem; color: var(--vf-fg-muted); margin-top: 7px; }

/* ---------- story (light section) ---------- */
.vf-story { background: var(--vf-paper); color: var(--vf-paper-ink); }
.vf-story .vf-eyebrow { color: var(--vf-brass-deep); }
.vf-story .vf-eyebrow::before { background: var(--vf-brass-deep); }
.vf-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 86px); align-items: center; }
.vf-story h2 { color: var(--vf-paper-ink); }
.vf-story p { color: var(--vf-paper-muted); font-size: 1.06rem; line-height: 1.7; margin-top: 18px; max-width: 50ch; }
.vf-story-figures { display: flex; gap: 38px; margin-top: 34px; flex-wrap: wrap; }
.vf-figure .n { font-family: var(--vf-serif); font-size: 2.5rem; color: var(--vf-paper-ink); line-height: 1; }
.vf-figure .l { font-size: .82rem; color: var(--vf-paper-muted); margin-top: 6px; max-width: 18ch; }
.vf-story-visual {
  position: relative; aspect-ratio: 5/6; border-radius: var(--vf-radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #20302a, #0f1713); border: 1px solid rgba(0,0,0,.08);
  display: grid; place-items: center; box-shadow: var(--vf-shadow);
}
.vf-story-visual .vf-specimen-img { width: 48%; filter: drop-shadow(0 30px 40px rgba(0,0,0,.5)); }
.vf-story-plate {
  position: absolute; bottom: 18px; left: 18px; right: 18px; padding: 14px 16px; border-radius: 12px;
  background: rgba(244,239,228,.92); backdrop-filter: blur(4px);
}
.vf-story-plate .pt { font-family: var(--vf-serif); font-style: italic; font-size: 1.05rem; color: var(--vf-paper-ink); }
.vf-story-plate .ps { font-size: .78rem; color: var(--vf-paper-muted); margin-top: 2px; }

/* ---------- featured / spotlight ---------- */
.vf-spotlight { background: radial-gradient(120% 90% at 50% -10%, #16201b 0%, var(--vf-ink) 60%); }

/* ---------- reviews ---------- */
.vf-reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.vf-review { background: var(--vf-ink-3); border: 1px solid var(--vf-line); border-radius: var(--vf-radius); padding: 26px; display: flex; flex-direction: column; }
.vf-review .stars { display: inline-flex; gap: 3px; color: var(--vf-brass); margin-bottom: 14px; }
.vf-review .q { font-family: var(--vf-serif); font-size: 1.18rem; line-height: 1.45; color: var(--vf-bone); font-weight: 400; }
.vf-review .by { margin-top: auto; padding-top: 20px; display: flex; align-items: center; gap: 11px; }
.vf-review .av { width: 38px; height: 38px; border-radius: 999px; display: grid; place-items: center; font-weight: 600; font-size: .85rem; color: var(--vf-ink); background: linear-gradient(135deg, var(--vf-brass-2), var(--vf-moss)); }
.vf-review .nm { font-size: .9rem; color: var(--vf-bone); font-weight: 600; }
.vf-review .mt { font-size: .78rem; color: var(--vf-fg-faint); }

/* ---------- CTA band ---------- */
.vf-cta { position: relative; overflow: hidden; }
.vf-cta-inner {
  position: relative; z-index: 2; border-radius: var(--vf-radius-lg);
  background: linear-gradient(150deg, #1a2620, #0e1512); border: 1px solid var(--vf-line);
  padding: clamp(40px, 6vw, 76px); text-align: center; box-shadow: var(--vf-shadow);
}
.vf-cta h2 { color: var(--vf-bone); }
.vf-cta p { margin: 18px auto 0; }
.vf-cta-form { display: flex; gap: 10px; max-width: 440px; margin: 32px auto 0; flex-wrap: wrap; }
.vf-input {
  flex: 1; min-width: 200px; background: var(--vf-ink); border: 1px solid var(--vf-line); border-radius: 999px;
  color: var(--vf-bone); padding: 15px 20px; font-size: .95rem; transition: border-color .2s;
}
.vf-input::placeholder { color: var(--vf-fg-faint); }
.vf-input:focus { outline: none; border-color: var(--vf-brass); }
.vf-cta-note { margin-top: 16px; font-size: .78rem; color: var(--vf-fg-faint); }

/* ---------- footer ---------- */
.vf-footer { border-top: 1px solid var(--vf-line-soft); background: var(--vf-ink-2); padding-block: clamp(48px, 6vw, 80px) 32px; }
.vf-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.vf-footer-brand .vf-brand { margin-bottom: 16px; }
.vf-footer-brand p { color: var(--vf-fg-muted); font-size: .9rem; max-width: 34ch; }
.vf-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.vf-footer-social a { width: 40px; height: 40px; border-radius: 11px; border: 1px solid var(--vf-line); display: grid; place-items: center; color: var(--vf-fg-muted); transition: all .2s; }
.vf-footer-social a:hover { color: var(--vf-brass); border-color: var(--vf-brass); transform: translateY(-2px); }
.vf-footer-col h4 { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--vf-fg-faint); margin-bottom: 16px; }
.vf-footer-col a { display: block; color: var(--vf-fg-muted); font-size: .92rem; padding-block: 6px; transition: color .2s; }
.vf-footer-col a:hover { color: var(--vf-brass); }
.vf-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--vf-line-soft); }
.vf-footer-bottom p { font-size: .82rem; color: var(--vf-fg-faint); }
.vf-pay { display: flex; gap: 8px; align-items: center; color: var(--vf-fg-faint); }
.vf-pay span { font-size: .72rem; letter-spacing: .1em; }

/* ---------- reveal on scroll ---------- */
.vf-reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--vf-ease), transform .8s var(--vf-ease); }
.vf-reveal.is-in { opacity: 1; transform: none; }
.vf-reveal[data-delay="1"] { transition-delay: .08s; }
.vf-reveal[data-delay="2"] { transition-delay: .16s; }
.vf-reveal[data-delay="3"] { transition-delay: .24s; }
.vf-reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- cart drawer ---------- */
.vf-drawer-scrim { position: fixed; inset: 0; background: rgba(6,9,8,.6); backdrop-filter: blur(3px); z-index: 150; opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; }
.vf-drawer-scrim.is-open { opacity: 1; visibility: visible; }
.vf-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(420px, 92vw); z-index: 160;
  background: var(--vf-ink-2); border-left: 1px solid var(--vf-line); transform: translateX(100%);
  transition: transform .4s var(--vf-ease); display: flex; flex-direction: column;
}
.vf-drawer.is-open { transform: none; }
.vf-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--vf-line); }
.vf-drawer-head h3 { font-family: var(--vf-serif); font-size: 1.4rem; font-weight: 400; }
.vf-drawer-body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.vf-drawer-empty { text-align: center; color: var(--vf-fg-muted); padding-top: 60px; }
.vf-drawer-empty svg { color: var(--vf-fg-faint); margin: 0 auto 16px; }
.vf-line-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--vf-line-soft); }
.vf-line-item .li-img { width: 64px; height: 80px; border-radius: 10px; overflow: hidden; flex-shrink: 0; display: grid; place-items: center; }
.vf-line-item .li-img img { width: 64%; }
.vf-line-item .li-meta { flex: 1; min-width: 0; }
.vf-line-item .li-title { font-family: var(--vf-serif); font-size: 1.05rem; color: var(--vf-bone); }
.vf-line-item .li-sub { font-size: .78rem; color: var(--vf-fg-muted); }
.vf-line-item .li-row { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.vf-qty { display: inline-flex; align-items: center; border: 1px solid var(--vf-line); border-radius: 999px; }
.vf-qty button { width: 28px; height: 28px; display: grid; place-items: center; color: var(--vf-bone); }
.vf-qty button:hover { color: var(--vf-brass); }
.vf-qty span { min-width: 26px; text-align: center; font-size: .85rem; }
.vf-li-remove { font-size: .76rem; color: var(--vf-fg-faint); }
.vf-li-remove:hover { color: var(--vf-clay); }
/* saved-for-later inside drawer */
.vf-saved { padding: 18px 24px 8px; border-top: 1px solid var(--vf-line); }
.vf-saved[hidden] { display: none; }
.vf-saved-head { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--vf-fg-faint); margin-bottom: 12px; }
.vf-saved-item { display: flex; align-items: center; gap: 12px; padding: 9px 0; }
.vf-saved-art { width: 42px; height: 54px; border-radius: 9px; overflow: hidden; flex-shrink: 0; display: grid; place-items: center; }
.vf-saved-art img, .vf-saved-art svg { width: 66%; }
.vf-saved-meta { flex: 1; min-width: 0; }
.vf-saved-title { font-family: var(--vf-serif); font-size: 1rem; color: var(--vf-bone); display: block; }
.vf-saved-title:hover { color: var(--vf-brass); }
.vf-saved-sub { font-size: .76rem; color: var(--vf-fg-muted); }
.vf-saved-x { width: 32px; height: 32px; color: var(--vf-fg-faint); }
.vf-saved-x:hover { color: var(--vf-clay); background: var(--vf-ink-3); }

.vf-drawer-foot { padding: 20px 24px; border-top: 1px solid var(--vf-line); }
.vf-drawer-sub { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.vf-drawer-sub .l { color: var(--vf-fg-muted); font-size: .9rem; }
.vf-drawer-sub .v { font-family: var(--vf-serif); font-size: 1.5rem; color: var(--vf-bone); }
.vf-drawer-ship { font-size: .78rem; color: var(--vf-fg-faint); margin-bottom: 16px; }

/* toast */
.vf-toast {
  position: fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px); z-index: 200;
  background: var(--vf-bone); color: var(--vf-ink); padding: 13px 20px; border-radius: 999px; font-size: .88rem; font-weight: 600;
  box-shadow: var(--vf-shadow); opacity: 0; visibility: hidden; transition: all .35s var(--vf-ease); display: inline-flex; align-items: center; gap: 9px;
}
.vf-toast.is-show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.vf-toast svg { color: #1c7a4a; }

/* ---------- product detail page ---------- */
.vf-pdp { padding-top: clamp(28px, 4vw, 50px); }
.vf-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .82rem; color: var(--vf-fg-muted); margin-bottom: 30px; flex-wrap: wrap; }
.vf-breadcrumb a:hover { color: var(--vf-brass); }
.vf-breadcrumb .sep { color: var(--vf-fg-faint); }
.vf-pdp-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(34px, 5vw, 70px); align-items: start; }
.vf-pdp-gallery { position: sticky; top: 96px; }
.vf-pdp-stage { position: relative; aspect-ratio: 1/1; border-radius: var(--vf-radius-lg); overflow: hidden; display: grid; place-items: center; border: 1px solid var(--vf-line); }
.vf-pdp-stage .vf-specimen-img { width: 56%; filter: drop-shadow(0 40px 50px rgba(0,0,0,.5)); animation: vf-float 8s var(--vf-ease-soft) infinite; }
.vf-swatches { display: flex; gap: 10px; margin-top: 16px; }
.vf-swatch { width: 54px; height: 54px; border-radius: 12px; border: 1px solid var(--vf-line); overflow: hidden; display: grid; place-items: center; cursor: pointer; transition: border-color .2s, transform .2s; }
.vf-swatch:hover, .vf-swatch.is-active { border-color: var(--vf-brass); transform: translateY(-2px); }
.vf-swatch img { width: 60%; }

.vf-pdp-info .vf-eyebrow { margin-bottom: 16px; }
.vf-pdp-title { font-family: var(--vf-serif); font-size: clamp(2.2rem, 4.4vw, 3.4rem); font-weight: 360; line-height: 1; letter-spacing: -.015em; }
.vf-pdp-species { font-size: 1rem; color: var(--vf-fg-muted); margin-top: 8px; }
.vf-pdp-species i { font-style: italic; }
.vf-pdp-rating { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: .88rem; color: var(--vf-fg-muted); }
.vf-pdp-rating .stars { display: inline-flex; gap: 2px; color: var(--vf-brass); }
.vf-pdp-price { display: flex; align-items: baseline; gap: 12px; margin-top: 22px; }
.vf-pdp-price .now { font-family: var(--vf-serif); font-size: 2.1rem; color: var(--vf-bone); }
.vf-pdp-price .was { font-size: 1.05rem; color: var(--vf-fg-faint); text-decoration: line-through; }
.vf-pdp-price .save { font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #0c1410; background: var(--vf-moss); padding: 4px 9px; border-radius: 999px; }
.vf-pdp-story { color: var(--vf-fg-muted); font-size: 1.04rem; line-height: 1.7; margin-top: 22px; }
.vf-pdp-block { margin-top: 26px; }
.vf-pdp-label { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--vf-fg-faint); margin-bottom: 12px; }
.vf-model-grid { display: flex; flex-wrap: wrap; gap: 9px; }
.vf-model {
  font-size: .82rem; color: var(--vf-fg-muted); padding: 9px 15px; border-radius: 10px;
  border: 1px solid var(--vf-line); background: var(--vf-ink-2); transition: all .2s;
}
.vf-model:hover { border-color: var(--vf-fg-faint); color: var(--vf-bone); }
.vf-model.is-active { border-color: var(--vf-brass); color: var(--vf-bone); background: color-mix(in srgb, var(--vf-brass) 14%, transparent); }
.vf-pdp-actions { display: flex; gap: 12px; margin-top: 30px; }
.vf-pdp-actions .vf-btn--brass { flex: 1; }
.vf-pdp-fav { width: 54px; flex-shrink: 0; border: 1px solid var(--vf-line); border-radius: 999px; display: grid; place-items: center; color: var(--vf-bone); transition: all .2s; }
.vf-pdp-fav:hover, .vf-pdp-fav.is-fav { color: var(--vf-clay); border-color: var(--vf-clay); }
.vf-pdp-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--vf-line); }
.vf-meta-item .mk { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--vf-fg-faint); margin-bottom: 5px; }
.vf-meta-item .mv { font-size: .92rem; color: var(--vf-bone); }
.vf-factbox { margin-top: 30px; padding: 22px; border-radius: var(--vf-radius); border: 1px solid var(--vf-line); background: var(--vf-ink-2); display: flex; gap: 16px; }
.vf-factbox .fi { color: var(--vf-brass); flex-shrink: 0; }
.vf-factbox .fk { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--vf-brass); margin-bottom: 6px; }
.vf-factbox .fv { font-size: .95rem; color: var(--vf-bone-dim); line-height: 1.55; }

/* generic page (about/policy) */
.vf-prose { max-width: 760px; }
.vf-prose h1 { font-family: var(--vf-serif); font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 360; letter-spacing: -.015em; line-height: 1.02; }
.vf-prose h2 { font-family: var(--vf-serif); font-size: 1.7rem; font-weight: 400; margin-top: 40px; }
.vf-prose p { color: var(--vf-fg-muted); margin-top: 16px; line-height: 1.75; }
.vf-prose ul { margin-top: 16px; padding-left: 20px; color: var(--vf-fg-muted); }
.vf-prose li { margin-top: 8px; line-height: 1.7; }
.vf-prose a { color: var(--vf-brass); text-decoration: underline; text-underline-offset: 3px; }

/* empty state for collection page */
.vf-empty { text-align: center; padding: 70px 20px; color: var(--vf-fg-muted); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .vf-hero-grid { grid-template-columns: 1fr; }
  .vf-hero-art { order: -1; max-width: 440px; margin-inline: auto; }
  .vf-hero-tag.tag-1 { left: 2%; }
  .vf-hero-tag.tag-2 { right: 2%; }
  .vf-promise-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .vf-reviews-grid { grid-template-columns: 1fr; }
  .vf-pdp-grid { grid-template-columns: 1fr; }
  .vf-pdp-gallery { position: static; max-width: 460px; }
  .vf-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .vf-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 880px) {
  .vf-story-grid { grid-template-columns: 1fr; }
  .vf-story-visual { max-width: 440px; }
  .vf-col-card.span-7, .vf-col-card.span-5, .vf-col-card.span-4, .vf-col-card.span-8 { grid-column: span 6; }
}
@media (max-width: 720px) {
  .vf-nav-links { display: none; }
  .vf-burger { display: inline-grid; }
  .vf-collections { grid-template-columns: 1fr; }
  .vf-col-card.span-7, .vf-col-card.span-5, .vf-col-card.span-4, .vf-col-card.span-8 { grid-column: span 1; }
  .vf-reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .vf-promise-grid { grid-template-columns: 1fr; }
  .vf-footer-grid { grid-template-columns: 1fr 1fr; }
  .vf-pdp-meta { grid-template-columns: 1fr; }
  .vf-hero-trust { gap: 14px 22px; }
}

/* mobile nav panel — hidden off-canvas by default, slides in when .is-open */
.vf-mobile-nav {
  position: fixed; inset: 0; z-index: 140; background: var(--vf-ink); padding: 90px var(--vf-gut) 40px;
  transform: translateX(100%); transition: transform .4s var(--vf-ease); display: flex; flex-direction: column; gap: 6px;
  visibility: hidden;
}
.vf-mobile-nav.is-open { transform: none; visibility: visible; }
.vf-mobile-nav a { font-family: var(--vf-serif); font-size: 1.7rem; color: var(--vf-bone); padding: 12px 0; border-bottom: 1px solid var(--vf-line-soft); }
.vf-mobile-nav a:hover { color: var(--vf-brass); }
.vf-mobile-close { position: absolute; top: 22px; right: var(--vf-gut); width: 44px; height: 44px; display: grid; place-items: center; color: var(--vf-bone); }
.vf-burger { display: none; }


/* ---------- real horse photography (full-bleed art, not phone-shaped SVG) ---------- */
.vf-card-media .vf-photo { width: 100%; height: 100%; object-fit: cover; }
.vf-card:hover .vf-card-media .vf-photo { transform: scale(1.05); }
.vf-pdp-stage .vf-photo { width: 100%; height: 100%; object-fit: cover; border-radius: var(--vf-radius-lg); animation: none; }
.vf-story-visual .vf-photo { width: 100%; height: 100%; object-fit: cover; filter: none; }
.li-img .vf-photo, .vf-saved-art .vf-photo { width: 100%; height: 100%; object-fit: cover; }
.vf-hero-art .vf-photo { width: 78%; height: auto; border-radius: 28px; }
.vf-specimen:has(.vf-photo) { width: min(86%, 420px); aspect-ratio: 896/1440; }
.vf-specimen .vf-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 26px; box-shadow: var(--vf-shadow); }
.vf-specimen picture { display: block; width: 100%; height: 100%; }

/* real Printify case mockups (photo of the case) — fit cleanly on the card */
.vf-card-media .vf-mockup { width: 116%; height: 116%; margin: -8%; object-fit: contain; background: #f4f1ec; }
.vf-card:hover .vf-card-media .vf-mockup { transform: scale(1.05); }
.vf-pdp-stage .vf-mockup { width: 100%; height: 100%; object-fit: cover; background: #f4f1ec; border-radius: var(--vf-radius-lg); animation: none; }
.li-img .vf-mockup, .vf-saved-art .vf-mockup { width: 100%; height: 100%; object-fit: cover; }
