/**
 * Scoped typography — each class is fully independent.
 * Edit one block only; other sections stay unchanged.
 */

/* ── Base: unclassed headings (CMS / rich text only) ── */
.page-content :where(h1, h2, h3, h4, h5, h6),
.product-detail__body :where(h1, h2, h3, h4, h5, h6),
.vk-blog-post__content :where(h1, h2, h3, h4, h5, h6) {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-weight: 700;
    line-height: 1.25;
    color: #0a1208;
    margin: 0 0 0.75rem;
}

/* ═══════════════════════════════════════
   HOME — Hero slider
   ═══════════════════════════════════════ */
.vk-hero__script {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #eddd5e;
    margin: 0 0 0.75rem;
}

.vk-hero__title {
    font-family: var(--font-hero, "Bebas Neue", sans-serif);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 0.75rem;
    max-width: 12ch;
}

.vk-hero__desc {
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    font-weight: 600;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin: 1rem 0 0;
    max-width: 36rem;
}

/* ═══════════════════════════════════════
   Section labels — premium pill style (site-wide)
   ═══════════════════════════════════════ */
.vk-section-label {
    display: inline-flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 1.25rem;
    padding: 0.4rem 1.15rem 0.4rem 0.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 247, 0.98) 100%);
    border: 1px solid rgba(91, 140, 81, 0.22);
    box-shadow:
        0 4px 20px rgba(10, 40, 3, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.vk-section-label--center {
    display: flex;
    margin-left: auto;
    margin-right: auto;
}

.vk-section-label__num {
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    min-width: 2.75rem;
    height: 2.75rem;
    padding: 0 0.35rem;
    border-radius: 50%;
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #eddd5e;
    background: linear-gradient(145deg, #5b8c51 0%, #0a2803 100%);
    box-shadow:
        0 4px 14px rgba(10, 40, 3, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.vk-section-label__divider {
    width: 1px;
    height: 1.75rem;
    margin: 0 0.85rem;
    background: linear-gradient(180deg, transparent, rgba(91, 140, 81, 0.45), transparent);
    flex-shrink: 0;
}

.vk-section-label__text {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(0.8125rem, 1.6vw, 0.9375rem);
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1.2;
    color: #0a1208;
    padding-right: 0.15rem;
}

/* Light section — subtle green tint */
.vk-section-label--light {
    background: linear-gradient(135deg, rgba(91, 140, 81, 0.06) 0%, rgba(237, 221, 94, 0.1) 100%);
    border-color: rgba(91, 140, 81, 0.18);
}

.vk-section-label--light .vk-section-label__num {
    background: linear-gradient(145deg, #0a2803 0%, #244f0b 100%);
}

/* Dark / green band — glass pill, white text */
.vk-section-label--on-dark {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vk-section-label--on-dark .vk-section-label__num {
    color: #0a2803;
    background: linear-gradient(145deg, #eddd5e 0%, #d4c84a 100%);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.vk-section-label--on-dark .vk-section-label__text {
    color: #fff;
}

.vk-section-label--on-dark .vk-section-label__divider {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

@media (max-width: 480px) {
    .vk-section-label {
        padding: 0.35rem 0.85rem 0.35rem 0.35rem;
    }

    .vk-section-label__num {
        min-width: 2.35rem;
        height: 2.35rem;
        font-size: 0.9375rem;
    }

    .vk-section-label__divider {
        margin: 0 0.65rem;
        height: 1.5rem;
    }

    .vk-section-label__text {
        letter-spacing: 0.1em;
        font-size: 0.75rem;
    }
}

/* ═══════════════════════════════════════
   HOME — Trust strip
   ═══════════════════════════════════════ */
.vk-trust__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: 0.9375rem;
    font-weight: 800;
    line-height: 1.3;
    color: #0a1208;
    margin: 0 0 0.35rem;
}

.vk-trust__text {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.45;
    color: #1e2820;
    margin: 0;
}

/* ═══════════════════════════════════════
   HOME — Mission / Vision cards
   ═══════════════════════════════════════ */
.vk-mv__card-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    color: #0a1208;
    margin: 0 0 1rem;
}

.vk-mv__card-text {
    position: relative;
    z-index: 1;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 500;
    line-height: 1.55;
    color: #1e2820;
    margin: 0;
}

/* ═══════════════════════════════════════
   HOME — About block
   ═══════════════════════════════════════ */
.vk-about__script {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    color: #0a2803;
    margin: 0 0 0.5rem;
}

.vk-about__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0a1208;
    margin: 0 0 1rem;
}

.vk-about__text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: #1e2820;
    margin: 0 0 1rem;
}

/* ═══════════════════════════════════════
   HOME — Editorial
   ═══════════════════════════════════════ */
.vk-premium-editorial__eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #244f0b;
    margin: 0 0 0.5rem;
}

.vk-premium-editorial__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0a1208;
    margin: 0 0 0.75rem;
}

.vk-premium-editorial__text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: #1e2820;
    margin: 0;
}

/* ═══════════════════════════════════════
   HOME — Product range
   ═══════════════════════════════════════ */
.vk-range__eyebrow {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 700;
    font-style: italic;
    color: #244f0b;
    margin: 0 0 0.5rem;
}

.vk-range__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.25;
    color: #0a1208;
    margin: 0;
}

.vk-range__lede {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.6;
    color: #1e2820;
    margin: 0.85rem auto 0;
    max-width: 560px;
}

.vk-card-provide__title {
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: #0a1208;
    margin: 0 0 0.35rem;
}

.vk-card-provide__text {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.5;
    color: #1e2820;
    margin: 0;
}

/* ═══════════════════════════════════════
   HOME — Bento / Industries / Process / Values
   ═══════════════════════════════════════ */
.vk-premium-bento__eyebrow,
.vk-premium-industries__eyebrow,
.vk-blog__eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #244f0b;
    margin: 0 0 0.5rem;
}

.vk-premium-bento__title,
.vk-premium-industries__title,
.vk-blog__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0a1208;
    margin: 0 0 0.75rem;
}

.vk-premium-bento__lede,
.vk-premium-industries__lede,
.vk-blog__lede {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: #1e2820;
    margin: 0;
}

.vk-premium-bento__name {
    font-size: 1.0625rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.35rem;
}

.vk-premium-industry__title,
.vk-process__title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    color: #0a1208;
    margin: 0 0 0.5rem;
}

.vk-process__desc {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.55;
    color: #1e2820;
    margin: 0;
}

/* vk-value__title / vk-value__text — see dark-band block (green .vk-values section) */

/* ═══════════════════════════════════════
   HOME — Certs / CTA / Blog cards
   ═══════════════════════════════════════ */
.vk-premium-certs__eyebrow,
.vk-cta-band__eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #eddd5e;
    margin: 0 0 0.5rem;
}

.vk-premium-certs__title,
.vk-cta-band__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 0.75rem;
}

.vk-premium-certs__text,
.vk-cta-band__text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.vk-premium-cert__name {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
}

.vk-premium-cert__issuer {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.vk-blog-card__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.3;
    color: #0a1208;
    margin: 0;
}

.vk-blog-card__excerpt {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.55;
    color: #1e2820;
    margin: 0;
}

/* ═══════════════════════════════════════
   INNER — Page heroes
   ═══════════════════════════════════════ */
.page-qa-hero__kicker,
.contact-hero__kicker,
.about-hero__kicker {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 0.5rem;
}

.page-qa-hero__title,
.contact-hero__title,
.about-hero__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 0.75rem;
}

.page-qa-hero__lede,
.contact-hero__lede,
.about-hero__lede {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    max-width: 52ch;
}

/* ═══════════════════════════════════════
   INNER — Static / promise pages (vk-sp-*)
   ═══════════════════════════════════════ */
.vk-sp-head:not(.vk-sp-head--light) .vk-sp-head__eyebrow,
.vk-sp-split__eyebrow,
.vk-aboutp-section-head__eyebrow,
.vk-aboutp-story__eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #244f0b;
    margin: 0 0 0.5rem;
}

.vk-sp-head:not(.vk-sp-head--light) .vk-sp-head__title,
.vk-sp-split__title,
.vk-aboutp-section-head__title,
.vk-aboutp-story__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0a1208;
    margin: 0 0 0.75rem;
}

/* vk-sp-goals__* on green panel — see dark-band block below */

.vk-sp-process__title,
.vk-sp-standard__title,
.vk-sp-pillar__title,
.vk-sp-timeline__title,
.vk-aboutp-timeline__title,
.vk-aboutp-value__title {
    font-size: 1.0625rem;
    font-weight: 800;
    line-height: 1.3;
    color: #0a1208;
    margin: 0 0 0.35rem;
}

.vk-sp-quote__script,
.vk-aboutp-quote__script {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    font-style: italic;
    color: #0a2803;
    margin: 0;
}

/* ═══════════════════════════════════════
   Contact page
   ═══════════════════════════════════════ */
.contact-info-stack__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: 1.125rem;
    font-weight: 800;
    color: #0a1208;
    margin: 0 0 1rem;
}

.contact-form-card__title,
.contact-newsletter__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: 1.375rem;
    font-weight: 800;
    color: #0a1208;
    margin: 0 0 0.35rem;
}

.contact-form-card__hint,
.contact-newsletter__text {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.55;
    color: #1e2820;
    margin: 0;
}

/* ═══════════════════════════════════════
   Product detail
   ═══════════════════════════════════════ */
.product-detail__title,
.product-sample__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0a1208;
    margin: 0 0 0.5rem;
}

.product-sample__sub {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.55;
    color: #1e2820;
    margin: 0;
}

/* ═══════════════════════════════════════
   Components — cards, section head, footer
   ═══════════════════════════════════════ */
.vf-section-head__title {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0a1208;
    margin: 0 0 0.75rem;
}

.vf-section-head__lede,
.vf-eyebrow {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.65;
    color: #1e2820;
    margin: 0;
}

.vf-eyebrow {
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #244f0b;
    margin: 0 0 0.5rem;
}

.vf-product-card__title,
.vf-cat-card__title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.3;
    color: #0a1208;
    margin: 0;
}

.vf-product-card__desc {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.55;
    color: #1e2820;
    margin: 0;
}

.site-footer__heading {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.75rem;
}

.about-query__heading {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #0a1208;
    margin: 0;
}

.vk-tagline__item {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.125rem, 2.5vw, 1.625rem);
    font-weight: 700;
    line-height: 1.35;
    color: #0a1208;
}

.vk-harvest__quote p {
    font-family: var(--font-display, "Plus Jakarta Sans", sans-serif);
    font-size: clamp(1.125rem, 2.5vw, 1.75rem);
    font-weight: 600;
    line-height: 1.45;
    color: #fff;
    margin: 0;
}

/* ═══════════════════════════════════════
   DARK / GREEN BANDS — white text only here
   (parent-scoped; light sections unchanged)
   ═══════════════════════════════════════ */

/* Promise pages CTA — "Have a query on our products?" */
.vk-sp-cta .vk-sp-cta__title {
    color: #fff;
}

.vk-sp-cta .vk-sp-cta__text {
    color: rgba(255, 255, 255, 0.92);
}

.vk-sp-cta .btn--ghost,
.vk-sp-cta .vk-sp-cta__ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.vk-sp-cta .btn--ghost:hover,
.vk-sp-cta .vk-sp-cta__ghost:hover {
    color: #fff;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

/* Brand history — green pillars header */
.vk-sp-head--light .vk-sp-head__eyebrow {
    color: rgba(255, 255, 255, 0.88);
}

.vk-sp-head--light .vk-sp-head__title {
    color: #fff !important;
}

/* Sustainability — goals on green background */
.vk-sp-goals .vk-sp-goals__eyebrow {
    color: rgba(255, 255, 255, 0.88);
}

.vk-sp-goals .vk-sp-goals__title {
    color: #fff;
}

.vk-sp-goals .vk-sp-goals__item {
    color: rgba(255, 255, 255, 0.92);
}

/* Home — values cards on green gradient (not white .vk-values--creative) */
.vk-values:not(.vk-values--creative) .vk-value__title {
    color: #fff !important;
}

.vk-values:not(.vk-values--creative) .vk-value__text {
    color: rgba(255, 255, 255, 0.92) !important;
    opacity: 1 !important;
}

/* Light values section keeps dark text */
.vk-values--creative .vk-value__title {
    color: #0a1208 !important;
}

.vk-values--creative .vk-value__text {
    color: #1e2820 !important;
    opacity: 1 !important;
}
