/**
 * VeyraStone reference-aligned B2B trade-site skin.
 *
 * Keeps VeyraStone content and evidence rules while standardizing the global
 * shell, catalogue, editorial cards, and responsive behavior.
 */

:root {
    --vts-height: 64px;
    --vts-row: 58px;
    /* Alpine Sage Crisp palette selected for the 2026 brand refresh. */
    --vts-bg: #fafdfc;
    --vts-primary-soft: #a9d7bf;
    --vts-primary: #2f8060;
    --vts-navy: #173f33;
    --vts-brass: #d3a54c;
    --vts-brass-ink: #6b4d16;
    --vts-brass-soft: #f1d797;
    --vts-primary-contrast: #d8efe3;

    /* Legacy aliases retained so every existing template inherits one system. */
    --vts-green: var(--vts-primary);
    --vts-green-hover: #246a4e;
    --vts-green-deep: var(--vts-navy);
    --vts-dark: var(--vts-navy);
    --vts-text: #1f2d28;
    --vts-muted: #66766f;
    --vts-border: #d8e7df;
    --vts-soft: #f3f8f5;
    --vts-pale: #e8f5ee;
    --vts-shadow: 0 2px 12px rgba(23, 63, 51, 0.1);

    /* Re-map the existing semantic architecture to the selected palette. */
    --vsa-ink: var(--vts-navy);
    --vsa-paper: var(--vts-bg);
    --vsa-white: #ffffff;
    --vsa-gold: var(--vts-primary);
    --vsa-gold-dark: var(--vts-navy);
    --vsa-muted: var(--vts-muted);
    --vsa-line: var(--vts-border);
    --vsa-line-dark: rgba(255, 255, 255, 0.18);
    --vsa-success: var(--vts-primary);
    --vsa-display: "Inter", Arial, Helvetica, sans-serif;
    --vsa-body: "Inter", Arial, Helvetica, sans-serif;

    --color-black: var(--vts-navy);
    --color-gold: var(--vts-primary);
    --color-gold-dark: var(--vts-navy);
    --color-offwhite: var(--vts-bg);
    --veyra-header-height: var(--vts-height);
    --vts-shell-gutter: 20px;
}

/* --------------------------------------------------------------------------
   Viewport edge contract

   GeneratePress gives #page the reusable .grid-container class, while the
   legacy skin also used 100vw/negative-margin breakouts. On very narrow or
   translated pages those two systems can feed each other's intrinsic width
   and shift an entire section away from the viewport. The page shell is now
   always viewport-wide; only each section's inner content receives a safe
   gutter.
   -------------------------------------------------------------------------- */

html {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-x: clip;
    scroll-padding-top: calc(var(--vts-height) + 18px);
}

body {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    overflow-x: hidden;
    overflow-x: clip;
    padding-top: 0 !important;
    background: var(--vts-bg);
    color: var(--vts-text);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

#page.site,
#page.site.grid-container,
#content.site-content,
#primary,
.content-area,
.site-main {
    box-sizing: border-box;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

body .grid-container {
    box-sizing: border-box;
    width: 100% !important;
    max-width: 1250px;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-right: var(--vts-shell-gutter);
    padding-left: var(--vts-shell-gutter);
}

/* #page is a shell, not an inner content container. */
body #page.site.grid-container {
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.site-main > section,
.site-main > header,
.site-main > nav {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.site-content > *,
.site-main > *,
body .grid-container > *,
.vsa-path-grid > *,
.vsa-process__steps > *,
.vsa-proof-strip__grid > *,
.vsa-intent-nav__grid > * {
    min-width: 0;
}

.vsa-path-card,
.vsa-process__steps > li,
.vsa-proof-strip__grid > div,
.vsa-intent-nav__grid > a {
    max-width: 100%;
    overflow-wrap: anywhere;
}

/* The outer shell is already full width, so legacy viewport breakouts are no
   longer needed and must not participate in narrow-screen sizing. */
.veyra-hero {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.veyra-trust::before,
.veyra-section--dark::before,
.veyra-cta-strip::before,
.veyra-project-hero::before,
.veyra-footer-cols::before,
.veyra-trade::before {
    right: 0 !important;
    left: 0 !important;
    width: auto !important;
}

body,
button,
input,
select,
textarea {
    font-family: "Inter", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.vsa-section-head h2,
.vsa-product-summary h1,
.vsa-article-hero h1 {
    color: var(--vts-dark);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
}

a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

/* --------------------------------------------------------------------------
   Global header
   -------------------------------------------------------------------------- */

.site-header.vts-header,
.site-header.vts-header.is-scrolled {
    position: sticky !important;
    z-index: 9999;
    top: 0;
    width: 100%;
    height: var(--vts-height);
    padding: 0;
    border: 0;
    background: var(--vts-bg);
    box-shadow: var(--vts-shadow);
    color: var(--vts-dark);
    transform: none;
}

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

.vts-header,
.vts-header * {
    box-sizing: border-box;
}

.vts-header__inner {
    display: grid;
    width: 100%;
    max-width: 1250px;
    height: var(--vts-height);
    grid-template-columns: 82px minmax(0, 1fr) max-content;
    align-items: center;
    column-gap: 12px;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
}

.vts-logo {
    display: flex;
    width: 82px;
    height: var(--vts-height);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 0 !important;
    color: var(--vts-green-hover) !important;
    line-height: 0.82;
    text-decoration: none;
}

.vts-logo__top {
    display: block;
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.06em;
}

.vts-logo__bottom {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.vts-nav {
    display: flex;
    min-width: 0;
    width: 100%;
    height: var(--vts-height);
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.vts-menu,
.vts-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vts-menu {
    display: flex;
    width: auto;
    max-width: 100%;
    height: var(--vts-height);
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 34px;
    transform: translateX(-14px);
}

.vts-menu__item {
    position: relative;
    display: flex;
    height: var(--vts-height);
    flex: 0 0 auto;
    align-items: center;
    margin: 0;
    white-space: nowrap;
}

.vts-menu__item > a,
.vts-menu__parent {
    display: flex;
    height: var(--vts-height);
    align-items: center;
    padding: 0;
    border: 0 !important;
    color: var(--vts-dark) !important;
    font-size: 17px;
    font-weight: 700;
    line-height: var(--vts-height);
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
}

.vts-menu__item > a:hover,
.vts-menu__item.is-current > a,
.vts-menu__item:focus-within > a {
    color: var(--vts-green-hover) !important;
}

.vts-menu__caret {
    display: inline-block;
    margin-left: 10px;
    color: var(--vts-dark);
    font-size: 12px;
    line-height: 1;
    transform: translateY(-1px);
}

.vts-product-group__toggle,
.vts-mobile-toggle {
    display: none;
}

button.vts-menu__toggle {
    display: flex;
    width: 24px;
    min-width: 24px;
    height: var(--vts-height);
    align-items: center;
    justify-content: center;
    margin-left: -24px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--vts-dark) !important;
    line-height: 1;
    cursor: pointer;
}

button.vts-menu__toggle::after {
    content: "▼";
    font-size: 12px;
}

button.vts-menu__toggle > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.vts-menu__item--has-children > .vts-menu__parent {
    padding-right: 28px;
}

.vts-menu__item--has-children > .vts-menu__parent .vts-menu__caret {
    visibility: hidden;
}

.vts-submenu {
    position: absolute;
    z-index: 10000;
    top: var(--vts-height);
    left: 0;
    margin: 0;
    padding: 0;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
}

.vts-menu__item:hover > .vts-submenu,
.vts-menu__item:focus-within > .vts-submenu,
.vts-menu__item.is-open > .vts-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.vts-submenu--products {
    left: -12px;
    width: max-content;
    min-width: 356px;
    max-width: 520px;
}

.vts-product-group {
    position: relative;
    width: auto;
    min-width: 356px;
    max-width: 520px;
    min-height: var(--vts-row);
    margin: 0;
}

.vts-product-group__link {
    position: relative;
    display: flex;
    width: auto;
    min-width: 356px;
    max-width: 520px;
    min-height: var(--vts-row);
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 16px;
    border: 0 !important;
    background: #fff;
    color: var(--vts-text) !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
}

.vts-product-group__arrow {
    font-size: 27px;
    font-weight: 500;
    line-height: 1;
}

.vts-product-group.is-active > .vts-product-group__link,
.vts-product-group:hover > .vts-product-group__link,
.vts-product-group:focus-within > .vts-product-group__link {
    background: var(--vts-green);
    color: #fff !important;
}

.vts-submenu--profiles {
    display: none;
    top: 0;
    left: 100%;
    width: max-content;
    min-width: 310px;
    max-width: 560px;
    padding: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.vts-product-group.is-active > .vts-submenu--profiles,
.vts-product-group:hover > .vts-submenu--profiles,
.vts-product-group:focus-within > .vts-submenu--profiles {
    display: block;
}

.vts-submenu--profiles li,
.vts-submenu--solutions li {
    margin: 0;
}

.vts-submenu--profiles a,
.vts-submenu--solutions a {
    display: flex;
    width: auto;
    min-width: 310px;
    max-width: 560px;
    min-height: var(--vts-row);
    align-items: center;
    padding: 0 20px;
    border: 0 !important;
    background: #fff;
    color: var(--vts-text) !important;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
    white-space: nowrap;
}

.vts-submenu--profiles a:hover,
.vts-submenu--profiles a:focus,
.vts-submenu--solutions a:hover,
.vts-submenu--solutions a:focus {
    background: var(--vts-pale);
    color: var(--vts-green-hover) !important;
}

.vts-submenu--solutions {
    width: max-content;
    min-width: 430px;
    max-width: min(640px, calc(100vw - 80px));
}

.vts-submenu--solutions a {
    min-width: 430px;
    max-width: min(640px, calc(100vw - 80px));
}

.vts-header__right {
    display: flex;
    height: var(--vts-height);
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    white-space: nowrap;
}

.vts-language {
    position: relative;
    display: flex;
    height: var(--vts-height);
    align-items: center;
}

button.vts-language__current {
    display: flex;
    height: var(--vts-height);
    align-items: center;
    gap: 8px;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--vts-dark) !important;
    font-size: 16px;
    font-weight: 700;
    line-height: var(--vts-height);
    letter-spacing: 0 !important;
    text-transform: none !important;
    cursor: pointer;
}

button.vts-language__current:hover,
button.vts-language__current:focus-visible {
    background: transparent !important;
    color: var(--vts-green-hover) !important;
}

.vts-language__flag {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 14px;
    flex: 0 0 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: repeating-linear-gradient(to bottom, #b22234 0 1px, #fff 1px 2px);
}

.vts-language__flag::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 7px;
    background: #3c3b6e;
    content: "";
}

.vts-language__caret {
    margin-left: 2px;
    color: var(--vts-dark);
    font-size: 12px;
}

.vts-language__menu {
    position: absolute;
    z-index: 10000;
    top: var(--vts-height);
    right: 0;
    width: 152px;
    margin: 0;
    padding: 0;
    background: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
    list-style: none;
}

.vts-language__menu span[aria-current] {
    display: flex;
    min-height: 56px;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    color: var(--vts-text);
    font-size: 15px;
    font-weight: 700;
}

.vts-search {
    display: flex;
    width: 136px;
    height: 50px;
    align-items: center;
    border: 1px solid var(--vts-border);
    background: #fff;
}

.vts-search input[type="search"] {
    width: 96px;
    height: 48px;
    padding: 0 0 0 14px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--vts-text);
    font-size: 15px;
    font-weight: 400;
    line-height: 48px;
}

button.vts-search__submit {
    display: flex;
    width: 38px;
    height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: var(--vts-text) !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

button.vts-search__submit:hover,
button.vts-search__submit:focus-visible {
    background: var(--vts-pale) !important;
    color: var(--vts-green-hover) !important;
}

.vts-search svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vts-search:focus-within {
    border-color: var(--vts-green);
    box-shadow: 0 0 0 2px rgba(47, 128, 96, 0.22);
}

.vts-menu a:focus-visible,
.vts-logo:focus-visible,
.vts-language__current:focus-visible,
.vts-mobile-toggle:focus-visible {
    outline: 3px solid rgba(130, 198, 164, 0.72);
    outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Shared reference visual language
   -------------------------------------------------------------------------- */

.vsa-kicker,
.vsa-post-card__meta,
.vsa-stone-card__spec {
    color: var(--vts-green-hover);
}

.vsa-kicker--gold {
    color: var(--vts-brass-ink);
}

.vsa-section--ink .vsa-kicker--gold,
.vsa-footer .vsa-kicker--gold,
.vsa-project-archive__hero .vsa-kicker--gold,
.vsa-project-hero .vsa-kicker--gold,
.vsa-rfq-panel--dark .vsa-kicker--gold {
    color: var(--vts-brass-soft);
}

.vsa-button,
button.vsa-button,
input[type="submit"],
.search-submit {
    border-color: var(--vts-green) !important;
    border-radius: 0 !important;
    background: var(--vts-green) !important;
    color: #fff !important;
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.vsa-button:hover,
button.vsa-button:hover,
input[type="submit"]:hover,
.search-submit:hover {
    border-color: var(--vts-green-hover) !important;
    background: var(--vts-green-hover) !important;
}

.vsa-button--ghost {
    border-color: var(--vts-dark) !important;
    background: transparent !important;
    color: var(--vts-dark) !important;
}

.vsa-button--ghost:hover {
    background: var(--vts-dark) !important;
    color: #fff !important;
}

.vsa-text-link,
.vsa-text-link:visited,
.vsa-section-more a {
    color: var(--vts-green-hover);
    font-weight: 700;
}

.vsa-section--soft,
.vsa-page-hero,
.vsa-archive-hero,
.vsa-search-hero,
.vsa-journal-hero {
    background: var(--vts-soft);
}

.vsa-section--ink,
.vsa-footer,
.veyra-footer-cols,
.site-footer,
.vsa-project-archive__hero {
    background: var(--vts-dark);
}

.vsa-section--ink .vsa-section-head h2,
.vsa-section--ink h3,
.vsa-footer h2,
.vsa-footer h3,
.veyra-footer-cols h2,
.veyra-footer-cols h3,
.site-footer h2,
.site-footer h3,
.vsa-project-archive__hero h1,
.vsa-project-archive__hero h2 {
    color: #fff;
}

.vsa-section-head h2 {
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 1.08;
}

.vsa-breadcrumb,
.veyra-breadcrumb {
    border-bottom: 1px solid var(--vts-border);
    background: #fff;
}

.vsa-breadcrumb .grid-container,
.veyra-breadcrumb .grid-container,
.veyra-breadcrumb {
    max-width: 1250px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.vsa-breadcrumb a,
.veyra-breadcrumb a {
    color: var(--vts-primary);
}

/* Homepage hero: same open, image-led commercial rhythm without foreign art. */
.vsa-hero {
    background: linear-gradient(90deg, var(--vts-bg) 0%, var(--vts-pale) 52%, #fff 100%);
}

.vsa-hero::before {
    display: none;
}

.vsa-hero__grid {
    min-height: 650px;
    max-width: 1250px;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
    gap: clamp(34px, 6vw, 82px);
    padding-block: clamp(64px, 7vw, 96px);
}

.vsa-hero__copy h1 {
    max-width: 760px;
    color: var(--vts-dark);
    font-size: clamp(2.85rem, 5vw, 5.4rem);
    line-height: 1.02;
}

.vsa-hero__lede {
    color: var(--vts-muted);
}

.vsa-hero-slab {
    border: 10px solid #fff;
    border-radius: 0;
    box-shadow: 0 12px 36px rgba(23, 63, 51, 0.16);
}

.vsa-hero-slab__stamp,
.vsa-hero-card {
    border-radius: 0;
}

/* Homepage category navigator mirrors the reference two-level category block. */
.vsa-catalogue-browser {
    grid-template-columns: minmax(310px, 356px) minmax(0, 1fr);
    border: 0;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.vsa-catalogue-browser__rail {
    border-right: 1px solid var(--vts-border);
    background: #fff;
    color: var(--vts-text);
}

.vsa-catalogue-browser__rail button,
button[data-material-filter] {
    min-height: var(--vts-row);
    padding: 0 18px;
    border: 0;
    border-bottom: 1px solid var(--vts-border);
    background: #fff;
    color: var(--vts-text);
    font-size: 17px;
    font-weight: 700;
}

.vsa-catalogue-browser__rail button:hover,
.vsa-catalogue-browser__rail button.is-active,
button[data-material-filter]:hover,
button[data-material-filter].is-active {
    background: var(--vts-green);
    color: #fff;
}

.vsa-catalogue-browser__rail > a {
    margin-top: 0;
    padding: 19px 18px;
    background: var(--vts-pale);
    color: var(--vts-green-hover);
    font-size: 14px;
    font-weight: 700;
}

.vsa-catalogue-browser__content {
    background: #fff;
}

.vsa-stone-card,
.vsa-project-card,
.vsa-post-card,
.vsa-search-result {
    border: 1px solid var(--vts-border);
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.vsa-stone-card:hover,
.vsa-project-card:hover,
.vsa-post-card:hover,
.vsa-search-result:hover {
    border-color: var(--vts-primary-soft);
    box-shadow: 0 8px 24px rgba(23, 63, 51, 0.12);
    transform: translateY(-2px);
}

.vsa-stone-card__badge {
    border-radius: 0;
    background: var(--vts-green);
    color: #fff;
}

.vsa-stone-card__title,
.vsa-post-card h3,
.vsa-project-card h3 {
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.vsa-stone-card__link:hover .vsa-stone-card__title,
.vsa-post-card a:hover h3 {
    color: var(--vts-green-hover);
}

.vsa-filter-panel {
    border-color: var(--vts-border);
    background: #fff;
}

.vsa-filter-panel__head {
    background: var(--vts-green);
    color: #fff;
}

.vsa-filter-panel__head h2 {
    color: #fff;
}

.vsa-topic-nav {
    border-color: var(--vts-border);
    background: #fff;
}

.vsa-topic-nav a.is-active,
.vsa-topic-nav a:hover {
    border-color: var(--vts-green);
    background: var(--vts-green);
    color: #fff;
}

/* --------------------------------------------------------------------------
   Blog archive and editorial cards
   -------------------------------------------------------------------------- */

.vts-blog-hero {
    padding: 28px 0 22px;
    background: var(--vts-soft);
    text-align: center;
}

.vts-blog-hero__inner {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 28px;
}

.vts-blog-hero h1 {
    max-width: 1120px;
    margin: 0 auto;
    color: var(--vts-dark);
    font-size: clamp(2rem, 3.7vw, 3.5rem);
    line-height: 1.14;
}

.vts-blog-hero p {
    max-width: 820px;
    margin: 16px auto 0;
    color: var(--vts-muted);
    line-height: 1.7;
}

.vts-blog-index {
    padding: 34px 0 78px;
    background: var(--vts-soft);
}

.vts-blog-index .grid-container {
    max-width: 1250px;
}

.vsa-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px;
}

.vsa-post-card {
    height: 100%;
    overflow: hidden;
}

.vsa-post-card > a {
    display: flex;
    height: 100%;
    flex-direction: column;
    border: 0 !important;
    color: var(--vts-text);
    text-decoration: none;
}

.vsa-post-card__media {
    display: block;
    aspect-ratio: 6 / 5;
    overflow: hidden;
    background: #dcede4;
}

.vsa-post-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.vsa-post-card:hover .vsa-post-card__media img {
    transform: scale(1.025);
}

.vsa-post-card__body {
    display: flex;
    min-height: 260px;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 18px 24px;
}

.vsa-post-card h3 {
    margin: 0 0 10px;
    color: var(--vts-dark);
    font-size: 18px;
    line-height: 1.34;
}

.vsa-post-card__date {
    display: block;
    margin-bottom: 12px;
    color: var(--vts-muted);
    font-size: 14px;
}

.vsa-post-card__summary {
    display: block;
    margin-bottom: 18px;
    color: var(--vts-muted);
    font-size: 15px;
    line-height: 1.62;
}

.vsa-post-card .vsa-text-link {
    margin-top: auto;
    color: var(--vts-green-hover);
    font-size: 15px;
    text-decoration: underline;
}

.vsa-pagination .page-numbers.current,
.vsa-pagination a:hover {
    border-color: var(--vts-green);
    background: var(--vts-green);
    color: #fff;
}

/* Inner article/product pages use the same clean commercial hierarchy. */
.vsa-article-hero,
.vsa-product-hero,
.vsa-contact-hero {
    background: linear-gradient(110deg, var(--vts-bg), var(--vts-pale));
}

.vsa-contact-hero,
.vsa-contact-hero h1 {
    color: var(--vts-dark);
}

.vsa-contact-hero__grid > p {
    color: var(--vts-muted);
}

.vsa-contact-hero .vsa-kicker--gold {
    color: var(--vts-brass-ink);
}

.vsa-answer-box,
.vsa-review-state,
.vsa-confirmation-note,
.vsa-editorial-note {
    border-left-color: var(--vts-green);
}

.vsa-anchor-nav a.is-active,
.vsa-anchor-nav a:hover {
    color: var(--vts-green-hover);
}

.vsa-comparison-table thead,
.vsa-product-spec dt,
.vsa-project-facts dt {
    color: var(--vts-dark);
}

.vsa-footer-cta {
    background: var(--vts-green);
}

.vsa-footer-cta h2,
.vsa-footer-cta .vsa-kicker {
    color: #fff;
}

.vsa-footer-cta .vsa-button,
.vsa-footer-cta a.vsa-button--light {
    border-color: #fff !important;
    background: #fff !important;
    color: var(--vts-navy) !important;
}

.vsa-footer-cta .vsa-button:hover,
.vsa-footer-cta .vsa-button:focus-visible,
.vsa-footer-cta a.vsa-button--light:hover,
.vsa-footer-cta a.vsa-button--light:focus-visible {
    border-color: var(--vts-navy) !important;
    background: var(--vts-navy) !important;
    color: #fff !important;
}

.vsa-footer__wordmark {
    color: var(--vts-primary-soft);
    font-family: "Inter", Arial, Helvetica, sans-serif;
    font-weight: 700;
}

.site-info {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--vts-dark);
}

/* Evidence-safe editorial imagery: visual context without inventory claims. */
.vsa-hero-reference {
    position: relative;
    min-height: 590px;
    margin: 0;
    overflow: hidden;
    border: 10px solid #fff;
    background: #d9d6ce;
    box-shadow: 0 12px 36px rgba(23, 63, 51, 0.16);
    isolation: isolate;
}

.vsa-hero-reference::after {
    position: absolute;
    z-index: 1;
    inset: 42% 0 0;
    background: linear-gradient(180deg, transparent, rgba(23, 63, 51, 0.66));
    content: "";
    pointer-events: none;
}

.vsa-hero-reference__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 56% center;
}

.vsa-hero-reference__steps {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 76px;
    left: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.vsa-hero-reference__steps > span {
    display: grid;
    min-height: 62px;
    align-content: center;
    gap: 4px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(23, 63, 51, 0.84);
    color: #fff;
    backdrop-filter: blur(6px);
}

.vsa-hero-reference__steps small,
.vsa-hero-reference__steps strong {
    display: block;
}

.vsa-hero-reference__steps small {
    color: var(--vts-primary-contrast);
    font-size: 10px;
    letter-spacing: 0.12em;
}

.vsa-hero-reference__steps strong {
    font-size: 12px;
    line-height: 1.3;
}

.vsa-hero-reference figcaption,
.vsa-editorial-figure figcaption,
.vsa-article-lead__figure figcaption {
    display: flex;
    gap: 8px 14px;
    align-items: baseline;
    padding: 12px 14px;
    background: var(--vts-dark);
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    line-height: 1.45;
}

.vsa-hero-reference figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
}

.vsa-hero-reference figcaption strong,
.vsa-editorial-figure figcaption strong,
.vsa-article-lead__figure figcaption strong {
    flex: 0 0 auto;
    color: var(--vts-primary-contrast);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vsa-gallery__slide--reference {
    position: relative;
    overflow: hidden;
}

.vsa-gallery__reference-caption {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    display: flex;
    gap: 8px 14px;
    align-items: baseline;
    padding: 12px 14px;
    background: rgba(23, 63, 51, 0.9);
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    line-height: 1.45;
    backdrop-filter: blur(6px);
}

.vsa-gallery__reference-caption strong {
    flex: 0 0 auto;
    color: var(--vts-primary-contrast);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vsa-stone-card__reference,
.vsa-post-card__reference,
.vsa-search-result__reference,
.veyra-related__media--reference > span {
    position: absolute;
    z-index: 2;
    right: 10px;
    bottom: 10px;
    padding: 6px 8px;
    background: rgba(23, 63, 51, 0.88);
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
}

.vsa-post-card__media,
.vsa-search-result__media,
.veyra-related__media--reference {
    position: relative;
}

.vsa-selection-guidance {
    margin-bottom: 28px;
}

.vsa-selection-guidance > h3 {
    margin: 0;
    font-size: clamp(2rem, 3.6vw, 3.1rem);
}

.vsa-selection-guidance__intro {
    margin: 18px 0 24px;
    color: var(--vts-muted);
}

.vsa-selection-guidance__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vsa-selection-guidance__grid section {
    padding: 22px;
    border: 1px solid var(--vts-border);
    background: #fff;
}

.vsa-selection-guidance__grid section > span {
    color: var(--vts-green);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.vsa-selection-guidance__grid h4 {
    margin: 18px 0 8px;
    color: var(--vts-dark);
    font-size: 18px;
}

.vsa-selection-guidance__grid p {
    margin: 0;
    color: var(--vts-muted);
    font-size: 13px;
    line-height: 1.7;
}

.vsa-selection-guidance + .vsa-review-state {
    margin-top: 28px;
}

.vsa-about-reference {
    background: #fff;
}

.vsa-about-reference__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: clamp(38px, 7vw, 90px);
    align-items: center;
}

.vsa-editorial-figure,
.vsa-article-lead__figure {
    margin: 0;
    overflow: hidden;
    background: #dcede4;
}

.vsa-editorial-figure__image,
.vsa-article-lead__image {
    display: block;
    width: 100%;
    height: auto;
}

.vsa-about-reference__copy h2 {
    margin: 0;
    color: var(--vts-dark);
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.06;
}

.vsa-about-reference__copy > p:not(.vsa-kicker) {
    margin: 20px 0 24px;
    color: var(--vts-muted);
    line-height: 1.75;
}

.vsa-about-reference__copy ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--vts-border);
    list-style: none;
}

.vsa-about-reference__copy li {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--vts-border);
}

.vsa-about-reference__copy li > span {
    color: var(--vts-green);
    font-size: 11px;
    font-weight: 700;
}

.vsa-about-reference__copy li strong,
.vsa-about-reference__copy li small {
    display: block;
}

.vsa-about-reference__copy li strong {
    color: var(--vts-dark);
    font-size: 14px;
}

.vsa-about-reference__copy li small {
    margin-top: 4px;
    color: var(--vts-muted);
    font-size: 12px;
    line-height: 1.55;
}

.vsa-article-lead {
    max-width: 1250px !important;
    margin-top: clamp(34px, 5vw, 64px);
}

.vsa-article-lead__image {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* Cookie controls remain in document flow, never fixed over content. */
.veyra-cookie-banner,
[data-veyra-cookie-banner] {
    position: static !important;
    inset: auto !important;
}

/* --------------------------------------------------------------------------
   Responsive header and page grids
   -------------------------------------------------------------------------- */

@media (max-width: 1320px) {
    .vts-header__inner {
        padding: 0 14px;
    }

    .vts-menu {
        gap: 25px;
        transform: translateX(-6px);
    }

    .vts-menu__item > a,
    .vts-menu__parent {
        font-size: 16px;
    }
}

@media (max-width: 1120px) and (min-width: 901px) {
    .vts-header__inner {
        grid-template-columns: 72px minmax(0, 1fr) max-content;
        column-gap: 8px;
    }

    .vts-logo {
        width: 72px;
    }

    .vts-menu {
        gap: 17px;
        transform: none;
    }

    .vts-menu__item > a,
    .vts-menu__parent {
        font-size: 14px;
    }

    .vts-menu__caret {
        margin-left: 6px;
        font-size: 10px;
    }

    .vts-language__current {
        font-size: 14px;
    }

    .vts-search {
        width: 104px;
    }

    .vts-search input[type="search"] {
        width: 66px;
        padding-left: 10px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {
    :root {
        --vts-height: 60px;
        --vts-row: 42px;
        --vts-shell-gutter: 14px;
        --vsa-utility-height: 0px;
    }

    body.admin-bar .site-header.vts-header {
        top: 46px;
    }

    body.vts-nav-open {
        overflow: hidden;
    }

    .vts-header__inner {
        position: relative;
        max-width: none;
        grid-template-columns: 72px 1fr 78px;
        column-gap: 0;
        padding: 0 14px;
    }

    .vts-logo {
        grid-column: 1;
        grid-row: 1;
        width: 72px;
        height: var(--vts-height);
    }

    .vts-logo__top {
        font-size: 20px;
    }

    .vts-logo__bottom {
        font-size: 13px;
    }

    .vts-header__right {
        grid-column: 2;
        grid-row: 1;
        height: var(--vts-height);
        justify-content: center;
        gap: 0;
    }

    .vts-search {
        display: none;
    }

    .vts-language,
    .vts-language__current {
        height: var(--vts-height);
        line-height: var(--vts-height);
    }

    .vts-language__current {
        font-size: 15px;
    }

    .vts-language__menu {
        top: var(--vts-height);
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    button.vts-mobile-toggle {
        display: block;
        grid-column: 3;
        grid-row: 1;
        min-width: 78px;
        height: 40px;
        align-self: center;
        justify-self: end;
        padding: 0 12px !important;
        border: 1px solid var(--vts-green) !important;
        border-radius: 3px;
        background: var(--vts-green) !important;
        color: #fff !important;
        font-size: 16px;
        font-weight: 700;
        line-height: 38px;
    }

    button.vts-mobile-toggle:hover {
        background: var(--vts-green-hover) !important;
        color: #fff !important;
    }

    .vts-nav {
        position: fixed;
        z-index: 2147483000;
        top: var(--vts-height);
        right: 0;
        left: 0;
        display: none;
        width: 100%;
        height: auto;
        max-height: calc(100vh - var(--vts-height) - 20px);
        padding: 8px 14px 14px;
        overflow-x: hidden;
        overflow-y: auto;
        background: #fff;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
    }

    body.admin-bar .vts-nav {
        top: calc(var(--vts-height) + 46px);
    }

    .vts-nav.is-open {
        display: block;
    }

    .vts-menu {
        display: block;
        width: 100%;
        height: auto;
        transform: none;
    }

    .vts-menu__item,
    .vts-product-group {
        position: relative;
        display: block;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: auto;
        min-height: 0;
        border-bottom: 1px solid var(--vts-border);
        white-space: normal;
    }

    .vts-menu__item:last-child {
        border-bottom: 0;
    }

    .vts-menu__item > a,
    .vts-menu__parent,
    .vts-product-group__link,
    .vts-submenu--profiles a,
    .vts-submenu--solutions a {
        display: flex;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        height: auto;
        min-height: 42px;
        align-items: center;
        padding: 8px 42px 8px 10px;
        background: #fff;
        color: var(--vts-text) !important;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.25;
        white-space: normal;
    }

    .vts-menu__item--has-children > .vts-menu__parent,
    .vts-product-group > .vts-product-group__link {
        padding-right: 48px;
    }

    .vts-menu__caret,
    .vts-product-group__arrow {
        display: none;
    }

    button.vts-menu__toggle,
    button.vts-product-group__toggle {
        position: absolute;
        z-index: 3;
        top: 0;
        right: 0;
        display: flex !important;
        width: 42px !important;
        min-width: 42px !important;
        height: 42px !important;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        background: transparent !important;
        color: var(--vts-dark) !important;
        font-size: 0;
    }

    .vts-product-group__toggle {
        top: 0;
    }

    button.vts-menu__toggle::after,
    button.vts-product-group__toggle::after {
        content: "+";
        font-size: 20px;
        font-weight: 700;
    }

    .vts-menu__item.is-open > button.vts-menu__toggle::after,
    .vts-product-group.is-open > button.vts-product-group__toggle::after {
        content: "−";
    }

    .vts-menu__toggle span,
    .vts-product-group__toggle span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .vts-submenu,
    .vts-submenu--products,
    .vts-submenu--profiles,
    .vts-submenu--solutions {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        padding: 0 0 8px 12px;
        background: #fff;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .vts-menu__item:hover > .vts-submenu,
    .vts-menu__item:focus-within > .vts-submenu,
    .vts-product-group:hover > .vts-submenu--profiles,
    .vts-product-group:focus-within > .vts-submenu--profiles,
    .vts-product-group.is-active > .vts-submenu--profiles {
        display: none;
    }

    .vts-menu__item.is-open > .vts-submenu,
    .vts-product-group.is-open > .vts-submenu--profiles {
        display: block;
    }

    .vts-submenu--profiles {
        padding-left: 18px;
    }

    .vts-product-group.is-active > .vts-product-group__link,
    .vts-product-group:hover > .vts-product-group__link,
    .vts-product-group:focus-within > .vts-product-group__link {
        background: #fff;
        color: var(--vts-text) !important;
    }

    .vsa-hero__grid {
        min-height: auto;
        grid-template-columns: 1fr;
        padding-block: 56px;
    }

    .vsa-hero__visual {
        min-height: 480px;
    }

    .vsa-about-reference__grid {
        grid-template-columns: 1fr;
    }

    .vsa-about-reference__copy {
        max-width: 760px;
    }

    .vsa-catalogue-browser {
        grid-template-columns: 1fr;
    }

    .vsa-catalogue-browser__rail {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-right: 0;
    }

    .vsa-catalogue-browser__rail > a {
        grid-column: 1 / -1;
    }

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

@media (max-width: 600px) {
    :root {
        --vts-shell-gutter: 12px;
    }

    .vts-language__current > span:nth-child(2) {
        display: none;
    }

    .vts-language__caret {
        margin-left: 0;
    }

    .vsa-hero__copy h1 {
        font-size: clamp(2.5rem, 13vw, 4rem);
    }

    .vsa-hero__visual {
        min-height: 390px;
    }

    .vsa-hero-reference {
        border-width: 6px;
    }

    .vsa-hero-reference__steps {
        display: none;
    }

    .vsa-hero-reference figcaption,
    .vsa-editorial-figure figcaption,
    .vsa-article-lead__figure figcaption,
    .vsa-gallery__reference-caption {
        display: block;
        padding: 10px 11px;
        font-size: 10px;
    }

    .vsa-hero-reference figcaption strong,
    .vsa-editorial-figure figcaption strong,
    .vsa-article-lead__figure figcaption strong,
    .vsa-gallery__reference-caption strong {
        display: block;
        margin-bottom: 3px;
    }

    .vsa-gallery__reference-caption {
        right: 8px;
        bottom: 8px;
        left: 8px;
    }

    .vsa-selection-guidance__grid {
        grid-template-columns: 1fr;
    }

    .vsa-selection-guidance__grid section {
        padding: 18px;
    }

    .vsa-article-lead {
        margin-top: 20px;
    }

    .vsa-catalogue-browser__rail {
        grid-template-columns: 1fr;
    }

    .vsa-catalogue-browser__rail > a {
        grid-column: auto;
    }

    .vsa-post-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vts-blog-hero__inner {
        padding-inline: 18px;
    }

    .vts-blog-index {
        padding-top: 24px;
    }
}

@media (max-width: 280px) {
    :root {
        --vts-shell-gutter: 8px;
    }

    .vts-header__inner {
        grid-template-columns: 64px minmax(0, 1fr) 70px;
        padding-right: 8px;
        padding-left: 8px;
    }

    .vts-logo {
        width: 64px;
    }

    button.vts-mobile-toggle {
        min-width: 70px;
        padding-right: 8px !important;
        padding-left: 8px !important;
    }
}

/* --------------------------------------------------------------------------
   Bright Mineral refresh: light-first homepage and footer

   The brand green remains the interaction color, while white and a single
   soft mint surface carry the page. Deep green is reserved for typography,
   controls, and the narrow legal footer instead of full-height content bands.
   -------------------------------------------------------------------------- */

:root {
    --vts-bg: #ffffff;
    --vts-text: #42544c;
    --vts-muted: #596a63;
    --vts-border: #e2ece7;
    --vts-soft: #f7fbf9;
    --vts-pale: #eaf6ef;
    --vts-shadow: 0 10px 30px rgba(23, 63, 51, 0.06);
    --vsa-paper: #ffffff;
    --vsa-paper-2: #f7fbf9;
    --vsa-muted: #596a63;
    --vsa-line: #e2ece7;
    --vsa-shadow-sm: 0 10px 30px rgba(23, 63, 51, 0.06);
    --vsa-shadow-lg: 0 18px 48px rgba(23, 63, 51, 0.09);
}

body {
    background: #ffffff;
    color: var(--vts-text);
}

/* High-key homepage hero. */
.vsa-home .vsa-hero {
    background: linear-gradient(100deg, #ffffff 0%, #ffffff 58%, #f7fbf9 100%);
}

.vsa-home .vsa-hero__grid {
    min-height: 0;
    grid-template-columns: minmax(0, 0.94fr) minmax(430px, 1.06fr);
    gap: clamp(32px, 5vw, 72px);
    padding-block: clamp(48px, 4.5vw, 63px);
}

.vsa-home .vsa-hero__copy h1 {
    max-width: 700px;
    color: var(--vts-navy);
    font-size: clamp(2.75rem, 4.35vw, 4.65rem);
    line-height: 1.03;
}

.vsa-home .vsa-hero__lede,
.vsa-home .vsa-hero__assurances li {
    color: #42544c;
}

.vsa-home .vsa-hero__visual,
.vsa-home .vsa-hero-reference {
    min-height: 540px;
}

.vsa-home .vsa-hero-reference {
    border: 8px solid #ffffff;
    background: #f7f5ef;
    box-shadow: 0 16px 44px rgba(23, 63, 51, 0.09);
}

.vsa-home .vsa-hero-reference__image {
    object-position: center center;
}

.vsa-home .vsa-hero-reference::after {
    inset: 72% 0 0;
    background: linear-gradient(180deg, transparent, rgba(23, 63, 51, 0.18));
}

.vsa-home .vsa-hero-reference__steps {
    bottom: 72px;
    gap: 8px;
}

.vsa-home .vsa-hero-reference__steps > span {
    min-height: 58px;
    border-color: rgba(47, 128, 96, 0.2);
    background: rgba(255, 255, 255, 0.88);
    color: var(--vts-navy);
    box-shadow: 0 8px 24px rgba(23, 63, 51, 0.06);
    backdrop-filter: blur(10px);
}

.vsa-home .vsa-hero-reference__steps small {
    color: var(--vts-primary);
}

.vsa-home .vsa-hero-reference figcaption {
    border-top: 1px solid rgba(47, 128, 96, 0.16);
    background: rgba(255, 255, 255, 0.94);
    color: #596a63;
    backdrop-filter: blur(10px);
}

.vsa-home .vsa-hero-reference figcaption strong {
    color: var(--vts-primary);
}

/* The catalogue proof bar now supports the hero instead of darkening it. */
.vsa-proof-strip {
    border-top: 1px solid #e2ece7;
    border-bottom: 1px solid #e2ece7;
    background: #ffffff;
    color: var(--vts-navy);
}

.vsa-proof-strip__grid > div,
.vsa-proof-strip__grid > div:last-child {
    min-height: 112px;
    padding: 25px 26px;
    border-color: #e2ece7;
}

.vsa-proof-strip strong {
    color: var(--vts-primary);
    font-size: clamp(1.45rem, 2.1vw, 2.1rem);
}

.vsa-proof-strip span {
    color: #596a63;
    letter-spacing: 0.02em;
    text-transform: none;
}

.vsa-catalogue-browser__rail > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.vsa-catalogue-browser__rail > a svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Application cards replace the former full-height dark buying-team band. */
.vsa-applications {
    background: #f7fbf9;
    color: var(--vts-text);
}

.vsa-applications .vsa-path-grid {
    gap: 26px;
    border: 0;
}

.vsa-applications .vsa-path-card {
    min-height: 310px;
    padding: clamp(28px, 3.2vw, 40px);
    border: 1px solid #e2ece7;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(23, 63, 51, 0.06);
}

.vsa-applications .vsa-path-card__number {
    color: #8a6418;
    font-weight: 700;
}

.vsa-applications .vsa-path-card__icon {
    width: 50px;
    height: 50px;
    margin: 28px 0 22px;
    border-color: rgba(47, 128, 96, 0.2);
    background: #eaf6ef;
    color: var(--vts-primary);
}

.vsa-applications .vsa-path-card h3 {
    color: var(--vts-navy);
    font-size: clamp(1.55rem, 2.1vw, 2.05rem);
}

.vsa-applications .vsa-path-card p {
    margin: 15px 0 24px;
    color: #596a63;
    line-height: 1.65;
}

.vsa-applications .vsa-path-card .vsa-text-link {
    color: var(--vts-primary);
}

/* Compact, white-card specification workflow. */
.vsa-process {
    background: #f7fbf9;
}

.vsa-process__steps {
    gap: 14px;
    border: 0;
}

.vsa-process__steps li {
    min-height: 230px;
    padding: 25px 22px;
    border: 1px solid #e2ece7;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(23, 63, 51, 0.035);
}

.vsa-process__steps span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    margin-bottom: 36px;
    background: #eaf6ef;
    color: #2b7658;
    font-weight: 700;
}

.vsa-process__steps h3 {
    color: var(--vts-navy);
    font-size: 1.25rem;
}

.vsa-process__steps p {
    color: #596a63;
    font-size: 0.8rem;
}

/* Evidence and projects share one compact trust section. */
.vsa-trust {
    background: #ffffff;
}

.vsa-trust__proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.vsa-trust__proof-grid article {
    display: grid;
    min-height: 190px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 16px;
    align-content: start;
    padding: 28px 24px;
    border: 1px solid #e2ece7;
    background: #f7fbf9;
}

.vsa-trust__proof-grid svg {
    width: 22px;
    height: 22px;
    padding: 4px;
    border: 1px solid rgba(47, 128, 96, 0.22);
    background: #ffffff;
    color: var(--vts-primary);
    stroke-width: 2.1;
}

.vsa-trust__proof-grid strong,
.vsa-trust__proof-grid small {
    display: block;
}

.vsa-trust__proof-grid strong {
    color: var(--vts-navy);
    font-size: 0.96rem;
}

.vsa-trust__proof-grid small {
    margin-top: 10px;
    color: #596a63;
    font-size: 0.75rem;
    line-height: 1.6;
}

.vsa-trust__projects-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin: 54px 0 24px;
}

.vsa-trust__projects-head h3 {
    margin: 5px 0 0;
    color: var(--vts-navy);
    font-size: clamp(1.7rem, 2.8vw, 2.7rem);
}

.vsa-trust .vsa-project-card,
.vsa-trust .vsa-project-card__body {
    background: #ffffff;
}

.vsa-trust .vsa-project-card > a,
.vsa-trust .vsa-project-card h3 {
    color: var(--vts-navy);
}

.vsa-trust .vsa-project-card__eyebrow,
.vsa-trust .vsa-project-card .vsa-text-link {
    color: var(--vts-primary);
}

.vsa-trust .vsa-project-card__meta {
    color: #596a63;
}

.vsa-trust__status {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
    border: 1px solid #e2ece7;
    background: #f7fbf9;
}

.vsa-trust__status > span {
    padding: 23px 24px;
    border-right: 1px solid #e2ece7;
}

.vsa-trust__status > span:nth-child(3) {
    border-right: 0;
}

.vsa-trust__status strong,
.vsa-trust__status small {
    display: block;
}

.vsa-trust__status strong {
    color: var(--vts-navy);
    font-size: 0.85rem;
}

.vsa-trust__status small {
    margin-top: 6px;
    color: #596a63;
    font-size: 0.72rem;
}

.vsa-trust__status > p {
    grid-column: 1 / -1;
    margin: 0;
    padding: 14px 24px;
    border-top: 1px solid #e2ece7;
    color: #596a63;
    font-size: 0.74rem;
}

.vsa-trust__about {
    margin: 24px 0 0;
    text-align: right;
}

/* Light, high-conversion homepage RFQ card. */
.vsa-home__rfq {
    padding-block: clamp(72px, 8vw, 108px);
    background: #ffffff;
}

.vsa-home__rfq .vsa-rfq-panel {
    border: 1px solid #e2ece7;
    border-top: 4px solid var(--vts-primary);
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(23, 63, 51, 0.07);
}

.vsa-home__rfq .vsa-rfq-panel h2 {
    max-width: 760px;
    color: var(--vts-navy);
    font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.vsa-home__rfq .vsa-rfq-panel__copy > p:last-child {
    color: #42544c;
}

.home .vsa-footer-cta {
    display: none;
}

/* Light footer; the legal bar remains the sole full-width deep-green anchor. */
.vsa-footer-cta {
    border-top: 1px solid #e2ece7;
    border-bottom: 1px solid #e2ece7;
    background: #ffffff;
    color: var(--vts-navy);
}

.vsa-footer-cta h2 {
    color: var(--vts-navy);
}

.vsa-footer-cta .vsa-kicker {
    color: var(--vts-primary);
}

.vsa-footer-cta .vsa-button,
.vsa-footer-cta a.vsa-button--light {
    border-color: var(--vts-primary) !important;
    background: var(--vts-primary) !important;
    color: #ffffff !important;
}

.vsa-footer-cta .vsa-button:hover,
.vsa-footer-cta .vsa-button:focus-visible,
.vsa-footer-cta a.vsa-button--light:hover,
.vsa-footer-cta a.vsa-button--light:focus-visible {
    border-color: var(--vts-green-hover) !important;
    background: var(--vts-green-hover) !important;
    color: #ffffff !important;
}

.veyra-footer-cols::before {
    background-color: #f3f8f5;
}

.vsa-footer,
.veyra-footer-cols.vsa-footer {
    border-top: 1px solid #e2ece7;
    border-bottom: 0;
    background: #f3f8f5;
    color: #42544c;
}

.vsa-footer .vsa-footer__grid {
    gap: clamp(28px, 4vw, 56px);
    padding-block: 52px 44px;
}

.vsa-footer__wordmark {
    color: var(--vts-primary);
}

.vsa-footer h2,
.vsa-footer h3,
.veyra-footer-cols h2,
.veyra-footer-cols h3 {
    color: var(--vts-navy);
}

.vsa-footer__brand > p:not(.vsa-footer__wordmark),
.vsa-footer__contact p {
    color: #596a63;
}

.vsa-footer__brand .vsa-footer__disclosure {
    border-top-color: #d9e7e0;
}

.vsa-footer .veyra-footer-cols__head {
    color: var(--vts-navy);
}

.vsa-footer a,
.vsa-footer a:visited {
    color: #42544c;
}

.vsa-footer a:hover,
.vsa-footer a:focus-visible,
.vsa-footer__contact .vsa-text-link {
    color: var(--vts-primary);
}

.site-info {
    min-height: 64px;
    border-top-color: rgba(255, 255, 255, 0.14);
    background: var(--vts-navy);
    color: #fafdfc;
}

.site-info a,
.site-info a:visited {
    color: #fafdfc;
}

@media (max-width: 1180px) {
    .vsa-home .vsa-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
    }

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

    .vsa-footer .vsa-footer__grid {
        grid-template-columns: 1.4fr repeat(2, 1fr);
    }

    .vsa-footer__brand {
        grid-row: span 2;
    }
}

@media (max-width: 980px) {
    .vsa-home .vsa-hero__grid {
        grid-template-columns: 1fr;
        padding-block: 48px 58px;
    }

    .vsa-home .vsa-hero__visual,
    .vsa-home .vsa-hero-reference {
        min-height: 500px;
    }

    .vsa-proof-strip__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vsa-applications .vsa-path-grid {
        grid-template-columns: 1fr;
    }

    .vsa-applications .vsa-path-card {
        min-height: 0;
    }

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

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

    .vsa-footer .vsa-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vsa-footer__brand,
    .vsa-footer__contact {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

@media (max-width: 700px) {
    .vsa-home .vsa-hero__copy h1 {
        font-size: clamp(2.45rem, 12vw, 3.6rem);
    }

    .vsa-home .vsa-hero__visual,
    .vsa-home .vsa-hero-reference {
        min-height: 390px;
    }

    .vsa-home .vsa-hero-reference__steps {
        display: none;
    }

    .vsa-proof-strip__grid,
    .vsa-process__steps,
    .vsa-trust__proof-grid,
    .vsa-trust__status {
        grid-template-columns: 1fr;
    }

    .vsa-footer .vsa-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 20px;
        padding-block: 42px 36px;
    }

    .vsa-proof-strip__grid > div,
    .vsa-proof-strip__grid > div:last-child,
    .vsa-trust__status > span {
        border-right: 1px solid #e2ece7;
        border-bottom: 1px solid #e2ece7;
    }

    .vsa-trust__status > span:nth-child(3) {
        border-right: 1px solid #e2ece7;
    }

    .vsa-trust__status > p {
        grid-column: auto;
    }

    .vsa-trust__projects-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .vsa-trust__about {
        text-align: left;
    }

    .vsa-home__rfq {
        padding-block: 70px;
    }

    .vsa-footer__brand,
    .vsa-footer__contact {
        grid-column: 1 / -1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vts-submenu,
    .vsa-post-card__media img,
    .vsa-stone-card,
    .vsa-project-card,
    .vsa-post-card {
        transition: none !important;
    }
}

@media print {
    .vts-header {
        position: static !important;
        box-shadow: none;
    }

    .vts-nav,
    .vts-header__right,
    .vts-mobile-toggle {
        display: none !important;
    }
}
