/* ============================================================================
   Het Veronica Schip — SHARED FRONTEND LAYER  (site.css)
   ----------------------------------------------------------------------------
   Load AFTER css/style.css:
       <link rel="stylesheet" href="/css/style.css?v=6">
       <link rel="stylesheet" href="/css/site.css?v=1">

   Contains ONLY the new design-language primitives. Everything that already
   lives in style.css (buttons .btn/.btn-primary, .container, .navbar, cards,
   grid, mobile menu) is NOT duplicated here — this file only extends/overrides.

   Sections
     1. Tokens
     2. Header (compact + real sticky)
     3. Section primitives .vs-*
     4. Buttons .vs-btn
     5. Cards / pills / stats
     6. Capacity finder .vf-*
     7. Utilities + reduced motion

   Bump the ?v= on EVERY page that links this file when you edit it.
   ========================================================================== */

/* ---------------------------------------------------------------- 1. TOKENS */
:root {
    /* redesign additions on top of style.css brand vars */
    --vs-ink: #0e1720;
    --vs-navy-deep: #1b2b37;
    --vs-coral: #FE7743;
    --vs-navy: #273F4F;
    --vs-cream: #EFEEEA;

    --vs-text: #3d4b55;
    --vs-muted: #5a6a75;
    --vs-quiet: #6d7d88;
    --vs-line: rgba(39, 63, 79, 0.18);

    --vs-header-h: 66px;          /* mobile header height (compact) - MEASURED 2026-08-28 */
    --vs-header-h-lg: 101px;      /* >=768px header height - MEASURED 2026-08-28 */

    --vs-maxw: 1200px;
    --vs-maxw-wide: 1400px;

    --vs-gut: 1.25rem;
    --vs-radius: 2px;

    --vs-shadow-offset: 6px 6px 0 var(--vs-navy);
    --vs-shadow-offset-coral: 6px 6px 0 var(--vs-coral);
}

/* ---------------------------------------------------------------- 2. HEADER */
/* style.css puts position:sticky on .navbar, but .navbar's containing block is
   .site-header, which is static and exactly as tall as the navbar -> the sticky
   never has anywhere to travel. Make the wrapper the sticky element instead. */
/* The header is INJECTED into <div id="header-container">, which is exactly as
   tall as .site-header -> a sticky .site-header has nowhere to travel and the
   header still scrolls away. The include WRAPPER must be the sticky element.
   Both rules are kept: .site-header covers any page that inlines the markup. */
#header-container,
.site-header {
    position: sticky;
    top: 0;
    /* 1000 (not 100) on purpose: .mobile-menu-overlay (z-index 9999) lives
       INSIDE .site-header, so this value caps the overlay against page content. */
    z-index: 1000;
}

/* The mobile menu overlay is position:fixed inside the sticky wrapper. A sticky
   ancestor does NOT create a containing block for fixed descendants (only
   transform/filter/perspective do), so the overlay keeps covering the viewport.
   Keep it explicit so nobody "optimises" a transform onto the wrapper later. */
.mobile-menu-overlay { position: fixed; }

/* Compact one-row header on phones. Previously embedded in index-new.html and
   catering.html; site-wide here. style.css at <=768px stacks the navbar
   (flex-direction: column) which produces a ~300px tall header. */
@media (max-width: 768px) {
    .navbar {
        padding: 0.55rem 0;
    }

    .navbar .container {
        flex-direction: row;
        gap: 0;
        align-items: center;
    }

    .logo {
        height: 32px;
    }
}

/* Pages that open with a full-bleed hero can offset anchors under the header */
.vs-anchor-offset {
    scroll-margin-top: calc(var(--vs-header-h) + 12px);
}

/* -------------------------------------------------- 3. SECTION PRIMITIVES */
.vs-section {
    padding: clamp(2.5rem, 8vw, 5rem) var(--vs-gut);
    background: var(--vs-cream);
}

.vs-section--white { background: #fff; }
.vs-section--navy  { background: var(--vs-navy-deep); }
.vs-section--ink   { background: var(--vs-ink); }
.vs-section--tight { padding-top: clamp(1.5rem, 5vw, 2.5rem); padding-bottom: clamp(1.5rem, 5vw, 2.5rem); }

.vs-inner {
    max-width: var(--vs-maxw);
    margin: 0 auto;
}

.vs-inner--wide { max-width: var(--vs-maxw-wide); }
.vs-inner--narrow { max-width: 46rem; }

.vs-eyebrow {
    display: block;
    font-family: var(--font-body, 'IBM Plex Sans', sans-serif);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--vs-coral);
    margin: 0 0 0.5rem;
}

.vs-h2 {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-weight: 400;
    font-size: clamp(1.9rem, 6.5vw, 3rem);
    line-height: 1.02;
    letter-spacing: 0.04em;
    color: var(--vs-navy);
    margin: 0 0 0.9rem;
    text-wrap: balance;
}

.vs-h3 {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-weight: 400;
    font-size: clamp(1.5rem, 5vw, 2.05rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    color: var(--vs-navy);
    margin: 0 0 0.5rem;
}

.vs-lead,
.vs-body {
    color: var(--vs-text);
    line-height: 1.75;
    font-size: clamp(0.95rem, 3vw, 1.05rem);
    margin: 0 0 1rem;
}

.vs-lead { max-width: 44rem; }

.vs-section--navy .vs-h2,
.vs-section--ink .vs-h2,
.vs-section--navy .vs-h3,
.vs-section--ink .vs-h3 { color: #fff; }

.vs-section--navy .vs-lead,
.vs-section--navy .vs-body,
.vs-section--ink .vs-lead,
.vs-section--ink .vs-body { color: rgba(255, 255, 255, 0.85); }

/* ...but a .vs-card is a light surface even on a dark section — undo the
   inversion inside it, otherwise card text goes white-on-white. */
.vs-section--navy .vs-card .vs-h2,
.vs-section--navy .vs-card .vs-h3,
.vs-section--ink .vs-card .vs-h2,
.vs-section--ink .vs-card .vs-h3 { color: var(--vs-navy); }

.vs-section--navy .vs-card .vs-lead,
.vs-section--navy .vs-card .vs-body,
.vs-section--ink .vs-card .vs-lead,
.vs-section--ink .vs-card .vs-body { color: var(--vs-text); }

.vs-center { text-align: center; }
.vs-center .vs-lead { margin-left: auto; margin-right: auto; }

/* Coral CTA band (as on index-new.html) */
.vs-cta-band {
    background: var(--vs-coral);
    text-align: center;
    padding: clamp(3rem, 8vw, 5rem) var(--vs-gut);
}

.vs-cta-band h2,
.vs-cta-band .vs-h2 {
    color: #fff;
    font-size: clamp(2rem, 7vw, 3.4rem);
    letter-spacing: 0.05em;
    margin: 0 0 0.75rem;
}

.vs-cta-band p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 40rem;
    margin: 0 auto 1.75rem;
    line-height: 1.7;
    font-size: clamp(0.95rem, 3vw, 1.1rem);
}

/* footer.html sets .site-footer{margin-top:var(--spacing-3xl)} — that leaves a
   stray page-background strip under a full-bleed CTA band. */
.vs-cta-band ~ #footer-container .site-footer { margin-top: 0; }

.vs-btnrow,
.vs-cta-band .hero-buttons {
    display: flex;
    gap: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --------------------------------------------------------------- 4. BUTTONS */
/* Lighter, sharper button than style.css .btn (which is 3rem-padded display
   type). Use .vs-btn for the new language; .btn still works everywhere. */
.vs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-weight: 400;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1;
    padding: 0.85rem 1.4rem;
    min-height: 46px;
    border: 3px solid transparent;
    border-radius: var(--vs-radius);
    cursor: pointer;
    background: transparent;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.vs-btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

.vs-btn--primary {
    background: var(--vs-coral);
    color: #fff;
    border-color: var(--vs-coral);
    box-shadow: 4px 4px 0 #b8482048;
}

.vs-btn--primary:hover,
.vs-btn--primary:focus-visible {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 #b8482048;
    color: #fff;
}

.vs-btn--outline {
    color: var(--vs-navy);
    border-color: var(--vs-navy);
}

.vs-btn--outline:hover,
.vs-btn--outline:focus-visible {
    background: var(--vs-navy);
    color: #fff;
}

/* On a dark hero an outline button is navy-on-navy = invisible. Every .vs-hero
   gets the light treatment automatically, so pages can keep using --outline.
   (Found on groepsdiner.html 2026-08-28; hoisted to CSS level 2026-08-28.) */
.vs-hero .vs-btn--outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
    background: transparent;
}

.vs-hero .vs-btn--outline:hover,
.vs-hero .vs-btn--outline:focus-visible {
    background: #fff;
    color: var(--vs-navy);
    border-color: #fff;
}

.vs-btn--dark {
    background: var(--vs-navy);
    color: #fff;
    border-color: var(--vs-navy);
    box-shadow: 4px 4px 0 rgba(14, 23, 32, 0.28);
}

.vs-btn--dark:hover,
.vs-btn--dark:focus-visible {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 rgba(14, 23, 32, 0.28);
    color: #fff;
}

.vs-btn--light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.vs-btn--light:hover,
.vs-btn--light:focus-visible {
    background: #fff;
    color: var(--vs-navy);
    border-color: #fff;
}

.vs-btn--sm {
    font-size: 0.92rem;
    padding: 0.6rem 1rem;
    min-height: 40px;
    border-width: 2px;
}

.vs-btn--block { width: 100%; }

/* Small text link with chevron */
.vs-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body, 'IBM Plex Sans', sans-serif);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--vs-coral);
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.vs-link:hover,
.vs-link:focus-visible { border-bottom-color: currentColor; }

/* --------------------------------------------- 5. CARDS / PILLS / STATS */
.vs-card {
    background: #fff;
    border: 2px solid var(--vs-navy);
    border-radius: var(--vs-radius);
    box-shadow: var(--vs-shadow-offset);
    padding: 1.15rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.vs-card--coral {
    border-top: 5px solid var(--vs-coral);
    box-shadow: var(--vs-shadow-offset-coral);
}

.vs-card--flat { box-shadow: none; }

.vs-card > :last-child { margin-bottom: 0; }
.vs-card .vs-btn { margin-top: auto; }

.vs-cardgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.vs-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-body, 'IBM Plex Sans', sans-serif);
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--vs-navy);
    background: transparent;
    border: 2px solid var(--vs-line);
    border-radius: 999px;
    padding: 0.34rem 0.8rem;
    white-space: nowrap;
}

.vs-pill svg { width: 14px; height: 14px; color: var(--vs-coral); flex: 0 0 auto; }
.vs-pill--coral { border-color: var(--vs-coral); color: var(--vs-coral); }
.vs-pill--solid { background: var(--vs-coral); border-color: var(--vs-coral); color: #fff; }
.vs-pill--solid svg { color: #fff; }

.vs-pillrow {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0 0 1rem;
    padding: 0;
    list-style: none;
}

.vs-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 40rem;
    margin: clamp(1.5rem, 5vw, 2.5rem) auto 0;
}

.vs-stat strong {
    display: block;
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-weight: 400;
    font-size: clamp(1.7rem, 6vw, 2.6rem);
    color: var(--vs-coral);
    line-height: 1;
}

.vs-stat span {
    display: block;
    margin-top: 0.35rem;
    font-size: clamp(0.6rem, 2.2vw, 0.76rem);
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vs-muted);
}

.vs-section--navy .vs-stat span,
.vs-section--ink .vs-stat span { color: rgba(255, 255, 255, 0.66); }

/* -------------------------------------------------- 6. CAPACITY FINDER vf-* */
.vf {
    background: var(--vs-navy-deep);
    color: #fff;
    border-top: 3px solid var(--vs-coral);
    border-bottom: 3px solid var(--vs-coral);
    padding: clamp(1.5rem, 5vw, 2.25rem) var(--vs-gut);
}

.vf-inner {
    max-width: var(--vs-maxw);
    margin: 0 auto;
}

.vf-head { margin-bottom: 1rem; }

.vf-title {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-weight: 400;
    font-size: clamp(1.5rem, 5.5vw, 2.2rem);
    letter-spacing: 0.04em;
    line-height: 1.05;
    color: #fff;
    margin: 0;
}

.vf-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.68);
    margin: 0.35rem 0 0;
    line-height: 1.55;
}

/* --- controls --- */
.vf-controls {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 1rem 1.25rem;
}

.vf-field { display: flex; flex-direction: column; gap: 0.4rem; }

.vf-label {
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.vf-stepper {
    display: inline-flex;
    align-items: stretch;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--vs-radius);
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.vf-step {
    width: 46px;
    min-height: 46px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease;
}

.vf-step:hover,
.vf-step:focus-visible { background: var(--vs-coral); }
.vf-step:disabled { opacity: 0.35; cursor: not-allowed; background: transparent; }

input.vf-input {
    width: 88px;
    flex: 0 0 auto;
    text-align: center;
    border: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.3rem;
    -moz-appearance: textfield;
}

input.vf-input::-webkit-outer-spin-button,
input.vf-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
input.vf-input:focus { outline: 2px solid var(--vs-coral); outline-offset: -2px; }

.vf-modes {
    display: inline-flex;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--vs-radius);
    overflow: hidden;
}

.vf-mode {
    appearance: none;
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-body, 'IBM Plex Sans', sans-serif);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0 0.95rem;
    min-height: 46px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s ease, color 0.18s ease;
}

.vf-mode + .vf-mode { border-left: 2px solid rgba(255, 255, 255, 0.2); }
.vf-mode:hover { color: #fff; }
.vf-mode[aria-pressed="true"] { background: var(--vs-coral); color: #fff; }

/* --- results --- */
.vf-results { margin-top: 1.25rem; }

.vf-status {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0 0 0.75rem;
    line-height: 1.5;
}

.vf-status b { color: #fff; font-weight: 700; }

.vf-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.85rem;
}

.vf-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--vs-radius);
    padding: 0.9rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.vf-card--combo { border-color: rgba(254, 119, 67, 0.55); }

.vf-tag {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--vs-coral);
}

.vf-name {
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-weight: 400;
    font-size: 1.45rem;
    letter-spacing: 0.04em;
    line-height: 1.05;
    color: #fff;
    margin: 0;
}

.vf-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.5;
}

.vf-meta b { color: var(--vs-coral); font-weight: 700; }

.vf-note {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.45;
}

.vf-card .vs-btn { margin-top: 0.55rem; align-self: flex-start; }

.vf-toobig {
    border: 2px solid var(--vs-coral);
    border-radius: var(--vs-radius);
    padding: 1rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #fff;
}

.vf-toobig a { color: var(--vs-coral); font-weight: 700; }

.vf-foot {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    align-items: center;
}

.vf-foot .vs-link { color: #fff; }
.vf-foot .vs-link:hover { color: var(--vs-coral); }

/* Compact variant (homepage band): controls on one row, results condensed */
.vf--compact { padding: clamp(1.1rem, 4vw, 1.6rem) var(--vs-gut); }
.vf--compact .vf-title { font-size: clamp(1.3rem, 4.5vw, 1.7rem); }
.vf--compact .vf-card { padding: 0.7rem 0.85rem 0.8rem; }
.vf--compact .vf-name { font-size: 1.2rem; }

/* Finder placed on a light section */
.vf--light {
    background: var(--vs-cream);
    color: var(--vs-navy);
}

.vf--light .vf-title { color: var(--vs-navy); }
.vf--light .vf-sub,
.vf--light .vf-status { color: var(--vs-muted); }
.vf--light .vf-status b { color: var(--vs-navy); }
.vf--light .vf-stepper,
.vf--light .vf-modes { border-color: var(--vs-line); background: #fff; }
.vf--light .vf-step,
.vf--light .vf-mode { color: var(--vs-navy); }
.vf--light .vf-mode[aria-pressed="true"] { color: #fff; }
.vf--light input.vf-input { color: var(--vs-navy); }
.vf--light .vf-card { background: #fff; border-color: var(--vs-navy); }
.vf--light .vf-name { color: var(--vs-navy); }
.vf--light .vf-meta { color: var(--vs-text); }
.vf--light .vf-note { color: var(--vs-quiet); }
.vf--light .vf-label { color: var(--vs-quiet); }

/* --------------------------------------------- 7. UTILITIES / MOTION / MQ */
.vs-hero {
    position: relative;
    min-height: 42svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--vs-ink);
    border-bottom: 3px solid var(--vs-coral);
}

.vs-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 55%;
}

.vs-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(14, 23, 32, 0.34) 0%, rgba(14, 23, 32, 0.70) 45%, rgba(14, 23, 32, 0.95) 100%),
        linear-gradient(90deg, rgba(14, 23, 32, 0.70) 0%, rgba(14, 23, 32, 0.22) 60%, rgba(14, 23, 32, 0) 100%);
}

.vs-hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--vs-maxw-wide);
    margin: 0 auto;
    padding: clamp(3rem, 11vw, 5.5rem) var(--vs-gut) clamp(1.5rem, 5vw, 2.5rem);
}

.vs-hero h1 {
    color: #fff;
    font-family: var(--font-display, 'Bebas Neue', sans-serif);
    font-weight: 400;
    font-size: clamp(2.3rem, 10vw, 4.4rem);
    letter-spacing: 0.045em;
    line-height: 1;
    margin: 0.4rem 0 0.7rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.vs-hero p {
    color: rgba(255, 255, 255, 0.88);
    max-width: 44rem;
    line-height: 1.65;
    margin: 0;
    font-size: clamp(0.92rem, 3.1vw, 1.08rem);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}

.vs-hero .vs-eyebrow { text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65); }

/* Alternating media/text rows */
.vs-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
}

.vs-split img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border: 3px solid var(--vs-navy);
    border-radius: var(--vs-radius);
}

/* Responsive table -> stacked cards on phones */
.vs-tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.vs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: #fff;
    border: 2px solid var(--vs-navy);
}

.vs-table th,
.vs-table td {
    padding: 0.7rem 0.85rem;
    text-align: left;
    border-bottom: 1px solid var(--vs-line);
}

.vs-table thead th {
    font-family: var(--font-body, 'IBM Plex Sans', sans-serif);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
    background: var(--vs-navy);
    border-bottom: 0;
}

.vs-table tbody tr:last-child td { border-bottom: 0; }
.vs-table td b { color: var(--vs-navy); }

@media (max-width: 767px) {
    .vs-table,
    .vs-table thead,
    .vs-table tbody,
    .vs-table tr,
    .vs-table th,
    .vs-table td { display: block; }

    .vs-table thead { display: none; }

    .vs-table { border: 0; background: transparent; }

    .vs-table tr {
        background: #fff;
        border: 2px solid var(--vs-navy);
        border-radius: var(--vs-radius);
        box-shadow: 4px 4px 0 var(--vs-navy);
        margin-bottom: 1rem;
        padding: 0.35rem 0.85rem 0.6rem;
    }

    /* grid (not flex): the value sits in a 1fr track so long strings wrap
       instead of overflowing the card. */
    .vs-table td {
        border-bottom: 1px solid var(--vs-line);
        padding: 0.5rem 0;
        display: grid;
        grid-template-columns: minmax(5.5rem, auto) 1fr;
        gap: 0.5rem 1rem;
        align-items: baseline;
        text-align: right;
        overflow-wrap: anywhere;
    }

    .vs-table td::before {
        content: attr(data-th);
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--vs-quiet);
        text-align: left;
    }

    .vs-table td:last-child { border-bottom: 0; }
}

@media (min-width: 768px) {
    :root { --vs-header-h: var(--vs-header-h-lg); }

    .vs-cardgrid { grid-template-columns: repeat(2, 1fr); }
    .vf-grid { grid-template-columns: repeat(2, 1fr); }

    .vs-split {
        grid-template-columns: 1fr 1fr;
        gap: clamp(2rem, 5vw, 3.5rem);
    }

    .vs-split--rev > :first-child { order: 2; }

    .vs-hero { min-height: 46svh; }
}

@media (min-width: 1024px) {
    .vs-cardgrid--3 { grid-template-columns: repeat(3, 1fr); }
    .vf-grid { grid-template-columns: repeat(3, 1fr); }
    .vf--compact .vf-grid { grid-template-columns: repeat(4, 1fr); }

    .vf-controls { gap: 1rem 2rem; }
}

@media (prefers-reduced-motion: reduce) {
    .vs-btn,
    .vf-step,
    .vf-mode,
    .vs-link { transition: none !important; }
}
