/* ---------------------------------------------------------------
   VELGRINA — Designed for the Flow of Life
   Editorial layer: tokens, typography, components, sections
   --------------------------------------------------------------- */

:root {
  --bg: #F4F1EC;
  --bg-deep: #E8E2D8;
  --ink: #1A1816;
  --ink-soft: #4A453E;
  --ink-mute: #8C857A;
  --line: #D8D1C4;
  --accent: #8B6F47;
  --accent-deep: #6B5436;
  --paper: #FBFAF6;
  --shadow: 0 1px 2px rgba(26,24,22,0.04), 0 8px 24px rgba(26,24,22,0.06);
  --font-display: "Cormorant Garamond","Times New Roman",serif;
  --font-body: "Inter","Helvetica Neue",system-ui,sans-serif;
}

[data-theme="midnight"] {
  --bg: #14130F;
  --bg-deep: #1F1D18;
  --ink: #F4F1EC;
  --ink-soft: #C9C2B5;
  --ink-mute: #8C857A;
  --line: #2D2A24;
  --accent: #C9A875;
  --accent-deep: #A48851;
  --paper: #1A1815;
  --shadow: 0 1px 2px rgba(0,0,0,0.5), 0 12px 40px rgba(0,0,0,0.4);
}

[data-theme="porcelain"] {
  --bg: #FFFFFF;
  --bg-deep: #F2F2F0;
  --ink: #0A0A0A;
  --ink-soft: #3A3A3A;
  --ink-mute: #8A8A8A;
  --line: #E5E5E2;
  --accent: #1A1A1A;
  --accent-deep: #000000;
  --paper: #FAFAF8;
}

/* Editorial layer scope — only kicks in on pages that opt in via .vg body class */
body.vg { background: var(--bg); color: var(--ink); font-family: var(--font-body); font-size: 15px; line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; transition: background-color .5s ease, color .5s ease; overflow-x: hidden; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body.vg img { max-width: 100%; display: block; }
/* Suppress blue tap highlight on iOS/Android */
body.vg * { -webkit-tap-highlight-color: transparent; }
body.vg button, body.vg a, body.vg [role="button"],
body.vg input, body.vg select, body.vg textarea, body.vg label { touch-action: manipulation; }
/* Prevent iOS zoom on focus: all inputs must be >= 16px font-size on mobile */
@media (max-width: 980px) {
  body.vg input, body.vg select, body.vg textarea { font-size: 16px !important; }
  body.vg input[type="search"] { font-size: 16px !important; }
}
body.vg a { color: inherit; text-decoration: none; }
/* Compensate for sticky nav (84px) + announcement bar (~39px) so anchor jumps don't hide headlines */
body.vg section[id], body.vg .vg-pillars, body.vg .vg-featured, body.vg .vg-config, body.vg .vg-story, body.vg .vg-color, body.vg .vg-projects, body.vg .vg-editorial, body.vg .vg-test, body.vg .vg-news { scroll-margin-top: 130px; }
body.vg :focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Typography */
.vg .display { font-family: var(--font-display); font-weight: 300; letter-spacing: -0.015em; line-height: 0.96; font-feature-settings: "liga","kern"; }
.vg .eyebrow { font-family: var(--font-body); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); }
.vg .body-serif { font-family: var(--font-display); font-weight: 400; }

/* Layout */
.vg .vg-container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.vg .vg-container-tight { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 768px) {
  .vg .vg-container, .vg .vg-container-tight { padding: 0 24px; }
}

/* Buttons */
.vg .btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 28px; font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; border: 1px solid var(--ink); color: var(--ink); background: transparent; transition: background .4s ease, color .4s ease, border-color .4s ease; cursor: pointer; }
.vg .btn:hover { background: var(--ink); color: var(--bg); }
.vg .btn-solid { background: var(--ink); color: var(--bg); }
.vg .btn-solid:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.vg .btn-ghost { border-color: transparent; padding-left: 0; padding-right: 0; }
.vg .btn-ghost:hover { background: transparent; color: var(--accent); }
.vg .btn .arrow { display: inline-block; transition: transform .4s cubic-bezier(.4,0,.2,1); }
.vg .btn:hover .arrow { transform: translateX(4px); }

/* Link reveal */
.vg .link-reveal { position: relative; display: inline-block; padding-bottom: 2px; }
.vg .link-reveal::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .5s cubic-bezier(.7,0,.2,1); }
.vg .link-reveal:hover::after { transform: scaleX(1); transform-origin: left; }

/* Helpers */
.vg .hairline { height: 1px; background: var(--line); width: 100%; }
.vg .kb-wrap { overflow: hidden; }
.vg .kb-img { transition: transform 1.4s cubic-bezier(.2,.6,.2,1); }
.vg .kb-wrap:hover .kb-img { transform: scale(1.05); }

/* Marquee */
@keyframes vg-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes vg-fadeDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes vg-fadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes vg-fadeSwap { from { opacity: 0; transform: scale(.97);} to { opacity: 1; transform: scale(1);} }
@keyframes vg-configSwap { from { opacity: .9; transform: scale(.99);} to { opacity: 1; transform: scale(1);} }
@keyframes vg-scrollLine { 0% { background-position: 0% 0%; } 100% { background-position: 0% 100%; } }

/* ===== Announcement bar ===== */
.vg-announce { background: var(--ink); color: var(--bg); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 10px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 60; }
.vg-announce__track { display: inline-flex; gap: 64px; animation: vg-marquee 50s linear infinite; padding-left: 32px; }
.vg-announce__track > span { display: inline-flex; align-items: center; gap: 64px; }
.vg-announce__dot { opacity: 0.4; }

/* ===== Top nav ===== */
.vg-nav { position: sticky; top: 0; z-index: 50; background: var(--bg); border-bottom: 1px solid var(--line); transition: background-color .4s ease, backdrop-filter .4s ease, box-shadow .4s ease; }
.vg-nav.is-scrolled { background: color-mix(in oklab, var(--bg) 97%, transparent); backdrop-filter: blur(18px) saturate(1.2); -webkit-backdrop-filter: blur(18px) saturate(1.2); box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(26,24,22,0.04); }
.vg-nav__row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 84px; gap: 24px; }
.vg-nav__list { display: flex; gap: 36px; }
.vg-nav__link { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--ink); position: relative; padding: 30px 0; transition: color .3s; background: none; border: 0; cursor: pointer; }
.vg-nav__link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 28px; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .4s cubic-bezier(.7,0,.2,1); }
.vg-nav__item.is-open .vg-nav__link, .vg-nav__link:hover { color: var(--accent); }
.vg-nav__item.is-open .vg-nav__link::after { transform: scaleX(1); }
.vg-nav__logo-link { justify-self: center; display: inline-flex; align-items: center; justify-content: center; }
.vg-nav__logo { height: 28px; width: auto; display: block; object-fit: contain; }
.vg-nav__util { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.vg-nav__util a, .vg-nav__util button { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; }
.vg-mobile-account { display: none; }
.vg-nav__cart-badge { position: absolute; top: -6px; right: -8px; background: var(--accent); color: #fff; font-size: 10px; width: 16px; height: 16px; border-radius: 50%; display: grid; place-items: center; font-weight: 600; }

/* Mega menu */
.vg-mega { position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 32px 60px rgba(0,0,0,0.10); animation: vg-fadeDown .35s ease; display: none; z-index: 55; }
.vg-mega.is-open { display: block; }
.vg-mega__grid { display: grid; grid-template-columns: repeat(3, 1fr) 1.2fr; gap: 56px; padding: 48px 48px 56px; }
.vg-mega__col-title { margin-bottom: 18px; }
.vg-mega__list { list-style: none; display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; }
.vg-mega__list a { font-family: var(--font-display); font-size: 19px; font-weight: 400; color: var(--ink-soft); }
.vg-mega__featured { display: block; position: relative; aspect-ratio: 4/5; overflow: hidden; }
.vg-mega__featured img { width: 100%; height: 100%; object-fit: cover; }
.vg-mega__featured-shade { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.65)); }
.vg-mega__featured-body { position: absolute; left: 24px; right: 24px; bottom: 24px; color: #fff; }

/* Mobile nav toggle */
.vg-mobile-toggle { display: none; }
.vg-mobile-toggle__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.vg-mobile-toggle__bars {
  position: relative;
  width: 22px;
  height: 14px;
  display: block;
}
.vg-mobile-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transition: transform .28s ease, top .28s ease;
}
.vg-mobile-toggle__bars span:first-child { top: 3px; }
.vg-mobile-toggle__bars span:last-child { top: 10px; }
.vg-mobile-panel { display: none; }
@media (max-width: 980px) {
  .vg-nav {
    color: #fff;
  }
  .vg-nav__row {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    height: 64px;
    gap: 0;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
  .vg-nav__item,
  .vg-nav__util a:not([data-keep]),
  .vg-nav__util button:not([data-keep]),
  .vg-wish {
    display: none;
  }
  .vg-nav__list {
    width: 44px;
    justify-self: start;
    display: flex;
    align-items: center;
  }
  .vg-mobile-toggle {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
  }
  .vg-nav.is-mobile-open .vg-mobile-toggle__bars span:first-child {
    top: 7px;
    transform: rotate(45deg);
  }
  .vg-nav.is-mobile-open .vg-mobile-toggle__bars span:last-child {
    top: 7px;
    transform: rotate(-45deg);
  }
  .vg-mega { display: none !important; }
  .vg-nav__logo-link {
    justify-self: center;
    min-width: 0;
    min-height: 44px;
    align-self: center;
  }
  .vg-nav__logo {
    height: 30px;
    max-width: 118px;
  }
  .vg-nav__util {
    width: 44px;
    justify-self: end;
    justify-content: flex-end;
    gap: 0;
  }
  .vg-account-link {
    width: 44px;
    height: 44px;
    max-width: 44px;
    display: grid;
    place-items: center;
    color: #fff;
  }
  .vg-account-link span {
    display: none;
  }
  .vg-account-link svg {
    width: 20px;
    height: 20px;
  }
  .vg-announce {
    font-size: 9px;
    letter-spacing: 0.13em;
    line-height: 1;
    padding: 7px 0;
  }
  .vg-nav.is-mobile-open .vg-mobile-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 70;
    display: block;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    padding: 8px 18px 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    background: #101010;
    box-shadow: 0 28px 70px rgba(0,0,0,0.34);
  }
  .vg-mobile-panel a,
  .vg-mobile-panel button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    min-height: 54px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-align: left;
    text-transform: uppercase;
    background: transparent;
  }
  .vg-mobile-panel a span,
  .vg-mobile-panel button span {
    color: rgba(255,255,255,0.54);
    letter-spacing: 0;
    text-transform: none;
    font-size: 12px;
    font-weight: 500;
    text-align: right;
  }
}

/* ===== Search overlay ===== */
.vg-search { position: fixed; inset: 0; z-index: 200; background: color-mix(in oklab, var(--bg) 96%, transparent); backdrop-filter: blur(20px); animation: vg-fadeIn .35s ease; display: none; }
.vg-search.is-open { display: block; }
.vg-search__close { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; }
.vg-search__row { border-bottom: 1px solid var(--ink); padding-bottom: 16px; display: flex; align-items: center; gap: 16px; }
.vg-search__input { flex: 1; border: 0; outline: 0; background: transparent; font-family: var(--font-display); font-size: 56px; font-weight: 300; color: var(--ink); padding: 8px 0; }
.vg-search__cols { margin-top: 56px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
.vg-search__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.vg-search__list a, .vg-search__list button { font-family: var(--font-display); font-size: 22px; color: var(--ink-soft); text-align: left; background: none; border: 0; cursor: pointer; }

/* ===== HERO ===== */
.vg-hero { position: relative; height: calc(100vh - 84px - 39px); min-height: 640px; max-height: 900px; overflow: hidden; overflow: clip; contain: paint; background: var(--ink); }
.vg-hero__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s cubic-bezier(.4,0,.2,1); }
.vg-hero__slide.is-active { opacity: 1; }
.vg-hero__slide img,
.vg-hero__slide video { width: 100%; height: 100%; object-fit: cover; transform: scale(1); transition: transform 8s ease-out; }
.vg-hero__slide.is-active img,
.vg-hero__slide.is-active video { transform: scale(1.04); }
.vg-hero__shade { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.55) 100%); }
.vg-hero__body { position: relative; height: 100%; display: grid; grid-template-rows: 1fr auto; padding: 80px 0 56px; color: #fff; }
.vg-hero__copy { align-self: center; max-width: 820px; }
.vg-hero__eyebrow { color: rgba(255,255,255,0.85); margin-bottom: 28px; }
.vg-hero__eyebrow .rule { display: inline-block; width: 32px; height: 1px; background: currentColor; margin-right: 14px; vertical-align: middle; }
.vg-hero__title { font-size: clamp(56px, 8.5vw, 132px); color: #fff; }
.vg-hero__title em { font-style: italic; color: var(--accent); }
.vg-hero__sub { margin-top: 28px; font-size: 17px; line-height: 1.5; max-width: 520px; color: rgba(255,255,255,0.88); }
.vg-hero__cta { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.vg-hero__cta .btn-ghost { color: #fff; opacity: 0.92; }
.vg-hero__cta .btn-ghost:hover { color: var(--accent); opacity: 1; }
.vg-hero__cta .btn-ghost::before { content: ""; display: inline-block; width: 24px; height: 1px; background: currentColor; margin-right: 4px; vertical-align: middle; }
.vg-hero__bar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 24px; }
.vg-hero__indicator { display: flex; gap: 12px; align-items: center; }
.vg-hero__ind-btn { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; width: 80px; color: rgba(255,255,255,0.7); padding-top: 12px; background: none; border: 0; cursor: pointer; }
.vg-hero__ind-rail { height: 1px; width: 100%; background: rgba(255,255,255,0.3); position: relative; overflow: hidden; }
.vg-hero__ind-rail-fill { position: absolute; inset: 0; background: #fff; transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.vg-hero__ind-btn.is-active .vg-hero__ind-rail-fill { transform: scaleX(1); transition: transform 7s linear; }
.vg-hero__ind-tag { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.vg-hero__ind-btn.is-active .vg-hero__ind-tag { color: #fff; }
.vg-hero__scroll { justify-self: end; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.7); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.vg-hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, #fff 0%, #fff 50%, transparent 50%, transparent 100%); background-size: 100% 200%; animation: vg-scrollLine 2.4s ease-in-out infinite; }
@media (max-width: 768px) {
  .vg-hero__title { font-size: clamp(44px, 13vw, 80px); line-height: 1.02; }
  .vg-hero__bar { display: none; }
  .vg-hero { height: auto; min-height: 600px; max-height: none; padding-bottom: 32px; }
  .vg-hero__body { padding: 56px 0 24px; }
  .vg-hero__sub { font-size: 15px; }
  .vg-hero__cta { flex-direction: column; gap: 12px; align-items: stretch; margin-top: 32px; }
  .vg-hero__cta .btn { justify-content: center; padding: 16px 24px; }
  .vg-hero__cta .btn-ghost { padding: 12px 0; }
}

/* ===== PILLARS ===== */
.vg-pillars { padding: 140px 0 120px; }
.vg-pillars__head { display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.vg-pillars__head h2 { font-size: clamp(40px, 5vw, 72px); max-width: 900px; }
.vg-pillars__head em { font-style: italic; color: var(--accent); }
.vg-pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.vg-pillars__card-img { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 28px; }
.vg-pillars__card-img img { width: 100%; height: 100%; object-fit: cover; }
.vg-pillars__card-meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.vg-pillars__card h3 { font-size: 36px; margin-bottom: 14px; white-space: pre-line; }
.vg-pillars__card p { color: var(--ink-soft); max-width: 380px; }
@media (max-width: 980px) {
  .vg-pillars { padding: 80px 0; }
  .vg-pillars__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .vg-pillars__head h2 { font-size: clamp(32px, 7vw, 48px); }
  .vg-pillars__grid { grid-template-columns: 1fr; gap: 48px; }
  .vg-pillars__card-img { aspect-ratio: 4/3; }
  .vg-pillars__card h3 { font-size: 30px; }
}

/* ===== FEATURED PRODUCT ===== */
.vg-featured { padding: 140px 0; background: var(--bg); }
.vg-featured__head { display: grid; grid-template-columns: auto auto 1fr; align-items: end; gap: 32px; margin-bottom: 72px; }
.vg-featured__rule { height: 1px; width: 80px; background: var(--ink-mute); margin-bottom: 8px; }
.vg-featured__date { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.vg-featured__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: stretch; }
.vg-featured__media { position: relative; background: linear-gradient(160deg, var(--bg-deep) 0%, var(--bg) 100%); aspect-ratio: 5/6; overflow: hidden; }
.vg-featured__media > img { width: 100%; height: 100%; object-fit: contain; padding: 24px; }
.vg-hotspot { position: absolute; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.85); border: 1px solid rgba(0,0,0,0.1); display: grid; place-items: center; cursor: pointer; transition: all .35s cubic-bezier(.4,0,.2,1); transform: translate(-50%, -50%); box-shadow: 0 2px 12px rgba(0,0,0,0.15); }
.vg-hotspot__core { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); transition: all .3s; }
.vg-hotspot.is-active { background: var(--accent); box-shadow: 0 0 0 8px rgba(139,111,71,0.2); }
.vg-hotspot.is-active .vg-hotspot__core { background: #fff; width: 8px; height: 8px; }
.vg-hotspot__panel { position: absolute; left: 24px; bottom: 24px; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 16px 20px; max-width: 320px; border-left: 2px solid var(--accent); }
.vg-hotspot__panel .eyebrow { margin-bottom: 6px; color: var(--accent); }
.vg-hotspot__panel-title { font-size: 14px; font-weight: 500; margin-bottom: 4px; color: var(--ink); }
.vg-hotspot__panel-detail { font-size: 12px; color: var(--ink-soft); line-height: 1.5; }
.vg-featured__copy { display: flex; flex-direction: column; justify-content: space-between; padding: 20px 0; }
.vg-featured__copy h2 { font-size: clamp(48px, 5.6vw, 88px); margin-bottom: 32px; }
.vg-featured__copy h2 em { font-style: italic; color: var(--accent); }
.vg-featured__copy p { font-size: 17px; line-height: 1.65; color: var(--ink-soft); margin-bottom: 24px; max-width: 460px; }
.vg-featured__spec { border-top: 1px solid var(--line); padding-top: 24px; }
.vg-featured__spec-row { display: grid; grid-template-columns: 120px 1fr; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.vg-featured__spec-key { color: var(--ink-mute); letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; }
.vg-featured__spec-val { font-family: var(--font-display); font-size: 17px; }
.vg-featured__cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
@media (max-width: 980px) {
  .vg-featured { padding: 80px 0; }
  .vg-featured__grid { grid-template-columns: 1fr; gap: 48px; }
  .vg-featured__head { grid-template-columns: auto 1fr; gap: 12px; margin-bottom: 40px; }
  .vg-featured__rule { display: none; }
  .vg-featured__media { aspect-ratio: 1/1; }
  .vg-featured__spec-row { grid-template-columns: 100px 1fr; gap: 12px; }
  .vg-featured__cta { flex-direction: column; align-items: stretch; gap: 8px; }
  .vg-featured__cta .btn { justify-content: center; }
}

/* ===== CONFIGURATOR ===== */
.vg-config { background: var(--bg-deep); padding: 120px 0; }
.vg-config__head { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: end; margin-bottom: 64px; }
.vg-config__head h2 { font-size: clamp(40px, 4.8vw, 64px); max-width: 700px; }
.vg-config__head em { font-style: italic; color: var(--accent); }
.vg-config__shell { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; background: var(--paper); border: 1px solid var(--line); }
.vg-config__preview { position: relative; aspect-ratio: 5/4; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%); display: grid; place-items: center; overflow: hidden; }
.vg-config__preview img { max-width: 88%; max-height: 88%; object-fit: contain; mix-blend-mode: multiply; animation: vg-fadeSwap .6s ease; filter: drop-shadow(0 24px 32px rgba(0,0,0,0.18)); }
.vg-config__preview-meta { position: absolute; top: 24px; left: 24px; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-mute); }
.vg-config__preview-foot { position: absolute; bottom: 24px; right: 24px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); display: flex; gap: 16px; align-items: center; }
.vg-config__preview-foot .sep { width: 1px; height: 14px; background: var(--line); }
.vg-config__controls { padding: 56px 56px 48px; display: flex; flex-direction: column; gap: 40px; }
.vg-config__sil { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
.vg-config__sil button { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line); text-align: left; color: var(--ink-soft); background: none; border-left: 0; border-right: 0; border-top: 0; cursor: pointer; width: 100%; }
.vg-config__sil button.is-active { color: var(--ink); }
.vg-config__radio { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--ink-soft); position: relative; }
.vg-config__radio.is-active::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--ink); }
.vg-config__sil-name { font-family: var(--font-display); font-size: 22px; }
.vg-config__sil-sub { font-size: 12px; color: var(--ink-mute); margin-top: 2px; }
.vg-config__sil-price { font-size: 13px; color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.vg-config__swatches { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.vg-config__swatches button { display: flex; flex-direction: column; gap: 10px; padding: 0; align-items: stretch; background: none; border: 0; cursor: pointer; }
.vg-config__swatch { aspect-ratio: 1/1; border: 1px solid var(--line); transition: outline-color .2s; }
.vg-config__swatches button.is-active .vg-config__swatch { border-color: var(--ink); outline: 1px solid var(--ink); outline-offset: 3px; }
.vg-config__swatch-label { font-size: 11px; letter-spacing: 0.06em; color: var(--ink-soft); text-align: left; line-height: 1.3; }
.vg-config__buy { margin-top: auto; display: flex; gap: 12px; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); }
.vg-config__buy .btn { flex: 1; justify-content: center; }
.vg-config__buy .btn-icon { padding: 14px; flex: 0; }
@media (max-width: 980px) {
  .vg-config { padding: 80px 0; }
  .vg-config__head { grid-template-columns: 1fr; gap: 12px; margin-bottom: 40px; }
  .vg-config__shell { grid-template-columns: 1fr; }
  .vg-config__controls { padding: 32px 24px; gap: 32px; }
  .vg-config__swatches { grid-template-columns: repeat(3, 1fr); }
  .vg-config__buy { flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .vg-config__swatches { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .vg-config__sil-name { font-size: 19px; }
}

/* ===== FEATURE STORY ===== */
.vg-story { background: var(--ink); color: var(--bg); padding: 140px 0; position: relative; overflow: hidden; }
.vg-story__bg-word { position: absolute; bottom: -60px; right: 6%; font-family: var(--font-display); font-size: clamp(180px, 28vw, 440px); font-weight: 300; line-height: 0.85; color: rgba(255,255,255,0.05); letter-spacing: -0.02em; user-select: none; font-style: italic; pointer-events: none; white-space: nowrap; }
.vg-story__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; position: relative; }
.vg-story__media { aspect-ratio: 4/5; overflow: hidden; }
.vg-story__media img { width: 100%; height: 100%; object-fit: cover; }
.vg-story__media-meta { margin-top: 18px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); display: flex; justify-content: space-between; }
.vg-story__copy h2 { font-size: clamp(44px, 5.4vw, 84px); color: var(--bg); margin-bottom: 32px; }
.vg-story__copy h2 em { font-style: italic; color: var(--accent); }
.vg-story__copy p { font-size: 17px; line-height: 1.6; color: rgba(255,255,255,0.8); margin-bottom: 20px; max-width: 540px; }
.vg-story__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin: 40px 0 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15); }
.vg-story__stat-n { font-family: var(--font-display); font-weight: 300; font-size: 56px; color: var(--accent); line-height: 1; }
.vg-story__stat-l { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px; }
.vg-story__btn { border-color: #fff; color: #fff; }
@media (max-width: 980px) {
  .vg-story { padding: 80px 0; }
  .vg-story__bg-word { display: none; }
  .vg-story__grid { grid-template-columns: 1fr; gap: 48px; }
  .vg-story__media-meta { flex-direction: column; gap: 4px; }
  .vg-story__stats { grid-template-columns: 1fr; gap: 20px; }
  .vg-story__stat-n { font-size: 44px; }
}

/* ===== COLOR STORY ===== */
.vg-color { padding: 108px 0; background: var(--bg); }
.vg-color__head { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 80px; align-items: end; margin-bottom: 48px; }
.vg-color__head h2 { font-size: clamp(40px, 5vw, 72px); }
.vg-color__head em { font-style: italic; color: var(--accent); }
.vg-color__head p { color: var(--ink-soft); font-size: 16px; max-width: 520px; line-height: 1.7; justify-self: end; }
.vg-color__layout { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr); gap: 28px; align-items: stretch; }
.vg-color__media { min-height: 520px; overflow: hidden; background: #ddd5c9; }
.vg-color__media img { width: 100%; height: 100%; object-fit: cover; }
.vg-color__panel { display: flex; flex-direction: column; justify-content: space-between; gap: 28px; }
.vg-color__materials { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 22px; }
.vg-color__material { border-top: 1px solid rgba(23,23,23,0.18); padding: 18px 0 24px; }
.vg-color__material-label { color: #a77c3d; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; line-height: 1.2; margin-bottom: 14px; text-transform: uppercase; }
.vg-color__material h3 { color: #171717; font-family: var(--font-display); font-size: 32px; font-weight: 300; line-height: 1.05; margin-bottom: 12px; }
.vg-color__material p { color: rgba(23,23,23,0.68); font-size: 14px; line-height: 1.65; max-width: 260px; }
.vg-color__swatches { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid rgba(23,23,23,0.16); background: rgba(255,255,255,0.22); }
.vg-color__swatch { min-height: 104px; display: flex; gap: 12px; align-items: flex-end; padding: 16px; border-right: 1px solid rgba(23,23,23,0.12); border-bottom: 1px solid rgba(23,23,23,0.12); color: #171717; }
.vg-color__swatch:nth-child(3n) { border-right: 0; }
.vg-color__swatch:nth-last-child(-n+3) { border-bottom: 0; }
.vg-color__dot { width: 28px; height: 28px; flex: 0 0 auto; background: var(--swatch); border: 1px solid rgba(0,0,0,0.18); }
.vg-color__swatch-name { display: block; font-size: 13px; font-weight: 600; line-height: 1.2; }
.vg-color__swatch-hex { display: block; margin-top: 5px; color: rgba(23,23,23,0.52); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; }
@media (max-width: 980px) {
  .vg-color { padding: 72px 0; }
  .vg-color__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .vg-color__head p { justify-self: start; }
  .vg-color__layout { grid-template-columns: 1fr; }
  .vg-color__media { min-height: 340px; }
  .vg-color__swatches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vg-color__swatch:nth-child(3n) { border-right: 1px solid rgba(23,23,23,0.12); }
  .vg-color__swatch:nth-child(2n) { border-right: 0; }
  .vg-color__swatch:nth-last-child(-n+3) { border-bottom: 1px solid rgba(23,23,23,0.12); }
  .vg-color__swatch:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 480px) {
  .vg-color__materials,
  .vg-color__swatches { grid-template-columns: 1fr; }
  .vg-color__swatch,
  .vg-color__swatch:nth-child(2n),
  .vg-color__swatch:nth-child(3n) { border-right: 0; }
  .vg-color__swatch:nth-last-child(-n+2) { border-bottom: 1px solid rgba(23,23,23,0.12); }
  .vg-color__swatch:last-child { border-bottom: 0; }
}

/* ===== PROJECT GALLERY ===== */
.vg-projects { padding: 140px 0; background: var(--bg-deep); overflow: hidden; }
.vg-projects__head { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: end; margin-bottom: 64px; }
.vg-projects__head h2 { font-size: clamp(40px, 5vw, 68px); max-width: 800px; justify-self: start; }
.vg-projects__head em { font-style: italic; color: var(--accent); }
.vg-projects__nav { display: flex; gap: 8px; }
.vg-projects__nav button { width: 44px; height: 44px; border: 1px solid var(--ink); color: var(--ink); display: grid; place-items: center; background: none; cursor: pointer; transition: background .3s, color .3s; }
.vg-projects__nav button:hover { background: var(--ink); color: var(--bg); }
.vg-projects__nav button:disabled { opacity: 0.25; cursor: not-allowed; }
.vg-projects__viewport { position: relative; overflow: hidden; contain: paint; }
.vg-projects__track { display: flex; gap: 32px; transition: transform 1s cubic-bezier(.4,0,.2,1); }
.vg-projects__slide { flex-shrink: 0; width: 520px; opacity: 0.45; transition: opacity .8s ease; }
.vg-projects__slide.is-active { opacity: 1; }
.vg-projects__slide-img { aspect-ratio: 4/5; overflow: hidden; margin-bottom: 24px; }
.vg-projects__slide-img img { width: 100%; height: 100%; object-fit: cover; }
.vg-projects__slide-meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.vg-projects__slide h3 { font-family: var(--font-display); font-weight: 300; letter-spacing: -0.015em; line-height: 1; font-size: 36px; }
.vg-projects__slide-tag { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.vg-projects__slide-sub { color: var(--ink-soft); font-size: 14px; }
.vg-projects__progress { margin-top: 48px; display: flex; gap: 8px; align-items: center; }
.vg-projects__progress-num { font-size: 11px; letter-spacing: 0.14em; color: var(--ink-mute); font-variant-numeric: tabular-nums; }
.vg-projects__progress-rail { flex: 1; height: 1px; background: var(--line); position: relative; margin-left: 16px; }
.vg-projects__progress-fill { position: absolute; left: 0; top: 0; bottom: 0; background: var(--accent); transition: width .6s ease; }
@media (max-width: 768px) {
  .vg-projects { padding: 80px 0; }
  .vg-projects__head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .vg-projects__slide { width: 80vw; }
}

/* ===== EDITORIAL ===== */
.vg-editorial { background: #1c1b19; padding: 112px 0 120px; }
.vg-editorial__head { display: grid; grid-template-columns: minmax(0, 720px) auto; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 48px; }
.vg-editorial__head h2 { font-size: clamp(42px, 5vw, 74px); max-width: 700px; }
.vg-editorial__head em { font-style: italic; color: var(--accent); }
.vg-editorial__grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr); grid-template-rows: repeat(3, minmax(0, 1fr)); gap: 0 32px; align-items: stretch; }
.vg-editorial__hero { position: relative; grid-row: 1 / span 3; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.72fr); grid-template-rows: 1fr auto auto auto; min-height: 520px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.vg-editorial__hero-img { grid-row: 1 / -1; grid-column: 1; min-height: 520px; overflow: hidden; background: #111; }
.vg-editorial__hero-img img { width: 100%; height: 100%; object-fit: cover; }
.vg-editorial__hero-tag, .vg-editorial__item-tag { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.vg-editorial__hero-tag { grid-column: 2; align-self: end; padding: 34px 0 0 34px; margin-bottom: 14px; color: var(--accent); }
.vg-editorial__hero h3 { grid-column: 2; font-size: clamp(34px, 3vw, 48px); line-height: 1.02; max-width: 420px; padding-left: 34px; }
.vg-editorial__hero p { grid-column: 2; margin-top: 18px; max-width: 430px; padding: 0 0 34px 34px; color: var(--ink-soft); }
.vg-editorial__item { display: grid; grid-template-columns: 150px minmax(0, 1fr); grid-template-rows: auto auto; gap: 8px 20px; align-items: center; padding: 22px 0; border-top: 1px solid var(--line); }
.vg-editorial__item:last-child { border-bottom: 1px solid var(--line); }
.vg-editorial__item-img { grid-row: 1 / span 2; aspect-ratio: 4 / 3; overflow: hidden; background: #111; }
.vg-editorial__item-img img { width: 100%; height: 100%; object-fit: cover; }
.vg-editorial__item-tag { grid-column: 2; align-self: end; margin-bottom: 2px; color: var(--accent); }
.vg-editorial__item h4 { grid-column: 2; align-self: start; font-size: clamp(22px, 2vw, 31px); line-height: 1.08; max-width: 420px; }
.vg-editorial__hero:hover .kb-img,
.vg-editorial__item:hover .kb-img { transform: scale(1.04); }
@media (max-width: 1100px) {
  .vg-editorial__grid { grid-template-columns: 1fr; grid-template-rows: none; gap: 28px; }
  .vg-editorial__hero { grid-row: auto; }
}
@media (max-width: 980px) {
  .vg-editorial { padding: 82px 0; }
  .vg-editorial__head { grid-template-columns: 1fr; align-items: start; gap: 16px; margin-bottom: 36px; }
  .vg-editorial__hero { grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; min-height: 0; }
  .vg-editorial__hero-img { grid-row: 1; min-height: 0; aspect-ratio: 4 / 3; }
  .vg-editorial__hero-tag, .vg-editorial__hero h3, .vg-editorial__hero p { grid-column: 1; padding-left: 0; }
  .vg-editorial__hero-tag { padding-top: 24px; }
  .vg-editorial__hero p { padding-bottom: 26px; }
  .vg-editorial__item { grid-template-columns: 128px minmax(0, 1fr); gap: 8px 16px; }
  .vg-editorial__item h4 { font-size: 24px; }
}
@media (max-width: 560px) {
  .vg-editorial__item { grid-template-columns: 1fr; gap: 12px; }
  .vg-editorial__item-img, .vg-editorial__item-tag, .vg-editorial__item h4 { grid-column: 1; grid-row: auto; }
  .vg-editorial__item-img { aspect-ratio: 16 / 10; }
}

/* ===== TESTIMONIALS (Showroom) ===== */
.vg-test { background: var(--bg-deep); padding: 120px 0; }
.vg-test__head { margin-bottom: 64px; display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: end; }
.vg-test__head h2 { font-size: clamp(40px, 5vw, 72px); max-width: 800px; }
.vg-test__head em { font-style: italic; color: var(--accent); }
.vg-test__rating { display: flex; align-items: center; gap: 12px; }
.vg-test__rating-stars { color: var(--accent); font-size: 20px; letter-spacing: 0.1em; }
.vg-test__rating-label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.vg-test__grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.vg-test__cell { padding: 40px 36px 40px 0; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 24px; }
.vg-test__cell:nth-child(3n) { border-right: 0; }
.vg-test__cell:nth-child(n+1):nth-last-child(-n+3) { border-bottom: 0; }
.vg-test__cell:not(:nth-child(3n+1)) { padding-left: 36px; }
.vg-test__cell-stars { color: var(--accent); font-size: 14px; letter-spacing: 0.18em; }
.vg-test__cell-quote { font-family: var(--font-display); font-size: 20px; line-height: 1.45; color: var(--ink); flex: 1; }
.vg-test__cell-name { font-size: 13px; font-weight: 500; color: var(--ink); }
.vg-test__cell-role { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-top: 4px; }
@media (max-width: 980px) {
  .vg-test { padding: 80px 0; }
  .vg-test__head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .vg-test__head h2 { font-size: clamp(32px, 7vw, 48px); }
  .vg-test__grid { grid-template-columns: 1fr; }
  .vg-test__cell { padding: 32px 0 !important; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .vg-test__cell:last-child { border-bottom: 0 !important; }
  .vg-test__cell-quote { font-size: 18px; }
}

/* ===== NEWSLETTER ===== */
.vg-news { padding: 120px 0; background: var(--bg); }
.vg-news__inner { text-align: center; max-width: 820px; margin: 0 auto; }
.vg-news__inner h2 { font-size: clamp(44px, 5.4vw, 80px); margin: 24px 0 28px; }
.vg-news__inner h2 em { font-style: italic; color: var(--accent); }
.vg-news__inner p { color: var(--ink-soft); font-size: 17px; margin-bottom: 48px; max-width: 580px; margin-left: auto; margin-right: auto; }
.vg-news__form { display: flex; max-width: 520px; margin: 0 auto; border-bottom: 1px solid var(--ink); }
.vg-news__form input { flex: 1; border: 0; outline: 0; background: transparent; padding: 14px 0; font-size: 16px; color: var(--ink); font-family: inherit; }
.vg-news__form button { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; padding: 14px 0 14px 24px; display: flex; align-items: center; gap: 10px; background: none; border: 0; color: inherit; cursor: pointer; }
.vg-news__done { font-family: var(--font-display); font-size: 28px; color: var(--accent); }
.vg-news__fine { margin-top: 20px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }

/* ===== FOOTER ===== */
.vg-foot { background: #0b0b0b; color: #fff; padding-top: 72px; padding-bottom: 36px; }
.vg-foot__top { display: grid; grid-template-columns: minmax(120px, 180px) minmax(0, 620px) auto; gap: 44px; align-items: center; padding-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.vg-foot__brand { display: inline-flex; align-items: center; width: max-content; }
.vg-foot__brand img { width: clamp(112px, 10vw, 160px); height: auto; filter: brightness(0) invert(1); object-fit: contain; display: block; opacity: 0.96; }
.vg-foot__intro { max-width: 680px; }
.vg-foot__intro .eyebrow { color: rgba(255,255,255,0.56); margin-bottom: 14px; }
.vg-foot__intro h2 { color: #fff; font-size: clamp(30px, 3vw, 46px); line-height: 1.04; }
.vg-foot__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.vg-foot__facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid rgba(255,255,255,0.14); margin-bottom: 52px; }
.vg-foot__fact { min-height: 138px; padding: 26px 26px 26px 0; border-right: 1px solid rgba(255,255,255,0.11); }
.vg-foot__fact:not(:first-child) { padding-left: 26px; }
.vg-foot__fact:last-child { border-right: 0; }
.vg-foot__fact-k { color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; line-height: 1.2; margin-bottom: 12px; text-transform: uppercase; }
.vg-foot__fact-v { color: #fff; font-size: 14px; font-weight: 600; line-height: 1.35; }
.vg-foot__fact p { color: rgba(255,255,255,0.58); font-size: 12px; line-height: 1.55; margin-top: 8px; max-width: 230px; }
.vg-foot__grid { display: grid; grid-template-columns: minmax(240px, 1.25fr) repeat(4, minmax(150px, 1fr)); gap: 42px; margin-bottom: 70px; }
.vg-foot__about .eyebrow { color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.vg-foot__about p { color: rgba(255,255,255,0.7); max-width: 370px; line-height: 1.65; }
.vg-foot__contact { margin-top: 24px; display: flex; flex-direction: column; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.vg-foot__contact span { color: rgba(255,255,255,0.5); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; }
.vg-foot__col-title { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 18px; color: rgba(255,255,255,0.85); }
.vg-foot__col-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.vg-foot__col-list a { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.35; }
.vg-foot__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.vg-foot__bottom-links { display: flex; gap: 32px; }
@media (max-width: 980px) {
  .vg-foot { padding-top: 54px; }
  .vg-foot__top { grid-template-columns: 1fr; gap: 26px; align-items: start; padding-bottom: 34px; }
  .vg-foot__brand img { width: min(44vw, 150px); }
  .vg-foot__actions { justify-content: flex-start; }
  .vg-foot__facts { grid-template-columns: 1fr 1fr; margin-bottom: 42px; }
  .vg-foot__fact { min-height: 0; padding: 22px 18px 22px 0; border-bottom: 1px solid rgba(255,255,255,0.11); }
  .vg-foot__fact:not(:first-child) { padding-left: 18px; }
  .vg-foot__fact:nth-child(2n) { border-right: 0; }
  .vg-foot__fact:nth-last-child(-n+2) { border-bottom: 0; }
  .vg-foot__grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; margin-bottom: 56px; }
  .vg-foot__about { grid-column: 1 / -1; }
  .vg-foot__bottom { flex-direction: column; gap: 16px; align-items: start; }
}
@media (max-width: 560px) {
  .vg-foot__facts,
  .vg-foot__grid { grid-template-columns: 1fr; }
  .vg-foot__fact,
  .vg-foot__fact:not(:first-child) { padding-left: 0; padding-right: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.11); }
  .vg-foot__fact:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.11); }
  .vg-foot__fact:last-child { border-bottom: 0; }
  .vg-foot__actions .btn { width: 100%; justify-content: center; }
  .vg-foot__bottom-links { gap: 18px; flex-wrap: wrap; }
}

/* Scrollbar */
.vg ::-webkit-scrollbar { width: 10px; height: 10px; }
.vg ::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }
.vg ::-webkit-scrollbar-thumb:hover { background: var(--ink-mute); }

/* ===== Kohler-inspired refinement pass ===== */
:root {
  --bg: #1f1f1f;
  --bg-deep: #151515;
  --ink: #f6f3ee;
  --ink-soft: #d7d1c7;
  --ink-mute: #aaa39a;
  --line: rgba(255,255,255,0.16);
  --accent: #d4b276;
  --accent-deep: #b99357;
  --paper: #272727;
  --shadow: none;
}

body.vg {
  background: var(--bg-deep);
  color: var(--ink);
  font-size: 16px;
}

.vg .display {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.04;
}

.vg .eyebrow {
  color: rgba(246,243,238,0.68);
}

.vg-nav,
.vg-mega {
  background: rgba(18,18,18,0.96);
  color: var(--ink);
  border-color: rgba(255,255,255,0.14);
}

.vg-nav.is-scrolled {
  background: rgba(13,13,13,0.92);
  box-shadow: 0 1px 0 rgba(255,255,255,0.12);
}

.vg-nav__logo {
  filter: brightness(0) invert(1);
}

.vg-nav__link,
.vg-nav__util a,
.vg-nav__util button {
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 0;
}

.vg-mega__list a {
  font-family: var(--font-body);
  color: rgba(246,243,238,0.82);
}

.vg-hero {
  min-height: 690px;
  background: #070707;
}

.vg-hero__shade {
  background:
    radial-gradient(circle at 50% 45%, rgba(0,0,0,0.12), rgba(0,0,0,0.5) 58%, rgba(0,0,0,0.78) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.5));
}

.vg-hero__body {
  place-items: center;
  text-align: center;
}

.vg-hero__copy {
  justify-self: center;
  max-width: 880px;
}

.vg-hero__eyebrow .rule {
  display: none;
}

.vg-hero__title {
  font-size: 82px;
  max-width: 900px;
  margin: 0 auto;
}

.vg-hero__title em {
  color: #fff;
}

.vg-hero__sub {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

.vg-hero__cta {
  justify-content: center;
}

.vg-hero__cta .btn,
.vg-story__btn {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.vg-hero__cta .btn:hover,
.vg-story__btn:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.vg-pillars {
  background: #1f1f1f;
  padding: 88px 0 104px;
}

.vg-pillars__head {
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

.vg-pillars__head h2 {
  font-size: 46px;
  max-width: 780px;
  color: var(--ink);
}

.vg-pillars__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.vg-pillars__card {
  position: relative;
  min-height: 520px;
  padding: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #080808;
  isolation: isolate;
}

.vg-pillars__card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.78));
}

.vg-pillars__card-img {
  position: absolute;
  inset: 0;
  margin: 0;
  aspect-ratio: auto;
  z-index: 0;
}

.vg-pillars__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.92);
}

.vg-pillars__card-meta {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.74);
}

.vg-pillars__card h3 {
  position: relative;
  z-index: 2;
  font-size: 42px;
  color: #fff;
  margin-bottom: 12px;
}

.vg-pillars__card p {
  position: relative;
  z-index: 2;
  color: rgba(255,255,255,0.82);
  max-width: 430px;
}

.vg-featured,
.vg-config,
.vg-editorial,
.vg-news {
  background: #1f1f1f;
}

.vg-featured {
  padding: 104px 0;
}

.vg-featured__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 520px);
  gap: 56px;
  align-items: center;
}

.vg-featured__media {
  aspect-ratio: 16 / 10;
  min-height: 0;
  width: 100%;
  background:
    radial-gradient(circle at 65% 40%, rgba(212,178,118,0.18), transparent 38%),
    linear-gradient(145deg, #171717 0%, #0c0c0c 100%);
}

.vg-featured__media > img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

.vg-hotspot__panel {
  background: rgba(18,18,18,0.9);
  color: #fff;
  border-left-color: var(--accent);
}

.vg-hotspot__panel-title,
.vg-hotspot__panel-detail {
  color: #fff;
}

.vg-featured__copy h2 {
  font-size: 58px;
}

.vg-featured__copy p,
.vg-color__head p,
.vg-editorial__hero p,
.vg-projects__slide-sub,
.vg-news__inner p {
  color: rgba(246,243,238,0.76);
}

.vg-config {
  padding: 104px 0;
}

.vg-config__shell {
  background: #f7f5ef;
  color: #171717;
  border-color: transparent;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.vg-config__shell .eyebrow,
.vg-config__preview-meta,
.vg-config__preview-foot,
.vg-config__sil-sub,
.vg-config__swatch-label {
  color: rgba(23,23,23,0.58);
}

.vg-config__preview {
  min-width: 0;
  width: 100%;
  aspect-ratio: 5 / 6;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,0.72), rgba(255,255,255,0) 46%),
    #e8e1d5;
  padding: 36px 38px;
}

.vg-config__sil button,
.vg-featured__spec-row {
  border-color: rgba(255,255,255,0.16);
}

.vg-config__sil button {
  border-bottom-color: rgba(23,23,23,0.16);
}

.vg-config__buy {
  border-top-color: rgba(23,23,23,0.16);
}

.vg-config__head-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(246,243,238,0.74);
  font-size: 16px;
}

.vg-config__all {
  align-self: end;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vg-config__preview-foot--legacy,
.vg-config__buy a[data-vg-config-buy]:not([data-vg-config-buy=""]),
.vg-config__buy > button:not([data-vg-config-save]) {
  display: none !important;
}

.vg-config__preview img {
  mix-blend-mode: normal;
  animation: vg-configSwap .32s ease;
  max-width: 90%;
  max-height: 88%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.06) contrast(1.14) brightness(1.02) drop-shadow(0 18px 28px rgba(23,23,23,0.16));
}

.vg-config__preview img[src*="tr-telescopic-strainer"] {
  transform: translateY(-3%) scale(1.08);
  transform-origin: center 58%;
}

.vg-config__preview img[src*="tr-rinser"],
.vg-config__preview img[src*="mm-00510/gallery-1"] {
  transform: scale(1.02);
}

.vg-config__preview img[hidden],
.vg-config__swatches[hidden] {
  display: none !important;
}

.vg-config__preview-meta,
.vg-config__preview-foot,
.vg-config__preview-foot a {
  color: rgba(23,23,23,0.72);
}

.vg-config__controls {
  color: #171717;
  min-width: 0;
}

.vg-config__sil {
  border-top-color: rgba(23,23,23,0.16);
}

.vg-config__sil button {
  color: rgba(23,23,23,0.76);
  padding: 18px 16px;
  margin: 0 -16px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.vg-config__sil button:hover {
  background: rgba(139,111,71,0.08);
  color: #171717;
}

.vg-config__sil button.is-active {
  background: rgba(139,111,71,0.12);
  color: #171717;
}

.vg-config__radio {
  border-color: rgba(23,23,23,0.62);
}

.vg-config__radio.is-active::after {
  background: var(--accent);
}

.vg-config__sil-sub {
  color: rgba(23,23,23,0.64);
}

.vg-config__sil-price {
  color: rgba(23,23,23,0.66);
  text-align: right;
}

.vg-config__swatches {
  grid-template-columns: repeat(auto-fit, minmax(136px, 1fr));
  gap: 12px;
}

.vg-config__swatches button {
  border: 1px solid rgba(23,23,23,0.14);
  background: rgba(255,255,255,0.62);
  padding: 10px;
  min-height: 168px;
  transition: border-color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}

.vg-config__swatches button:hover {
  border-color: rgba(139,111,71,0.65);
  background: rgba(255,255,255,0.72);
}

.vg-config__swatches button.is-active {
  border-color: var(--accent);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(23,23,23,0.08);
}

.vg-config__swatch {
  position: relative;
  min-height: 112px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f4f2ec;
  border-color: rgba(23,23,23,0.18);
}

.vg-config__swatch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
  filter: saturate(1.04) contrast(1.08);
}

.vg-config__swatches button[data-vg-config-color^="stainless-board:"] .vg-config__swatch img,
.vg-config__swatches button[data-vg-config-color="glass-rinser:glass-rinser-attachment"] .vg-config__swatch img {
  object-fit: contain;
  object-position: center;
  padding: 6px;
}

.vg-config__swatch-chip {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(23,23,23,0.22);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.88);
}

.vg-config__swatches button.is-active .vg-config__swatch {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.vg-config__swatch-label {
  color: rgba(23,23,23,0.82);
  font-weight: 600;
}

.vg-config__buy {
  gap: 10px;
}

.vg-config__buy .btn-solid {
  background: #171717;
  border-color: #171717;
  color: #fff;
}

.vg-config__buy .btn-solid:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.vg-config__buy .btn-ghost,
.vg-config__buy .btn-icon {
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(23,23,23,0.22);
  color: #171717;
}

.vg-config__buy .btn-ghost {
  padding-left: 18px;
  padding-right: 18px;
}

.vg-config__buy .btn-ghost:hover,
.vg-config__buy .btn-icon:hover,
.vg-config__save.active {
  background: rgba(139,111,71,0.12);
  border-color: var(--accent);
  color: var(--accent);
}

.vg-config__view {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .vg-config__shell {
    grid-template-columns: 1fr;
  }

  .vg-config__preview {
    aspect-ratio: 5 / 4;
    padding: 24px;
  }

  .vg-config__preview img {
    max-width: 92%;
    max-height: 86%;
  }

  .vg-config__swatches {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .vg-config__preview {
    aspect-ratio: 1 / 1;
    min-height: 330px;
    padding: 30px 18px 44px;
  }

  .vg-config__preview img {
    max-width: 96%;
    max-height: 72%;
  }

  .vg-config__swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .vg-config__swatches button {
    min-height: 146px;
  }

  .vg-config__swatch {
    min-height: 92px;
  }
}

.vg-config__save.active,
.vg-config__save:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(139,111,71,0.08);
}

.vg-story {
  background: #111;
  color: #fff;
}

.vg-story h2,
.vg-story__copy h2 {
  color: #fff;
}

.vg-story h2 em,
.vg-story__copy h2 em {
  color: var(--accent);
}

.vg-story p,
.vg-story__copy p {
  color: rgba(246,243,238,0.8);
}

.vg-story__media {
  aspect-ratio: 16 / 11;
}

.vg-story__stat-n {
  font-size: clamp(42px, 3.5vw, 54px);
  white-space: nowrap;
}

.vg-color {
  background: #efebe3;
  color: #171717;
}

.vg-color .eyebrow,
.vg-color__head p {
  color: rgba(23,23,23,0.68);
}

.vg-color__head {
  align-items: start;
}

.vg-color__title span,
.vg-color__title em {
  display: block;
}

.vg-color__layout {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 30px;
  align-items: start;
}

.vg-color__media {
  position: relative;
  min-height: 560px;
  background: #d8d0c2;
}

.vg-color__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(to top, rgba(17,17,17,0.62), rgba(17,17,17,0));
  pointer-events: none;
}

.vg-color__media img {
  object-position: 48% 50%;
  filter: saturate(1.02) contrast(1.04);
}

.vg-color__media-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  color: #fff;
}

.vg-color__media-note span,
.vg-color__media-note strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.vg-color__media-note span {
  color: rgba(255,255,255,0.64);
  font-size: 10px;
}

.vg-color__media-note strong {
  max-width: 280px;
  text-align: right;
  font-size: 12px;
  line-height: 1.45;
}

.vg-color__panel {
  gap: 24px;
}

.vg-color__materials {
  gap: 0;
  border-top: 1px solid rgba(23,23,23,0.16);
  border-left: 1px solid rgba(23,23,23,0.12);
}

.vg-color__material {
  min-height: 190px;
  padding: 22px;
  border-top: 0;
  border-right: 1px solid rgba(23,23,23,0.12);
  border-bottom: 1px solid rgba(23,23,23,0.12);
  background: rgba(255,255,255,0.2);
}

.vg-color__material-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
  margin-bottom: 18px;
}

.vg-color__material-top span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border: 1px solid rgba(139,111,71,0.34);
  color: #7f5f31;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.vg-color__material-label {
  margin-bottom: 0;
}

.vg-color__material h3 {
  font-size: clamp(26px, 2.3vw, 34px);
  letter-spacing: 0;
}

.vg-color__swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
}

.vg-color__swatch {
  position: relative;
  min-height: 134px;
  display: grid;
  align-content: end;
  gap: 14px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(23,23,23,0.12);
  background: var(--swatch);
  color: #fff;
}

.vg-color__swatches .vg-color__swatch,
.vg-color__swatches .vg-color__swatch:nth-child(2n),
.vg-color__swatches .vg-color__swatch:nth-child(3n),
.vg-color__swatches .vg-color__swatch:nth-last-child(-n+2),
.vg-color__swatches .vg-color__swatch:nth-last-child(-n+3) {
  border: 1px solid rgba(23,23,23,0.12);
}

.vg-color__swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.48), rgba(0,0,0,0.08) 58%, rgba(255,255,255,0.1));
  pointer-events: none;
}

.vg-color__swatch.is-light {
  color: #171717;
}

.vg-color__swatch.is-light::before {
  background: linear-gradient(to top, rgba(255,255,255,0.44), rgba(255,255,255,0.08));
}

.vg-color__dot {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.14);
  border-color: currentColor;
}

.vg-color__swatch > span:last-child {
  position: relative;
  z-index: 1;
}

.vg-color__swatch-name {
  font-size: 14px;
  font-weight: 700;
}

.vg-color__swatch-note {
  display: block;
  margin-top: 6px;
  color: currentColor;
  opacity: 0.72;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .vg-color__layout {
    grid-template-columns: 1fr;
  }

  .vg-color__media {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .vg-color__materials,
  .vg-color__swatches {
    grid-template-columns: 1fr;
  }

  .vg-color__media-note {
    flex-direction: column;
    align-items: start;
  }

  .vg-color__media-note strong {
    text-align: left;
  }
}

.vg-color__media {
  min-height: 548px;
}

.vg-color__panel {
  gap: 18px;
}

.vg-color__material {
  min-height: 176px;
}

.vg-color__material p {
  max-width: 300px;
}

.vg-color__palette-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding-top: 2px;
  color: rgba(23,23,23,0.64);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.vg-color__palette-head span:last-child {
  color: rgba(23,23,23,0.42);
  text-align: right;
}

.vg-color__swatches {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(23,23,23,0.14);
  background: rgba(255,255,255,0.24);
}

.vg-color__swatch {
  min-height: 104px;
  align-content: start;
  gap: 12px;
  padding: 12px;
  border: 0;
  border-right: 1px solid rgba(23,23,23,0.12);
  background: rgba(255,255,255,0.16);
  color: #171717;
}

.vg-color__swatches .vg-color__swatch,
.vg-color__swatches .vg-color__swatch:nth-child(2n),
.vg-color__swatches .vg-color__swatch:nth-child(3n),
.vg-color__swatches .vg-color__swatch:nth-last-child(-n+2),
.vg-color__swatches .vg-color__swatch:nth-last-child(-n+3) {
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-right: 1px solid rgba(23,23,23,0.12);
}

.vg-color__swatches .vg-color__swatch:last-child {
  border-right: 0;
}

.vg-color__swatch::before {
  display: none;
}

.vg-color__swatch.is-light,
.vg-color__swatch.is-dark {
  color: #171717;
}

.vg-color__dot {
  width: 100%;
  height: 26px;
  background: var(--swatch);
  border-color: rgba(23,23,23,0.25);
}

.vg-color__swatch-name {
  font-size: 13px;
}

.vg-color__swatch-note {
  color: rgba(23,23,23,0.56);
  opacity: 1;
}

@media (max-width: 980px) {
  .vg-color__swatches {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vg-color__swatches .vg-color__swatch,
  .vg-color__swatches .vg-color__swatch:nth-child(2n),
  .vg-color__swatches .vg-color__swatch:nth-child(3n),
  .vg-color__swatches .vg-color__swatch:nth-last-child(-n+2),
  .vg-color__swatches .vg-color__swatch:nth-last-child(-n+3) {
    border-right: 1px solid rgba(23,23,23,0.12);
    border-bottom: 1px solid rgba(23,23,23,0.12);
  }

  .vg-color__swatches .vg-color__swatch:nth-child(3n) {
    border-right: 0;
  }

  .vg-color__swatches .vg-color__swatch:nth-last-child(-n+3) {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .vg-color__palette-head {
    flex-direction: column;
    align-items: start;
  }

  .vg-color__palette-head span:last-child {
    text-align: left;
  }

  .vg-color__swatches {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vg-color__swatches .vg-color__swatch:nth-child(3n) {
    border-right: 1px solid rgba(23,23,23,0.12);
  }

  .vg-color__swatches .vg-color__swatch:nth-child(2n) {
    border-right: 0;
  }

  .vg-color__swatches .vg-color__swatch:nth-last-child(-n+3) {
    border-bottom: 1px solid rgba(23,23,23,0.12);
  }

  .vg-color__swatches .vg-color__swatch:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

.vg-color__media {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(150px, 0.68fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 8px;
  min-height: 424px;
  background: transparent;
}

.vg-color__media::after {
  display: none;
}

.vg-color__media-main,
.vg-color__media-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(23,23,23,0.08);
  background: #e5dfd4;
}

.vg-color__media-main {
  grid-row: 1 / span 2;
}

.vg-color__media-main::after,
.vg-color__media-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(to top, rgba(16,16,16,0.58), rgba(16,16,16,0));
  pointer-events: none;
}

.vg-color__media-main img {
  object-position: 68% 48%;
}

.vg-color__media-tile img {
  object-position: 50% 50%;
}

.vg-color__media-tile img[src*="iroko-cutting-board"] {
  object-fit: contain;
  padding: 18px 14px;
  background: linear-gradient(180deg, #f7f5ef 0%, #e7dfd2 100%);
}

.vg-color__media-tile img[src*="craftsmanship"] {
  object-position: 48% 58%;
}

.vg-color__media-tile span {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 1;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.vg-color__media-note {
  position: static;
  grid-column: 1 / -1;
  min-height: 60px;
  padding: 14px 22px;
  align-items: center;
  background: linear-gradient(135deg, #655849, #887b69);
}

.vg-color__media-note strong {
  max-width: 340px;
}

@media (max-width: 980px) {
  .vg-color__media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    min-height: 0;
  }

  .vg-color__media-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 10;
  }

  .vg-color__media-tile {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 620px) {
  .vg-color__media {
    grid-template-columns: 1fr;
  }

  .vg-color__media-main,
  .vg-color__media-tile {
    aspect-ratio: 4 / 3;
  }

  .vg-color__media-note {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .vg-color__head h2 {
    max-width: 100%;
    font-size: clamp(34px, 9.8vw, 39px);
    line-height: 1.06;
  }

  .vg-color__head h2 em {
    display: block;
  }

  .vg-projects__head h2 {
    max-width: 100%;
    font-size: clamp(34px, 9.4vw, 38px);
    line-height: 1.08;
  }

  .vg-projects__head h2 em {
    display: block;
  }

  .vg-color__material-top {
    flex-direction: column;
    gap: 8px;
  }

  .vg-color__material-top span {
    white-space: normal;
  }

  .vg-config__preview-foot {
    left: 18px;
    right: 18px;
    justify-content: flex-start;
  }

  .vg-config__preview-foot .sep,
  .vg-config__preview-foot a {
    display: none;
  }

  .vg-config__buy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    gap: 10px;
  }

  .vg-config__buy .btn {
    flex: none;
  }

  .vg-config__buy .btn-solid {
    grid-column: 1 / -1;
  }

  .vg-config__buy .btn-ghost {
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
    white-space: normal;
  }

  .vg-config__buy .btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
  }
}

.vg-projects {
  background: #1f1f1f;
}

.vg-projects__slide {
  width: 560px;
}

.vg-projects__slide-img {
  aspect-ratio: 16 / 11;
}

.vg-projects__slide h3,
.vg-editorial__hero h3,
.vg-editorial__item h4,
.vg-test__head h2,
.vg-news__inner h2 {
  color: var(--ink);
}

.vg-editorial__grid {
  align-items: start;
}

.vg-editorial__hero-img,
.vg-editorial__item-img {
  background: #111;
}

.vg-test {
  background: #272727;
}

.vg-test__cell-quote,
.vg-test__cell-name {
  color: var(--ink);
}

.vg-news__form {
  border-bottom-color: rgba(255,255,255,0.42);
}

.vg-foot {
  background: #0c0c0c;
  color: #fff;
}

.vg-foot__showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 40px;
  align-items: end;
  padding: 0 0 56px;
  margin: -24px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

.vg-foot__showcase h2 {
  max-width: 760px;
  margin-top: 18px;
  color: #fff;
  font-size: 42px;
}

.vg-foot__showcase-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.vg-foot__btn {
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}

.vg-foot__btn:hover,
.vg-foot a:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.vg-foot__btn--solid {
  background: #fff;
  color: #111;
  border-color: #fff;
}

.vg-foot__btn--solid:hover {
  background: var(--accent);
  color: #111;
}

.vg-foot__social {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vg-foot__col-list a,
.vg-foot__about p,
.vg-foot__contact {
  color: rgba(255,255,255,0.72);
}

.vg-nav__util button[data-vg-search-open] {
  width: 22px;
  height: 22px;
  justify-content: center;
  overflow: hidden;
  font-size: 0;
}

.vg-nav__util button[data-vg-search-open] svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.vg-icon-btn {
  position: relative;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  transition: color .25s ease, transform .25s ease;
}
.vg-icon-btn:hover,
.vg-account-link:hover {
  color: var(--accent);
}
.vg-wish {
  position: relative;
}
.vg-wish__badge {
  position: absolute;
  top: 1px;
  right: 0;
  min-width: 17px;
  height: 17px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  display: grid;
  place-items: center;
}
.vg-wish__badge[hidden],
.vg-wish__panel[hidden],
.vg-mobile-wish[hidden] {
  display: none !important;
}
.vg-wish__panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 80;
  width: min(360px, calc(100vw - 32px));
  background: #fff;
  color: #111;
  border: 1px solid rgba(17,17,17,.12);
  box-shadow: 0 24px 60px rgba(17,17,17,.16);
}
.vg-wish__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.vg-wish__head strong {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.vg-wish__head button {
  border: 0;
  background: transparent;
  color: rgba(17,17,17,.46);
  font-size: 12px;
  cursor: pointer;
}
.vg-wish__head button:hover {
  color: #b42318;
}
.vg-wish__empty {
  padding: 34px 18px;
  text-align: center;
  color: rgba(17,17,17,.48);
}
.vg-wish__empty svg {
  margin: 0 auto 12px;
  color: rgba(17,17,17,.18);
}
.vg-wish__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(17,17,17,.07);
  color: #111;
}
.vg-wish__item:hover {
  background: #f7f5ef;
}
.vg-wish__item img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  background: #f7f5ef;
}
.vg-wish__item-title {
  display: block;
  min-width: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.vg-wish__item-sub {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  color: var(--accent);
}
.vg-wish__remove {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: rgba(17,17,17,.38);
  cursor: pointer;
}
.vg-wish__remove:hover {
  color: #b42318;
}
.vg-account-link {
  max-width: 190px;
  color: var(--ink);
  white-space: nowrap;
}
.vg-account-link span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.wish-heart {
  color: #777;
  transition: transform .2s ease, color .2s ease, background .2s ease;
}
.wish-heart:hover {
  color: var(--accent);
  transform: scale(1.12);
}
.wish-heart.active {
  color: var(--accent);
}
#add-to-wish.active {
  color: var(--accent);
  border-color: var(--accent) !important;
}
.wish-toast {
  position: fixed;
  z-index: 9999;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,.12);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  transition: opacity .25s ease, transform .25s ease;
}
.wish-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.vg-mobile-wish {
  border: 1px solid rgba(255,255,255,.14);
  margin: 0 22px 16px;
  background: rgba(255,255,255,.04);
}

/* Shared public-page shell for legacy content pages using the new dynamic header/footer. */
body.vg main > nav,
body.vg main > section:not([class^="vg-"]):not([class*=" vg-"]):not([class*="bg-black"]):not([class*="text-white"]) {
  background: #f7f5ef;
  color: #171717;
}

body.vg main > section[class*="bg-black"],
body.vg main > section[class*="text-white"] {
  background: #0c0c0c;
  color: #fff;
}

body.vg main > nav {
  border-color: rgba(23,23,23,0.12);
}

body.vg main > nav a:hover,
body.vg main > section:not([class^="vg-"]):not([class*=" vg-"]) a:hover {
  color: #9b7640;
}

body.vg main > section:not([class^="vg-"]):not([class*=" vg-"]) h1,
body.vg main > section:not([class^="vg-"]):not([class*=" vg-"]) h2 {
  letter-spacing: 0;
}

body.vg .product-card,
body.vg article.group,
body.vg details,
body.vg form input,
body.vg form textarea,
body.vg form select {
  border-radius: 8px !important;
}

body.vg .product-card,
body.vg article.group {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

body.vg .product-card:hover,
body.vg article.group:hover {
  transform: translateY(-2px);
  border-color: rgba(212,178,118,0.85);
  box-shadow: 0 18px 40px rgba(17,17,17,0.08);
}

body.vg .cat-link.active {
  background: #111;
  color: #fff;
}

body.vg .amazon-btn,
body.vg a.bg-black.text-white,
body.vg button.bg-black.text-white {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}

body.vg .amazon-btn:hover,
body.vg a.bg-black.text-white:hover,
body.vg button.bg-black.text-white:hover {
  background: var(--accent) !important;
  color: #111 !important;
  border-color: var(--accent) !important;
}

body.vg a.bg-white.text-black,
body.vg .bg-white.text-black {
  background: #fff !important;
  color: #111 !important;
}

body.vg a.bg-white.text-black:hover,
body.vg .bg-white.text-black:hover {
  background: var(--accent) !important;
  color: #111 !important;
}

body.vg form input:focus,
body.vg form textarea:focus,
body.vg form select:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(212,178,118,0.22) !important;
}

body.vg .blog-filters {
  max-width: 100%;
}

body.vg .blog-filters a {
  min-width: 0;
}

@media (max-width: 640px) {
  body.vg {
    overflow-x: hidden;
  }

  body.vg .blog-filters {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: hidden;
  }

  body.vg .blog-filters a {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    padding: 10px 8px;
    font-size: 12px;
    line-height: 1.2;
  }
}

@media (max-width: 980px) {
  .vg-nav {
    background: #101010;
  }

  .vg-hero {
    min-height: 540px;
  }

  .vg-hero__body {
    padding-top: clamp(56px, 10vh, 96px);
    padding-bottom: 34px;
    text-align: left;
    place-items: center start;
  }

  .vg-hero__copy,
  .vg-hero__sub {
    margin-left: 0;
    margin-right: 0;
  }

  .vg-hero__title {
    font-size: 48px;
  }

  .vg-hero__cta {
    justify-content: flex-start;
  }

  .vg-pillars__head,
  .vg-pillars__grid,
  .vg-featured__grid {
    grid-template-columns: 1fr;
  }

  .vg-pillars__card {
    min-height: 420px;
    padding: 28px;
  }

  .vg-pillars__card h3,
  .vg-featured__copy h2 {
    font-size: 38px;
  }

  .vg-featured__media {
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .vg-hotspot__panel {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }

  .vg-projects__track {
    display: flex;
    gap: 16px;
    transform: translateX(0);
  }

  .vg-projects__slide {
    width: calc(100vw - 72px);
    max-width: 340px;
    opacity: .42;
  }

  .vg-projects__slide.is-active {
    opacity: 1;
  }

  .vg-projects__slide-img {
    aspect-ratio: 4 / 3;
    margin-bottom: 14px;
  }

  .vg-projects__slide h3 {
    font-size: 28px;
  }

  .vg-projects__slide-sub {
    font-size: 12px;
    line-height: 1.35;
  }

  .vg-projects__nav {
    display: flex;
  }

  .vg-projects__nav button {
    width: 38px;
    height: 38px;
  }

  .vg-projects__progress {
    display: flex;
    margin-top: 24px;
  }

  .vg-foot__showcase {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
    margin-top: 0;
  }

  .vg-foot__showcase h2 {
    font-size: 32px;
  }

  .vg-foot__showcase-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .vg .vg-container,
  .vg .vg-container-tight {
    padding: 0 18px;
  }

  .vg-hero__title {
    font-size: 40px;
  }

  .vg-hero__sub {
    font-size: 14px;
  }

  .vg-pillars,
  .vg-featured,
  .vg-config,
  .vg-story,
  .vg-projects,
  .vg-editorial,
  .vg-test,
  .vg-news {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .vg-pillars__card {
    min-height: 360px;
  }

  .vg-pillars__card h3,
  .vg-featured__copy h2 {
    font-size: 34px;
  }
}

@media (max-width: 980px) {
  .vg-nav__util {
    display: none !important;
  }

  .vg-mobile-account {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 44px;
    height: 44px;
    display: grid !important;
    place-items: center;
    color: #fff !important;
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
  }

  .vg-mobile-toggle {
    border-radius: 999px;
    background: rgba(255,255,255,0.035);
    -webkit-tap-highlight-color: transparent;
  }

  .vg-mobile-toggle:active,
  .vg-mobile-account:active {
    background: rgba(212,178,118,0.16);
    color: var(--accent);
  }

  .vg-mobile-account svg {
    display: block !important;
    width: 20px;
    height: 20px;
    stroke-width: 1.35;
  }
}

@media (max-width: 520px) {
  .vg-hero__copy,
  .vg-hero__sub,
  .vg-hero__cta {
    width: 100%;
    max-width: 100%;
  }

  .vg-hero__sub {
    max-width: 31ch;
    overflow-wrap: normal;
  }

  .vg-hero__cta .btn {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .vg .vg-container.vg-hero__body {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: clamp(32px, 6vh, 56px);
    padding-bottom: clamp(32px, 6vh, 56px);
  }
}

/* ============================================================
   Mobile tap target fixes (min 44×44px per WCAG 2.5.8)
   ============================================================ */

/* Wishlist heart on product cards */
.wish-heart {
  min-width: 44px;
  min-height: 44px;
}

/* Breadcrumb links */
[aria-label="Breadcrumb"] a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

/* ============================================================
   Buying Options Modal
   ============================================================ */
.vg-buy-modal {
  position: fixed;
  inset: 0;
  z-index: 9900;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.vg-buy-modal[hidden] { display: none !important; }
.vg-buy-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14,14,10,0.52);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.vg-buy-modal__panel {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: #fff;
  border-radius: 22px 22px 0 0;
  padding: 32px 28px 40px;
  animation: vgBuyUp 0.3s cubic-bezier(0.16,1,0.3,1);
  max-height: 92vh;
  overflow-y: auto;
}
@media (min-width: 600px) {
  .vg-buy-modal { align-items: center; padding: 24px; }
  .vg-buy-modal__panel { border-radius: 22px; max-height: 82vh; }
}
@keyframes vgBuyUp {
  from { transform: translateY(48px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.vg-buy-modal__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}
.vg-buy-modal__eyebrow {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent, #C49A6C);
  font-weight: 700;
  margin-bottom: 8px;
}
.vg-buy-modal__name {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}
.vg-buy-modal__variant {
  font-size: 13px;
  color: rgba(0,0,0,0.42);
  margin-top: 4px;
}
.vg-buy-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #111;
  font-size: 20px;
  line-height: 1;
  transition: background 0.15s;
}
.vg-buy-modal__close:hover { background: rgba(0,0,0,0.13); }
.vg-buy-modal__divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 22px 0;
}
.vg-buy-modal__retailers { display: flex; flex-direction: column; gap: 10px; }
.vg-buy-modal__retailer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}
.vg-buy-modal__retailer:hover {
  border-color: rgba(0,0,0,0.2);
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  background: #fafafa;
}
.vg-buy-modal__retailer-logo {
  width: 76px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.vg-buy-modal__retailer-logo svg { max-width: 76px; height: auto; display: block; }
.vg-buy-modal__retailer-info { flex: 1; min-width: 0; }
.vg-buy-modal__retailer-name { display: block; font-size: 14px; font-weight: 700; color: #111; }
.vg-buy-modal__retailer-sub  { display: block; font-size: 11px; color: rgba(0,0,0,0.42); margin-top: 3px; }
.vg-buy-modal__retailer-cta  { font-size: 12px; font-weight: 700; color: var(--accent,#C49A6C); flex-shrink: 0; white-space: nowrap; }
.vg-buy-modal__retailer--soon {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
  border-style: dashed;
}
.vg-buy-modal__retailer-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  flex-shrink: 0;
  white-space: nowrap;
  border: 1px solid rgba(0,0,0,0.15);
  padding: 3px 8px;
  border-radius: 100px;
}
.vg-buy-modal__note {
  margin-top: 22px;
  font-size: 11px;
  color: rgba(0,0,0,0.3);
  text-align: center;
  line-height: 1.6;
}

/* Buying Options trigger button */
.vg-buy-opts {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.18s, color 0.18s;
  width: 100%;
  text-align: center;
}
.vg-buy-opts:hover { background: var(--accent,#C49A6C); color: #111; }
.vg-config__buy .vg-buy-opts { width: auto; padding: 13px 26px; font-size: 13px; }
