/* ===== Variables (brand) ===== */
:root {
    --vb-red: #f11b23;
    /* primary red */
    --vb-green: #01963f;
    /* accent green (light use) */
    --vb-black: #0f0f0f;
    --vb-white: #ffffff;

    --vb-header-h: 74px;
    --vb-gap: 28px;

    --vb-text: var(--vb-white);
    --vb-bg: transparent;
    --font-ui: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-nav: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    --vb-grey: #5a6068;
    --vb-ink: #0f1720;
    --vb-muted: #6b7280;
    --vb-chip: #f1f5f9;
}

body {
    font-family: var(--font-ui);
    font-weight: 400;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
}

/* ===== Base header ===== */
.vb-header {
    position: fixed;
    inset: 0 0 auto 0;
    /* height: var(--vb-header-h); */
    z-index: 1000;
    color: var(--vb-text);
    background: var(--vb-bg);
    transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    border-bottom: 1px solid transparent;
    /* Optional backdrop for extra legibility on video */
    /* backdrop-filter: saturate(140%) blur(6px); */
}

.vb-header__bar {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    z-index: 9999;
    position: sticky;
}

/* Scroll state: bright bar with dark text */
.vb-header.is-scrolled {
    --vb-text: var(--vb-white);
    background: rgb(0 0 0);
    border-bottom-color: #01953f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

/* ===== Logo ===== */
.vb-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    color: inherit;
}

.vb-logo img {
    display: block;
    height: 100px;
    width: auto;
    transition: all .3s ease;
}

.is-scrolled .vb-logo img {
    height: 80px;
}

.vb-logo__text {
    font: 800 20px/1.1 system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
    letter-spacing: .04em;
}

/* ===== Desktop nav ===== */
.vb-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.vb-nav__list {
    display: flex;
    align-items: center;
    gap: var(--vb-gap);
    list-style: none;
    margin: 0;
    padding: 0;
}

.vb-nav__link,
.vb-nav__toggle {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    color: inherit;
    line-height: 1;
    position: relative;
    padding: 6px 0;
}

.vb-nav__link:after,
.vb-nav__toggle:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: currentColor;
    transform: translateX(-50%);
    transition: width .2s ease;
}

.vb-nav__link:hover:after,
.vb-nav__toggle:hover:after {
    width: 100%;
}

/* Dropdown (desktop) */
.vb-nav__item--has-sub {
    position: relative;
}

.vb-submenu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 200px;
    padding: 8px;
    border-radius: 10px;
    background: rgba(0, 0, 0, .82);
    color: #fff;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

.vb-submenu[hidden] {
    display: none;
}

.vb-submenu__link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 12px;
    border-radius: 8px;
}

.vb-submenu__link:hover {
    background: rgba(255, 255, 255, .08);
}

/* Caret */
.vb-caret {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
    margin-left: 4px;
}

.vb-nav__toggle[aria-expanded="true"] .vb-caret {
    transform: rotate(-135deg);
}

/* CTA */
.vb-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 18px;
    border-radius: 9999px;
    background: var(--vb-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 14px;
    transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
    box-shadow: 0 6px 16px rgba(229, 57, 53, .25);
}

.vb-cta:hover {
    transform: translateY(-1px);
    background: #d3312f;
}

.vb-cta:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 5px rgba(229, 57, 53, .35);
}

.vb-cta--full {
    width: 100%;
    margin-top: 16px;
}

/* ===== Burger (mobile) ===== */
.vb-burger {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 8px;
    margin-left: auto;
    display: none;
    cursor: pointer;
    color: inherit;
}

.vb-burger__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.vb-burger__bar+.vb-burger__bar {
    margin-top: 5px;
}

/* ===== Drawer ===== */
.vb-drawer {
    position: fixed;
    inset: var(--vb-header-h) 0 0 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(6px);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    top: 0;
}

.vb-drawer[data-open="true"] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vb-drawer__nav {
    width: min(520px, 86vw);
    margin-left: auto;
    height: 100%;
    background: #000;
    color: #fff;
    padding: 85px 20px;
    overflow: auto;
    box-shadow: -10px 0 30px rgba(0, 0, 0, .3);
}

.vb-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vb-drawer__link,
.vb-drawer__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    border-radius: 10px;
    background: transparent;
}

.vb-drawer__link:hover {
    background: rgba(255, 255, 255, .06);
}

.vb-drawer__group {
    margin-top: 8px;
}

.vb-drawer__submenu {
    list-style: none;
    margin: 4px 0 0 0;
    padding: 0;
}

.vb-drawer__submenu[hidden] {
    display: none;
}

.vb-drawer__sublink {
    display: block;
    padding: 12px 14px 12px 22px;
    color: #ddd;
    text-decoration: none;
    border-radius: 8px;
}

.vb-drawer__sublink:hover {
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .vb-nav__list {
        gap: 22px;
    }
}

@media (max-width: 900px) {
    .vb-nav {
        display: none;
    }

    .vb-burger {
        display: block;
    }
}



/* Nav + CTA style with Poppins */
.vb-nav__link {
    font-family: var(--font-nav);
    font-weight: 700;
    /* bold like reference */
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vb-cta {
    font-family: var(--font-nav);
    font-weight: 700;
    letter-spacing: .04em;
}

.vb-drawer__link {
    font-family: var(--font-nav);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* =========================================================
    ==================== Video Banner =======================
    ========================================================= */

.vb-hero {
    position: relative;
    inset: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--vb-white);
    text-align: center;
    font-family: "Poppins", system-ui, sans-serif;
}

.vb-hero:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 150px;
    object-fit: contain;
    bottom: 0;
    left: 0;
    background: url('../webImages/banner-shape.svg');
}

.vb-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* warm vignette + darkening for legibility */
.vb-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .55) 75%),
        radial-gradient(80% 80% at 50% 40%, rgba(230, 52, 42, .25) 0%, rgba(0, 0, 0, .55) 60%);
}

.vb-hero__content {
    max-width: 1050px;
    padding: 0 24px;
}

.vb-eyebrow {
    margin: 0 0 .75rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .9;
}

.vb-hero h1 {
    margin: .2rem 0 1rem;
    font-size: clamp(2.4rem, 6vw, 4.25rem);
    font-weight: 700;
    line-height: 1.1;
}

.vb-sub {
    margin: 0 auto 2rem;
    max-width: 800px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 500;
    opacity: .95;
}

.vb-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.vb-btn {
    display: inline-block;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: none;
    transition: transform .18s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
    border: 2px solid transparent;
}

.vb-btn:hover {
    transform: translateY(-1px);
}

/* Primary = filled (dark like reference hover to red) */
.vb-btn--primary {
    background: var(--vb-green);
    color: var(--vb-white);
    text-decoration: none;
    font-weight: 600;
}

.vb-btn--primary:hover {
    background: var(--vb-red);
}

/* Ghost = outline */
.vb-btn--ghost {
    background: transparent;
    color: var(--vb-white);
    border-color: var(--vb-white);
    text-decoration: none;
    font-weight: 600;
}

.vb-btn--ghost:hover {
    background: var(--vb-white);
    color: var(--vb-black);
}

/* =========================================================
    =================== Feature Section ====================
    ========================================================= */
section.vb-features {
    padding: 30px 0;
    position: relative;
}

.vb-wrap {
    max-width: 1160px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: start;
    text-align: center;
}

/* Card */
.vb-feature {
    padding: clamp(16px, 2vw, 24px);
}

.vb-ico {
    --size: 84px;
    width: var(--size);
    height: var(--size);
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 3px solid color-mix(in oklab, var(--vb-red) 50%, var(--vb-green) 50%);
    /* subtle two-tone ring */
    background:
        radial-gradient(circle at 30% 30%, color-mix(in oklab, var(--vb-red) 22%, white 78%) 0 40%,
            transparent 41%) no-repeat;
}

.vb-ico i {
    font-size: 34px;
    /* duotone feel: use green for icon, red for border/accent */
    color: var(--vb-green);
}

.vb-feature h3 {
    margin: 6px 0 10px;
    letter-spacing: 0.5px;
    font-weight: 800;
    font-size: clamp(18px, 2.2vw, 24px);
    text-transform: uppercase;
    /* gradient ink (green→red) for a branded accent */
    background: linear-gradient(90deg, var(--vb-green), var(--vb-red));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.vb-feature p {
    margin: 0 auto;
    max-width: 28ch;
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.65;
    color: var(--vb-grey);
}

/* Subtle hover */
.vb-feature:hover .vb-ico {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
    transition: .25s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .vb-wrap {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .vb-wrap {
        grid-template-columns: 1fr;
    }

    .vb-hero:after,
    .vb-ribbon__curve,
    .innerpage_banner::before {
        height: 20px;
    }

    .vb-feature p {
        max-width: 34ch;
    }

    .vb-drawer__nav {
        width: 100%;
    }
}

/* =========================================================
    =================== Locations Section ====================
    ========================================================= */
.vb-locations {
    position: relative;
    display: grid;
    place-items: center;
    color: var(--vb-white);
    text-align: center;
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    padding: clamp(72px, 10vw, 140px) 16px;
    overflow: hidden;
}

/* Background image + overlay */
.vb-loc__bg {
    position: absolute;
    inset: 0;
    background: url("../webImages/section-bg.jpg") center/cover no-repeat;
    transform: scale(1.02);
    filter: saturate(0.9) contrast(1.05);
}

.vb-loc__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .6) 100%);
    backdrop-filter: blur(.5px);
}

.vb-loc__container {
    position: relative;
    z-index: 2;
    width: min(960px, 92vw);
    margin-inline: auto;
}

.vb-loc__title {
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: none;
    font-size: clamp(22px, 3.4vw, 34px);
    margin: 0 0 18px;
    color: color-mix(in oklab, var(--vb-red) 60%, var(--vb-white));
}

.vb-loc__card {
    margin: 0 auto 22px;
    max-width: 680px;
}

.vb-loc__name {
    font-size: clamp(28px, 4.4vw, 40px);
    font-weight: 800;
    margin: 0 0 6px;
}

.vb-loc__addr {
    margin: 0 0 6px;
    font-size: clamp(14px, 1.6vw, 16px);
    opacity: .9;
}

.vb-loc__link {
    display: inline-block;
    margin-top: 2px;
    font-weight: 600;
    text-decoration: none;
    color: var(--vb-white);
    position: relative;
}

.vb-loc__link:hover {
    color: color-mix(in oklab, var(--vb-white) 85%, var(--vb-red));
}

.vb-loc__rule {
    display: block;
    width: 120px;
    height: 4px;
    border-radius: 4px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, var(--vb-red), var(--vb-green));
}

.vb-loc__welcome {
    margin: 18px auto 8px;
    max-width: 760px;
    line-height: 1.65;
    font-size: clamp(15px, 1.8vw, 18px);
}

.vb-loc__tagline {
    margin: 0 auto 24px;
    font-weight: 800;
    font-size: clamp(16px, 2vw, 20px);
}

/* Bouncing scroll arrow */
.vb-loc__scroll {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, .75);
    border-radius: 999px;
    margin-top: 10px;
    opacity: .9;
}

.vb-loc__scroll span {
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: var(--vb-white);
    animation: vb-bounce 1.8s infinite ease-in-out;
}

@keyframes vb-bounce {

    0%,
    100% {
        transform: translateY(-6px);
        opacity: .7;
    }

    50% {
        transform: translateY(6px);
        opacity: 1;
    }
}

/* Responsiveness */
@media (max-width: 560px) {
    .vb-loc__title {
        margin-bottom: 14px;
    }
}

/* =========================================================
    =================== Menu Section ====================
    ========================================================= */
/* ====== Tabs & Panels (vb- namespace) ====== */
.vb-menu {
    --vb-font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --vb-ink: #0f1b2d;
    --vb-ink-soft: #5a6b86;
    --vb-brand: #01953f;
    /* deep green */
    --vb-brand-2: #f11b23;
    /* accent red */
    --vb-surface: #ffffff;
    --vb-bg: #fafbfc;
    --vb-radius: 16px;
    --vb-shadow: 0 10px 20px rgba(15, 27, 45, .06), 0 2px 6px rgba(15, 27, 45, .06);
}

.vb-menu {
    padding: 56px 0 18px;
    background: var(--vb-bg);
}

.vb-menu-wrap {
    width: min(1200px, 92%);
    margin-inline: auto;
}

header.vb-menu-head {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.vb-menu-title {
    margin: 0 0 6px;
    font: 800 clamp(24px, 3.2vw, 36px)/1.1 var(--vb-font);
    color: var(--vb-ink);
}

.vb-menu-sub {
    margin: 0 0 22px;
    color: var(--vb-ink-soft);
    font: 400 15px/1.6 var(--vb-font);
}

/* Tabs container */
.vb-tabs {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--vb-surface);
    border-radius: 999px;
    padding: 8px;
    box-shadow: var(--vb-shadow);
    isolation: isolate;
}

/* Tab button */
.vb-tab {
    position: relative;
    z-index: 1;
    border: 0;
    background: transparent;
    color: var(--vb-ink-soft);
    font: 600 14px/1 var(--vb-font);
    padding: 12px 18px;
    border-radius: 999px;
    cursor: pointer;
    transition: color .22s ease, transform .15s ease;
    outline: none;
}

.vb-tab:hover {
    color: var(--vb-ink);
    transform: translateY(-1px);
}

.vb-tab.is-active {
    color: #fff;
}

/* color will sit above indicator */

/* Animated indicator bar */
.vb-tab-indicator {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 8px;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--vb-brand), #12a167);
    box-shadow: 0 10px 16px rgba(14, 122, 77, .22);
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), width .35s cubic-bezier(.2, .8, .2, 1);
    will-change: transform, width;
}

/* Panels */
.vb-panels {
    margin-top: 22px;
}

.vb-panel {
    background: var(--vb-surface);
    border-radius: var(--vb-radius);
    box-shadow: var(--vb-shadow);
    padding: 16px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease;
}

.vb-panel.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vb-panel[hidden] {
    display: none;
}

/* ====== Card grid re-use ====== */
.vb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

/* (From the earlier card styling; included for completeness) */
.vb-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--vb-shadow);
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column
}

.vb-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(15, 27, 45, .09), 0 4px 10px rgba(15, 27, 45, .08)
}

.vb-media {
    position: relative;
    aspect-ratio: 4/3;
    background: #eef2f6
}

.vb-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 2 / 2;
    max-height: 210px;
}

.vb-price {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--vb-brand);
    color: #fff;
    font: 600 14px/1 var(--vb-font);
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 14px rgba(14, 122, 77, .22);
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.vb-price b {
    font-weight: 800
}

.vb-info {
    padding: 14px 16px 16px
}

.vb-name {
    margin: 0 0 6px;
    color: var(--vb-ink);
    font: 700 18px/1.35 var(--vb-font)
}

.vb-desc {
    margin: 0;
    color: var(--vb-ink-soft);
    font: 400 14px/1.55 var(--vb-font);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

@media (max-width:540px) {
    .vb-tab {
        padding: 11px 14px;
        font-size: 13px
    }

    .vb-panel {
        padding: 12px
    }

    .vb-price {
        padding: 8px 12px;
        font-size: 13px
    }

    .vb-name {
        font-size: 16px
    }

    .vb-desc {
        -webkit-line-clamp: 3
    }
}

.vbg-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px
}

.vbg-btn {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: var(--vb-brand-2);
    color: #fff;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
}

.vbg-btn:hover {
    background: var(--vb-brand);
}

/* Story Section */
/* ===== Story Hero ===== */
.vb-story {
    background: #fff;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

.vb-story-hero {
    background: url('../webImages/section-bg-2.jpg') center/cover no-repeat;
    position: relative;
    text-align: center;
}

.vb-story-overlay {
    background: rgba(0, 0, 0, 0.7);
    /* bright overlay */
    padding: 80px 20px;
}

.vb-story-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    margin: 0 0 16px;
    color: #0e7a4d;
}

.vb-story-sub {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 24px;
    color: #fff;
    line-height: 1.6;
}

.vb-story .vb-btn {
    display: inline-block;
    padding: 12px 28px;
    background: #0e7a4d;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: background .3s;
}

.vb-story .vb-btn:hover {
    background: var(--vb-red);
}

/* ===== Footer ===== */
.vb-footer {
    padding: 50px 20px;
    background: #fff;
    border-top: 2px solid #eee;
}

.vb-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.vb-footer-col h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #0e7a4d;
}

.vb-footer-col p,
.vb-footer-col a {
    color: #333;
    font-size: 15px;
    margin: 6px 0;
    text-decoration: none;
}

.vb-footer-col a:hover {
    color: var(--vb-red);
}

.vb-footer-col .vb-social a:hover {
    color: #fff;
}

/* ===== Social ===== */
.vb-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.vb-social a {
    width: 38px;
    height: 38px;
    background: #0e7a4d;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.vb-social a:hover {
    background: #f11b23;
}

/* Footer */
/* ---------- Vino Biga Bottom Ribbon ---------- */
.vb-ribbon {
    position: relative;
    background: #000;
    /* Vino Biga red */
    color: #fff;
    text-align: center;
    overflow: hidden;
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Curved top via SVG */
.vb-ribbon__curve {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    width: 100%;
    line-height: 0;
    height: 150px;
    transform: rotate(180deg);
}

.vb-ribbon__curve img {
    width: 100%;
    height: 100%;
    /*object-fit: contain;*/
}

.vb-ribbon__curve path {
    fill: #e63e3a;
    /* Same as ribbon background */
}

/* Inner content */
.vb-ribbon__inner {
    padding: clamp(48px, 8vw, 80px) 16px 54px;
    max-width: 980px;
    margin: 0 auto;
    z-index: 999;
    position: relative;
}

/* Brand / wordmark (text fallback – replace with image if you like) */
.vb-ribbon__brand {
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 12px;
    font-size: clamp(28px, 4.2vw, 40px);
    color: #fff;
}

/* Lead sentence */
.vb-ribbon__lead {
    margin: 0 auto 18px;
    max-width: 780px;
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 1.6;
    opacity: .95;
}

/* Copyright + credit */
.vb-ribbon__copy {
    margin: 0;
    font-size: 14px;
    opacity: .95;
}

.vb-ribbon__credit a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
    transition: border-color .25s, color .25s;
}

.vb-ribbon__credit a:hover {
    color: var(--vb-red);
    /* Vino Biga green accent on hover */
    border-color: var(--vb-red);
}

/* Optional: subtle bottom shadow to separate from page edge on white sites */
.vb-ribbon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 6px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .06), rgba(0, 0, 0, 0));
}

/* If you want to use the green theme instead, swap colors:
   .vb-ribbon { background:#0e7a4d; } .vb-ribbon__curve path { fill:#0e7a4d; }
*/

/* ===== Vino Biga Menu (scoped) ===== */
/* ====== Vino Biga Menu Page (standalone) ====== */
.vbg-menu-page {
    --vb-red: #E53935;
    --vb-green: #2E7D32;
    --vb-ink: #0f1720;
    --vb-muted: #6b7280;
    --vb-chip: #f1f5f9;
}

.vbg-menu-tabs {
    position: relative;
}

/* ===== Tabs wrapper ===== */
.vbg-menu-tabs {
    font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--vb-ink);
    padding: 50px 30px;
}

/* Tabs row */
.vbg-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    justify-content: center;
}


.vbg-tab {
    appearance: none;
    border: 0;
    background: #fff;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    color: var(--vb-ink);
    opacity: .7;
    position: relative;
    cursor: pointer;
    transition: opacity .15s ease, color .15s ease;
        border: 1px solid #f11b23;
}

/* Optional: basic styling for the injected select */
/*.vbg-tabs-select {*/
  display: none; /* shown via JS under 992px */
/*  width: 100%;*/
/*  max-width: 100%;*/
/*  padding: 0.6rem 0.8rem;*/
/*  font: inherit;*/
/*  border: 1px solid #ccc;*/
/*  border-radius: 6px;*/
/*  background: #fff;*/
/*}*/

/* Keep panels hidden when not active */
/*.vbg-panel[hidden] { display: none !important; }*/
/*.vbg-panel.is-active { display: block; }*/

.vbg-tab:hover {
    opacity: 1;
}

.vbg-tab.is-active {
    opacity: 1;
    color: #fff;
    background: linear-gradient(135deg, #01953f, #12a167);
    border-radius: 50px;
}

.vbg-tab.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: transparent;
}

.innerpage_banner {
    width: 100%;
    position: relative;
    height: 50vh;
    background-size: cover;
    background-position: center;
}

.innerpage_banner::after {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

.innerpage_banner::before {
    content: "";
    width: 100%;
    height: 20vh;
    background: url('../webImages/banner-shape.svg') no-repeat center bottom;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 100;
}

.innerpage_content {
    width: 100%;
    height: 100%;
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.innerpage_content h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

/* Panels container */

/* Panel */
.vbg-panel {
    padding: 12px 0 4px;
}

.vbg-panel[hidden] {
    display: none;
}

/* Note (info bar) */
.vbg-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 14px;
    margin: 4px 0 16px;
    background: var(--vb-chip);
    border-radius: 12px;
    font-size: 14px;
    color: var(--vb-ink);
}

.vbg-note i {
    color: var(--vb-green);
    margin-top: 2px;
}

/* Grid 3 -> 2 (never 1) */
.vbg-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 1024px) {
    .vbg-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Card */
.vbg-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 32, .08);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.vbg-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15, 23, 32, .12);
}

.vbg-thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 400px;
overflow: hidden;
}

.vbg-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, .04), 0 8px 24px rgba(0, 0, 0, .08);
    background: #fafafa;
    aspect-ratio: 2 / 2;
    max-height: 400px;
}

/* Price pill */
.vbg-pill {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-block;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    border-radius: 999px;
    background: linear-gradient(135deg, #01953f, #12a167);
    box-shadow: 0 6px 16px rgba(229, 57, 53, .25);
}

/* Text block */
.vbg-info {
    padding: 14px 18px 18px;
    text-align: center;
}

.vbg-name {
    margin: 4px 0 6px;
    font-size: 18px;
    font-weight: 700;
}

.vbg-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--vb-muted);
}

/* ===== Vino Biga — About (isolated namespace) ===== */
.vb-about {
    --vb-about-font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
    --vb-about-ink: #0f1720;
    --vb-about-muted: #495266;
    --vb-about-accent: #E53935;
    --vb-about-bg: #ffffff;

    background: var(--vb-about-bg);
    color: var(--vb-about-ink);
    font-family: var(--vb-about-font);
    font-size: 16px;
    line-height: 1.7;
}

.vb-about__wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px 150px;
}

.vb-about__title {
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.2;
    margin: 40px 0 28px;
    font-weight: 700;
    letter-spacing: .2px;
}

/* Base block styling */
.vb-about__block {
    display: grid;
    gap: 28px;
    align-items: start;
    padding: 26px 0;
    border-bottom: 1px solid #eef1f4;
    align-items: center;
}

.vb-about__block:last-of-type {
    border-bottom: 0;
}

/* Row 1: single column */
.vb-about__block--full {
    grid-template-columns: 1fr;
}

/* Row 2: two columns (image 320 left, content flex) */
.vb-about__block--split {
    grid-template-columns: 320px minmax(0, 1fr);
}

/* Row 3: reversed (image 320 right, content flex left) */
.vb-about__block--split-rev {
    grid-template-columns: minmax(0, 1fr) 320px;
}

.vb-about__block--split-rev .vb-about__media {
    order: 2;
}

.vb-about__block--split-rev .vb-about__text {
    order: 1;
}

/* Text + media */
.vb-about__text h2 {
    font-size: clamp(20px, 2.2vw, 26px);
    margin: 0 0 10px;
    line-height: 1.3;
}

.vb-about__text p {
    margin: 0 0 14px;
    color: var(--vb-about-muted);
}

.vb-about__media {
    width: 320px;
    /* fixed image width as requested */
    max-width: 100%;
    aspect-ratio: 4 / 4;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(16, 24, 40, .08);
    margin: 0;
}

.vb-about__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Responsiveness ===== */
@media (max-width: 1200px) {
    .vb-about__wrap {
        padding: 0 100px;
    }
}

@media (max-width: 992px) {
    .vb-about__wrap {
        padding: 0 64px;
    }
}

@media (max-width: 768px) {
    .vb-about__wrap {
        padding: 0 28px;
    }

    .vb-hero h1,
    .innerpage_content h1 {
        font-size: 1.3rem;
    }

    .vb-sub,
    .vb-eyebrow {
        font-size: .8rem;
    }

    .vb-cta-row {
        font-size: .8rem;
    }

    .vb-hero:after,
    .vb-ribbon__curve {
        height: 60px;
    }
        
    .innerpage_banner{
        height:30vh;
    }
    
    .innerpage_banner::before {
        height:100%;
    }

    .vb-ribbon__curve img {
        height: 100%;
    }

    .vbg-btn,
    .vb-story .vb-btn {
        font-size: .8rem;
    }

    header.vb-menu-head {
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        text-align: center;
    }

    .vb-about__block--split,
    .vb-about__block--split-rev {
        grid-template-columns: 1fr;
        /* stack columns on mobile */
    }

    .vb-about__media {
        width: 100%;
        /* allow full width on mobile */
        aspect-ratio: 16 / 10;
        order: initial;
    }
}

@media (max-width: 560px) {

    .vb-ribbon__curve,
    .innerpage_banner::before {
        height: 20px;
        content:unset;
    }

    .vb-logo img {
        display: block;
        height: 65px;
    }

    .is-scrolled .vb-logo img {
        height: 60px;
    }

    .vb-hero {
        height: max-content !important;
        padding: 100px 0px;
    }
    
    .vb-hero:after{
        height:12vh;
        content:unset;
    }

    .vbg-grid-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

/* ===== Vino Biga Contact (isolated) ===== */
.vb-contact {
    --vb-border: #e6e8ec;
    --vb-radius: 14px;
    --vb-radius-sm: 10px;
    --vb-shadow: 0 8px 24px rgba(15, 23, 32, .06);
    --vb-input-bg: #fff;
    --vb-input-br: #e8ebf0;
    --vb-input-br-focus: #cbd5e1;
    --vb-input-ring: rgba(229, 57, 53, .18);
    /* red ring */
    --vb-gap: 28px;
}

.vb-contact__wrap {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

/* HERO */
.vb-contact__hero {
    /* background:
        radial-gradient(1200px 300px at 50% -30%, rgba(229, 57, 53, .18), transparent 60%),
        linear-gradient(180deg, #fff, #fff); */
    text-align: center;
    padding: 64px 0 48px;
}

.vb-contact__title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    margin: 0 0 10px;
    font-weight: 800;
    letter-spacing: .2px;
}

.vb-contact__lead {
    margin: 0 auto 22px;
    max-width: 740px;
    color: var(--vb-muted);
    font-size: 17px;
}

/* Quick actions */
.vb-contact__quick {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.vb-contact__qbtn {
    --bg: #0f1720;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    background: var(--bg);
    box-shadow: 0 6px 18px rgba(15, 23, 32, .18);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.vb-contact__qbtn i {
    font-size: 15px;
}

.vb-contact__qbtn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(15, 23, 32, .20);
}

.vb-contact__qbtn--call {
    --bg: var(--vb-green);
}

.vb-contact__qbtn--mail {
    --bg: var(--vb-ink);
}

.vb-contact__qbtn--map {
    --bg: var(--vb-red);
}

/* Info grid */
.vb-contact__grid {
    display: grid;
    gap: 20px;
    margin: 36px 0 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vb-contact__card {
    background: var(--vb-card);
    border: 1px solid var(--vb-border);
    border-radius: var(--vb-radius);
    box-shadow: var(--vb-shadow);
    overflow: hidden;
}

.vb-contact__card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--vb-border);
}

.vb-contact__card-head i {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--vb-red);
}

.vb-contact__card-head h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
}

.vb-contact__card-body {
    padding: 16px 18px 18px;
}

.vb-contact__kv {
    margin: 8px 0;
    color: var(--vb-muted);
}

.vb-contact__kv span {
    color: var(--vb-ink);
    font-weight: 700;
    margin-right: 4px;
}

.vb-contact__kv a {
    color: var(--vb-ink);
    text-underline-offset: 2px;
}

/* Opening hours rows */
.vb-contact__hours .vb-contact__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px dashed var(--vb-border);
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    background: #fff;
}

.vb-contact__hours span {
    font-weight: 700;
}

.vb-contact__hours em {
    font-style: normal;
    color: var(--vb-green);
    font-weight: 700;
}

/* Two-column form/map */
.vb-contact__two {
    display: grid;
    gap: 22px;
    margin: 18px 0 60px;
    grid-template-columns: 1.2fr .8fr;
}

/* Form */
.vb-contact__form {
    background: #fff;
    border: 1px solid var(--vb-border);
    border-radius: var(--vb-radius);
    box-shadow: var(--vb-shadow);
    padding: 22px 22px 16px;
}

.vb-contact__form-title {
    margin: 2px 0 14px;
    font-size: 22px;
    font-weight: 800;
}

.vb-contact__fields {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.vb-contact__field {
    position: relative;
}

.vb-contact__field--full {
    grid-column: 1 / -1;
}

.vb-contact__input {
    width: 100%;
    font: inherit;
    background: #fff;
    border: 1px solid var(--vb-border);
    border-radius: 10px;
    padding: 14px 12px 12px;
    outline: none;
    transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

.vb-contact__textarea {
    min-height: 140px;
    resize: vertical;
}

.vb-contact__input:focus {
    border-color: rgba(229, 57, 53, .7);
    box-shadow: 0 0 0 3px rgba(229, 57, 53, .12);
}

.vb-contact__label {
    position: absolute;
    left: 12px;
    top: 12px;
    padding: 0 6px;
    background: #fff;
    color: var(--vb-muted);
    pointer-events: none;
    transform-origin: left top;
    transition: transform .15s ease, color .15s ease, top .15s ease;
}

.vb-contact__input:focus+.vb-contact__label,
.vb-contact__input:not(:placeholder-shown)+.vb-contact__label {
    transform: translateY(-12px) scale(.88);
    color: var(--vb-ink);
}

.vb-contact__agree {
    font-size: 14px;
    color: var(--vb-muted);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.vb-contact__actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 2px;
}

.vb-contact__btn {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 12px;
    padding: 12px 18px;
    background: var(--vb-red);
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(229, 57, 53, .25);
    transition: transform .15s ease, box-shadow .15s ease;
}

.vb-contact__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(229, 57, 53, .32);
}

.vb-contact__btn i {
    font-size: 16px;
}

.vb-contact__hint {
    margin: 8px 2px 0;
    color: var(--vb-muted);
    font-size: 12px;
}

/* Map */
.vb-contact__map {
    background: #fff;
    border: 1px solid var(--vb-border);
    border-radius: var(--vb-radius);
    box-shadow: var(--vb-shadow);
    overflow: hidden;
    min-height: 420px;
}

.vb-contact__map iframe {
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .vb-contact__grid {
        grid-template-columns: 1fr;
    }

    .vb-contact__two {
        grid-template-columns: 1fr;
    }

    .vb-contact__map {
        min-height: 340px;
    }
}

@media (max-width: 420px) {
    .vb-contact__qbtn {
        width: 100%;
        justify-content: center;
    }

    .vb-contact__fields {
        grid-template-columns: 1fr;
    }
}