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

:root {
    --bg: #07111f;
    --bg2: #0c192b;
    --card: rgba(11, 25, 43, 0.9);
    --card2: rgba(15, 32, 54, 0.94);
    --gold: #d6a95a;
    --gold2: #f0cf87;
    --text: #fff7ec;
    --muted: #b9c0cc;
    --border: rgba(214, 169, 90, .28);
    --shadow: 0 22px 80px rgba(0,0,0,.35);
    --radius: 24px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(214,169,90,.16), transparent 28rem),
        radial-gradient(circle at 80% 20%, rgba(58,95,140,.2), transparent 28rem),
        var(--bg);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

input, textarea, select, button {
    font: inherit;
}

.site-shell {
    width: min(1180px, 100%);
    margin: 0 auto;
    overflow: hidden;
    background: rgba(7, 17, 31, .65);
    border-left: 1px solid rgba(255,255,255,.04);
    border-right: 1px solid rgba(255,255,255,.04);
}

.hero {
    min-height: 720px;
    position: relative;
    background:
        linear-gradient(180deg, rgba(7,17,31,.45), rgba(7,17,31,.98)),
        var(--hero-image) center/cover;
}

.hero::after,
.sub-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, rgba(240,207,135,.7) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: .13;
}

.sub-hero {
    position: relative;
    min-height: 420px;
    background:
        linear-gradient(180deg, rgba(7,17,31,.55), rgba(7,17,31,.98)),
        var(--sub-image, radial-gradient(circle at 30% 20%, rgba(214,169,90,.22), transparent 34rem)) center/cover;
}

.topbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px clamp(18px, 4vw, 58px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.brand-star {
    color: var(--gold2);
    font-size: 31px;
    line-height: 1;
}

.brand strong {
    display: block;
    color: var(--gold2);
    font-family: Cinzel, serif;
    font-size: clamp(18px, 3vw, 30px);
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .33em;
    margin-top: 3px;
}

.desktop-nav {
    display: flex;
    gap: 22px;
    color: var(--muted);
    font-weight: 800;
    font-size: 14px;
}

.desktop-nav a:hover { color: var(--gold2); }

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 44px;
    height: 44px;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 7px 0;
    background: var(--gold2);
}

.mobile-drawer {
    position: relative;
    z-index: 3;
    margin: 0 18px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(7,17,31,.94);
}

.mobile-drawer a {
    display: block;
    padding: 14px;
    color: var(--text);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.mobile-drawer a:last-child { border-bottom: 0; }

.hero-content,
.sub-hero-content {
    position: relative;
    z-index: 2;
    width: min(780px, calc(100% - 36px));
    margin: 0 auto;
    text-align: center;
}

.hero-content { padding: 110px 0 130px; }
.sub-hero-content { padding: 82px 0 110px; }

.eyebrow,
.section-label {
    margin: 0 0 12px;
    color: var(--gold2);
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 900;
    font-size: 12px;
}

h1, h2, h3 { margin: 0; line-height: 1.08; }
h1, h2 { font-family: Cinzel, serif; }

h1 {
    font-size: clamp(44px, 8vw, 86px);
    text-wrap: balance;
}

.hero-content > p:not(.eyebrow),
.sub-hero-content > p:not(.eyebrow) {
    width: min(600px, 100%);
    margin: 24px auto 32px;
    color: #f3eadc;
    font-size: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(240,207,135,.7);
}

.btn.primary {
    background: linear-gradient(135deg, var(--gold), #a66f27);
    color: #120d06;
    border: 0;
    box-shadow: 0 18px 36px rgba(0,0,0,.28);
}

.btn.outline {
    color: var(--gold2);
    background: rgba(214,169,90,.05);
}

.btn.full { width: 100%; }

.quick-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(7,17,31,.82);
}

.quick-links a {
    display: grid;
    gap: 8px;
    place-items: center;
    min-height: 104px;
    color: var(--text);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
    border-right: 1px solid var(--border);
}

.quick-links a:last-child { border-right: 0; }
.quick-links span { color: var(--gold2); font-size: 26px; }

.section {
    padding: clamp(34px, 6vw, 72px) clamp(18px, 4vw, 58px);
    border-bottom: 1px solid rgba(214,169,90,.16);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 430px) 1fr;
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
}

.image-card,
.info-card,
.dish-card,
.event-card,
.menu-row {
    border: 1px solid var(--border);
    background: var(--card);
    box-shadow: var(--shadow);
}

.image-card {
    overflow: hidden;
    border-radius: var(--radius);
}

.image-card img {
    width: 100%;
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
}

.section h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 5vw, 48px);
}

.section p {
    color: var(--muted);
    line-height: 1.7;
}

.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: var(--gold2);
    text-align: center;
}

.section-title h2 {
    margin: 0;
    color: var(--gold2);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: clamp(24px, 4vw, 38px);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.dish-scroll {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.dish-card {
    overflow: hidden;
    border-radius: 20px;
}

.dish-card img {
    width: 100%;
    aspect-ratio: 16 / 12;
    object-fit: cover;
}

.dish-card div { padding: 16px; }

.dish-card span,
.date-pill {
    display: inline-flex;
    color: var(--gold2);
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px;
}

.dish-card h3,
.menu-row h3,
.event-card h3 {
    font-family: Cinzel, serif;
    font-size: 22px;
}

.dish-card p,
.menu-row p,
.event-card p {
    margin: 8px 0 12px;
}

.dish-card strong,
.menu-row strong {
    color: var(--gold2);
    font-size: 18px;
}

.menu-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.menu-category-tabs a {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--gold2);
    font-weight: 900;
    background: rgba(214,169,90,.06);
}

.menu-category-block {
    margin-bottom: 52px;
}

.menu-category-block:last-child {
    margin-bottom: 0;
}

.menu-list {
    display: grid;
    gap: 14px;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 18px;
}

.menu-row span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--gold2);
    font-weight: 900;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.info-card {
    padding: 26px;
    border-radius: 22px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.hours-row strong { color: var(--gold2); }
.muted { color: var(--muted); font-size: 14px; }

.booking-form {
    display: grid;
    gap: 12px;
    margin: 18px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(5,12,22,.86);
    color: var(--text);
    border-radius: 12px;
    padding: 13px;
}

.booking-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-list {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    color: var(--muted);
}

.contact-list a:hover { color: var(--gold2); }

.event-list {
    display: grid;
    gap: 16px;
}

.event-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 22px;
    padding: 16px;
    border-radius: 22px;
    align-items: center;
}

.event-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 16px;
}

.event-card a {
    color: var(--gold2);
    font-weight: 900;
}

.article {
    max-width: 920px;
    margin: 0 auto;
}

.article .lead {
    color: var(--text);
    font-size: 22px;
}

.article-body {
    color: var(--muted);
    line-height: 1.85;
    font-size: 18px;
}

footer {
    display: grid;
    gap: 6px;
    justify-items: center;
    padding: 34px 18px;
    color: var(--muted);
    text-align: center;
}

footer strong {
    color: var(--gold2);
    font-family: Cinzel, serif;
    font-size: 22px;
}

footer small { opacity: .75; }

@media (max-width: 1050px) {
    .dish-scroll {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
    }

    .dish-card {
        min-width: 250px;
        scroll-snap-align: start;
    }
}

@media (max-width: 760px) {
    .site-shell { width: 100%; }
    .hero { min-height: 660px; }

    .desktop-nav { display: none; }
    .menu-toggle { display: block; }

    .brand strong { font-size: 20px; }
    .brand small { font-size: 9px; }

    .hero-content { padding: 90px 0 110px; }

    .quick-links {
        grid-template-columns: repeat(4, 1fr);
        overflow-x: auto;
    }

    .quick-links a {
        min-width: 90px;
        min-height: 92px;
        font-size: 11px;
    }

    .about-grid,
    .info-grid,
    .event-card,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .menu-row {
        display: grid;
    }
}
