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

:root {
    --forest: #1a3c2a;
    --forest-light: #2d5a3f;
    --forest-dark: #0f2419;
    --cream: #f5f0e8;
    --cream-light: #faf7f2;
    --cream-dark: #e8e0d0;
    --gold: #c8a45e;
    --gold-light: #d4b76a;
    --charcoal: #1a1a1a;
    --text: #2c2c2c;
    --text-light: #5a5a5a;
    --text-muted: #8a8a8a;
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(26, 60, 42, 0.97);
    padding: 12px 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--cream);
    font-family: var(--serif);
}

.logo-mark {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1;
    color: var(--gold);
}

.logo-text {
    font-size: 1.1rem;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.logo-accent {
    color: var(--gold);
    font-style: italic;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-cta {
    background: var(--gold);
    color: var(--forest-dark);
    padding: 10px 22px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition);
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* ── HERO ── */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/5864548/pexels-photo-5864548.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 36, 25, 0.82) 0%,
        rgba(26, 60, 42, 0.70) 50%,
        rgba(15, 36, 25, 0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 120px 24px 160px;
    max-width: 820px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200, 164, 94, 0.4);
    padding: 8px 20px;
    margin-bottom: 32px;
    border-radius: 2px;
}

.hero-headline {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--cream);
    margin-bottom: 28px;
}

.headline-line {
    display: block;
}

.headline-accent {
    color: var(--gold);
    font-style: italic;
}

.hero-sub {
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.75);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.8;
    font-weight: 300;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--forest-dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 164, 94, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(245, 240, 232, 0.4);
}

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

/* ── HERO STAT CARDS ── */
.hero-cards {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0 24px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(245, 240, 232, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(245, 240, 232, 0.15);
    border-radius: 4px;
    padding: 24px 32px;
    text-align: center;
    min-width: 140px;
    transition: var(--transition);
}

.stat-card:hover {
    background: rgba(245, 240, 232, 0.16);
    transform: translateY(-4px);
    border-color: rgba(200, 164, 94, 0.3);
}

.stat-icon {
    color: var(--gold);
    margin-bottom: 10px;
    opacity: 0.9;
}

.stat-number {
    font-family: var(--serif);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
}

/* ── FEATURES ── */
.features {
    padding: 100px 0;
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--cream-light);
    border: 1px solid var(--cream-dark);
    border-radius: 4px;
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(26, 60, 42, 0.1);
    border-color: var(--forest-light);
}

.feature-icon {
    color: var(--forest);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 14px;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ── SECTION HEADERS ── */
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

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

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
}

/* ── MENU ── */
.menu-preview {
    padding: 100px 0;
    background: var(--forest-dark);
}

.menu-preview .section-header {
    text-align: center;
    margin-bottom: 64px;
}

.menu-preview .section-title {
    color: var(--cream);
}

.menu-preview .section-desc {
    color: rgba(245, 240, 232, 0.6);
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.menu-item {
    display: flex;
    background: rgba(245, 240, 232, 0.06);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(245, 240, 232, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.2);
}

.menu-item-img {
    flex: 0 0 160px;
    overflow: hidden;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.08);
}

.menu-item-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.menu-item-header h4 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cream);
}

.menu-item-tag {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(200, 164, 94, 0.4);
    padding: 3px 10px;
    border-radius: 2px;
}

.menu-item-content p {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
}

.menu-cta {
    text-align: center;
}

.menu-cta .btn {
    margin-bottom: 16px;
}

.menu-note {
    display: block;
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.4);
    font-style: italic;
}

/* ── ABOUT ── */
.about {
    padding: 100px 0;
    background: var(--cream);
}

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

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 4px;
}

.about-image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.4;
}

.about-content {
    padding: 20px 0;
}

.about-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--cream-dark);
}

.about-stat {
    text-align: center;
}

.about-stat-number {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.about-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-dark);
}

/* ── DRINKS ── */
.drinks {
    padding: 100px 0;
    background: var(--cream-light);
}

.drinks-header {
    text-align: center;
    margin-bottom: 64px;
}

.drinks-header .section-desc {
    margin: 0 auto;
}

.drinks-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.drink-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.drink-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.drink-card:hover img {
    transform: scale(1.1);
}

.drink-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 36, 25, 0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 18px;
    transition: var(--transition);
}

.drink-card:hover .drink-card-overlay {
    background: linear-gradient(to top, rgba(15, 36, 25, 0.95) 0%, rgba(15, 36, 25, 0.3) 100%);
}

.drink-card-overlay h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 6px;
}

.drink-card-overlay p {
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.5;
}

/* ── VISIT ── */
.visit {
    padding: 100px 0;
    background: var(--forest-dark);
}

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

.visit .section-title {
    color: var(--cream);
}

.visit-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visit-detail {
    display: flex;
    gap: 16px;
}

.visit-detail-icon {
    flex: 0 0 44px;
    height: 44px;
    background: rgba(200, 164, 94, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.visit-detail strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 0.92rem;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.7;
}

.visit-detail a {
    color: rgba(245, 240, 232, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.visit-map {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 6/5;
}

.visit-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--forest-dark);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 0 rgba(200, 164, 94, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 0 0 16px rgba(200, 164, 94, 0); }
}

/* ── FOOTER ── */
.footer {
    background: #0a1a12;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(245, 240, 232, 0.5);
    margin-top: 16px;
    max-width: 260px;
    line-height: 1.7;
}

.footer-links,
.footer-contact,
.footer-hours {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links strong,
.footer-contact strong,
.footer-hours strong {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.footer-links a {
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-contact p,
.footer-hours p {
    font-size: 0.88rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.7;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(245, 240, 232, 0.3);
}

/* ── SCROLL TO TOP ── */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--forest);
    color: var(--gold);
    border: 1px solid rgba(200, 164, 94, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--forest-dark);
}

/* ── ANIMATIONS ── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .drinks-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--forest-dark);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-links.open {
        right: 0;
    }
    .hero-cards {
        position: relative;
        bottom: auto;
        flex-direction: column;
        align-items: center;
        margin-top: 48px;
        padding-bottom: 60px;
    }
    .stat-card {
        width: 100%;
        max-width: 280px;
    }
    .hero-content {
        padding: 100px 24px 40px;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .menu-item {
        flex-direction: column;
    }
    .menu-item-img {
        flex: none;
        height: 200px;
    }
    .about-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-image {
        order: -1;
    }
    .about-image img {
        height: 360px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .drinks-showcase {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }
    .drinks-showcase {
        grid-template-columns: 1fr;
    }
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    .about-stat-divider {
        width: 40px;
        height: 1px;
    }
}
