:root {
    --black: #050505;
    --dark: #0b0a09;
    --gold: #d4af37;
    --gold2: #a97821;
    --cream: #f5e8c7;
    --muted: #b7a985;
    --burg: #3b0a0a;
    --line: rgba(212, 175, 55, .35)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--black);
    color: var(--cream);
    font-family: Inter, system-ui, sans-serif
}

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

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1280px, 92%);
    margin: auto
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    height: 86px;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 48px;
    background: linear-gradient(#050505d9, #05050566, transparent);
    border-bottom: 1px solid rgba(212, 175, 55, .08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.brand img {
    width: 90px
}

.nav {
    display: flex;
    gap: 34px;
    margin: auto
}

.nav a {
    font-family: Cinzel, serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.8px;
    color: #e9d69b;
    opacity: .9
}

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

.menu-toggle {
    display: none
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 30px;
    border: 1px solid var(--line);
    font-family: Cinzel, serif;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.3px;
    transition: .3s
}

.btn:hover {
    box-shadow: 0 0 28px rgba(212, 175, 55, .28);
    transform: translateY(-2px)
}

.btn-gold {
    background: linear-gradient(135deg, #e4bf59, #8f5d15);
    color: white;
    border: 0;
    box-shadow:
        0 0 20px rgba(212, 175, 55, .25);
}

.btn-outline {
    background: rgba(5, 5, 5, .25);
    color: var(--cream)
}

.hero {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: grid;
    place-items: center;
    text-align: center
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 0, 0, .25), rgba(0, 0, 0, .78) 70%), linear-gradient(rgba(10, 0, 15, .25), rgba(0, 0, 0, .55))
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1
}

.hero-logo {
    width: min(460px, 72vw);
    margin: 0 auto 14px
}

.eyebrow {
    font-family: Cinzel, serif;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 13px
}

.hero h1,
.hero h2,
.copy h2,
.center h2 {
    font-family: Cinzel, serif;
    color: var(--gold);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.05
}

.hero h1 {
    font-size: clamp(54px, 8vw, 124px)
}

.hero h2 {
    font-size: clamp(24px, 3vw, 48px);
    letter-spacing: 10px
}


.hero img {
    width: min(600px, 80vw);
    height: auto;
}

.tagline {
    font-family: Cinzel, serif;
    font-size: clamp(18px, 2vw, 28px);
    color: #e7c45d;
    letter-spacing: 2px;
    margin: 30px 0;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin-top: 40px
}

.scroll-indicator {
    display: none;
    position: absolute;
    bottom: 36px;
    width: 18px;
    height: 34px;
    border: 1px solid var(--gold);
    border-radius: 12px;
    left: 50%;
    transform: translateX(-50%);
}

.section {
    padding: 92px 0;
    border-top: 1px solid rgba(212, 175, 55, .12);
    background: linear-gradient(90deg, #090909, #11100f, #090909)
}

.split {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
    align-items: center
}

.copy h2,
.center h2 {
    font-size: clamp(32px, 4vw, 56px);
    margin: 10px 0 24px
}

.copy p {
    color: var(--muted);
    line-height: 1.8;
    max-width: 520px
}

.jp {
    font-size: 14px
}

.image-frame,
.venue-strip img,
.food-grid img {
    border: 1px solid var(--line);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .8), 0 20px 80px rgba(0, 0, 0, .55);
    overflow: hidden
}

.image-frame img {
    aspect-ratio: 16/9;
    object-fit: cover
}

.image-frame img,
.venue-strip img,
.food-grid img {
    transition: .5s ease;
}

.image-frame:hover img,
.venue-strip img:hover,
.food-grid img:hover {
    transform: scale(1.05);
}

.features {
    padding: 36px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #090909
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.feature {
    padding: 36px;
    text-align: center;
    border-left: 1px solid rgba(212, 175, 55, .18)
}

.feature:last-child {
    border-right: 1px solid rgba(212, 175, 55, .18)
}

.feature img {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    object-fit: contain
}

.feature h3,
.event-card h3,
.reserve-card h3 {
    font-family: Cinzel, serif;
    color: var(--gold);
    text-transform: uppercase
}

.feature p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7
}

.feature a {
    color: var(--gold);
    font-family: Cinzel, serif;
    font-size: 12px
}

.center {
    text-align: center
}

.venue-strip {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 8px;
    margin: 36px auto 24px
}

.venue-strip img {
    height: 300px;
    width: 100%;
    object-fit: cover
}

.menu-highlight {
    background: #090909
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.food-grid img {
    height: 190px;
    width: 100%;
    object-fit: cover
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 34px
}

.event-card {
    height: 210px;
    background-size: cover;
    background-position: center;
    position: relative;
    border: 1px solid var(--line);
    display: flex;
    align-items: end;
    overflow: hidden
}

.event-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, .2),
            rgba(0, 0, 0, .85))
}

.event-card div {
    position: relative;
    padding: 24px
}

.event-card p {
    color: #e8d29a
}

.vip-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr .7fr;
    gap: 36px;
    align-items: center;
    padding: 36px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(90, 56, 12, .25), rgba(0, 0, 0, .8));
    box-shadow:
        0 0 40px rgba(212, 175, 55, .08);
}

.vip-box img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    border: 1px solid var(--line)
}

.vip-box h2 {
    font-size: clamp(28px, 3vw, 42px);
}

.vip-box ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    color: var(--muted);
    padding-left: 18px
}

.reserve-card {
    text-align: center;
    border: 1px solid var(--line);
    padding: 40px 24px;
    background: rgba(0, 0, 0, .35)
}

.reserve-card span {
    font-size: 32px;
    color: var(--gold)
}

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

.testimonial-grid blockquote {
    margin: 0;
    padding: 32px;
    border: 1px solid var(--line);
    color: var(--muted);
    line-height: 1.7
}

.testimonial-grid blockquote:before {
    content: '“';
    display: block;
    color: var(--gold);
    font-size: 44px;
    line-height: .6
}

.testimonial-grid cite {
    display: block;
    color: var(--gold);
    margin-top: 14px;
    font-style: normal
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.social-links a {
    border: none;
    padding: 0;
    min-width: auto;
}

.social-links img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: .3s ease;
    filter:
        drop-shadow(0 0 8px rgba(212, 175, 55, .15));
}

.social-links img:hover {
    transform: translateY(-6px) scale(1.08);
    filter:
        drop-shadow(0 0 18px rgba(212, 175, 55, .45));
}

section {
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(212, 175, 55, .6),
            transparent);
    transform: translateX(-50%);
}

.footer {
    padding: 64px 0 24px;
    background: #050505;
    border-top: 1px solid var(--line)
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .8fr 1fr 1.4fr;
    gap: 54px
}

.footer-logo {
    width: 190px;
    margin-bottom: 18px
}

.footer h4 {
    font-family: Cinzel, serif;
    color: var(--gold);
    text-transform: uppercase
}

.footer p,
.footer a {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8
}

.copyright {
    text-align: center;
    color: #7c6f52;
    border-top: 1px solid rgba(212, 175, 55, .12);
    padding-top: 22px;
    margin-top: 44px;
    font-size: 13px
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease
}

.reveal.show {
    opacity: 1;
    transform: none
}

.follow-us {
    display: flex;
    flex-direction: column;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 18px;
    margin-top: 12px;
}

@media(max-width:900px) {
    .site-header {
        height: 74px;
        padding: 0 18px
    }

    .brand img {
        width: 64px
    }

    .desktop-only {
        display: none
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        background: none;
        color: var(--gold);
        border: 1px solid var(--line);
        font-size: 24px
    }

    .nav {
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: #050505;
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 18px
    }

    .nav.open {
        display: flex
    }

    .nav a {
        padding: 14px;
        border-bottom: 1px solid rgba(212, 175, 55, .15)
    }

    .hero {
        min-height: 100vh;
        padding-top: 90px;
        background-position: center top;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero img {
        width: min(310px, 82vw);
        height: auto;
        margin: 0 auto;
    }

    .tagline {
        font-size: 18px;
        line-height: 1.5;
        margin-top: 28px;
    }

    .hero-actions {
        width: 100%;
        margin-top: 32px;
        gap: 14px;
    }

    .hero-actions .btn {
        width: 100%;
        border-radius: 0;
    }

    .hero-actions .btn-outline {
        display: none;
    }

    .hero h1 {
        font-size: 48px
    }

    .hero h2 {
        letter-spacing: 5px
    }

    .hero-actions,
    .split,
    .event-grid,
    .vip-box,
    .testimonial-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        display: grid
    }

    .section {
        padding: 64px 0
    }

    .feature-grid {
        grid-template-columns: 1fr
    }

    .feature {
        border: 0;
        border-bottom: 1px solid rgba(212, 175, 55, .18)
    }

    .venue-strip {
        grid-template-columns: 1fr
    }

    .venue-strip img {
        height: 230px
    }

    .food-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        gap: 28px
    }

    .reverse-mobile .copy {
        order: -1
    }

    .social-links {
        gap: 22px;
    }

    .social-links img {
        width: 42px;
        height: 42px;
    }
}