﻿:root {
    --vcb-black: #0c0c0b;
    --vcb-ink: #171717;
    --vcb-muted: #67645f;
    --vcb-line: #e7e3dc;
    --vcb-soft: #f7f5f0;
    --vcb-white: #ffffff;
    --vcb-gold: #b99048;
    --vcb-gold-dark: #8b672e;
    --vcb-green: #24463c;
    --vcb-shadow: 0 18px 50px rgba(24, 20, 14, .11);
    --vcb-radius: 8px;
    --vcb-container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.vellith-clean-b2b {
    margin: 0;
    color: var(--vcb-ink);
    background: var(--vcb-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
}

body.vcb-modal-open {
    overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
    .vcb-hero .vcb-eyebrow,
    .vcb-hero h1,
    .vcb-hero-subtitle,
    .vcb-hero-copy p,
    .vcb-hero-actions {
        animation: vcbFadeUp .78s ease both;
    }

    .vcb-hero h1 {
        animation-delay: .08s;
    }

    .vcb-hero-subtitle {
        animation-delay: .16s;
    }

    .vcb-hero-copy p:not(.vcb-hero-subtitle) {
        animation-delay: .24s;
    }

    .vcb-hero-actions {
        animation-delay: .32s;
    }

    .vcb-reveal {
        opacity: 0;
        transform: translateY(34px);
        transition: opacity .72s ease, transform .72s ease;
    }

    .vcb-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .vcb-reveal-group .vcb-reveal:nth-child(2) {
        transition-delay: .1s;
    }

    .vcb-reveal-group .vcb-reveal:nth-child(3) {
        transition-delay: .2s;
    }

    .vcb-reveal-group .vcb-reveal:nth-child(4) {
        transition-delay: .3s;
    }

    .vcb-advantage-section .vcb-centered-head {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .vcb-advantage-section .vcb-advantage-item {
        opacity: 0;
        transform: translateY(42px) scale(.96);
        transition: opacity .72s ease, transform .72s cubic-bezier(.2, .78, .2, 1);
    }

    .vcb-advantage-section.is-animated .vcb-centered-head,
    .vcb-advantage-section.is-animated .vcb-advantage-item {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .vcb-advantage-section.is-animated .vcb-advantage-item:nth-child(1) {
        transition-delay: .12s;
    }

    .vcb-advantage-section.is-animated .vcb-advantage-item:nth-child(2) {
        transition-delay: .24s;
    }

    .vcb-advantage-section.is-animated .vcb-advantage-item:nth-child(3) {
        transition-delay: .36s;
    }

    .vcb-advantage-section.is-animated .vcb-advantage-item:nth-child(4) {
        transition-delay: .48s;
    }

    .vcb-advantage-section.is-animated .vcb-advantage-item .dashicons {
        animation: vcbIconFloat 3.6s ease-in-out infinite;
    }

    .vcb-advantage-section.is-animated .vcb-advantage-item:nth-child(2) .dashicons {
        animation-delay: .35s;
    }

    .vcb-advantage-section.is-animated .vcb-advantage-item:nth-child(3) .dashicons {
        animation-delay: .7s;
    }

    .vcb-advantage-section.is-animated .vcb-advantage-item:nth-child(4) .dashicons {
        animation-delay: 1.05s;
    }

    .vcb-category-card img,
    .vcb-product-image img {
        transition: transform .7s ease;
    }

    .vcb-category-card:hover img,
    .vcb-product-card:hover img {
        transform: scale(1.045);
    }
}

@keyframes vcbFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vcbIconFloat {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 0 rgba(185, 144, 72, 0));
    }
    45% {
        transform: translateY(-9px) rotate(-2deg);
        filter: drop-shadow(0 10px 12px rgba(185, 144, 72, .18));
    }
}

body.admin-bar .vcb-site-header {
    top: 32px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

p {
    margin: 0 0 18px;
}

h1,
h2,
h3 {
    margin: 0;
    color: var(--vcb-black);
    line-height: 1.13;
    letter-spacing: 0;
}

h1 {
    font-size: 56px;
    max-width: 880px;
}

h2 {
    font-size: 38px;
}

h3 {
    font-size: 19px;
}

.vcb-container {
    width: min(100% - 48px, var(--vcb-container));
    margin: 0 auto;
}

.screen-reader-text,
.skip-link {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.vcb-site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(231, 227, 220, .9);
    backdrop-filter: blur(12px);
}

.vcb-header-top {
    border-bottom: 1px solid rgba(231, 227, 220, .72);
    background: var(--vcb-white);
}

.vcb-header-top-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.vcb-header-top p {
    margin: 0;
    color: #4c4a46;
    font-size: 15px;
}

.vcb-top-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vcb-top-icon,
.vcb-top-icons a {
    position: relative;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--vcb-line);
    border-radius: 50%;
    background: var(--vcb-white);
    color: var(--vcb-black);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.vcb-top-icons a:hover,
.vcb-top-language:hover,
.vcb-top-language:focus-within {
    transform: translateY(-1px);
    border-color: #bda36a;
    color: #9a7531;
}

.vcb-top-icon svg {
    width: 17px;
    height: 17px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vcb-top-icon-cart svg {
    width: 18px;
    height: 18px;
}

.vcb-top-language select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.vcb-top-icon-linkedin {
    background: #2c789c;
    border-color: #2c789c;
    color: var(--vcb-white);
}

.vcb-top-icon-instagram {
    background: #c63a8b;
    border-color: #c63a8b;
    color: var(--vcb-white);
}

.vcb-top-icon-linkedin:hover,
.vcb-top-icon-instagram:hover {
    color: var(--vcb-white);
    filter: brightness(.96);
}

.vcb-top-icons .vcb-top-icon-linkedin {
    background: #2c789c;
    border-color: #2c789c;
    color: var(--vcb-white);
}

.vcb-top-icons .vcb-top-icon-instagram {
    background: #c63a8b;
    border-color: #c63a8b;
    color: var(--vcb-white);
}

/* Benchmark-style custom lab diamond tabs */
.vcb-home-diamonds {
    padding: 92px 0 108px;
    background: #fff;
}

.vcb-home-diamonds .vcb-container {
    width: min(100% - 96px, 1760px);
}

.vcb-home-diamonds .vcb-home-title {
    max-width: 1040px;
    margin: 0 auto 36px;
    text-align: center;
}

.vcb-home-diamonds .vcb-home-title h2 {
    margin-bottom: 18px;
    font-size: clamp(36px, 2.8vw, 52px);
    line-height: 1.12;
}

.vcb-home-diamonds .vcb-home-title p {
    max-width: 980px;
    margin: 0 auto;
    color: #3f3d39;
    font-size: 16px;
    line-height: 1.75;
}

.vcb-diamond-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 10px;
    border-top: 1px solid #dddfe5;
    border-left: 1px solid #dddfe5;
}

.vcb-diamond-tab {
    min-width: 0;
    height: 96px;
    padding: 0 24px;
    border: 0;
    border-right: 1px solid #dddfe5;
    border-bottom: 1px solid #dddfe5;
    background: #fff;
    color: #111827;
    font: inherit;
    font-size: 19px;
    font-weight: 650;
    line-height: 1.3;
    cursor: pointer;
    transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}

.vcb-diamond-tab:hover,
.vcb-diamond-tab:focus-visible {
    color: #1f64aa;
}

.vcb-diamond-tab:focus-visible {
    outline: 2px solid rgba(31, 100, 170, .35);
    outline-offset: -4px;
}

.vcb-diamond-tab.is-active {
    background: #2166ad;
    color: #fff;
    box-shadow: inset 0 -3px 0 rgba(255, 255, 255, .24);
}

.vcb-diamond-panel[hidden] {
    display: none;
}

.vcb-diamond-panel.is-active {
    animation: vcbDiamondPanelIn .32s ease both;
}

.vcb-diamond-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
    padding-top: 0;
}

.vcb-diamond-product {
    display: block;
    color: #111;
    text-align: center;
    text-decoration: none;
}

.vcb-diamond-product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    border-radius: 14px;
    background: #f6f4f2;
    object-fit: cover;
    transition: transform .45s ease, filter .28s ease;
}

.vcb-diamond-product span {
    min-height: 54px;
    display: -webkit-box;
    margin: 18px auto 0;
    overflow: hidden;
    color: #111;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.vcb-diamond-product:hover img {
    transform: translateY(-3px) scale(1.025);
    filter: brightness(1.03);
}

.vcb-diamond-product:hover span {
    color: #1f64aa;
}

@keyframes vcbDiamondPanelIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .vcb-home-diamonds .vcb-container {
        width: min(100% - 56px, 1120px);
    }

    .vcb-diamond-tab {
        height: 78px;
        padding: 0 16px;
        font-size: 16px;
    }

    .vcb-diamond-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 820px) {
    .vcb-home-diamonds {
        padding: 56px 0 68px;
    }

    .vcb-home-diamonds .vcb-container {
        width: min(100% - 32px, 100%);
    }

    .vcb-home-diamonds .vcb-home-title {
        margin-bottom: 26px;
    }

    .vcb-home-diamonds .vcb-home-title h2 {
        margin-bottom: 14px;
        font-size: 34px;
    }

    .vcb-home-diamonds .vcb-home-title p {
        font-size: 14px;
        line-height: 1.7;
    }

    .vcb-diamond-tabs {
        display: flex;
        gap: 8px;
        margin-right: -16px;
        margin-bottom: 18px;
        padding: 0 16px 4px 0;
        overflow-x: auto;
        border: 0;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .vcb-diamond-tab {
        flex: 0 0 calc((100% - 8px) / 2);
        height: 58px;
        padding: 0 14px;
        border: 1px solid #dddfe5;
        font-size: 14px;
        scroll-snap-align: start;
    }

    .vcb-diamond-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 14px;
    }

    .vcb-diamond-product img {
        border-radius: 12px;
    }

    .vcb-diamond-product span {
        min-height: 42px;
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.45;
    }
}

.vcb-header-inner {
    min-height: 96px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.vcb-brand,
.vcb-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
}

.vcb-logo-mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.vcb-logo-mark img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.vcb-brand .custom-logo-link {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.vcb-brand .custom-logo {
    width: auto;
    height: 46px;
    max-width: 190px;
    object-fit: contain;
}

.vcb-brand-text {
    display: grid;
    gap: 2px;
}

.vcb-brand-text strong {
    color: var(--vcb-black);
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.vcb-brand-text small {
    color: var(--vcb-muted);
    font-size: 11px;
    line-height: 1.2;
    text-transform: uppercase;
}

.vcb-primary-nav {
    flex: 1;
}

.vcb-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.vcb-menu-item {
    position: relative;
}

.vcb-menu a {
    min-height: 96px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vcb-ink);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
}

.vcb-menu a:hover {
    color: var(--vcb-gold-dark);
}

.vcb-menu-arrow {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.vcb-menu-contact > a::after {
    content: "";
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.vcb-submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 140;
    min-width: 224px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    border-radius: 0 0 var(--vcb-radius) var(--vcb-radius);
    background: var(--vcb-white);
    box-shadow: 0 22px 45px rgba(17, 17, 17, .18);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.vcb-menu-item:hover > .vcb-submenu,
.vcb-menu-item:focus-within > .vcb-submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.vcb-submenu a {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 0 18px;
    color: #303030;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
}

.vcb-submenu a:hover {
    background: #fbf2f5;
    color: var(--vcb-gold-dark);
}

.vcb-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vcb-mobile-nav-tools {
    display: none;
}

.vcb-language-control select,
.vcb-language-control .gt_selector {
    width: 132px;
    height: 38px;
    padding: 0 32px 0 12px;
    border: 1px solid var(--vcb-line);
    border-radius: 999px;
    background: var(--vcb-white);
    color: var(--vcb-ink);
    font-size: 13px;
    outline: none;
}

.vcb-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.vcb-button:hover {
    transform: translateY(-1px);
}

.vcb-button-dark {
    background: var(--vcb-black);
    color: var(--vcb-white);
}

.vcb-button-light {
    background: var(--vcb-white);
    color: var(--vcb-black);
}

.vcb-button-outline {
    border-color: var(--vcb-black);
    background: transparent;
    color: var(--vcb-black);
}

.vcb-button-ghost {
    border-color: rgba(255, 255, 255, .72);
    color: var(--vcb-white);
}

.vcb-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--vcb-line);
    border-radius: 50%;
    background: var(--vcb-white);
    padding: 0;
}

.vcb-menu-toggle span:not(.screen-reader-text) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--vcb-black);
}

.vcb-notice {
    width: min(100% - 48px, var(--vcb-container));
    margin: 16px auto 0;
    padding: 14px 18px;
    border-left: 3px solid var(--vcb-gold);
    background: #fff8e8;
    color: var(--vcb-ink);
    font-weight: 700;
}

.vcb-hero {
    min-height: calc(100vh - 138px);
    max-height: 760px;
    background-size: cover;
    background-position: center;
    color: var(--vcb-white);
    display: flex;
    align-items: center;
}

.vcb-hero-pink {
    color: var(--vcb-black);
    background-position: center bottom;
}

.vcb-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: end;
    padding: 78px 0;
}

.vcb-hero-pink .vcb-hero-inner {
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0 86px;
    text-align: center;
}

.vcb-hero-pink .vcb-hero-copy {
    width: min(100%, 920px);
}

.vcb-hero h1,
.vcb-hero h2 {
    color: var(--vcb-white);
}

.vcb-hero-pink h1 {
    margin: 0 auto 24px;
    color: var(--vcb-black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    font-weight: 400;
}

.vcb-hero-copy p {
    max-width: 690px;
    color: rgba(255, 255, 255, .84);
    font-size: 18px;
}

.vcb-hero-pink .vcb-hero-copy p {
    max-width: 900px;
    margin-right: auto;
    margin-left: auto;
    color: #4d4548;
}

.vcb-hero-pink .vcb-eyebrow {
    color: var(--vcb-gold-dark);
}

.vcb-hero-subtitle {
    color: var(--vcb-black) !important;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px !important;
}

.vcb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    justify-content: flex-start;
}

.vcb-hero-pink .vcb-hero-actions {
    justify-content: center;
}

.vcb-hero-panel {
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .32);
    border-radius: var(--vcb-radius);
    background: rgba(255, 255, 255, .12);
    color: var(--vcb-white);
    backdrop-filter: blur(10px);
}

.vcb-hero-pink .vcb-hero-panel {
    display: none;
}

.vcb-hero-panel span,
.vcb-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--vcb-gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.vcb-hero-panel strong {
    display: block;
    color: var(--vcb-white);
    font-size: 23px;
    line-height: 1.25;
}

.vcb-trust-strip {
    background: var(--vcb-black);
    color: var(--vcb-white);
}

.vcb-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.vcb-trust-grid div {
    min-height: 120px;
    padding: 24px;
    border-left: 1px solid rgba(255, 255, 255, .14);
}

.vcb-trust-grid div:last-child {
    border-right: 1px solid rgba(255, 255, 255, .14);
}

.vcb-trust-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--vcb-white);
    font-size: 18px;
}

.vcb-trust-grid span {
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}

.vcb-pink-divider {
    height: 150px;
    background-size: cover;
    background-position: center top;
}

.vcb-advantage-section {
    padding: 86px 0 90px;
    background: var(--vcb-white);
    text-align: center;
}

.vcb-centered-head {
    width: min(100%, 960px);
    margin: 0 auto 54px;
}

.vcb-centered-head h2 {
    margin-bottom: 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 45px;
    font-weight: 400;
}

.vcb-centered-head p {
    margin-bottom: 10px;
    color: #313131;
    font-size: 16px;
    line-height: 1.85;
}

.vcb-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 54px;
    align-items: start;
}

.vcb-advantage-item {
    min-width: 0;
    padding: 18px 16px;
    border-radius: var(--vcb-radius);
    transition: background .24s ease, box-shadow .24s ease, transform .24s ease;
}

.vcb-advantage-item:hover {
    background: #fffaf4;
    box-shadow: 0 18px 44px rgba(24, 20, 14, .08);
    transform: translateY(-6px);
}

.vcb-advantage-item .dashicons {
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    color: var(--vcb-black);
    font-size: 54px;
    line-height: 54px;
}

.vcb-advantage-item h3 {
    margin-bottom: 18px;
    font-size: 20px;
    font-weight: 500;
}

.vcb-advantage-item p {
    color: #777;
    font-size: 16px;
    line-height: 1.75;
}

.vcb-section {
    padding: 86px 0;
}

.vcb-section-muted {
    background: var(--vcb-soft);
}

.vcb-custom-clone-section {
    background: linear-gradient(90deg, var(--vcb-white) 0 50%, #fbf0f2 50% 100%);
}

.vcb-custom-clone-section .vcb-container {
    width: 100%;
    max-width: none;
}

.vcb-custom-clone-section .vcb-split {
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.vcb-custom-clone-section .vcb-split-media img {
    width: 100%;
    height: 620px;
    aspect-ratio: auto;
    border-radius: 0;
    box-shadow: none;
}

.vcb-custom-clone-section .vcb-split-copy {
    width: min(100% - 96px, 570px);
    align-self: center;
    margin: 0 auto;
}

.vcb-custom-clone-section .vcb-split-copy h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 44px;
    font-weight: 400;
}

.vcb-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}

.vcb-section-head .vcb-eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -12px;
}

.vcb-section-head h2 {
    max-width: 780px;
}

.vcb-section-head a {
    color: var(--vcb-gold-dark);
    font-weight: 800;
}

.vcb-category-grid,
.vcb-product-grid,
.vcb-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.vcb-category-card,
.vcb-product-card,
.vcb-text-card,
.vcb-proof-grid article,
.vcb-detail-copy-grid div,
.vcb-sidebar-box,
.vcb-detail-inquiry {
    border: 1px solid var(--vcb-line);
    border-radius: var(--vcb-radius);
    background: var(--vcb-white);
}

.vcb-category-card {
    min-height: 342px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(16, 16, 14, .06);
}

.vcb-category-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.vcb-category-card span {
    display: block;
    padding: 18px 18px 8px;
    color: var(--vcb-black);
    font-size: 20px;
    font-weight: 900;
}

.vcb-category-card small {
    display: block;
    padding: 0 18px 20px;
    color: var(--vcb-muted);
    font-size: 14px;
    line-height: 1.5;
}

.vcb-split,
.vcb-inquiry-layout,
.vcb-page-layout,
.vcb-detail-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 54px;
    align-items: start;
}

.vcb-split-media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: var(--vcb-radius);
    box-shadow: var(--vcb-shadow);
}

.vcb-split-copy p {
    color: var(--vcb-muted);
    font-size: 17px;
}

.vcb-process-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 26px 0 0;
    list-style: none;
}

.vcb-process-list li {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 8px 16px;
    align-items: start;
    padding: 18px;
    border: 1px solid var(--vcb-line);
    border-radius: var(--vcb-radius);
    background: var(--vcb-white);
}

.vcb-process-list span {
    grid-row: 1 / 3;
    color: var(--vcb-gold-dark);
    font-weight: 900;
}

.vcb-process-list strong {
    color: var(--vcb-black);
}

.vcb-process-list small {
    color: var(--vcb-muted);
}

.vcb-product-showcase {
    background: #fbfaf7;
}

.vcb-product-card {
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}

.vcb-product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--vcb-shadow);
}

.vcb-product-image {
    display: block;
    background: var(--vcb-soft);
}

.vcb-product-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.vcb-product-content {
    padding: 18px;
}

.vcb-product-content > span {
    color: var(--vcb-gold-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.vcb-product-content h3 {
    margin: 8px 0 9px;
    min-height: 43px;
}

.vcb-product-content p {
    min-height: 68px;
    margin-bottom: 16px;
    color: var(--vcb-muted);
    font-size: 14px;
}

.vcb-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vcb-product-meta small {
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--vcb-soft);
    color: var(--vcb-muted);
    font-size: 12px;
}

.vcb-commerce-price,
.woocommerce ul.products li.product .price,
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    margin: 8px 0 12px;
    color: var(--vcb-gold-dark);
    font-size: 18px;
    font-weight: 900;
}

.vcb-add-to-cart {
    width: 100%;
    margin-top: 14px;
    border-radius: 4px;
}

.vcb-commerce-card .vcb-product-content p {
    min-height: 56px;
}

.vcb-commerce-wrapper .woocommerce-result-count,
.vcb-commerce-wrapper .woocommerce-ordering {
    margin-bottom: 24px;
}

.vcb-commerce-wrapper .woocommerce-ordering select {
    height: 42px;
    padding: 0 12px;
    border: 1px solid var(--vcb-line);
    border-radius: 4px;
    background: var(--vcb-white);
}

.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none;
}

.woocommerce ul.products li.product {
    float: none;
    width: auto;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--vcb-line);
    border-radius: var(--vcb-radius);
    background: var(--vcb-white);
    transition: transform .22s ease, box-shadow .22s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-3px);
    box-shadow: var(--vcb-shadow);
}

.woocommerce ul.products li.product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin: 0;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
    margin-left: 18px;
    margin-right: 18px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: 58px;
    padding: 18px 0 0;
    color: var(--vcb-black);
    font-size: 18px;
    line-height: 1.2;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    border-radius: 4px;
    background: var(--vcb-black);
    color: var(--vcb-white);
    font-weight: 800;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
    background: var(--vcb-gold-dark);
    color: var(--vcb-white);
}

.woocommerce div.product {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1fr);
    gap: 48px;
}

.woocommerce div.product div.images,
.woocommerce div.product div.summary {
    float: none;
    width: auto;
}

.woocommerce div.product div.images img {
    border-radius: var(--vcb-radius);
    background: var(--vcb-soft);
}

.woocommerce div.product .product_title {
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.05;
}

.woocommerce div.product form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 22px;
}

.woocommerce .quantity .qty {
    min-height: 42px;
    border: 1px solid var(--vcb-line);
    border-radius: 4px;
}

.woocommerce table.shop_table {
    border-color: var(--vcb-line);
    border-radius: var(--vcb-radius);
    overflow: hidden;
    background: var(--vcb-white);
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout #payment {
    border: 1px solid var(--vcb-line);
    border-radius: var(--vcb-radius);
    background: var(--vcb-white);
}

@media (max-width: 980px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .woocommerce div.product {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .woocommerce ul.products {
        grid-template-columns: 1fr;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        min-height: 0;
    }

    .woocommerce div.product .product_title {
        font-size: 32px;
    }

    .woocommerce div.product form.cart {
        display: grid;
    }
}

.vcb-proof {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 48px;
}

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

.vcb-proof-grid article,
.vcb-detail-copy-grid div,
.vcb-text-card {
    padding: 24px;
}

.vcb-proof-grid strong,
.vcb-detail-copy-grid strong {
    display: block;
    margin-bottom: 8px;
    color: var(--vcb-black);
    font-size: 18px;
}

.vcb-proof-grid p,
.vcb-detail-copy-grid p {
    color: var(--vcb-muted);
    font-size: 14px;
}

.vcb-inquiry-section {
    background: var(--vcb-green);
    color: var(--vcb-white);
}

.vcb-inquiry-section h2,
.vcb-inquiry-section p {
    color: var(--vcb-white);
}

.vcb-inquiry-form {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--vcb-radius);
    background: var(--vcb-white);
    color: var(--vcb-ink);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.vcb-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.vcb-inquiry-form label {
    display: grid;
    gap: 6px;
    color: var(--vcb-muted);
    font-size: 13px;
    font-weight: 800;
}

.vcb-inquiry-form input,
.vcb-inquiry-form textarea,
.vcb-search-form input {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    border: 1px solid var(--vcb-line);
    border-radius: 6px;
    background: #fff;
    color: var(--vcb-ink);
    font: inherit;
    outline: none;
}

.vcb-inquiry-form textarea {
    resize: vertical;
}

.vcb-inquiry-form input:focus,
.vcb-inquiry-form textarea:focus {
    border-color: var(--vcb-gold);
    box-shadow: 0 0 0 3px rgba(185, 144, 72, .14);
}

.vcb-catalog-inquiry {
    position: relative;
    overflow: hidden;
    scroll-margin-top: 150px;
    padding: 76px 0 70px;
    border-top: 1px solid rgba(185, 144, 72, .16);
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(120deg, #17392f 0%, #24483e 54%, #131f1b 100%);
    background-size: 68px 68px, auto;
}

.vcb-catalog-inquiry::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 144, 72, .55), transparent);
}

.vcb-catalog-inquiry .vcb-inquiry-layout {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 460px);
    align-items: center;
    gap: 76px;
}

.vcb-inquiry-copy {
    max-width: 660px;
}

.vcb-inquiry-copy .vcb-eyebrow {
    color: #e8cf94;
}

.vcb-inquiry-copy h2 {
    max-width: 620px;
    margin-bottom: 18px;
    color: var(--vcb-white);
    font-size: clamp(31px, 3.7vw, 48px);
    line-height: 1.08;
}

.vcb-inquiry-copy > p {
    max-width: 620px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.75;
}

.vcb-inquiry-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    max-width: 620px;
    margin: 0 0 26px;
    border-top: 1px solid rgba(255, 255, 255, .2);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.vcb-inquiry-metrics span {
    min-height: 88px;
    display: grid;
    align-content: center;
    gap: 5px;
    padding: 15px 22px 15px 0;
}

.vcb-inquiry-metrics span + span {
    padding-left: 22px;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.vcb-inquiry-metrics strong {
    color: #f0d79b;
    font-size: 28px;
    line-height: 1;
}

.vcb-inquiry-metrics small {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.vcb-inquiry-checklist {
    display: grid;
    gap: 9px;
    max-width: 650px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.vcb-inquiry-checklist li {
    position: relative;
    padding-left: 24px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    line-height: 1.65;
}

.vcb-inquiry-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .72em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e8cf94;
    box-shadow: 0 0 0 4px rgba(232, 207, 148, .12);
}

.vcb-inquiry-panel {
    width: 100%;
}

.vcb-catalog-inquiry .vcb-inquiry-form {
    gap: 12px;
    padding: 22px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.vcb-catalog-inquiry .vcb-inquiry-form input,
.vcb-catalog-inquiry .vcb-inquiry-form textarea {
    min-height: 44px;
    border-radius: 5px;
}

.vcb-catalog-inquiry .vcb-inquiry-form textarea {
    min-height: 118px;
}

.vcb-catalog-inquiry .vcb-inquiry-form .vcb-button {
    width: 100%;
    min-height: 46px;
    border-radius: 4px;
}

.vcb-form-note {
    margin: 13px 2px 0;
    color: rgba(255, 255, 255, .66);
    font-size: 12px;
    line-height: 1.5;
}

.vcb-page-hero {
    padding: 92px 0 64px;
    background: var(--vcb-soft);
}

.vcb-page-hero-image {
    min-height: 370px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--vcb-white);
}

.vcb-page-hero-image h1,
.vcb-page-hero-image p {
    color: var(--vcb-black);
}

.vcb-catalog-hero {
    display: block;
    min-height: 0;
    padding: 270px 0 76px;
    background-position: center;
}

.vcb-catalog-hero .vcb-container {
    padding-top: 0;
}

.vcb-catalog-hero h1 {
    max-width: 780px;
    font-size: 54px;
}

.vcb-catalog-hero p:not(.vcb-eyebrow) {
    max-width: 700px;
    color: #4f4a48;
}

.vcb-page-hero p {
    max-width: 760px;
    color: var(--vcb-muted);
    font-size: 18px;
}

.vcb-catalog-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.vcb-catalog-sidebar {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 10px;
}

.vcb-catalog-sidebar h2 {
    margin-bottom: 8px;
    font-size: 22px;
}

.vcb-catalog-sidebar > a {
    padding: 11px 13px;
    border: 1px solid var(--vcb-line);
    border-radius: 6px;
    background: var(--vcb-white);
    color: var(--vcb-ink);
    font-weight: 800;
}

.vcb-catalog-sidebar > a:hover,
.vcb-catalog-sidebar > a.is-active {
    border-color: var(--vcb-gold);
    color: var(--vcb-gold-dark);
}

.vcb-sidebar-box {
    margin-top: 14px;
    padding: 18px;
}

.vcb-sidebar-box p {
    color: var(--vcb-muted);
    font-size: 14px;
}

.vcb-product-detail {
    padding: 54px 0 72px;
    background: #fbfaf7;
}

.vcb-product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 500px);
    gap: 48px;
    align-items: start;
}

.vcb-detail-gallery {
    padding: 20px;
    border: 1px solid var(--vcb-line);
    border-radius: var(--vcb-radius);
    background: var(--vcb-white);
}

.vcb-detail-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 6px;
}

.vcb-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--vcb-muted);
    font-size: 13px;
}

.vcb-detail-summary h1 {
    margin-bottom: 18px;
    font-size: 44px;
}

.vcb-detail-summary p {
    color: var(--vcb-muted);
}

.vcb-spec-table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
    background: var(--vcb-white);
    border: 1px solid var(--vcb-line);
    border-radius: var(--vcb-radius);
    overflow: hidden;
}

.vcb-spec-table th,
.vcb-spec-table td {
    padding: 13px 15px;
    border-bottom: 1px solid var(--vcb-line);
    text-align: left;
    vertical-align: top;
}

.vcb-spec-table tr:last-child th,
.vcb-spec-table tr:last-child td {
    border-bottom: 0;
}

.vcb-spec-table th {
    width: 34%;
    background: var(--vcb-soft);
    color: var(--vcb-black);
}

.vcb-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vcb-detail-content {
    grid-template-columns: minmax(0, 1fr) 380px;
}

.vcb-page-content,
.vcb-detail-content article {
    min-width: 0;
}

.vcb-page-content h2,
.vcb-detail-content article h2 {
    margin-bottom: 16px;
}

.vcb-page-content p,
.vcb-detail-content article p {
    color: var(--vcb-muted);
}

.vcb-detail-copy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.vcb-page-feature {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
    margin-top: 42px;
    padding: 26px;
    border: 1px solid var(--vcb-line);
    border-radius: var(--vcb-radius);
    background: #fbf0f2;
}

.vcb-page-feature img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
}

.vcb-detail-inquiry {
    position: sticky;
    top: 104px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(15, 12, 8, .08);
}

.vcb-detail-inquiry .vcb-inquiry-form {
    padding: 0;
    border: 0;
    box-shadow: none;
}

.vcb-pagination {
    margin-top: 34px;
}

.vcb-floating-inquiry {
    position: fixed;
    right: 26px;
    bottom: 82px;
    z-index: 70;
    width: 58px;
    min-height: 58px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #1664b8;
    color: var(--vcb-white);
    box-shadow: var(--vcb-shadow);
    font-size: 0;
    cursor: pointer;
}

.vcb-floating-inquiry::before {
    content: "\f125";
    font-family: dashicons;
    font-size: 28px;
    line-height: 1;
}

.vcb-back-top {
    position: fixed;
    right: 26px;
    bottom: 18px;
    z-index: 70;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--vcb-white);
    color: #1664b8;
    box-shadow: var(--vcb-shadow);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease;
}

.vcb-back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.vcb-back-top::before {
    content: "\f343";
    font-family: dashicons;
    font-size: 26px;
}

.vcb-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.vcb-modal.is-open {
    display: flex;
}

.vcb-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .58);
}

.vcb-modal-panel {
    position: relative;
    width: min(100%, 560px);
    max-height: calc(100vh - 48px);
    overflow: auto;
    padding: 28px;
    border-radius: var(--vcb-radius);
    background: var(--vcb-white);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
}

.vcb-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 1px solid var(--vcb-line);
    border-radius: 50%;
    background: var(--vcb-white);
    color: var(--vcb-black);
    cursor: pointer;
}

.vcb-footer {
    background: var(--vcb-black);
    color: rgba(255, 255, 255, .72);
    padding: 62px 0 24px;
}

.vcb-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 36px;
}

.vcb-footer-brand {
    min-width: 0;
    margin-bottom: 16px;
    color: var(--vcb-white);
    font-weight: 900;
}

.vcb-footer h3 {
    margin-bottom: 14px;
    color: var(--vcb-white);
    font-size: 15px;
}

.vcb-footer a,
.vcb-footer span {
    display: block;
    margin-bottom: 8px;
}

.vcb-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: 13px;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 32px;
    }

    .vcb-header-inner {
        gap: 16px;
    }

    .vcb-menu {
        gap: 12px;
    }

    .vcb-menu a {
        font-size: 12px;
    }

    .vcb-category-grid,
    .vcb-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vcb-trust-grid,
    .vcb-advantage-grid,
    .vcb-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vcb-split,
    .vcb-proof,
    .vcb-inquiry-layout,
    .vcb-product-detail-grid,
    .vcb-detail-content,
    .vcb-page-layout {
        grid-template-columns: 1fr;
    }

    .vcb-detail-inquiry,
    .vcb-catalog-sidebar {
        position: static;
    }

    .vcb-page-feature {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    body.admin-bar .vcb-site-header {
        top: 0;
    }

    .vcb-container {
        width: min(100% - 32px, var(--vcb-container));
    }

    .vcb-header-top-inner {
        min-height: 38px;
        justify-content: center;
    }

    .vcb-header-top p {
        max-width: 310px;
        overflow: hidden;
        text-align: center;
        font-size: 12px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .vcb-top-icons {
        display: none;
    }

    .vcb-header-inner {
        min-height: 68px;
        justify-content: space-between;
    }

    .vcb-brand {
        min-width: 0;
    }

    .vcb-brand .custom-logo {
        height: 42px;
        max-width: 150px;
    }

    .vcb-brand-text strong {
        font-size: 20px;
    }

    .vcb-brand-text small {
        display: none;
    }

    .vcb-menu-toggle {
        display: block;
    }

    .vcb-primary-nav {
        position: fixed;
        top: 106px;
        left: 16px;
        right: 16px;
        display: none;
        padding: 16px;
        border: 1px solid var(--vcb-line);
        border-radius: var(--vcb-radius);
        background: var(--vcb-white);
        box-shadow: var(--vcb-shadow);
        max-height: calc(100vh - 124px);
        overflow: auto;
    }

    .vcb-primary-nav.is-open {
        display: block;
    }

    .vcb-menu {
        display: grid;
        gap: 0;
        justify-content: stretch;
    }

    .vcb-menu a {
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 6px;
        border-bottom: 1px solid var(--vcb-line);
        font-size: 15px;
        text-transform: none;
    }

    .vcb-menu > li:last-child > a {
        border-bottom: 0;
    }

    .vcb-submenu {
        position: static;
        min-width: 0;
        display: grid;
        padding: 0 0 8px 16px;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .vcb-submenu a {
        min-height: auto;
        padding: 9px 6px;
        border-bottom: 0;
        color: var(--vcb-muted);
        font-size: 13px;
    }

    .vcb-menu-contact > a::after {
        display: none;
    }

    .vcb-mobile-nav-tools {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 14px;
    }

    .vcb-mobile-nav-tools .vcb-language-control select,
    .vcb-mobile-nav-tools .vcb-language-control .gt_selector {
        width: 100%;
    }

    .vcb-mobile-nav-tools .vcb-button {
        width: 100%;
    }

    .vcb-header-actions {
        display: none;
    }

    .vcb-header-actions .vcb-button {
        display: none;
    }

    .vcb-language-control select,
    .vcb-language-control .gt_selector {
        width: 108px;
        height: 36px;
        font-size: 12px;
    }

    .vcb-hero {
        min-height: 560px;
        max-height: none;
        background-position: 58% center;
    }

    .vcb-hero-pink {
        min-height: 620px;
        background-position: center bottom;
    }

    .vcb-hero-inner {
        display: block;
        padding: 74px 0 46px;
    }

    .vcb-hero-pink .vcb-hero-inner {
        display: flex;
        padding: 72px 0 56px;
    }

    .vcb-hero h1 {
        font-size: 38px;
    }

    .vcb-hero-pink h1 {
        font-size: 40px;
    }

    .vcb-hero-copy p,
    .vcb-page-hero p {
        font-size: 16px;
    }

    .vcb-hero-subtitle {
        font-size: 21px !important;
    }

    .vcb-hero-panel {
        margin-top: 34px;
    }

    .vcb-trust-grid,
    .vcb-advantage-grid,
    .vcb-category-grid,
    .vcb-category-grid-large,
    .vcb-product-grid,
    .vcb-proof-grid,
    .vcb-detail-copy-grid,
    .vcb-footer-grid,
    .vcb-catalog-layout,
    .vcb-field-grid {
        grid-template-columns: 1fr;
    }

    .vcb-trust-grid div,
    .vcb-trust-grid div:last-child {
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .14);
    }

    .vcb-section {
        padding: 62px 0;
    }

    .vcb-custom-clone-section {
        background: #fbf0f2;
    }

    .vcb-custom-clone-section .vcb-split {
        grid-template-columns: 1fr;
    }

    .vcb-custom-clone-section .vcb-split-media img {
        height: 360px;
    }

    .vcb-custom-clone-section .vcb-split-copy {
        width: min(100% - 32px, 570px);
        padding: 48px 0 58px;
    }

    .vcb-custom-clone-section .vcb-split-copy h2 {
        font-size: 34px;
    }

    .vcb-pink-divider {
        height: 98px;
    }

    .vcb-advantage-section {
        padding: 62px 0;
    }

    .vcb-centered-head {
        margin-bottom: 36px;
    }

    .vcb-centered-head h2 {
        font-size: 36px;
    }

    .vcb-centered-head p,
    .vcb-advantage-item p {
        font-size: 15px;
    }

    .vcb-advantage-grid {
        gap: 36px;
    }

    .vcb-section-head {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .vcb-section-head .vcb-eyebrow {
        margin-bottom: 0;
    }

    .vcb-category-card {
        min-height: auto;
    }

    .vcb-category-card img {
        aspect-ratio: 16 / 10;
    }

    .vcb-product-content h3,
    .vcb-product-content p {
        min-height: 0;
    }

    .vcb-page-hero {
        padding: 64px 0 48px;
    }

    .vcb-page-hero-image {
        min-height: 300px;
    }

    .vcb-catalog-hero {
        min-height: 300px;
        padding: 64px 0 48px;
    }

    .vcb-page-hero h1,
    .vcb-detail-summary h1 {
        font-size: 31px;
        line-height: 1.12;
        max-width: 100%;
    }

    .vcb-page-hero p {
        max-width: 100%;
        line-height: 1.55;
    }

    .vcb-product-detail {
        padding: 32px 0 54px;
    }

    .vcb-detail-gallery {
        padding: 10px;
    }

    .vcb-spec-table th,
    .vcb-spec-table td {
        display: block;
        width: 100%;
    }

    .vcb-detail-actions .vcb-button,
    .vcb-hero-actions .vcb-button {
        width: 100%;
    }

    .vcb-inquiry-form {
        padding: 18px;
    }

    .vcb-home-inquiry {
        scroll-margin-top: 150px;
        padding: 142px 0 50px;
        background-size: 54px 54px, auto;
    }

    .vcb-home-inquiry .vcb-inquiry-layout {
        gap: 28px;
    }

    .vcb-home-inquiry-copy {
        max-width: none;
    }

    .vcb-home-inquiry-copy h2 {
        max-width: 100%;
        margin-bottom: 14px;
        font-size: 28px;
        line-height: 1.14;
        word-break: normal;
        overflow-wrap: anywhere;
    }

    .vcb-home-inquiry-copy p {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 15px;
        line-height: 1.65;
    }

    .vcb-home-inquiry-points {
        gap: 8px;
    }

    .vcb-home-inquiry-panel,
    .vcb-home-inquiry .vcb-inquiry-form {
        width: 100%;
        max-width: 100%;
    }

    .vcb-catalog-inquiry {
        scroll-margin-top: 150px;
        padding: 132px 0 52px;
        background-size: 54px 54px, auto;
    }

    .vcb-catalog-inquiry .vcb-inquiry-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vcb-inquiry-copy h2 {
        font-size: 29px;
        line-height: 1.12;
    }

    .vcb-inquiry-copy > p {
        font-size: 15px;
        line-height: 1.65;
    }

    .vcb-inquiry-metrics {
        grid-template-columns: 1fr;
    }

    .vcb-inquiry-metrics span,
    .vcb-inquiry-metrics span + span {
        min-height: auto;
        padding: 14px 0;
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .14);
    }

    .vcb-inquiry-metrics span:first-child {
        border-top: 0;
    }

    .vcb-floating-inquiry {
        display: none;
    }

    .vcb-back-top {
        display: none;
    }

    .vcb-footer-bottom {
        display: grid;
    }
}

@media (max-width: 420px) {
    .vcb-header-actions {
        display: none;
    }

    .vcb-hero h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 29px;
    }
}

/* Homepage benchmark-style rebuild */
.home .vcb-site-header {
    background: rgba(255, 255, 255, .98);
}

.home .vcb-header-top-inner {
    justify-content: center;
    position: relative;
}

.home .vcb-header-top p {
    font-size: 15px;
    letter-spacing: .01em;
}

.home .vcb-top-icons {
    position: absolute;
    right: 0;
}

.home .vcb-header-inner {
    min-height: 94px;
    gap: 16px;
}

.home .vcb-menu {
    gap: 20px;
}

.home .vcb-menu a {
    min-height: 94px;
    font-size: 14px;
    font-weight: 500;
}

.home .vcb-submenu a {
    min-height: 46px;
    font-size: 14px;
}

.home .vcb-language-control select,
.home .vcb-language-control .gt_selector {
    width: 130px;
    height: 34px;
    border: 0;
    border-radius: 0;
    background-color: #101625;
    color: #fff;
}

.home .vcb-brand {
    min-width: 220px;
}

.vcb-home-hero {
    position: relative;
    min-height: calc(100vh - 137px);
    height: 760px;
    max-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center bottom;
    text-align: center;
}

.vcb-home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08) 0%, rgba(255, 255, 255, .16) 44%, rgba(255, 255, 255, .28) 100%),
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, .44), rgba(255, 255, 255, 0) 36%);
    pointer-events: none;
}

.vcb-home-hero-shine {
    position: absolute;
    inset: -20% -12%;
    background: linear-gradient(115deg, transparent 32%, rgba(255, 255, 255, .32) 47%, transparent 62%);
    transform: translateX(-55%);
    animation: vcbHeroShine 6.8s ease-in-out infinite;
    opacity: .65;
    pointer-events: none;
}

.vcb-home-hero-inner {
    position: relative;
    z-index: 2;
    padding: 42px 0 120px;
}

.vcb-hero-kicker {
    margin: 0 0 18px;
    color: #5a4749;
    font-size: 15px;
}

.vcb-home-hero h1 {
    max-width: 980px;
    margin: 0 auto 22px;
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 4.4vw, 76px);
    font-weight: 400;
}

.vcb-home-hero-subtitle {
    margin-bottom: 24px;
    color: #171717;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(23px, 2vw, 34px);
    line-height: 1.35;
}

.vcb-home-hero-note {
    max-width: 920px;
    margin: 0 auto;
    color: #5f5558;
    font-size: 18px;
}

.vcb-home-block {
    padding: 100px 0;
}

.vcb-home-title {
    max-width: 850px;
    margin: 0 auto 48px;
    text-align: center;
}

.vcb-home-title h2,
.vcb-home-proof-copy h2,
.vcb-home-split-copy h2 {
    margin-bottom: 22px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 3vw, 52px);
    font-weight: 400;
}

.vcb-home-title p,
.vcb-home-proof-copy p,
.vcb-home-split-copy p {
    color: #6d6a66;
    font-size: 16px;
    line-height: 1.85;
}

.vcb-home-title-row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.vcb-home-title-row > div {
    max-width: 720px;
}

.vcb-home-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
    background: #fbf1f3;
}

.vcb-home-split-media {
    min-height: 640px;
    overflow: hidden;
    background: #f6f0eb;
}

.vcb-home-split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.vcb-home-split-copy {
    width: min(100% - 96px, 610px);
    align-self: center;
    justify-self: center;
    padding: 82px 0;
}

.vcb-process-row {
    display: grid;
    gap: 18px;
    margin: 32px 0 26px;
}

.vcb-process-row article {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 4px 18px;
    align-items: start;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(185, 144, 72, .22);
}

.vcb-process-row article:last-child {
    border-bottom: 0;
}

.vcb-process-row span {
    grid-row: 1 / 3;
    color: var(--vcb-gold-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
}

.vcb-process-row h3 {
    font-size: 19px;
    font-weight: 500;
}

.vcb-process-row p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
}

.vcb-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--vcb-gold-dark);
    font-weight: 800;
}

.vcb-text-link::after {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
    transition: width .22s ease;
}

.vcb-text-link:hover::after {
    width: 52px;
}

.vcb-home-diamonds {
    background: #fff;
}

.vcb-diamond-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.vcb-diamond-card {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee7e0;
}

.vcb-diamond-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .8s ease;
}

.vcb-diamond-card span {
    padding: 22px 20px 8px;
    color: #111;
    font-size: 20px;
    font-weight: 600;
}

.vcb-diamond-card small {
    padding: 0 20px 22px;
    color: #76716e;
    font-size: 14px;
    line-height: 1.55;
}

.vcb-diamond-card:hover img {
    transform: scale(1.06);
}

.vcb-home-jewelry {
    background: #fbf8f6;
}

.vcb-jewelry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #e8ded7;
    border-left: 1px solid #e8ded7;
}

.vcb-jewelry-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-right: 1px solid #e8ded7;
    border-bottom: 1px solid #e8ded7;
    background: #fff;
}

.vcb-jewelry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease, filter .8s ease;
}

.vcb-jewelry-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .52) 100%);
}

.vcb-jewelry-card span {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    line-height: 1.2;
}

.vcb-jewelry-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.06);
}

.vcb-featured-products {
    background: #fff;
}

.vcb-featured-products .vcb-product-card {
    border-radius: 0;
    border-color: #eee7e0;
    box-shadow: none;
}

.vcb-featured-products .vcb-product-card:hover {
    box-shadow: 0 20px 45px rgba(18, 14, 10, .1);
}

.vcb-home-proof {
    padding: 110px 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .92) 0 45%, rgba(255, 248, 250, .78) 45% 100%),
        url("../images/hero-pink-lab-diamond.jpg") center / cover;
}

.vcb-home-proof .vcb-container {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.vcb-home-proof-copy {
    max-width: 560px;
}

.vcb-home-proof-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.vcb-home-proof-list article {
    min-height: 210px;
    padding: 26px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(232, 222, 215, .9);
    backdrop-filter: blur(8px);
}

.vcb-home-proof-list strong {
    display: block;
    margin-bottom: 14px;
    color: #111;
    font-size: 18px;
}

.vcb-home-proof-list span {
    color: #706a66;
    font-size: 14px;
    line-height: 1.7;
}

.vcb-home-news {
    background: #fff;
}

.vcb-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.vcb-news-card {
    min-height: 170px;
    padding: 28px;
    border: 1px solid #eee7e0;
    background: #fff;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.vcb-news-card small {
    display: block;
    margin-bottom: 18px;
    color: var(--vcb-gold-dark);
    font-weight: 800;
}

.vcb-news-card span {
    color: #111;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.35;
}

.vcb-news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 144, 72, .45);
    box-shadow: 0 18px 42px rgba(18, 14, 10, .08);
}

.vcb-home-inquiry {
    scroll-margin-top: 150px;
    padding: 78px 0 76px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(120deg, #17392f 0%, #1d3d34 58%, #131f1b 100%);
    background-size: 68px 68px, auto;
    color: #fff;
}

.vcb-home-inquiry h2,
.vcb-home-inquiry p {
    color: #fff;
}

.vcb-home-inquiry .vcb-inquiry-layout {
    align-items: center;
}

.vcb-home-inquiry-copy {
    max-width: 650px;
}

.vcb-home-inquiry-copy .vcb-eyebrow {
    color: #e8cf94;
}

.vcb-home-inquiry-copy h2 {
    margin-bottom: 18px;
    color: #fff;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
}

.vcb-home-inquiry-copy p {
    max-width: 620px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.75;
}

.vcb-home-inquiry-points {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.vcb-home-inquiry-points li {
    position: relative;
    padding-left: 23px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

.vcb-home-inquiry-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e8cf94;
    box-shadow: 0 0 0 4px rgba(232, 207, 148, .12);
}

.vcb-home-inquiry-panel {
    width: 100%;
}

.vcb-home-inquiry .vcb-inquiry-form {
    border: 0;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

@keyframes vcbHeroShine {
    0% {
        transform: translateX(-58%);
    }
    48%,
    100% {
        transform: translateX(58%);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .vcb-home-split-media img {
        animation: vcbSlowZoom 14s ease-in-out infinite alternate;
    }
}

@keyframes vcbSlowZoom {
    from {
        transform: scale(1.02);
    }
    to {
        transform: scale(1.08);
    }
}

@media (max-width: 1120px) {
    .home .vcb-menu {
        gap: 16px;
    }

    .vcb-diamond-grid,
    .vcb-jewelry-grid,
    .vcb-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vcb-home-proof .vcb-container,
    .vcb-home-split {
        grid-template-columns: 1fr;
    }

    .vcb-home-split-media {
        min-height: 440px;
    }

    .vcb-home-proof-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1360px) {
    .home .vcb-brand {
        min-width: 190px;
    }

    .home .vcb-brand-text small {
        max-width: 155px;
    }

    .home .vcb-menu {
        gap: 14px;
    }

    .home .vcb-menu a {
        font-size: 12px;
    }

    .home .vcb-language-control select,
    .home .vcb-language-control .gt_selector {
        width: 112px;
    }
}

@media (max-width: 820px) {
    .home .vcb-header-top-inner {
        min-height: 34px;
    }

    .home .vcb-top-icons {
        display: none;
    }

    .home .vcb-header-inner {
        min-height: 70px;
    }

    .home .vcb-menu {
        gap: 0;
    }

    .home .vcb-menu a {
        min-height: auto;
        font-size: 15px;
    }

    .vcb-home-hero {
        min-height: 540px;
        height: auto;
        background-position: center bottom;
    }

    .vcb-home-hero-inner {
        padding: 54px 0 74px;
    }

    .vcb-home-hero h1 {
        font-size: 34px;
    }

    .vcb-home-hero-subtitle {
        font-size: 23px;
        line-height: 1.34;
    }

    .vcb-hero-kicker {
        font-size: 14px;
        line-height: 1.45;
    }

    .vcb-home-hero-note {
        font-size: 15px;
        line-height: 1.7;
    }

    .vcb-home-block {
        padding: 68px 0;
    }

    .vcb-home-title {
        margin-bottom: 34px;
    }

    .vcb-home-title-row {
        display: block;
        text-align: center;
    }

    .vcb-home-split-copy {
        width: min(100% - 32px, 610px);
        padding: 56px 0;
    }

    .vcb-home-split-media {
        min-height: 360px;
    }

    .vcb-diamond-grid,
    .vcb-jewelry-grid,
    .vcb-product-grid,
    .vcb-news-grid {
        grid-template-columns: 1fr;
    }

    .vcb-diamond-card {
        min-height: auto;
    }

    .vcb-jewelry-card {
        min-height: 340px;
    }

    .vcb-home-proof {
        padding: 70px 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 248, 250, .86)),
            url("../images/hero-pink-lab-diamond.jpg") center / cover;
    }
}

/* Homepage copy and interaction polish */
@media (prefers-reduced-motion: no-preference) {
    .home .vcb-reveal,
    .home .vcb-diamond-card,
    .home .vcb-jewelry-card,
    .home .vcb-news-card,
    .home .vcb-product-card,
    .home .vcb-process-row article,
    .home .vcb-home-proof-list article {
        opacity: 0;
        transform: translateY(36px);
        transition:
            opacity .82s cubic-bezier(.2, .78, .2, 1),
            transform .82s cubic-bezier(.2, .78, .2, 1),
            box-shadow .28s ease,
            border-color .28s ease,
            background-color .28s ease;
        transition-delay: calc(var(--vcb-stagger, var(--vcb-order, 0)) * 76ms);
        will-change: opacity, transform;
    }

    .home .vcb-home-hero .vcb-reveal {
        transform: translateY(28px) scale(.985);
        transition-duration: .95s;
    }

    .home .vcb-home-hero .vcb-reveal:nth-child(2) {
        transition-delay: .12s;
    }

    .home .vcb-home-hero .vcb-reveal:nth-child(3) {
        transition-delay: .22s;
    }

    .home .vcb-home-hero .vcb-reveal:nth-child(4) {
        transition-delay: .32s;
    }

    .home .vcb-reveal.is-visible,
    .home .vcb-diamond-card.is-visible,
    .home .vcb-jewelry-card.is-visible,
    .home .vcb-news-card.is-visible,
    .home .vcb-product-card.is-visible,
    .home .vcb-process-row article.is-visible,
    .home .vcb-home-proof-list article.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .home .vcb-home-split-media img,
    .home .vcb-home-proof {
        transform: translate3d(var(--vcb-hero-x, 0), var(--vcb-hero-y, 0), 0);
    }
}

.home .vcb-home-hero {
    transition: background-position .18s linear;
}

.home .vcb-home-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at calc(50% + var(--vcb-hero-x, 0px)) calc(44% + var(--vcb-hero-y, 0px)), rgba(255, 255, 255, .34), rgba(255, 255, 255, 0) 34%);
    pointer-events: none;
    transition: background .18s ease;
}

.home .vcb-primary-nav {
    align-self: stretch;
    display: flex;
    align-items: center;
}

.home .vcb-menu-item.has-dropdown > a {
    position: relative;
}

.home .vcb-menu-item.has-dropdown > a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 24px;
    width: 0;
    height: 1px;
    background: var(--vcb-gold-dark);
    transform: translateX(-50%);
    transition: width .22s ease;
}

.home .vcb-menu-item.has-dropdown:hover > a::before,
.home .vcb-menu-item.has-dropdown:focus-within > a::before {
    width: calc(100% - 8px);
}

.home .vcb-submenu {
    padding: 18px 0;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 28px 55px rgba(15, 13, 11, .16);
    transform: translate(-50%, 16px) scale(.98);
    transform-origin: top center;
    transition: opacity .24s ease, transform .24s ease, visibility .24s ease;
}

.home .vcb-menu-item:hover > .vcb-submenu,
.home .vcb-menu-item:focus-within > .vcb-submenu {
    transform: translate(-50%, 0) scale(1);
}

.home .vcb-submenu a {
    padding: 0 24px;
    transition: padding .2s ease, color .2s ease, background .2s ease;
}

.home .vcb-submenu a:hover {
    padding-left: 30px;
}

.vcb-menu-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.vcb-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.vcb-menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.vcb-menu-toggle span:not(.screen-reader-text) {
    transition: transform .22s ease, opacity .22s ease;
}

.home .vcb-diamond-card,
.home .vcb-product-card,
.home .vcb-news-card {
    transition:
        opacity .82s cubic-bezier(.2, .78, .2, 1),
        transform .82s cubic-bezier(.2, .78, .2, 1),
        box-shadow .28s ease,
        border-color .28s ease;
}

.home .vcb-diamond-card:hover,
.home .vcb-product-card:hover,
.home .vcb-news-card:hover {
    border-color: rgba(185, 144, 72, .44);
    box-shadow: 0 26px 60px rgba(19, 14, 10, .12);
    transform: translateY(-7px);
}

.home .vcb-jewelry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, .2) 48%, transparent 58% 100%);
    transform: translateX(-120%);
    transition: transform .7s ease;
    pointer-events: none;
}

.home .vcb-jewelry-card:hover::before {
    transform: translateX(120%);
}

.home .vcb-floating-inquiry {
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.home .vcb-floating-inquiry:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 18px 50px rgba(22, 100, 184, .3);
}

.home .vcb-inquiry-form {
    transition: transform .24s ease, box-shadow .24s ease;
}

.home .vcb-inquiry-form:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .24);
}

@media (max-width: 820px) {
    .home .vcb-primary-nav {
        display: none;
        align-items: stretch;
    }

    .home .vcb-primary-nav.is-open {
        display: block;
        animation: vcbMobileMenuIn .24s ease both;
    }

    .home .vcb-menu-item.has-dropdown > a::before {
        display: none;
    }

    .home .vcb-submenu {
        display: none;
        padding: 0 0 12px 18px;
        box-shadow: none;
        transform: none;
        opacity: 1;
        visibility: visible;
    }

    .home .vcb-menu-item.is-submenu-open > .vcb-submenu {
        display: grid;
        animation: vcbSubmenuDrop .2s ease both;
    }

    .home .vcb-submenu a {
        min-height: auto;
        padding: 8px 6px;
        font-size: 14px;
    }

    .home .vcb-menu-item.is-submenu-open .vcb-menu-arrow {
        transform: rotate(225deg) translate(-2px, -2px);
    }
}

@keyframes vcbMobileMenuIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vcbSubmenuDrop {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Simplified image motion and refined language selector */
.home .vcb-home-hero-shine,
.home .vcb-home-hero::before,
.home .vcb-jewelry-card::before {
    display: none;
}

.home .vcb-home-hero {
    transition: opacity .35s ease;
}

.home .vcb-home-hero::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .24));
}

.home .vcb-home-split-media img,
.home .vcb-diamond-card img,
.home .vcb-jewelry-card img,
.home .vcb-product-image img,
.home .vcb-category-card img {
    animation: none;
    transform: none;
    transition: opacity .28s ease, filter .28s ease;
}

.home .vcb-diamond-card:hover img,
.home .vcb-jewelry-card:hover img,
.home .vcb-product-card:hover img,
.home .vcb-category-card:hover img {
    transform: none;
    filter: brightness(1.03);
}

.vcb-header-actions .vcb-language-control,
.vcb-mobile-nav-tools .vcb-language-control {
    position: relative;
    min-width: 148px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(32, 34, 38, .14);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(32, 34, 38, .07);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.vcb-header-actions .vcb-language-control:hover,
.vcb-mobile-nav-tools .vcb-language-control:hover,
.vcb-header-actions .vcb-language-control:focus-within,
.vcb-mobile-nav-tools .vcb-language-control:focus-within {
    transform: translateY(-1px);
    border-color: rgba(185, 151, 91, .7);
    background: #fff;
    box-shadow: 0 14px 30px rgba(32, 34, 38, .11);
}

.vcb-language-control .gtranslate_wrapper,
.vcb-language-control .gt_switcher {
    width: 100%;
    height: 38px;
}

.vcb-language-control .gt_switcher {
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
    overflow: visible;
}

.vcb-language-control .gt_switcher .gt_selected {
    width: 100%;
    height: 38px;
    background: transparent;
    border: 0;
}

.vcb-language-control .gt_switcher .gt_selected a {
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 32px 0 12px;
    border: 0;
    background: transparent;
    color: #202226;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
}

.vcb-language-control .gt_switcher .gt_selected a::after {
    right: 12px;
    top: 15px;
    border-color: #202226 transparent transparent;
}

.vcb-language-control .gt_switcher img {
    width: 18px;
    height: 12px;
    object-fit: cover;
    margin: 0;
}

.vcb-language-control .gt_switcher .gt_option {
    width: 100%;
    top: 42px;
    border: 1px solid rgba(32, 34, 38, .12);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(15, 13, 11, .14);
    overflow: hidden;
}

.vcb-language-control .gt_switcher .gt_option a {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 10px;
    color: #161616;
    font-size: 13px;
}

.vcb-header-actions .vcb-language-control select,
.vcb-header-actions .vcb-language-control .gt_selector,
.vcb-mobile-nav-tools .vcb-language-control select,
.vcb-mobile-nav-tools .vcb-language-control .gt_selector,
.home .vcb-language-control select,
.home .vcb-language-control .gt_selector {
    width: 100%;
    min-width: 0;
    height: 38px;
    padding: 0 34px 0 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #202226;
    font-size: 13px;
    font-weight: 700;
    outline: none;
}

.vcb-header-actions .vcb-language-control::after,
.vcb-mobile-nav-tools .vcb-language-control::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 1px solid #202226;
    border-bottom: 1px solid #202226;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

@media (max-width: 820px) {
    .vcb-mobile-nav-tools .vcb-language-control {
        width: 100%;
        min-width: 0;
    }
}

.vcb-language-native {
    position: relative;
}

.vcb-language-native .vcb-language-current {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 34px 0 12px;
    color: #202226;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    pointer-events: none;
}

.vcb-language-native .vcb-language-icon {
    position: relative;
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    border: 1.5px solid var(--vcb-gold);
    border-radius: 50%;
}

.vcb-language-native .vcb-language-icon::before,
.vcb-language-native .vcb-language-icon::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.vcb-language-native .vcb-language-icon::before {
    top: -1.5px;
    bottom: -1.5px;
    left: 50%;
    width: 7px;
    border-left: 1px solid var(--vcb-gold);
    border-right: 1px solid var(--vcb-gold);
    border-radius: 50%;
    transform: translateX(-50%);
}

.vcb-language-native .vcb-language-icon::after {
    left: 2px;
    right: 2px;
    top: 50%;
    border-top: 1px solid var(--vcb-gold);
    transform: translateY(-50%);
}

.vcb-language-native .vcb-language-label {
    max-width: 88px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vcb-language-native select {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
    cursor: pointer;
}

/* Compact the homepage custom service split section */
.home .vcb-home-split {
    min-height: 0;
    align-items: stretch;
}

.home .vcb-home-split-media {
    height: clamp(420px, 42vw, 520px);
    min-height: 0;
}

.home .vcb-home-split-media img {
    height: 100%;
    object-position: center;
}

.home .vcb-home-split-copy {
    width: min(100% - 76px, 540px);
    padding: 36px 0;
}

.home .vcb-home-split-copy .vcb-eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
}

.home .vcb-home-split-copy h2 {
    max-width: 500px;
    margin-bottom: 14px;
    font-size: clamp(31px, 2.25vw, 40px);
    line-height: 1.16;
}

.home .vcb-home-split-copy > p {
    margin-bottom: 14px;
    font-size: 15px;
    line-height: 1.65;
}

.home .vcb-process-row {
    gap: 9px;
    margin: 18px 0 16px;
}

.home .vcb-process-row article {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 3px 14px;
    padding-bottom: 10px;
}

.home .vcb-process-row span {
    font-size: 24px;
}

.home .vcb-process-row h3 {
    font-size: 18px;
}

.home .vcb-process-row p {
    font-size: 13px;
    line-height: 1.46;
}

@media (max-width: 820px) {
    .home .vcb-home-split-media {
        height: 300px;
    }

    .home .vcb-home-split-copy {
        width: min(100% - 32px, 560px);
        padding: 38px 0 44px;
    }

    .home .vcb-home-split-copy h2 {
        font-size: 30px;
    }
}

/* Homepage layout polish pass */
html,
body.vellith-clean-b2b {
    overflow-x: clip;
}

@supports not (overflow-x: clip) {
    body.vellith-clean-b2b {
        overflow-x: hidden;
    }
}

.home .vcb-header-top-inner {
    min-height: 38px;
}

.home .vcb-header-top p {
    font-size: 14px;
}

.home .vcb-top-icons {
    gap: 10px;
}

.home .vcb-top-icon,
.home .vcb-top-icons a {
    width: 28px;
    height: 28px;
}

.home .vcb-top-icon svg {
    width: 16px;
    height: 16px;
}

.home .vcb-top-icon-linkedin svg,
.home .vcb-top-icon-instagram svg {
    width: 15px;
    height: 15px;
    stroke-width: 2;
}

.home .vcb-header-inner {
    min-height: 88px;
}

.home .vcb-logo-mark,
.home .vcb-logo-mark img {
    width: 38px;
    height: 38px;
}

.home .vcb-brand {
    min-width: 210px;
}

.home .vcb-brand-text strong {
    font-size: 21px;
}

.home .vcb-brand-text small {
    font-size: 10px;
    line-height: 1.18;
}

.home .vcb-menu a {
    min-height: 88px;
    font-size: 13px;
}

.home .vcb-home-hero {
    min-height: 0;
    height: clamp(500px, 40vw, 580px);
    max-height: none;
    align-items: center;
    background-position: center 58%;
}

.home .vcb-home-hero::after {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, .22) 46%, rgba(255, 255, 255, .12) 100%),
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, .34), rgba(255, 255, 255, 0) 38%);
}

.home .vcb-home-hero-inner {
    width: min(100% - 48px, 1120px);
    padding: 34px 0 70px;
}

.home .vcb-hero-kicker {
    margin-bottom: 14px;
    font-size: 14px;
}

.home .vcb-home-hero h1 {
    max-width: none;
    margin-bottom: 16px;
    font-size: clamp(42px, 3.4vw, 56px);
    line-height: 1.08;
    white-space: nowrap;
}

.home .vcb-home-hero-subtitle {
    margin-bottom: 18px;
    font-size: clamp(23px, 1.75vw, 28px);
    line-height: 1.28;
}

.home .vcb-home-hero-note {
    max-width: 820px;
    font-size: 16px;
    line-height: 1.65;
}

.home .vcb-advantage-section {
    padding: 58px 0 70px;
}

.home .vcb-centered-head {
    width: min(100%, 900px);
    margin-bottom: 46px;
}

.home .vcb-centered-head h2 {
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 1.16;
}

.home .vcb-centered-head p {
    max-width: 850px;
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
    line-height: 1.75;
}

.home .vcb-advantage-grid {
    gap: 42px;
}

.home .vcb-advantage-item {
    padding: 8px 14px 10px;
}

.home .vcb-advantage-item:hover {
    background: transparent;
    box-shadow: none;
    transform: translateY(-3px);
}

.home .vcb-advantage-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    fill: none;
    stroke: #202226;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home .vcb-advantage-item h3 {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.28;
}

.home .vcb-advantage-item p {
    font-size: 15px;
    line-height: 1.68;
}

@media (max-width: 1360px) {
    .home .vcb-header-inner {
        gap: 14px;
    }

    .home .vcb-brand {
        min-width: 190px;
    }

    .home .vcb-menu {
        gap: 13px;
    }

    .home .vcb-menu a {
        font-size: 12px;
    }
}

@media (max-width: 820px) {
    .home .vcb-header-top p {
        max-width: calc(100vw - 34px);
        font-size: 12px;
    }

    .home .vcb-header-inner {
        min-height: 70px;
    }

    .home .vcb-brand {
        max-width: calc(100vw - 88px);
        min-width: 0;
    }

    .home .vcb-logo-mark,
    .home .vcb-logo-mark img {
        width: 34px;
        height: 34px;
    }

    .home .vcb-brand-text strong {
        font-size: 21px;
    }

    .home .vcb-home-hero {
        height: 440px;
        min-height: 0;
        background-position: center bottom;
    }

    .home .vcb-home-hero-inner {
        width: min(100% - 32px, 320px);
        padding: 38px 0 34px;
    }

    .home .vcb-hero-kicker,
    .home .vcb-home-hero-note {
        max-width: 310px;
        margin-right: auto;
        margin-left: auto;
    }

    .home .vcb-hero-kicker {
        font-size: 12px;
        line-height: 1.36;
    }

    .home .vcb-home-hero h1 {
        max-width: 310px;
        font-size: clamp(27px, 7.1vw, 30px);
        line-height: 1.14;
        white-space: normal;
    }

    .home .vcb-home-hero-subtitle {
        max-width: 310px;
        margin-right: auto;
        margin-left: auto;
        font-size: clamp(18px, 5vw, 20px);
        line-height: 1.28;
    }

    .home .vcb-home-hero-note {
        font-size: 13px;
        line-height: 1.56;
    }

    .home .vcb-advantage-section {
        padding: 48px 0 54px;
    }

    .home .vcb-centered-head {
        width: min(100%, 350px);
        margin-bottom: 34px;
    }

    .home .vcb-centered-head h2 {
        margin-bottom: 18px;
        font-size: 34px;
    }

    .home .vcb-centered-head p {
        font-size: 15px;
        line-height: 1.72;
    }

    .home .vcb-advantage-grid {
        gap: 30px;
    }

    .home .vcb-advantage-item {
        padding: 0 4px;
    }

    .home .vcb-advantage-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 14px;
        stroke-width: 1.65;
    }

    .home .vcb-advantage-item h3 {
        margin-bottom: 8px;
        font-size: 19px;
    }

    .home .vcb-advantage-item p {
        max-width: 330px;
        margin-right: auto;
        margin-left: auto;
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (max-width: 420px) {
    .home .vcb-home-hero-inner {
        width: min(100% - 28px, 344px);
    }

    .home .vcb-home-hero h1,
    .home .vcb-home-hero-subtitle,
    .home .vcb-home-hero-note,
    .home .vcb-hero-kicker {
        max-width: 100%;
    }
}

/* Benchmark-style ready stock product carousel */
.home .vcb-home-jewelry {
    padding: 96px 0 104px;
    background: #ad9e9d;
}

.home .vcb-ready-carousel-layout {
    width: min(100% - 96px, 1560px);
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    align-items: center;
    gap: 64px;
}

.home .vcb-ready-copy {
    color: #fff;
}

.home .vcb-ready-copy h2 {
    margin: 0 0 24px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 3vw, 54px);
    font-weight: 400;
    line-height: 1.15;
}

.home .vcb-ready-copy p {
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.75;
}

.home .vcb-ready-button {
    min-width: 136px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border-radius: 5px;
    background: #fff;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .02em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.home .vcb-ready-button:hover {
    transform: translateY(-2px);
    background: #111827;
    color: #fff;
}

.home .vcb-ready-carousel {
    min-width: 0;
}

.home .vcb-ready-viewport {
    overflow: hidden;
}

.home .vcb-ready-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transition: transform .52s cubic-bezier(.22, .72, .22, 1);
}

.home .vcb-ready-card {
    flex: 0 0 calc((100% - 72px) / 4);
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    color: #111;
    text-align: center;
    text-decoration: none;
}

.home .vcb-ready-card img {
    width: 100%;
    aspect-ratio: 1 / 1.02;
    display: block;
    background: #f8f8f8;
    object-fit: cover;
}

.home .vcb-ready-card span {
    min-height: 92px;
    display: -webkit-box;
    padding: 22px 28px 24px;
    overflow: hidden;
    color: #050505;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.home .vcb-ready-card:hover img {
    filter: brightness(1.03);
}

.home .vcb-ready-card:hover span {
    color: #1f64aa;
}

.home .vcb-ready-dots {
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.home .vcb-ready-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    cursor: pointer;
    transition: width .22s ease, background .22s ease, transform .22s ease;
}

.home .vcb-ready-dot.is-active {
    width: 10px;
    background: #1f64aa;
    transform: scale(1.08);
}

.home .vcb-ready-dot[hidden] {
    display: none;
}

@media (max-width: 1180px) {
    .home .vcb-ready-carousel-layout {
        width: min(100% - 56px, 1040px);
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 36px;
    }

    .home .vcb-ready-card {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 820px) {
    .home .vcb-home-jewelry {
        padding: 56px 0 66px;
    }

    .home .vcb-ready-carousel-layout {
        width: min(100% - 32px, 100%);
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home .vcb-ready-copy {
        text-align: center;
    }

    .home .vcb-ready-copy h2 {
        margin-bottom: 16px;
        font-size: 34px;
    }

    .home .vcb-ready-copy p {
        max-width: 340px;
        margin: 0 auto 22px;
        font-size: 14px;
        line-height: 1.65;
    }

    .home .vcb-ready-card {
        flex-basis: 78%;
    }

.home .vcb-ready-card span {
        min-height: 72px;
        padding: 16px 18px 18px;
        font-size: 17px;
        line-height: 1.42;
    }
}

/* Customer service and brand intro */
.home .vcb-client-brand {
    background: #fff;
}

.home .vcb-client-service {
    min-height: 318px;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(420px, 1.55fr) minmax(220px, 1fr);
    align-items: center;
    gap: 48px;
    padding: 124px min(9vw, 172px) 60px;
    border-top: 1px solid rgba(173, 158, 157, .55);
    background: #fff;
}

.home .vcb-client-service-media {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .vcb-client-service-media img {
    width: min(100%, 330px);
    max-height: 210px;
    display: block;
    object-fit: contain;
}

.home .vcb-client-service-media-right img {
    width: min(100%, 360px);
}

.home .vcb-client-service-copy {
    text-align: center;
}

.home .vcb-client-service-copy h2,
.home .vcb-brand-about-copy h2 {
    margin: 0 0 22px;
    color: #111827;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(36px, 2.75vw, 48px);
    font-weight: 400;
    line-height: 1.18;
}

.home .vcb-client-service-copy p {
    max-width: 780px;
    margin: 0 auto 18px;
    color: #4f5660;
    font-size: 15px;
    line-height: 1.72;
}

.home .vcb-client-button {
    min-width: 112px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 5px;
    background: #2166ad;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.home .vcb-client-button:hover {
    transform: translateY(-2px);
    background: #184f89;
    box-shadow: 0 14px 30px rgba(33, 102, 173, .2);
}

.home .vcb-brand-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
}

.home .vcb-brand-about-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 76px min(9vw, 172px);
    background: #fbefef;
}

.home .vcb-brand-about-copy p {
    max-width: 760px;
    margin: 0 0 26px;
    color: #4d5259;
    font-size: 15px;
    line-height: 1.85;
}

.home .vcb-brand-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 38px;
    margin: 30px 0 38px;
}

.home .vcb-brand-metrics div {
    min-width: 0;
}

.home .vcb-brand-metrics strong {
    display: block;
    color: #24272c;
    font-size: clamp(38px, 3vw, 52px);
    font-weight: 400;
    line-height: 1.05;
}

.home .vcb-brand-metrics small {
    display: block;
    margin-top: 16px;
    color: #6a6866;
    font-size: 14px;
}

.home .vcb-client-button-dark {
    width: fit-content;
    background: #2166ad;
}

.home .vcb-brand-about-media {
    min-height: 620px;
    overflow: hidden;
    background: #eef1f3;
}

.home .vcb-brand-about-media img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    display: block;
    object-fit: cover;
}

@media (max-width: 1180px) {
    .home .vcb-client-service {
        grid-template-columns: 180px minmax(0, 1fr) 180px;
        gap: 28px;
        padding-right: 48px;
        padding-left: 48px;
    }

    .home .vcb-brand-about-copy {
        padding-right: 46px;
        padding-left: 46px;
    }

    .home .vcb-brand-metrics {
        gap: 22px;
    }
}

@media (max-width: 820px) {
    .home .vcb-client-service {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 104px 24px 50px;
    }

    .home .vcb-client-service-media {
        display: none;
    }

    .home .vcb-client-service-copy h2,
    .home .vcb-brand-about-copy h2 {
        font-size: 34px;
    }

    .home .vcb-client-service-copy p {
        font-size: 14px;
        line-height: 1.7;
    }

    .home .vcb-brand-about {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .home .vcb-brand-about-copy {
        padding: 52px 24px;
    }

    .home .vcb-brand-about-copy p {
        font-size: 14px;
        line-height: 1.75;
    }

    .home .vcb-brand-metrics {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 26px 0 30px;
    }

    .home .vcb-brand-metrics strong {
        font-size: 42px;
    }

    .home .vcb-brand-metrics small {
        margin-top: 6px;
    }

    .home .vcb-brand-about-media,
    .home .vcb-brand-about-media img {
        min-height: 320px;
    }
}

/* Homepage premium refinement */
.home {
    --vcb-home-blue: #2166ad;
    --vcb-home-navy: #101827;
    --vcb-home-text: #1c2028;
    --vcb-home-muted: #626976;
    --vcb-home-pink: #fbefef;
    --vcb-home-mauve: #aa9a9a;
}

.home .vcb-container {
    width: min(100% - 64px, 1340px);
}

.home .vcb-site-header {
    box-shadow: 0 10px 35px rgba(17, 24, 39, .035);
}

.home .vcb-header-top-inner,
.home .vcb-header-inner {
    width: min(100% - 64px, 1280px);
}

.home .vcb-home-hero {
    height: clamp(560px, 44vw, 660px);
    background-position: center 54%;
}

.home .vcb-home-hero-inner {
    padding: 44px 0 84px;
}

.home .vcb-home-hero h1,
.home .vcb-centered-head h2,
.home .vcb-home-title h2,
.home .vcb-home-split-copy h2,
.home .vcb-ready-copy h2,
.home .vcb-client-service-copy h2,
.home .vcb-brand-about-copy h2,
.home .vcb-home-proof-copy h2,
.home .vcb-home-inquiry-copy h2 {
    color: #111723;
    text-wrap: balance;
}

.home .vcb-home-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(46px, 3.7vw, 62px);
}

.home .vcb-home-hero-subtitle {
    margin-bottom: 16px;
}

.home .vcb-home-hero-note {
    max-width: 760px;
    color: #4c4f57;
}

.home .vcb-home-hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.home .vcb-hero-button,
.home .vcb-client-button,
.home .vcb-ready-button {
    border-radius: 4px;
}

.home .vcb-hero-button {
    min-width: 150px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home .vcb-hero-button:hover {
    transform: translateY(-2px);
}

.home .vcb-hero-button-primary {
    background: var(--vcb-home-blue);
    color: #fff;
    box-shadow: 0 16px 34px rgba(33, 102, 173, .18);
}

.home .vcb-hero-button-primary:hover {
    background: #174f8a;
}

.home .vcb-hero-button-ghost {
    border-color: rgba(17, 24, 39, .18);
    background: rgba(255, 255, 255, .68);
    color: #141a24;
    backdrop-filter: blur(8px);
}

.home .vcb-hero-button-ghost:hover {
    border-color: rgba(33, 102, 173, .38);
    background: #fff;
    color: var(--vcb-home-blue);
}

.home .vcb-hero-specs {
    width: min(100%, 900px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 24px auto 0;
}

.home .vcb-hero-specs span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, .68);
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    color: #353944;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(81, 50, 60, .055);
    backdrop-filter: blur(8px);
}

.home .vcb-advantage-section {
    padding: 72px 0 84px;
}

.home .vcb-centered-head {
    margin-bottom: 44px;
}

.home .vcb-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home .vcb-advantage-item {
    min-height: 250px;
    padding: 28px 24px 26px;
    border: 1px solid rgba(220, 214, 207, .82);
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 24, 39, .045);
    transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.home .vcb-advantage-item:hover {
    border-color: rgba(33, 102, 173, .22);
    box-shadow: 0 24px 58px rgba(17, 24, 39, .075);
    transform: translateY(-5px);
}

.home .vcb-advantage-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    stroke: #161a22;
}

.home .vcb-advantage-item p {
    color: #68707b;
}

.home .vcb-home-split {
    min-height: 560px;
    border-top: 1px solid rgba(226, 218, 211, .9);
    border-bottom: 1px solid rgba(226, 218, 211, .9);
}

.home .vcb-home-split-media {
    min-height: 560px;
}

.home .vcb-home-split-copy {
    width: min(100% - 96px, 650px);
}

.home .vcb-process-row article {
    grid-template-columns: 64px minmax(0, 1fr);
    padding: 18px 0;
}

.home .vcb-process-row span {
    color: #a0752e;
    font-size: 28px;
}

.home .vcb-process-row h3 {
    color: #151922;
    font-weight: 700;
}

.home .vcb-home-diamonds {
    padding: 92px 0 86px;
}

.home .vcb-home-diamonds .vcb-home-title {
    margin-bottom: 38px;
}

.home .vcb-diamond-tabs {
    border: 1px solid #dddfe5;
    background: #fff;
}

.home .vcb-diamond-tab {
    min-height: 82px;
    border: 0;
    border-right: 1px solid #dddfe5;
    color: #161b25;
    font-size: 18px;
    font-weight: 800;
}

.home .vcb-diamond-tab:last-child {
    border-right: 0;
}

.home .vcb-diamond-tab.is-active {
    background: var(--vcb-home-blue);
    color: #fff;
    box-shadow: inset 0 -3px 0 rgba(255, 255, 255, .26);
}

.home .vcb-diamond-product-grid {
    gap: 28px;
    padding-top: 28px;
}

.home .vcb-diamond-product {
    border-radius: 8px;
}

.home .vcb-diamond-product img {
    border-radius: 8px;
    background: #f8f4f4;
    box-shadow: 0 14px 28px rgba(17, 24, 39, .045);
}

.home .vcb-diamond-product span {
    color: #171b22;
    font-size: 18px;
    line-height: 1.42;
}

.home .vcb-home-jewelry {
    padding: 104px 0 106px;
    background: linear-gradient(180deg, #aa9c9c 0%, #a99999 100%);
}

.home .vcb-ready-copy h2,
.home .vcb-ready-copy p {
    text-shadow: 0 1px 1px rgba(0, 0, 0, .04);
}

.home .vcb-ready-card {
    border: 1px solid rgba(255, 255, 255, .65);
    box-shadow: 0 18px 42px rgba(44, 36, 36, .12);
}

.home .vcb-ready-card img {
    aspect-ratio: 1 / 1;
}

.home .vcb-ready-card span {
    min-height: 86px;
    padding: 20px 22px 22px;
    font-size: 18px;
}

.home .vcb-client-service {
    min-height: 300px;
    padding-top: 88px;
}

.home .vcb-client-service-copy h2 {
    font-size: clamp(38px, 2.9vw, 50px);
}

.home .vcb-brand-about {
    min-height: 600px;
}

.home .vcb-brand-about-copy {
    padding-top: 82px;
    padding-bottom: 82px;
}

.home .vcb-brand-metrics {
    gap: 32px;
}

.home .vcb-brand-metrics strong {
    color: #20242b;
    font-size: clamp(42px, 3.2vw, 56px);
}

.home .vcb-home-proof {
    padding: 98px 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .94) 0 42%, rgba(255, 247, 249, .8) 42% 100%),
        url("../images/hero-pink-lab-diamond.jpg") center / cover;
}

.home .vcb-home-proof-list article {
    min-height: 190px;
    border-radius: 6px;
    box-shadow: 0 18px 45px rgba(17, 24, 39, .06);
}

.home .vcb-home-news {
    padding-top: 88px;
    padding-bottom: 88px;
    background: #fbfaf8;
}

.home .vcb-news-card {
    border-radius: 6px;
    background: #fff;
}

.home .vcb-home-inquiry {
    padding: 92px 0 92px;
    background:
        radial-gradient(circle at 16% 20%, rgba(232, 207, 148, .16), rgba(232, 207, 148, 0) 28%),
        linear-gradient(120deg, #14342c 0%, #1d4036 54%, #0c1714 100%);
}

.home .vcb-home-inquiry-copy h2 {
    max-width: 640px;
    color: #fff;
}

.home .vcb-home-inquiry-copy p,
.home .vcb-home-inquiry-points li {
    color: rgba(255, 255, 255, .82);
}

.home .vcb-home-inquiry-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.home .vcb-home-inquiry-proof span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 13px;
    border: 1px solid rgba(232, 207, 148, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .82);
    font-size: 12px;
    font-weight: 700;
}

.home .vcb-home-inquiry-panel {
    position: relative;
}

.home .vcb-home-inquiry-panel::before {
    content: "B2B QUOTE";
    position: absolute;
    right: 24px;
    top: -14px;
    z-index: 1;
    padding: 5px 12px;
    border-radius: 999px;
    background: #e8cf94;
    color: #18372f;
    font-size: 11px;
    font-weight: 900;
}

@media (max-width: 1120px) {
    .home .vcb-advantage-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home .vcb-diamond-tab {
        min-height: 74px;
        font-size: 16px;
    }
}

@media (max-width: 820px) {
    .home .vcb-container,
    .home .vcb-header-top-inner,
    .home .vcb-header-inner {
        width: min(100% - 32px, 100%);
    }

    .home .vcb-home-hero {
        height: auto;
        min-height: 560px;
    }

    .home .vcb-home-hero-inner {
        width: min(100% - 32px, 350px);
        padding: 48px 0 36px;
    }

    .home .vcb-home-hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        margin-top: 18px;
    }

    .home .vcb-hero-button {
        width: min(100%, 236px);
        min-height: 44px;
    }

    .home .vcb-hero-specs {
        gap: 8px;
        margin-top: 18px;
    }

    .home .vcb-hero-specs span {
        min-height: 30px;
        padding: 0 11px;
        font-size: 11px;
    }

    .home .vcb-advantage-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home .vcb-advantage-item {
        min-height: 0;
        padding: 26px 22px;
    }

    .home .vcb-home-split {
        min-height: 0;
    }

    .home .vcb-home-split-media {
        min-height: 320px;
    }

    .home .vcb-home-split-copy {
        width: min(100% - 40px, 610px);
        padding: 54px 0;
    }

    .home .vcb-process-row article {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .home .vcb-diamond-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
        border-right: 0;
    }

    .home .vcb-diamond-tab {
        min-width: 0;
        width: auto;
        flex: none;
        min-height: 62px;
        padding: 0 12px;
        border-right: 1px solid #dddfe5;
        border-bottom: 1px solid #dddfe5;
        font-size: 15px;
        line-height: 1.25;
        white-space: normal;
    }

    .home .vcb-diamond-tab:nth-child(2n) {
        border-right: 0;
    }

    .home .vcb-diamond-tab:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .home .vcb-diamond-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 16px;
        padding-top: 22px;
    }

    .home .vcb-diamond-product img {
        border-radius: 7px;
    }

    .home .vcb-diamond-product span {
        font-size: 14px;
        line-height: 1.35;
    }

    .home .vcb-home-jewelry {
        padding: 64px 0 72px;
    }

    .home .vcb-ready-card {
        flex-basis: 82%;
    }

    .home .vcb-client-service {
        padding: 72px 24px 46px;
    }

    .home .vcb-client-service-copy h2 {
        font-size: 32px;
    }

    .home .vcb-brand-about-copy {
        padding: 50px 24px;
    }

    .home .vcb-brand-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .home .vcb-brand-metrics strong {
        font-size: 31px;
    }

    .home .vcb-brand-metrics small {
        font-size: 12px;
        line-height: 1.35;
    }

    .home .vcb-home-proof {
        padding: 64px 0;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 248, 250, .9)),
            url("../images/hero-pink-lab-diamond.jpg") center / cover;
    }

    .home .vcb-home-news {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .home .vcb-home-inquiry {
        padding: 68px 0;
    }

    .home .vcb-home-inquiry-proof {
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .home .vcb-home-hero h1 {
        font-size: 29px;
    }

    .home .vcb-home-hero-subtitle {
        font-size: 19px;
    }

    .home .vcb-hero-specs span {
        max-width: 100%;
    }

    .home .vcb-brand-metrics {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .home .vcb-brand-metrics strong {
        font-size: 40px;
    }
}

@media (max-width: 980px) {
    .home .vcb-primary-nav .vcb-menu-item.has-dropdown > .vcb-submenu,
    .home .vcb-primary-nav .vcb-menu-item.has-dropdown:hover > .vcb-submenu,
    .home .vcb-primary-nav .vcb-menu-item.has-dropdown:focus-within > .vcb-submenu {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .home .vcb-primary-nav .vcb-menu-item.has-dropdown.is-submenu-open > .vcb-submenu {
        display: grid;
    }

    .home .vcb-mobile-nav-tools {
        display: flex !important;
        flex-direction: column;
        gap: 10px;
    }

    .home .vcb-mobile-nav-tools .vcb-top-icons {
        position: static !important;
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
        gap: 8px;
        order: 1;
    }

    .home .vcb-mobile-nav-tools .vcb-top-icon,
    .home .vcb-mobile-nav-tools .vcb-top-icons a {
        position: relative;
        width: 100% !important;
        min-width: 0;
        height: 42px;
        border: 1px solid #e5ded7;
        border-radius: 6px;
        background: #f8f6f3;
        color: #111723;
    }

    .home .vcb-mobile-nav-tools .vcb-top-icon-linkedin {
        border-color: #2c789c;
        background: #2c789c;
        color: #fff;
    }

    .home .vcb-mobile-nav-tools .vcb-top-icon-instagram {
        border-color: #c63a8b;
        background: #c63a8b;
        color: #fff;
    }

    .home .vcb-mobile-nav-tools .vcb-button {
        order: 2;
        width: 100%;
        min-height: 44px;
        border-radius: 6px;
    }
}
