:root {
    --bg: #0f1720;
    --bg-soft: #121c28;
    --surface: rgba(255,255,255,0.06);
    --surface-strong: rgba(255,255,255,0.1);
    --text: #f6f7fb;
    --muted: #b5c0cb;
    --line: rgba(255,255,255,0.1);
    --accent: #ff7a18;
    --accent-2: #ffb347;
    --dark: #0b1118;
    --shadow: 0 25px 60px rgba(0,0,0,0.25);
    --radius: 22px;
    --radius-sm: 16px;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 24, 0.16), transparent 30%),
        linear-gradient(180deg, #0c141d 0%, #101926 42%, #0d131c 100%);
    color: var(--text);
}

a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.7; margin: 0 0 1rem; }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.08; color: var(--text); }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.2rem; }

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(10, 14, 20, 0.58);
    border-bottom: 1px solid var(--line);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 1rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    font-weight: 800;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #151515;
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    flex-wrap: wrap;
}

nav a { color: #d7dfe7; }
nav a:hover { color: #fff; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 1.25rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #161616;
    font-weight: 700;
    transition: transform .2s ease, opacity .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-1px); }
.button--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--line);
}
.button--light { border-color: rgba(255,255,255,0.3); }
.button--small { min-height: 42px; padding: 0 1rem; }

.hero {
    padding: 5rem 0 3rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 2.5rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    padding: .45rem .8rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--line);
    color: #f3c38d;
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: 1.1rem;
}

.lead {
    max-width: 62ch;
    font-size: 1.1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 1.5rem;
}

.hero-notes {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.hero-notes span,
.notice-box,
.info-card,
.menu-card,
.visit-card,
.quote-panel,
.contact-box {
    background: var(--surface);
    border: 1px solid var(--line);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.hero-notes span {
    padding: .8rem 1rem;
    border-radius: 999px;
    color: #e7edf4;
}

.hero-visual {
    position: relative;
    min-height: 540px;
}

.food-card {
    position: absolute;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.15);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.food-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.1) contrast(1.02);
}

.food-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.68) 100%);
}

.food-card span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 2;
    font-size: 1.05rem;
    font-weight: 700;
}

.card-a { top: 0; left: 0; width: 66%; height: 54%; }
.card-b { top: 12%; right: 0; width: 42%; height: 34%; }
.card-c { right: 10%; bottom: 2%; width: 58%; height: 42%; }

.card-a::before {
    background-image: url('https://images.unsplash.com/photo-1544025162-d76694265947?auto=format&fit=crop&w=1200&q=80');
}
.card-b::before {
    background-image: url('https://images.unsplash.com/photo-1568901346375-23c9450c58cd?auto=format&fit=crop&w=1200&q=80');
}
.card-c::before {
    background-image: url('https://images.unsplash.com/photo-1529193591184-b1d58069ecdd?auto=format&fit=crop&w=1200&q=80');
}

.glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(60px);
    opacity: .4;
}
.glow-one {
    width: 160px; height: 160px; background: var(--accent); top: 3%; right: 10%;
}
.glow-two {
    width: 200px; height: 200px; background: #ffd37d; bottom: 8%; left: 12%;
}

.section { padding: 4.5rem 0; }
.section--compact { padding-top: 1rem; }
.section--dark { background: rgba(7, 11, 16, 0.42); }
.section--accent {
    background: linear-gradient(135deg, rgba(255,122,24,0.16), rgba(255,179,71,0.08));
}

.info-grid,
.menu-grid,
.visit-grid {
    display: grid;
    gap: 1.25rem;
}

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

.info-card,
.menu-card,
.visit-card,
.quote-panel {
    border-radius: var(--radius);
    padding: 1.4rem;
}

.info-card p { margin: 0; color: #eef3f8; }
.section-heading { max-width: 780px; margin-bottom: 2rem; }
.menu-grid { grid-template-columns: repeat(3, 1fr); }
.menu-card ul,
.quote-panel ul,
.visit-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.menu-card li,
.quote-panel li,
.visit-card li {
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
    color: #dfe7ef;
}
.menu-card li:last-child,
.quote-panel li:last-child,
.visit-card li:last-child { border-bottom: 0; }

.notice-box {
    margin-top: 1.5rem;
    border-radius: 18px;
    padding: 1rem 1.2rem;
    color: #fff;
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: start;
}

.visit-grid {
    grid-template-columns: 1.25fr .75fr .75fr;
}

.large { padding: 1.8rem; }
.contact-box {
    border-radius: 30px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.contact-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 1.4rem 0 2rem;
}
.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer-row p { margin: 0; font-size: .95rem; }

@media (max-width: 980px) {
    .hero-grid,
    .two-col,
    .visit-grid,
    .menu-grid,
    .info-grid,
    .contact-box {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 480px;
    }

    .contact-box {
        display: grid;
    }
}

@media (max-width: 720px) {
    .nav {
        min-height: auto;
        padding: 1rem 0;
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        width: 100%;
        justify-content: flex-start;
    }

    .hero {
        padding-top: 2rem;
    }

    .hero-visual {
        min-height: 360px;
    }

    .card-a { width: 72%; height: 52%; }
    .card-b { width: 45%; height: 32%; }
    .card-c { width: 62%; height: 38%; }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.9rem; }
}
