/* ============================================
   VINOVENTO — Premium Restaurant Website
   ============================================ */

/* --- Variables --- */
:root {
    --color-bg: #1a1714;
    --color-bg-alt: #0f0d0b;
    --color-surface: #242019;
    --color-surface-light: #2e2a23;
    --color-text: #e8e0d4;
    --color-text-muted: #a89e8f;
    --color-accent: #8b3a3a;
    --color-accent-light: #a6504f;
    --color-beige: #d4c5a9;
    --color-gold: #c4a96a;
    --color-cream: #f5efe6;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-beige);
    text-decoration: none;
    transition: color 0.3s var(--ease);
}

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

/* --- Utility --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section__label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

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

.section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-cream);
    margin-bottom: 20px;
}

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

.section__desc {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease);
    text-align: center;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-cream);
    box-shadow: 0 4px 24px rgba(139, 58, 58, 0.25);
}

.btn--primary:hover {
    background: var(--color-accent-light);
    color: #fff;
    box-shadow: 0 8px 32px rgba(139, 58, 58, 0.4);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--color-cream);
    border: 1px solid rgba(212, 197, 169, 0.4);
}

.btn--outline:hover {
    background: rgba(212, 197, 169, 0.1);
    border-color: var(--color-beige);
    color: #fff;
    transform: translateY(-2px);
}

.btn--outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-cream);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.nav--scrolled {
    background: rgba(15, 13, 11, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: height 0.4s var(--ease);
}

.nav--scrolled .nav__logo-img {
    height: 32px;
}

.nav__links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 40px;
}

.nav__links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s var(--ease);
}

.nav__links a:hover {
    color: #fff;
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    padding: 10px 24px;
    border: 1px solid rgba(196, 169, 106, 0.5);
    border-radius: 50px;
}

.nav__cta::after {
    display: none !important;
}

.nav__cta:hover {
    background: rgba(196, 169, 106, 0.1);
    border-color: var(--color-gold);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-cream);
    transition: all 0.3s var(--ease);
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('1.jpeg') center/cover no-repeat;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 13, 11, 0.5) 0%,
        rgba(15, 13, 11, 0.3) 40%,
        rgba(15, 13, 11, 0.6) 100%
    );
}

.hero__content {
    position: relative;
    text-align: center;
    padding: 0 24px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    color: #fff;
    line-height: 1;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-family: var(--font-sans);
    font-size: clamp(0.9rem, 2vw, 1.15rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 48px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollLine 2s var(--ease) infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- About --- */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.about__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(196, 169, 106, 0.2);
    border-radius: 4px;
    pointer-events: none;
}

.about__image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.about__image:hover img {
    transform: scale(1.03);
}

.about__content p {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 1.02rem;
}

.about__stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.about__stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* --- Menu --- */
.menu {
    background: var(--color-bg-alt);
    padding-top: 140px;
    padding-bottom: 140px;
}

.menu .section__header {
    max-width: 640px;
    margin-bottom: 72px;
}

.menu .section__title {
    letter-spacing: 0.02em;
}

.menu .section__desc {
    font-size: 1rem;
    line-height: 1.85;
    margin-top: 8px;
}

.menu__categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.menu__cat {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.menu__cat:hover {
    border-color: rgba(196, 169, 106, 0.35);
    color: var(--color-cream);
    background: rgba(196, 169, 106, 0.04);
}

.menu__cat.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 20px rgba(139, 58, 58, 0.2);
}

.menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 36px;
}

.menu__item {
    background: var(--color-surface);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease);
}

.menu__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    border-color: rgba(196, 169, 106, 0.1);
}

.menu__item-img {
    display: none;
}

.menu__item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

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

.menu__item-info {
    padding: 28px 28px 32px;
}

.menu__item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
    gap: 16px;
}

.menu__item-header h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-cream);
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.menu__price {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu__item-info p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.menu__item-info .menu__desc-en {
    font-size: 0.74rem;
    color: var(--color-text-muted);
    opacity: 0.45;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.015em;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(196, 169, 106, 0.08);
    line-height: 1.6;
}

.menu__cta {
    text-align: center;
    margin-top: 72px;
}

/* --- Menu CTA Button --- */
.btn--menu-expand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 18px 40px;
    border-radius: 50px;
    border: 1px solid rgba(196, 169, 106, 0.3);
    background: transparent;
    color: var(--color-beige);
    cursor: pointer;
    transition: all 0.4s var(--ease);
}

.btn--menu-expand:hover {
    background: rgba(196, 169, 106, 0.08);
    border-color: var(--color-gold);
    color: var(--color-cream);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(196, 169, 106, 0.1);
}

.btn--menu-expand__icon {
    transition: transform 0.3s var(--ease);
}

.btn--menu-expand:hover .btn--menu-expand__icon {
    transform: translateY(3px);
}

/* --- Full Menu Overlay --- */
.fullmenu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
}

.fullmenu.open {
    pointer-events: all;
    visibility: visible;
}

.fullmenu__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.fullmenu.open .fullmenu__backdrop {
    opacity: 1;
}

.fullmenu__panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.96);
    width: calc(100% - 64px);
    max-width: 720px;
    max-height: calc(100% - 64px);
    background: var(--color-bg);
    border: 1px solid rgba(196, 169, 106, 0.1);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease-out);
    display: flex;
    flex-direction: column;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
}

.fullmenu.open .fullmenu__panel {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.fullmenu__header {
    flex-shrink: 0;
    padding: 32px 48px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fullmenu__header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.fullmenu__label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.fullmenu__title {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 400;
    color: var(--color-cream);
    letter-spacing: 0.02em;
}

.fullmenu__tagline {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-text-muted);
    letter-spacing: 0.04em;
    margin-top: 6px;
}

.fullmenu__buon {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-gold);
    text-align: center;
    margin-top: 48px;
    letter-spacing: 0.04em;
}

.fullmenu__close {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
    margin-top: 4px;
}

.fullmenu__close:hover {
    border-color: var(--color-gold);
    color: var(--color-cream);
    transform: rotate(90deg);
}

.fullmenu__body {
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: rgba(196, 169, 106, 0.15) transparent;
}

.fullmenu__body::-webkit-scrollbar {
    width: 4px;
}

.fullmenu__body::-webkit-scrollbar-track {
    background: transparent;
}

.fullmenu__body::-webkit-scrollbar-thumb {
    background: rgba(196, 169, 106, 0.15);
    border-radius: 4px;
}

.fullmenu__inner {
    padding: 40px 48px 80px;
}

/* Section headers */
.fullmenu__section {
    margin-bottom: 56px;
}

.fullmenu__section:last-child {
    margin-bottom: 0;
}

.fullmenu__section-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 0;
}

.fullmenu__section-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-cream);
    letter-spacing: 0.02em;
}

.fullmenu__section-sub {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    opacity: 0.6;
}

.fullmenu__section-line {
    height: 1px;
    background: linear-gradient(to right, var(--color-gold), transparent);
    opacity: 0.2;
    margin: 16px 0 28px;
}

/* Dish items */
.fullmenu__dish {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.3s var(--ease);
}

.fullmenu__dish:last-child {
    border-bottom: none;
}

.fullmenu__dish:hover {
    background: rgba(196, 169, 106, 0.02);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 6px;
}

.fullmenu__dish-top {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.fullmenu__dish-name {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    font-weight: 500;
    color: var(--color-cream);
    letter-spacing: 0.01em;
    white-space: nowrap;
    flex-shrink: 0;
}

.fullmenu__dish-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(196, 169, 106, 0.15);
    min-width: 20px;
    position: relative;
    top: -4px;
}

.fullmenu__dish-price {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 0;
}

.fullmenu__dish-desc {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.fullmenu__dish-en {
    font-family: var(--font-sans);
    font-size: 0.73rem;
    font-weight: 300;
    font-style: italic;
    color: var(--color-text-muted);
    opacity: 0.4;
    line-height: 1.55;
    margin-top: 5px;
    letter-spacing: 0.01em;
}

/* Sides grid */
.fullmenu__sides-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
}

.fullmenu__side {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 8px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fullmenu__side-name {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-cream);
}

.fullmenu__side-detail {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 300;
    color: var(--color-text-muted);
    opacity: 0.6;
    font-style: italic;
}

.fullmenu__side-price {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-left: auto;
}

/* Sauces */
.fullmenu__sauces {
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--color-text-muted);
    line-height: 1.8;
    letter-spacing: 0.02em;
}

.fullmenu__section--compact {
    margin-bottom: 48px;
}

/* Staggered entrance for dishes */
.fullmenu.open .fullmenu__dish {
    animation: dishFadeIn 0.4s var(--ease-out) backwards;
}

.fullmenu.open .fullmenu__section:nth-child(1) .fullmenu__dish:nth-child(1) { animation-delay: 0.15s; }
.fullmenu.open .fullmenu__section:nth-child(1) .fullmenu__dish:nth-child(2) { animation-delay: 0.2s; }
.fullmenu.open .fullmenu__section:nth-child(1) .fullmenu__dish:nth-child(3) { animation-delay: 0.25s; }
.fullmenu.open .fullmenu__section:nth-child(1) .fullmenu__dish:nth-child(4) { animation-delay: 0.3s; }
.fullmenu.open .fullmenu__section:nth-child(1) .fullmenu__dish:nth-child(5) { animation-delay: 0.35s; }

@keyframes dishFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Full menu responsive */
@media (max-width: 768px) {
    .fullmenu__panel {
        max-width: 100%;
        width: calc(100% - 32px);
        max-height: calc(100% - 32px);
        border-radius: 10px;
    }

    .fullmenu__header {
        padding: 24px 24px 20px;
    }

    .fullmenu__inner {
        padding: 28px 24px 64px;
    }

    .fullmenu__title {
        font-size: 1.8rem;
    }

    .fullmenu__sides-grid {
        grid-template-columns: 1fr;
    }

    .fullmenu__dish-name {
        font-size: 0.98rem;
    }

    .fullmenu__section {
        margin-bottom: 44px;
    }
}

@media (max-width: 480px) {
    .fullmenu__panel {
        width: calc(100% - 24px);
        max-height: calc(100% - 24px);
    }

    .fullmenu__header {
        padding: 20px 18px 16px;
    }

    .fullmenu__inner {
        padding: 24px 18px 56px;
    }

    .fullmenu__close {
        width: 38px;
        height: 38px;
    }
}

/* --- Wine & Experience --- */
.wine-section {
    position: relative;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.wine-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 13, 11, 0.95), rgba(15, 13, 11, 0.7));
}

.wine-section__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.wine-section__text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.wine-section__content .btn {
    margin-top: 20px;
}

.wine-section__image {
    border-radius: 4px;
    overflow: hidden;
}

.wine-section__image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 4px;
}

/* --- Gallery --- */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

.gallery__item:hover img {
    transform: scale(1.07);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 13, 11, 0.7) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #fff;
    font-weight: 400;
}

/* --- Reservation --- */
.reservation {
    background: var(--color-bg-alt);
}

.reservation__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.reservation__content p {
    color: var(--color-text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.reservation__contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reservation__contact-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.reservation__contact a {
    font-size: 1.1rem;
    color: var(--color-cream);
}

.reservation__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-cream);
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    outline: none;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
    -webkit-appearance: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
    color: rgba(168, 158, 143, 0.5);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    border-color: var(--color-gold);
    background: var(--color-surface-light);
}

.form__group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23a89e8f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form__group select option {
    background: var(--color-surface);
    color: var(--color-cream);
}

.form__group textarea {
    resize: vertical;
    min-height: 80px;
}

/* --- Footer --- */
.footer {
    background: var(--color-bg-alt);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 40px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__logo {
    height: 36px;
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.footer__tagline {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.footer__col h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.footer__col p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.footer__social {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-text-muted);
    transition: all 0.3s var(--ease);
}

.footer__social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.footer__phone {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer__bottom {
    padding-top: 32px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(168, 158, 143, 0.5);
    letter-spacing: 0.05em;
}

/* --- Reveal Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal--left {
    transform: translateX(-40px);
}

.reveal--right {
    transform: translateX(40px);
}

.reveal--delay-1 {
    transition-delay: 0.15s;
}

.reveal--delay-2 {
    transition-delay: 0.3s;
}

.reveal.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .section {
        padding: 80px 0;
    }

    .about__grid,
    .wine-section__grid,
    .reservation__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image img {
        height: 400px;
    }

    .wine-section__image img {
        height: 400px;
    }

    .menu__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 28px;
    }

    .menu {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .gallery__grid {
        grid-auto-rows: 240px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 13, 11, 0.97);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease);
    }

    .nav__links.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav__links a {
        font-size: 1.1rem;
        letter-spacing: 0.15em;
    }

    .nav__links a::after {
        display: none;
    }

    .nav__toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px);
    }

    .nav__toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero__title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
    }

    .hero__subtitle {
        font-size: 0.82rem;
    }

    .menu__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .menu {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .menu__categories {
        margin-bottom: 40px;
        gap: 8px;
    }

    .menu__item-info {
        padding: 22px 22px 26px;
    }

    .menu__item-img {
        height: 200px;
    }

    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }

    .form__row {
        grid-template-columns: 1fr;
    }

    .about__stats {
        gap: 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .section {
        padding: 64px 0;
    }

    .section__header {
        margin-bottom: 40px;
    }

    .hero__scroll {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.8rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .menu__categories {
        gap: 6px;
    }

    .menu__cat {
        padding: 8px 16px;
        font-size: 0.72rem;
    }
}
