/* ═══════════════════════════════════════════════════════════
   Velora Mediterranean Grill & Bar — Website Styles
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Jost:wght@300;400;500;600&display=swap');

:root {
    --v-bg: #121410;
    --v-bg-elevated: #1a1d16;
    --v-bg-card: #1e2119;
    --v-gold: #C4A962;
    --v-gold-light: #D4B896;
    --v-gold-dim: rgba(196, 169, 98, 0.15);
    --v-olive: #42462F;
    --v-cream: #F9F7F2;
    --v-text: #ece8df;
    --v-text-muted: rgba(236, 232, 223, 0.72);
    --v-text-faint: rgba(236, 232, 223, 0.45);
    --v-border: rgba(196, 169, 98, 0.18);
    --v-border-light: rgba(196, 169, 98, 0.08);
    --v-font-display: 'Cinzel', Georgia, serif;
    --v-font-body: 'Jost', system-ui, sans-serif;
    --v-topbar-h: 42px;
    --v-header-h: 96px;
    --v-nav-offset: calc(var(--v-topbar-h) + var(--v-header-h));
    --v-max-w: 1200px;
    --v-radius: 2px;
    --v-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--v-font-body);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.75;
    color: var(--v-text);
    background: var(--v-bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--v-gold); text-decoration: none; transition: color var(--v-transition); }
a:hover { color: var(--v-gold-light); }

.v-container {
    width: 100%;
    max-width: var(--v-max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.v-container--narrow { max-width: 760px; }

/* ── Typography ── */
.v-eyebrow {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--v-gold);
    margin-bottom: 18px;
}

.v-heading {
    font-family: var(--v-font-display);
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
}

.v-heading--xl { font-size: clamp(2.6rem, 5.5vw, 4.4rem); }
.v-heading--lg { font-size: clamp(2rem, 4vw, 3.2rem); }
.v-heading--md { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.v-heading--sm { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }

.v-heading--dark { color: var(--v-bg); }

.v-lead {
    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.8;
    color: var(--v-text-muted);
    max-width: 680px;
}

.v-lead--center {
    margin: 24px auto 0;
    text-align: center;
}

.v-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 20px 0;
}

.v-divider::before,
.v-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--v-border);
}

.v-divider span {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--v-gold);
    white-space: nowrap;
}

/* ── Buttons ── */
.v-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 36px;
    font-family: var(--v-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: var(--v-radius);
    cursor: pointer;
    transition: all var(--v-transition);
    white-space: nowrap;
}

.v-btn--sm {
    min-height: 42px;
    padding: 0 22px;
    font-size: 12px;
}

.v-btn-group--center { justify-content: center; }

.v-btn--gold {
    background: var(--v-gold);
    color: var(--v-bg);
    border-color: var(--v-gold);
}

.v-btn--gold:hover {
    background: var(--v-gold-light);
    border-color: var(--v-gold-light);
    color: var(--v-bg);
}

.v-btn--outline {
    background: transparent;
    color: var(--v-gold);
    border-color: var(--v-gold);
}

.v-btn--outline:hover {
    background: var(--v-gold);
    color: var(--v-bg);
}

.v-btn--ghost {
    background: transparent;
    color: var(--v-text);
    border-color: var(--v-border);
}

.v-btn--ghost:hover {
    border-color: var(--v-gold);
    color: var(--v-gold);
}

.v-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* ── Topbar ── */
.v-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--v-topbar-h);
    background: #0a0c08;
    border-bottom: 1px solid var(--v-border-light);
}

.v-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--v-max-w);
    margin: 0 auto;
    padding: 0 24px;
    gap: 16px;
}

.v-topbar__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    font-size: 14px;
    color: var(--v-text-muted);
}

.v-topbar__list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.v-topbar__list i {
    color: var(--v-gold);
    font-size: 13px;
}

.v-topbar__list a {
    color: var(--v-text);
    font-weight: 400;
}

.v-topbar__list a:hover { color: var(--v-gold); }

.v-topbar__social {
    display: flex;
    gap: 10px;
}

.v-topbar__social a {
    color: var(--v-gold);
    font-size: 15px;
    opacity: 0.8;
    transition: opacity var(--v-transition);
}

.v-topbar__social a:hover { opacity: 1; }

@media (max-width: 768px) {
    .v-topbar__list li:nth-child(1) { display: none; }
    .v-topbar__list { gap: 16px; font-size: 13px; }
}

@media (max-width: 480px) {
    .v-topbar__list li:nth-child(2) { display: none; }
}

/* ── Header ── */
.v-header {
    position: fixed;
    top: var(--v-topbar-h);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--v-header-h);
    transition: background var(--v-transition), box-shadow var(--v-transition), border-color var(--v-transition);
    border-bottom: 1px solid transparent;
}

.v-header.is-scrolled {
    background: rgba(18, 20, 16, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom-color: var(--v-border-light);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.v-header:not(.is-scrolled) {
    background: rgba(18, 20, 16, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.v-header:not(.is-scrolled) .v-nav__link {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.v-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--v-max-w);
    margin: 0 auto;
    padding: 0 24px;
}

.v-header__logo img {
    height: 72px;
    width: auto;
    transition: opacity var(--v-transition);
}

.v-header__logo:hover img { opacity: 0.85; }

.v-nav { display: flex; align-items: center; gap: 36px; }

.v-nav__list {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.v-nav__link {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(236, 232, 223, 0.85);
    transition: color var(--v-transition);
    position: relative;
}

.v-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--v-gold);
    transition: width var(--v-transition);
}

.v-nav__link:hover,
.v-nav__link.is-active {
    color: var(--v-gold);
}

.v-nav__link.is-active::after,
.v-nav__link:hover::after { width: 100%; }

.v-nav__link--soon {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.v-nav__cta { flex-shrink: 0; }

/* Mobile toggle */
.v-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.v-nav-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--v-gold);
    transition: all var(--v-transition);
}

.v-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.v-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.v-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.v-mobile-nav {
    display: none;
    position: fixed;
    inset: var(--v-nav-offset) 0 0 0;
    background: rgba(18, 20, 16, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 999;
    padding: 32px 24px;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform var(--v-transition), opacity var(--v-transition);
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
}

.v-mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.v-mobile-nav__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.v-mobile-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 0;
    font-family: var(--v-font-display);
    font-size: 1.5rem;
    color: var(--v-text);
    border-bottom: 1px solid var(--v-border-light);
    transition: color var(--v-transition);
}

.v-mobile-nav__link:hover,
.v-mobile-nav__link.is-active { color: var(--v-gold); }

.v-mobile-nav__link--soon { opacity: 0.4; }

.v-mobile-nav__cta {
    margin-top: 32px;
    width: 100%;
}

@media (max-width: 960px) {
    .v-nav__list,
    .v-nav__cta { display: none; }
    .v-nav-toggle { display: flex; }
    .v-mobile-nav { display: block; }
    .v-header__logo img { height: 56px; }
}

/* ── Hero Slider ── */
.v-hero-slider {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-hero-slider__backgrounds {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.v-hero-slider__bg {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 1.2s ease;
}

.v-hero-slider__bg.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.v-hero-slider__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.v-hero-slider__bg.is-active img {
    transform: scale(1);
}

.v-hero-slider__bg .v-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 20, 16, 0.55) 0%,
        rgba(18, 20, 16, 0.7) 45%,
        rgba(18, 20, 16, 0.88) 100%
    );
}

.v-hero__content--fixed {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: calc(var(--v-nav-offset) + 48px) 24px 100px;
    max-width: 720px;
    margin: 0 auto;
    width: 100%;
}

.v-hero__content--fixed .v-hero__logo {
    width: clamp(160px, 28vw, 240px);
    margin: 0 auto 28px;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.4));
}

.v-hero__content--fixed .v-hero__tagline {
    margin-bottom: 20px;
}

.v-hero__content--fixed .v-hero__desc {
    min-height: 3.6em;
    transition: opacity 0.4s ease;
}

.v-hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 20, 16, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(196, 169, 98, 0.3);
    color: var(--v-gold);
    cursor: pointer;
    font-size: 18px;
    transition: all var(--v-transition);
    border-radius: 50%;
}

.v-hero-slider__arrow:hover {
    background: rgba(196, 169, 98, 0.2);
    border-color: var(--v-gold);
}

.v-hero-slider__arrow--prev { left: 20px; }
.v-hero-slider__arrow--next { right: 20px; }

.v-hero-slider__dots {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.v-hero-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all var(--v-transition);
}

.v-hero-slider__dot.is-active {
    background: var(--v-gold);
    transform: scale(1.3);
    box-shadow: 0 0 12px rgba(196, 169, 98, 0.5);
}

.v-hero-slider .v-hero__scroll {
    z-index: 10;
    bottom: 72px;
}

@media (max-width: 768px) {
    .v-hero-slider__arrow { display: none; }
    .v-hero__content--fixed .v-hero__logo {
        width: clamp(140px, 50vw, 200px);
    }
}

/* ── Hero (legacy/static) ── */
.v-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.v-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.v-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(18, 20, 16, 0.55) 0%,
        rgba(18, 20, 16, 0.75) 50%,
        rgba(18, 20, 16, 0.92) 100%
    );
}

.v-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: calc(var(--v-nav-offset) + 48px) 24px 80px;
    max-width: 900px;
}

.v-hero__logo {
    width: clamp(140px, 22vw, 200px);
    margin: 0 auto 36px;
}

.v-hero__title {
    font-family: var(--v-font-display);
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.08em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.v-hero__tagline {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--v-gold);
    margin-bottom: 28px;
}

.v-hero__desc {
    font-size: clamp(17px, 2.2vw, 20px);
    line-height: 1.85;
    color: rgba(236, 232, 223, 0.82);
    margin-bottom: 44px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.v-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--v-text-faint);
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: v-bounce 2s infinite;
}

.v-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--v-gold), transparent);
}

@keyframes v-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Page Hero (inner pages) ── */
.v-page-hero {
    position: relative;
    padding: calc(var(--v-nav-offset) + 72px) 0 72px;
    text-align: center;
    background: var(--v-bg-elevated);
    border-bottom: 1px solid var(--v-border-light);
}

.v-page-hero--image {
    padding-bottom: 80px;
    overflow: hidden;
}

.v-page-hero--image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(18, 20, 16, 0.7), var(--v-bg-elevated));
    z-index: 1;
}

.v-page-hero--image .v-page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.v-page-hero--image .v-page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-page-hero--image .v-container { position: relative; z-index: 2; }

.v-page-hero--lg {
    padding-bottom: 120px;
}

.v-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 20, 16, 0.7) 0%, rgba(18, 20, 16, 0.85) 100%);
    z-index: 1;
}

.v-breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: var(--v-text-muted);
    margin-bottom: 28px;
    padding: 10px 20px;
    background: rgba(18, 20, 16, 0.45);
    border: 1px solid var(--v-border-light);
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.v-breadcrumb a {
    color: var(--v-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.v-breadcrumb a:hover { color: var(--v-gold-light); }

.v-breadcrumb__sep {
    color: var(--v-text-faint);
    font-size: 10px;
}

.v-breadcrumb__current {
    color: var(--v-text);
    font-weight: 500;
}

/* ── Sections ── */
.v-section {
    padding: 80px 0;
}

.v-section--dark { background: var(--v-bg); }
.v-section--elevated { background: var(--v-bg-elevated); }

.v-section__header {
    text-align: center;
    margin-bottom: 56px;
}

.v-section__header .v-lead {
    margin: 20px auto 0;
}

.v-section__header--left {
    text-align: left;
}

.v-section__header--left .v-lead {
    margin-left: 0;
}

/* ── About split ── */
.v-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.v-split__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.v-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.v-split__image:hover img { transform: scale(1.03); }

.v-split__image::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid var(--v-border);
    pointer-events: none;
}

.v-split__content .v-btn { margin-top: 32px; }

@media (max-width: 768px) {
    .v-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .v-split--reverse .v-split__image { order: -1; }
}

/* ── Features grid ── */
.v-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.v-feature {
    padding: 36px 28px;
    background: var(--v-bg-card);
    border: 1px solid var(--v-border-light);
    text-align: center;
    transition: border-color var(--v-transition);
}

.v-feature:hover { border-color: var(--v-border); }

.v-feature__icon {
    font-size: 28px;
    color: var(--v-gold);
    margin-bottom: 20px;
}

.v-feature__title {
    font-family: var(--v-font-display);
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 14px;
}

.v-feature__text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--v-text-muted);
}

@media (max-width: 768px) {
    .v-features { grid-template-columns: 1fr; }
}

/* ── Gallery grid ── */
.v-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.v-gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.v-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
}

.v-gallery__item:hover img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

.v-gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(196, 169, 98, 0);
    transition: background var(--v-transition);
}

.v-gallery__item:hover::after {
    background: rgba(196, 169, 98, 0.12);
}

.v-gallery--food {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.v-gallery--food .v-gallery__item { aspect-ratio: 4/3; }

@media (max-width: 768px) {
    .v-gallery { grid-template-columns: repeat(2, 1fr); }
    .v-gallery--food { grid-template-columns: repeat(2, 1fr); }
}

/* ── Drinks row ── */
.v-drinks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.v-drinks__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid var(--v-border-light);
}

.v-drinks__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.v-drinks__item:hover img { transform: scale(1.05); }

@media (max-width: 768px) {
    .v-drinks { grid-template-columns: repeat(2, 1fr); }
}

/* ── Interior slider ── */
.v-slider {
    position: relative;
    overflow: hidden;
}

.v-slider__track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.v-slider__slide {
    flex: 0 0 100%;
    aspect-ratio: 16/7;
    overflow: hidden;
}

.v-slider__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-slider__nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.v-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background var(--v-transition), transform var(--v-transition);
    padding: 0;
}

.v-slider__dot.is-active {
    background: var(--v-gold);
    transform: scale(1.3);
}

.v-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(18, 20, 16, 0.6);
    border: 1px solid var(--v-border);
    color: var(--v-gold);
    cursor: pointer;
    transition: background var(--v-transition);
    font-size: 18px;
}

.v-slider__arrow:hover { background: rgba(18, 20, 16, 0.9); }
.v-slider__arrow--prev { left: 16px; }
.v-slider__arrow--next { right: 16px; }

@media (max-width: 768px) {
    .v-slider__slide { aspect-ratio: 4/3; }
    .v-slider__arrow { display: none; }
}

/* ── Hours card ── */
.v-hours {
    background: var(--v-bg-card);
    border: 1px solid var(--v-border-light);
    padding: 40px;
}

.v-hours__title {
    font-family: var(--v-font-display);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

.v-hours__list { list-style: none; }

.v-hours__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--v-border-light);
    font-size: 16px;
}

.v-hours__item:last-child { border-bottom: none; }

.v-hours__days { color: var(--v-text-muted); }
.v-hours__time { color: var(--v-gold); font-weight: 500; }

/* ── CTA banner ── */
.v-cta {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.v-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.v-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 20, 16, 0.85);
    z-index: 1;
}

.v-cta__content {
    position: relative;
    z-index: 2;
}

.v-cta .v-heading { margin-bottom: 16px; }
.v-cta .v-lead { margin: 0 auto 32px; text-align: center; }
.v-cta .v-btn-group { justify-content: center; }

/* ── Info cards (contact) ── */
.v-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 56px;
}

.v-info-card {
    padding: 36px 28px;
    background: var(--v-bg-card);
    border: 1px solid var(--v-border-light);
    text-align: center;
    transition: border-color var(--v-transition);
}

.v-info-card:hover { border-color: var(--v-border); }

.v-info-card__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--v-border);
    border-radius: 50%;
    color: var(--v-gold);
    font-size: 18px;
}

.v-info-card__title {
    font-family: var(--v-font-display);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 12px;
}

.v-info-card__text {
    font-size: 17px;
    color: var(--v-text-muted);
    line-height: 1.75;
}

.v-info-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--v-gold);
}

.v-info-card__link:hover { color: var(--v-gold-light); }

.v-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
}

.v-contact-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

@media (max-width: 900px) {
    .v-contact-grid { grid-template-columns: 1fr; }
}

.v-info-card__text a { color: var(--v-gold); }

@media (max-width: 768px) {
    .v-info-grid { grid-template-columns: 1fr; }
}

/* ── Forms ── */
.v-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.v-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.v-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v-text-muted);
    margin-bottom: 10px;
}

.v-input,
.v-textarea {
    width: 100%;
    padding: 16px 18px;
    font-family: var(--v-font-body);
    font-size: 17px;
    font-weight: 400;
    color: var(--v-text);
    background: var(--v-bg);
    border: 1px solid var(--v-border-light);
    border-radius: var(--v-radius);
    transition: border-color var(--v-transition);
    outline: none;
}

.v-input:focus,
.v-textarea:focus { border-color: var(--v-gold); }

.v-input::placeholder,
.v-textarea::placeholder { color: var(--v-text-faint); }

.v-textarea {
    min-height: 160px;
    resize: vertical;
}

.v-error {
    display: block;
    font-size: 13px;
    color: #e07070;
    margin-top: 6px;
}

.v-alert {
    padding: 16px 20px;
    font-size: 14px;
    border-radius: var(--v-radius);
    margin-bottom: 24px;
}

.v-alert--success {
    background: rgba(196, 169, 98, 0.12);
    border: 1px solid var(--v-border);
    color: var(--v-gold-light);
}

@media (max-width: 600px) {
    .v-form-row { grid-template-columns: 1fr; }
}

/* ── Map ── */
.v-map {
    width: 100%;
    height: 400px;
    border: 1px solid var(--v-border-light);
    filter: grayscale(30%) contrast(1.1);
}

.v-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ── Events ── */
.v-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.v-event-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--v-border-light);
    transition: border-color var(--v-transition);
}

.v-event-card:hover { border-color: var(--v-border); }

.v-event-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.v-event-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.v-event-card:hover .v-event-card__image img { transform: scale(1.05); }

.v-event-card__body {
    padding: 28px;
    background: var(--v-bg-card);
}

.v-event-card__title {
    font-family: var(--v-font-display);
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 12px;
}

.v-event-card__text {
    font-size: 17px;
    line-height: 1.75;
    color: var(--v-text-muted);
}

@media (max-width: 768px) {
    .v-events-grid { grid-template-columns: 1fr; }
}

/* ── OpenTable booking widget ── */
.v-booking-widget {
    max-width: 840px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--v-border-light);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.v-booking-widget__header {
    text-align: center;
    padding: 36px 28px 24px;
    background: #fff;
    border-bottom: 1px solid var(--v-border-light);
}

.v-booking-widget__intro {
    color: #666;
    font-size: 16px;
    max-width: 520px;
    margin: 12px auto 0;
    line-height: 1.6;
}

.v-booking-widget__embed {
    padding: 0;
    background: #fff;
    line-height: 0;
    text-align: center;
}

.v-booking-widget__iframe {
    display: block;
    width: 100%;
    border: 0;
    margin: 0 auto;
}

.v-booking-widget__iframe--wide {
    height: 350px;
    max-width: 840px;
}

.v-booking-widget__iframe--tall {
    display: none;
    height: 490px;
    max-width: 288px;
}

@media (max-width: 839px) {
    .v-booking-widget {
        max-width: 320px;
    }

    .v-booking-widget__iframe--wide {
        display: none;
    }

    .v-booking-widget__iframe--tall {
        display: block;
    }
}

.v-booking-widget__fallback {
    padding: 48px 24px;
    text-align: center;
    line-height: 1.6;
}

.v-booking-widget__fallback p {
    color: #666;
    margin-bottom: 24px;
}

.v-booking-widget__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 24px 28px 32px;
    background: #faf9f6;
    border-top: 1px solid var(--v-border-light);
    line-height: 1.6;
}

.v-booking-widget__note {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.v-booking-widget__note a {
    color: var(--v-gold);
    font-weight: 600;
}

@media (max-width: 768px) {
    .v-booking-widget__header { padding: 28px 20px 20px; }
    .v-booking-widget__footer { padding: 20px 20px 28px; }
}

/* ── Booking placeholder (legacy) ── */
.v-booking-placeholder {
    text-align: center;
    padding: 64px 32px;
    background: var(--v-bg-card);
    border: 1px solid var(--v-border-light);
    max-width: 640px;
    margin: 0 auto;
}

.v-booking-placeholder__icon {
    font-size: 48px;
    color: var(--v-gold);
    margin-bottom: 24px;
    opacity: 0.6;
}

.v-booking-placeholder p {
    color: var(--v-text-muted);
    margin-bottom: 8px;
    font-size: 15px;
}

/* ── Menu coming soon ── */
.v-coming-soon {
    text-align: center;
    padding: 80px 32px;
}

.v-coming-soon__icon {
    width: 80px;
    margin: 0 auto 28px;
    opacity: 0.7;
}

.v-coming-soon p {
    color: var(--v-text-muted);
    max-width: 480px;
    margin: 16px auto 32px;
}

.v-section--flush .v-section__intro {
    padding-top: 80px;
    padding-bottom: 40px;
}

/* ── Footer ── */
.v-footer {
    background: #0a0c08;
    border-top: 1px solid var(--v-border);
}

.v-footer__cta {
    background: linear-gradient(135deg, rgba(196, 169, 98, 0.12) 0%, rgba(196, 169, 98, 0.04) 100%);
    border-bottom: 1px solid var(--v-border-light);
    padding: 48px 0;
}

.v-footer__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.v-footer__cta-title {
    font-family: var(--v-font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: #fff;
    margin-bottom: 8px;
}

.v-footer__cta-text p {
    font-size: 17px;
    color: var(--v-text-muted);
    max-width: 520px;
}

.v-footer__main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: 64px 0 48px;
}

.v-footer__brand img {
    height: 100px;
    margin-bottom: 24px;
}

.v-footer__brand p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--v-text-muted);
    margin-bottom: 28px;
    max-width: 320px;
}

.v-footer__heading {
    font-family: var(--v-font-display);
    font-size: 15px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--v-gold);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--v-border-light);
}

.v-footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.v-footer__links a {
    font-size: 16px;
    color: var(--v-text-muted);
    transition: color var(--v-transition);
}

.v-footer__links a:hover { color: var(--v-gold); }

.v-footer__hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
    color: var(--v-text-muted);
    padding: 10px 0;
    border-bottom: 1px solid var(--v-border-light);
    list-style: none;
}

.v-footer__hours li strong {
    color: var(--v-gold);
    font-weight: 500;
    white-space: nowrap;
}

.v-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: var(--v-text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
    list-style: none;
}

.v-footer__contact i {
    color: var(--v-gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.v-footer__contact a { color: var(--v-gold); }

.v-footer__social {
    display: flex;
    gap: 12px;
}

.v-footer__social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--v-border);
    color: var(--v-gold);
    font-size: 18px;
    transition: all var(--v-transition);
}

.v-footer__social a:hover {
    background: var(--v-gold);
    color: var(--v-bg);
    border-color: var(--v-gold);
}

.v-footer__bottom {
    border-top: 1px solid var(--v-border-light);
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.v-footer__copy {
    font-size: 14px;
    color: var(--v-text-faint);
}

.v-footer__legal {
    display: flex;
    gap: 28px;
    list-style: none;
}

.v-footer__legal a {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--v-text-faint);
}

.v-footer__legal a:hover { color: var(--v-gold); }

@media (max-width: 960px) {
    .v-footer__main { grid-template-columns: 1fr 1fr; }
    .v-footer__cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
    .v-footer__main { grid-template-columns: 1fr; }
    .v-footer__bottom { flex-direction: column; text-align: center; }
    .v-footer__brand img { height: 80px; }
}

/* ── Footer legacy (removed) ── */
.v-footer__grid { display: none; }

/* ── Toast / flash ── */
.v-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: var(--v-bg-card);
    border: 1px solid var(--v-border);
    max-width: 380px;
    transform: translateY(120%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.v-toast.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.v-toast__icon {
    color: var(--v-gold);
    font-size: 18px;
    flex-shrink: 0;
}

.v-toast__message {
    font-size: 14px;
    color: var(--v-text-muted);
}

/* ── Utility ── */
.v-text-center { text-align: center; }
.v-mt-32 { margin-top: 32px; }
.v-mt-48 { margin-top: 48px; }
.v-mb-48 { margin-bottom: 48px; }

.v-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.v-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.v-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.v-lightbox__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid var(--v-border);
    color: var(--v-gold);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Skip link for accessibility */
.v-skip {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10001;
    padding: 8px 16px;
    background: var(--v-gold);
    color: var(--v-bg);
    font-size: 14px;
}

.v-skip:focus { top: 16px; }

/* ── Cookie consent ── */
.v-cookie {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    max-width: 400px;
    transform: translateY(calc(100% + 40px));
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
}

.v-cookie.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.v-cookie__inner {
    background: var(--v-bg-card);
    border: 1px solid var(--v-border);
    padding: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.v-cookie__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--v-text-muted);
    margin-bottom: 20px;
}

.v-cookie__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .v-cookie {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }
}

/* ── Newsletter modal ── */
.v-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.v-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.v-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.v-modal__box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    background: var(--v-bg-card);
    border: 1px solid var(--v-border);
    padding: 48px 40px 40px;
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.v-modal__box--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 820px;
    padding: 0;
    text-align: left;
    overflow: hidden;
}

.v-modal__image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
}

.v-modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.v-modal__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(18, 20, 16, 0.7) 0%, transparent 60%);
    z-index: 1;
}

.v-modal__image-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    font-family: var(--v-font-display);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--v-gold);
}

.v-modal__body {
    padding: 48px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.v-modal__body .v-eyebrow {
    margin-bottom: 12px;
}

.v-modal__body .v-modal__title {
    text-align: left;
}

.v-modal__body .v-modal__desc {
    text-align: left;
}

@media (max-width: 700px) {
    .v-modal {
        padding: 16px;
    }
    
    .v-modal__box--split {
        grid-template-columns: 1fr;
        max-width: 420px;
    }
    
    .v-modal__image {
        min-height: 180px;
    }
    
    .v-modal__body {
        padding: 32px 24px 28px;
    }
    
    .v-modal__form {
        gap: 14px;
    }
    
    .v-modal__form .v-btn {
        min-height: 52px;
    }
}

.v-modal.is-open .v-modal__box {
    transform: translateY(0);
}

.v-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 44px;
    height: 44px;
    background: rgba(26, 29, 20, 0.9);
    border: 1px solid var(--v-gold);
    color: var(--v-gold);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--v-transition);
    border-radius: 4px;
    -webkit-tap-highlight-color: transparent;
}

.v-modal__close:hover,
.v-modal__close:active {
    background: var(--v-gold);
    color: var(--v-bg);
    border-color: var(--v-gold);
}

@media (max-width: 700px) {
    .v-modal__close {
        width: 48px;
        height: 48px;
        font-size: 32px;
        top: 12px;
        right: 12px;
    }
}

.v-modal__icon {
    width: 64px;
    margin: 0 auto 20px;
}

.v-modal__title {
    font-family: var(--v-font-display);
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #fff;
    margin-bottom: 12px;
}

.v-modal__desc {
    font-size: 16px;
    line-height: 1.75;
    color: var(--v-text-muted);
    margin-bottom: 28px;
}

.v-modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v-modal__skip {
    margin-top: 20px;
    padding: 12px 16px;
    background: none;
    border: none;
    color: var(--v-text-faint);
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    transition: color var(--v-transition);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.v-modal__skip:hover,
.v-modal__skip:active {
    color: var(--v-gold);
}

@media (max-width: 700px) {
    .v-modal__skip {
        padding: 16px;
        font-size: 15px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   Menu Downloads Section
   ═══════════════════════════════════════════════════════════ */

.v-menu-downloads {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.v-menu-download {
    background: var(--v-bg-card);
    border: 1px solid var(--v-border);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--v-transition);
}

.v-menu-download:hover {
    border-color: var(--v-gold);
    transform: translateY(-4px);
}

.v-menu-download__icon {
    font-size: 64px;
    color: var(--v-gold);
    margin-bottom: 24px;
}

.v-menu-download__title {
    font-family: var(--v-font-display);
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 24px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-menu-cta {
    margin-top: 56px;
    text-align: center;
}

.v-menu-cta__text {
    font-size: 20px;
    color: var(--v-text-muted);
    margin-bottom: 24px;
}

.v-menu-cta .v-btn {
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   Navigation Dropdown
   ═══════════════════════════════════════════════════════════ */

.v-nav__dropdown {
    position: relative;
}

.v-nav__dropdown .v-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.v-nav__dropdown .v-nav__link i {
    font-size: 10px;
    transition: transform var(--v-transition);
}

.v-nav__dropdown:hover .v-nav__link i {
    transform: rotate(180deg);
}

.v-nav__dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--v-bg-elevated);
    border: 1px solid var(--v-border);
    padding: 24px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--v-transition);
    z-index: 100;
    display: flex;
    gap: 32px;
    margin-top: 12px;
}

.v-nav__dropdown-content--single {
    min-width: 300px;
}

.v-nav__dropdown:hover .v-nav__dropdown-content {
    opacity: 1;
    visibility: visible;
}

.v-nav__dropdown-section {
    flex: 1;
    padding: 0 24px;
}

.v-nav__dropdown-section--full {
    border-right: none;
}

.v-nav__dropdown-section:first-child:not(:last-child) {
    border-right: 1px solid var(--v-border);
}

.v-nav__dropdown-section h4 {
    font-family: var(--v-font-display);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--v-gold);
    margin-bottom: 16px;
}

.v-nav__dropdown-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--v-text-muted);
    font-size: 15px;
    transition: all var(--v-transition);
}

.v-nav__dropdown-section a:hover {
    color: var(--v-gold);
    padding-left: 8px;
}

.v-nav__dropdown-section a i {
    font-size: 14px;
    color: var(--v-gold);
}

.v-mobile-nav__submenu {
    margin: 8px 0;
}

.v-mobile-nav__submenu-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    color: var(--v-gold);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--v-transition);
    text-align: left;
    font-family: var(--v-font-body);
}

.v-mobile-nav__submenu-toggle:hover {
    background: rgba(196, 169, 98, 0.1);
}

.v-mobile-nav__submenu-toggle i {
    font-size: 12px;
    transition: transform var(--v-transition);
}

.v-mobile-nav__submenu.is-open .v-mobile-nav__submenu-toggle i {
    transform: rotate(180deg);
}

.v-mobile-nav__submenu-list {
    list-style: none;
    padding-left: 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.v-mobile-nav__submenu.is-open .v-mobile-nav__submenu-list {
    max-height: 500px;
}

.v-mobile-nav__submenu-list .v-mobile-nav__link {
    padding: 14px 24px;
    font-size: 15px;
}

.v-mobile-nav__submenu-list .v-mobile-nav__link i {
    margin-right: 8px;
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════
   Hero Meta & Badge
   ═══════════════════════════════════════════════════════════ */

.v-hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
}

.v-hero-meta__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--v-text-muted);
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--v-border);
}

.v-hero-meta__item i {
    color: var(--v-gold);
    font-size: 18px;
}

.v-hero-badge {
    margin: 32px auto 0;
    padding: 24px 32px;
    background: rgba(196, 169, 98, 0.1);
    border: 2px solid var(--v-gold);
    text-align: center;
    max-width: 600px;
}

.v-hero-badge__text {
    font-size: 16px;
    color: var(--v-text-muted);
    margin-bottom: 8px;
}

.v-hero-badge__highlight {
    font-family: var(--v-font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--v-gold);
    letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   Feature Cards
   ═══════════════════════════════════════════════════════════ */

.v-features {
    display: grid;
    gap: 32px;
    margin-top: 48px;
}

.v-features--2col {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.v-features--3col {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.v-feature-card {
    background: var(--v-bg-card);
    border: 1px solid var(--v-border);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--v-transition);
}

.v-feature-card:hover {
    border-color: var(--v-gold);
}

.v-feature-card__icon {
    font-size: 48px;
    color: var(--v-gold);
    margin-bottom: 24px;
}

.v-feature-card__title {
    font-family: var(--v-font-display);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
}

.v-feature-card__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--v-text-muted);
}

/* ═══════════════════════════════════════════════════════════
   Pricing Cards
   ═══════════════════════════════════════════════════════════ */

.v-pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.v-pricing-card {
    background: var(--v-bg-card);
    border: 1px solid var(--v-border);
    transition: all var(--v-transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.v-pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--v-gold);
}

.v-pricing-card--featured {
    border-color: var(--v-gold);
    border-width: 2px;
}

.v-pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--v-gold);
    color: var(--v-bg);
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.v-pricing-card__header {
    padding: 40px 32px 32px;
    text-align: center;
    border-bottom: 1px solid var(--v-border);
}

.v-pricing-card__title {
    font-family: var(--v-font-display);
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
}

.v-pricing-card__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 24px 0;
}

.v-pricing-card__currency {
    font-size: 32px;
    color: var(--v-gold);
    margin-top: 8px;
    margin-right: 4px;
}

.v-pricing-card__amount {
    font-family: var(--v-font-display);
    font-size: 64px;
    font-weight: 400;
    color: var(--v-gold);
    line-height: 1;
}

.v-pricing-card__subtitle {
    font-size: 15px;
    color: var(--v-text-muted);
}

.v-pricing-card__content {
    padding: 32px;
    flex: 1;
}

.v-pricing-card__features {
    list-style: none;
}

.v-pricing-card__features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--v-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.v-pricing-card__features li i {
    color: var(--v-gold);
    font-size: 16px;
}

.v-pricing-card__footer {
    padding: 0 32px 40px;
}

/* ═══════════════════════════════════════════════════════════
   Info List
   ═══════════════════════════════════════════════════════════ */

.v-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.v-info-list__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.v-info-list__item i {
    font-size: 24px;
    color: var(--v-gold);
    flex-shrink: 0;
    margin-top: 4px;
}

.v-info-list__item strong {
    display: block;
    color: #fff;
    font-size: 18px;
    margin-bottom: 4px;
}

.v-info-list__item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--v-text-muted);
}

/* ═══════════════════════════════════════════════════════════
   Promo Details
   ═══════════════════════════════════════════════════════════ */

.v-promo-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.v-promo-details--reverse {
    direction: rtl;
}

.v-promo-details--reverse > * {
    direction: ltr;
}

.v-promo-details__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 900px) {
    .v-promo-details {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ═══════════════════════════════════════════════════════════
   Steps
   ═══════════════════════════════════════════════════════════ */

.v-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.v-step {
    text-align: center;
}

.v-step__number {
    width: 72px;
    height: 72px;
    border: 2px solid var(--v-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--v-font-display);
    font-size: 32px;
    color: var(--v-gold);
    margin: 0 auto 24px;
}

.v-step__title {
    font-family: var(--v-font-display);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}

.v-step__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--v-text-muted);
}

/* ═══════════════════════════════════════════════════════════
   Info Box
   ═══════════════════════════════════════════════════════════ */

.v-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.v-info-box__item {
    background: var(--v-bg-card);
    border: 1px solid var(--v-border);
    padding: 32px;
    display: flex;
    gap: 20px;
}

.v-info-box__item i {
    font-size: 32px;
    color: var(--v-gold);
    flex-shrink: 0;
}

.v-info-box__item h3 {
    font-family: var(--v-font-display);
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}

.v-info-box__item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--v-text-muted);
    margin-bottom: 8px;
}

.v-info-box__item p:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════════
   Promo Highlight
   ═══════════════════════════════════════════════════════════ */

.v-promo-highlight {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.v-promo-highlight__icon {
    font-size: 72px;
    color: var(--v-gold);
    margin-bottom: 32px;
}

/* ═══════════════════════════════════════════════════════════
   CTA Box
   ═══════════════════════════════════════════════════════════ */

.v-cta-box {
    background: var(--v-bg-card);
    border: 1px solid var(--v-gold);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.v-cta-box__content h3 {
    margin-bottom: 12px;
}

.v-cta-box__content p {
    font-size: 16px;
    color: var(--v-text-muted);
}

.v-cta-box__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 700px) {
    .v-cta-box {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
    }
    
    .v-cta-box__actions {
        width: 100%;
        flex-direction: column;
    }
    
    .v-cta-box__actions .v-btn {
        width: 100%;
    }
}

/* ═══════════════════════════════════════════════════════════
   Terms Note
   ═══════════════════════════════════════════════════════════ */

.v-terms-note {
    text-align: center;
    padding: 24px;
    background: rgba(196, 169, 98, 0.05);
    border: 1px solid var(--v-border);
}

/* ═══════════════════════════════════════════════════════════
   Utility Classes
   ═══════════════════════════════════════════════════════════ */

.v-text-gold {
    color: var(--v-gold);
}

.v-text-light {
    color: var(--v-cream);
}

.v-text-lg {
    font-size: 19px;
    line-height: 1.8;
}

.v-text-center {
    text-align: center;
}

.v-text-faint {
    color: var(--v-text-faint);
}

.v-mt-32 {
    margin-top: 32px;
}

.v-mt-48 {
    margin-top: 48px;
}

.v-mb-32 {
    margin-bottom: 32px;
}

.v-eyebrow--light {
    color: var(--v-gold-light);
}

.v-heading--light {
    color: var(--v-cream);
}

.v-lead--lg {
    font-size: clamp(19px, 2.2vw, 22px);
}

.v-btn--sm {
    padding: 10px 20px;
    font-size: 14px;
}

.v-btn--full {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════════
   Responsive Adjustments
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
    .v-nav__list {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .v-nav__list {
        gap: 16px;
        font-size: 15px;
    }
    
    .v-nav__cta {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .v-nav__dropdown-content {
        min-width: 280px;
        flex-direction: column;
    }
    
    .v-nav__dropdown-content--single {
        min-width: 260px;
    }
    
    .v-nav__dropdown-section:first-child:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--v-border);
        padding-bottom: 16px;
    }
    
    .v-pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .v-hero-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .v-promo-details {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .v-header__inner {
        padding: 0 20px;
    }
    
    .v-header__logo {
        max-width: 140px;
    }
    
    .v-mobile-nav {
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .v-header__logo {
        max-width: 120px;
    }
    
    .v-mobile-nav__link {
        font-size: 16px;
    }
    
    .v-hero-meta__item {
        font-size: 14px;
        padding: 10px 16px;
    }
}

@media (max-width: 600px) {
    .v-menu-downloads {
        grid-template-columns: 1fr;
    }
    
    .v-features {
        grid-template-columns: 1fr;
    }
    
    .v-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .v-info-box {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════════════════
   Button Group Centering Fix & Page Hero Content
   ═══════════════════════════════════════════════════════════ */

.v-page-hero__content {
    text-align: center;
}

.v-page-hero__content .v-btn-group {
    justify-content: center;
}

.v-promo-details__content .v-btn-group {
    justify-content: flex-start;
}

.v-section__header + .v-btn-group,
.v-menu-cta .v-btn-group {
    justify-content: center;
}

@media (max-width: 900px) {
    .v-promo-details__content .v-btn-group {
        justify-content: center;
    }
}


/* ═══════════════════════════════════════════════════════════
   Offers Grid - Home Page
   ═══════════════════════════════════════════════════════════ */

.v-offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-top: 56px;
}

.v-offer-card {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border: 1px solid var(--v-border);
    transition: all var(--v-transition);
    cursor: pointer;
}

.v-offer-card:hover {
    border-color: var(--v-gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(196, 169, 98, 0.2);
}

.v-offer-card__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.v-offer-card__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.v-offer-card:hover .v-offer-card__bg img {
    transform: scale(1.08);
}

.v-offer-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(18, 20, 16, 0.4) 0%,
        rgba(18, 20, 16, 0.75) 50%,
        rgba(18, 20, 16, 0.95) 100%
    );
    z-index: 1;
}

.v-offer-card__content {
    position: relative;
    z-index: 2;
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: center;
}

.v-offer-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--v-gold);
    border-radius: 50%;
    background: rgba(196, 169, 98, 0.1);
    transition: all var(--v-transition);
}

.v-offer-card:hover .v-offer-card__icon {
    background: var(--v-gold);
    transform: scale(1.1);
}

.v-offer-card__icon i {
    font-size: 36px;
    color: var(--v-gold);
    transition: color var(--v-transition);
}

.v-offer-card:hover .v-offer-card__icon i {
    color: var(--v-bg);
}

.v-offer-card__title {
    font-family: var(--v-font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.v-offer-card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--v-text-muted);
    margin-bottom: 24px;
    min-height: 80px;
}

.v-offer-card__content .v-btn {
    margin: 0 auto;
    min-width: 160px;
    gap: 8px;
}

.v-offer-card__content .v-btn i {
    font-size: 12px;
    transition: transform var(--v-transition);
}

.v-offer-card:hover .v-offer-card__content .v-btn i {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .v-offers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
    
    .v-offer-card {
        min-height: 440px;
    }
}

@media (max-width: 768px) {
    .v-offers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .v-offer-card {
        min-height: 420px;
    }
    
    .v-offer-card__content {
        padding: 32px 24px;
    }
    
    .v-offer-card__icon {
        width: 70px;
        height: 70px;
    }
    
    .v-offer-card__icon i {
        font-size: 32px;
    }
    
    .v-offer-card__desc {
        min-height: 70px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .v-offer-card {
        min-height: 380px;
    }
    
    .v-offer-card__content {
        padding: 28px 20px;
    }
    
    .v-offer-card__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .v-offer-card__icon i {
        font-size: 28px;
    }
}

