/* Bunstash — FILFIL-scale layout · Urban Bistro theme */

:root {
    --bg: #1C1C1C;
    --bg-section: #262626;
    --card: #2F2F2F;
    --text: #F8F6F2;
    --text-secondary: #B8B8B8;
    --orange: #F97316;
    --orange-hover: #EA580C;
    --green: #22C55E;
    --green-hover: #16A34A;
    --yellow: #FACC15;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(248, 246, 242, 0.1);
    --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.25);
    --shadow-hover: 0 28px 60px rgba(0, 0, 0, 0.45);
    --glow-orange: 0 10px 30px rgba(249, 115, 22, 0.4);
    --accent-line: linear-gradient(90deg, var(--orange), var(--yellow), var(--green));
    --font-body: 'Manrope', 'Segoe UI', system-ui, sans-serif;
    --font-head: 'Manrope', 'Segoe UI', system-ui, sans-serif;
    --radius-lg: 28px;
    --radius: 24px;
    --radius-pill: 30px;
    --max: 1200px;
    --nav-h: 96px;
    --logo-size: 72px;
    --site-gutter: max(4%, 24px);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --focus-ring: 0 0 0 3px rgba(249, 115, 22, 0.5);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    padding-bottom: max(40px, env(safe-area-inset-bottom, 0px));
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(900px 500px at 10% -5%, rgba(249, 115, 22, 0.07), transparent 55%),
        radial-gradient(800px 450px at 95% 5%, rgba(34, 197, 94, 0.05), transparent 50%);
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); }

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

a:focus-visible, button:focus-visible {
    outline: none;
    box-shadow: var(--focus-ring);
    border-radius: 8px;
}

::selection { background: var(--orange); color: #1C1C1C; }

/* ── Navbar (FILFIL scale: 72px logo, ~88px bar) ── */
.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px 20px;
    min-height: var(--nav-h);
    padding: max(12px, env(safe-area-inset-top, 0px)) max(var(--site-gutter), env(safe-area-inset-right, 0px)) 12px max(var(--site-gutter), env(safe-area-inset-left, 0px));
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease), border-color 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.site-nav.scrolled {
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.94), rgba(38, 38, 38, 0.94));
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.logo-link { flex-shrink: 0; }

.logo-img {
    width: var(--logo-size);
    height: var(--logo-size);
    display: block;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav-menu a {
    position: relative;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
    transition: color 0.3s;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--orange); }

.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

.site-nav.scrolled .nav-menu a {
    color: var(--text);
    text-shadow: none;
}

.nav-actions { flex-shrink: 0; }

.nav-order-btn {
    padding: 10px 22px;
    border-radius: var(--radius-pill);
    background: var(--orange);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.4);
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.nav-order-btn:hover {
    background: var(--orange-hover);
    transform: translateY(-2px) scale(1.03);
    box-shadow: var(--glow-orange);
}

.nav-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
}

.nav-burger-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 22px;
}

.nav-burger-lines span {
    display: block;
    height: 2.5px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-burger.open .nav-burger-lines span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-burger.open .nav-burger-lines span:nth-child(2) { opacity: 0; }
.nav-burger.open .nav-burger-lines span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.55);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 999;
}

.nav-overlay.open { opacity: 1; visibility: visible; }

body.nav-open { overflow: hidden; }

/* ── Buttons ── */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: inline-block;
    padding: 16px 36px;
    margin: 8px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.35s;
}

.btn-primary::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0; left: -125%;
    width: 55%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-18deg);
    transition: left 0.6s var(--ease);
    pointer-events: none;
}

.btn-primary:hover::after,
.btn-secondary:hover::after { left: 135%; }

.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 26px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--glow-orange);
}

.btn-secondary {
    background: var(--green);
    color: #1C1C1C;
    box-shadow: 0 10px 26px rgba(34, 197, 94, 0.35);
}

.btn-secondary:hover {
    background: var(--green-hover);
    transform: translateY(-3px) scale(1.03);
}

/* ── Shell ── */
.shell {
    width: min(var(--max), 100% - 48px);
    margin-inline: auto;
}

/* ── Hero (FILFIL height, earlier split layout) ── */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    padding: 0;
    background-color: #141414;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-color: #141414;
    background-image: url('Assets/Hero-section landscape.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

@media (max-width: 900px) {
    .hero-bg {
        background-image: url('Assets/Hero-section portrait.png');
        background-position: center center;
    }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 20, 20, 0.55) 0%, rgba(20, 20, 20, 0.25) 50%, rgba(20, 20, 20, 0.5) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 30%, rgba(0, 0, 0, 0.35) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
    width: min(var(--max), calc(100% - 2 * var(--site-gutter)));
    max-width: var(--max);
    margin-inline: auto;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--nav-h) + 24px) 0 48px;
}

@media (min-width: 901px) {
    .hero-inner {
        grid-template-columns: auto minmax(0, 1fr);
        gap: clamp(40px, 5vw, 72px);
        padding-left: var(--site-gutter);
        padding-right: var(--site-gutter);
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }

    .hero-visual {
        justify-self: start;
        margin-left: var(--logo-size);
    }
}

.hero-copy { text-align: left; }

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--yellow);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--text);
}

.hero h1 em {
    font-style: normal;
    color: var(--orange);
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 42ch;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary { margin: 0; }

.hero-visual {
    position: relative;
    width: auto;
    height: min(68vh, 620px);
    max-width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.hero-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: none; }
}

/* ── Sections (FILFIL: 28px 6% padding, 1200px boxes) ── */
section { padding: 28px 6%; position: relative; }

.home-section-box {
    max-width: var(--max);
    margin: 0 auto;
    padding: 60px 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
}

#offerings .home-section-box {
    background: radial-gradient(circle at 85% 0%, rgba(249, 115, 22, 0.08), transparent 45%), var(--bg-section);
}

#menu .home-section-box {
    background: radial-gradient(circle at 15% 0%, rgba(249, 115, 22, 0.08), transparent 45%),
                radial-gradient(circle at 90% 100%, rgba(34, 197, 94, 0.1), transparent 50%),
                #1a1a1a;
}

#about .home-section-box {
    background: radial-gradient(circle at 10% 10%, rgba(250, 204, 21, 0.06), transparent 45%), var(--bg-section);
}

#gallery .home-section-box {
    background: radial-gradient(circle at 80% 10%, rgba(249, 115, 22, 0.08), transparent 45%), #1a1a1a;
}

#contact .home-section-box {
    background: radial-gradient(circle at 85% 0%, rgba(249, 115, 22, 0.08), transparent 45%), var(--bg-section);
}

.section-head { text-align: center; margin-bottom: 48px; }

.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(2.3rem, 4.8vw, 3.3rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text);
}

.section-title-left {
    text-align: left;
    margin-bottom: 16px;
}

.section-title-left::after { margin-left: 0; }

.section-title::after {
    content: '';
    display: block;
    width: 110px; height: 4px;
    margin: 18px auto 0;
    border-radius: 2px;
    background: var(--accent-line);
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.35);
}

/* ── Offerings (earlier simple cards, FILFIL grid size) ── */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.offering-card {
    background: linear-gradient(150deg, #333, #222);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 24px;
    box-shadow: var(--shadow-card);
    transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
}

.offering-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(249, 115, 22, 0.4);
}

.offering-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--text);
}

.offering-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── Menu coming soon ── */
.menu-banner {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 40px;
    border-radius: var(--radius);
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.menu-banner p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.menu-banner .btn-primary { margin: 0; }

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

.about-visual .about-image {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.about-divider {
    height: 1px;
    margin: 48px 0;
    background: linear-gradient(90deg, transparent, var(--border-light), transparent);
}

.about-story {
    position: relative;
    text-align: center;
}

.story-head {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
}

.story-head .section-title {
    margin-bottom: 20px;
}

.story-head .section-title::after {
    margin-left: auto;
    margin-right: auto;
}

.story-showcase {
    position: relative;
    overflow: hidden;
    max-width: 920px;
    margin: 0 auto;
    padding: 28px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: rgba(30, 30, 30, 0.75);
}

.story-beam {
    position: absolute;
    top: 50%;
    left: 0;
    width: 110px;
    height: 70%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(255, 200, 150, 0.35) 0%, rgba(249, 115, 22, 0.12) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: left 0.45s var(--ease), opacity 0.35s var(--ease);
}

.story-showcase.is-active .story-beam {
    opacity: 1;
}

.story-year {
    margin: 0 0 24px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--text);
}

.story-timeline {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.story-node {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.32);
    transition: color 0.35s var(--ease), text-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.story-node.is-lit {
    color: #fff;
    border-color: rgba(249, 115, 22, 0.55);
    background: rgba(50, 50, 50, 0.9);
    box-shadow:
        inset 0 0 16px rgba(254, 215, 170, 0.2),
        0 0 14px rgba(249, 115, 22, 0.35);
}

.story-step {
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 700;
    background: rgba(38, 38, 38, 0.65);
    border: 1px solid var(--border);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .story-showcase {
        padding: 24px 18px;
    }

    .story-beam {
        width: 90px;
        height: 60%;
    }

    .story-timeline {
        flex-direction: column;
        gap: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .story-beam { display: none; }

    .story-node {
        color: #fff;
        text-shadow: none;
        transform: none;
    }
}

.about-body p {
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 1.05rem;
    max-width: 48ch;
}

/* ── Gallery (3 photos) ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
}

.gallery-slot {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: zoom-in;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s;
}

.gallery-slot img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.gallery-grid:hover .gallery-slot { opacity: 0.6; }

.gallery-grid .gallery-slot:hover {
    opacity: 1;
    transform: scale(1.04);
    box-shadow: var(--shadow-hover);
}

/* ── Gallery lightbox ── */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: max(16px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px)) max(16px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.gallery-lightbox.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox[hidden] { display: none; }

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(96vw, 1200px);
    max-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-figure {
    margin: 0;
    width: 100%;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.gallery-lightbox-img {
    display: block;
    max-width: 100%;
    max-height: calc(92vh - 48px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.gallery-lightbox-caption {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(28, 28, 28, 0.85);
    color: #fff;
    cursor: pointer;
    transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    background: rgba(249, 115, 22, 0.9);
    border-color: var(--orange);
}

.gallery-lightbox-close {
    top: max(12px, env(safe-area-inset-top, 0px));
    right: max(12px, env(safe-area-inset-right, 0px));
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.75rem;
    line-height: 1;
}

.gallery-lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
}

.gallery-lightbox-nav:hover { transform: translateY(-50%) scale(1.05); }

.gallery-lightbox-prev { left: max(8px, env(safe-area-inset-left, 0px)); }
.gallery-lightbox-next { right: max(8px, env(safe-area-inset-right, 0px)); }

body.gallery-lightbox-open { overflow: hidden; }

@media (max-width: 600px) {
    .gallery-lightbox-nav { display: none; }
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.contact-col p {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.contact-col strong {
    display: block;
    color: var(--text);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
}

.hours-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
    flex-shrink: 0;
}

.hours-status.is-open { color: var(--green); }
.hours-status.is-closed { color: #EF4444; }

.contact-col a:not(.btn-primary):not(.btn-secondary) {
    color: var(--orange);
    font-weight: 700;
    transition: color 0.25s;
}

.contact-col a:not(.btn-primary):not(.btn-secondary):hover { color: var(--yellow); }

.contact-col .btn-primary {
    color: #fff;
    margin-top: 16px;
}

.order-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.order-link {
    padding: 12px 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--card);
    font-size: 0.88rem;
    font-weight: 700;
    transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.order-link:hover {
    border-color: var(--orange);
    background: rgba(249, 115, 22, 0.1);
    transform: translateY(-2px);
}

.order-link-wrap--soon {
    position: relative;
    display: inline-block;
}

.order-link--disabled {
    pointer-events: none;
    opacity: 0.55;
}

.coming-soon-band {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-14deg);
    background: var(--orange);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 24px;
    white-space: nowrap;
    border-radius: 4px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.9);
    pointer-events: none;
    z-index: 1;
}

.contact-map {
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    min-height: 200px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--card);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 200px;
    border: 0;
    display: block;
}

/* ── Placeholders ── */
.media-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px dashed rgba(248, 246, 242, 0.2);
    background: var(--card);
    color: var(--text-secondary);
    text-align: center;
    padding: 24px;
}

.media-placeholder span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ── Footer ── */
.gradient-line {
    height: 4px;
    background: var(--accent-line);
    margin: 0 8%;
    border-radius: 2px;
}

.site-footer {
    text-align: center;
    max-width: min(1200px, 92%);
    margin: 24px auto max(24px, env(safe-area-inset-bottom, 0px));
    padding: 36px 24px;
    background: linear-gradient(135deg, #141414, #1C1C1C);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-copy a {
    color: var(--text-secondary);
    transition: color 0.25s;
}

.footer-copy a:hover { color: var(--orange); }

/* ── Full menu page ── */
.menu-page-body { background: var(--bg); }

.menu-page {
    padding: calc(var(--nav-h) + 32px) 6% 48px;
}

.menu-page-box {
    max-width: var(--max);
    margin: 0 auto;
    padding: 60px 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    background:
        radial-gradient(circle at 15% 0%, rgba(249, 115, 22, 0.08), transparent 45%),
        radial-gradient(circle at 90% 100%, rgba(34, 197, 94, 0.1), transparent 50%),
        #1a1a1a;
}

.menu-page-head {
    text-align: center;
    margin-bottom: 48px;
}

.menu-page-intro {
    max-width: 52ch;
    margin: 16px auto 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
}

.menu-pdf {
    margin-bottom: 40px;
}

.menu-pdf-card {
    display: grid;
    grid-template-columns: minmax(140px, 220px) 1fr;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: var(--radius);
    border: 1px dashed rgba(249, 115, 22, 0.35);
    background: rgba(249, 115, 22, 0.06);
}

.menu-pdf-preview {
    aspect-ratio: 3 / 4;
    min-height: 180px;
    border-radius: 14px;
}

.menu-pdf-copy h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text);
}

.menu-pdf-copy p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.menu-pdf-copy code {
    font-size: 0.88em;
    color: var(--yellow);
}

.menu-pdf-btn { margin: 0; }

.menu-category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 48px;
    position: sticky;
    top: calc(var(--nav-h) + 8px);
    z-index: 10;
    padding: 12px 0;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.96), rgba(26, 26, 26, 0.85) 80%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.menu-category-nav a {
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    background: var(--card);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-secondary);
    transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.25s;
}

.menu-category-nav a:hover {
    border-color: var(--orange);
    color: var(--text);
    transform: translateY(-2px);
}

.menu-category {
    margin-bottom: 56px;
    scroll-margin-top: calc(var(--nav-h) + 72px);
}

.menu-category-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(249, 115, 22, 0.35);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.menu-card {
    background: linear-gradient(150deg, #333, #222);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.45s;
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(249, 115, 22, 0.4);
}

.menu-card-image {
    aspect-ratio: 16 / 10;
    border-radius: 0;
    border: none;
    min-height: 140px;
}

.menu-card-body {
    padding: 20px 22px 24px;
}

.menu-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text);
}

.menu-card-body p {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.menu-card-price {
    margin-top: 14px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--orange);
}

.menu-page-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.menu-page-cta .btn-primary,
.menu-page-cta .btn-secondary { margin: 0; }


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

.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .scroll-cue, .scroll-cue .mouse i { animation: none; }
    html { scroll-behavior: auto; }
    .btn-primary:hover, .btn-secondary:hover, .card:hover, .menu-item:hover { transform: none; }
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0; left: 0;
        width: min(320px, 85vw);
        height: 100dvh;
        flex-direction: column;
        align-items: flex-start;
        padding: max(88px, calc(env(safe-area-inset-top) + 72px)) 28px 28px;
        background: linear-gradient(180deg, #1C1C1C, #262626);
        transform: translateX(-105%);
        transition: transform 0.35s var(--ease);
        z-index: 1001;
    }

    .nav-menu.open { transform: translateX(0); }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
        text-shadow: none;
        color: var(--text) !important;
    }

    .nav-burger { display: flex; }

    .home-section-box { padding: 40px 24px; }

    .hero-inner,
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .hero::before {
        background: linear-gradient(180deg, rgba(20, 20, 20, 0.35) 0%, rgba(20, 20, 20, 0.55) 45%, rgba(20, 20, 20, 0.75) 100%);
    }

    .hero-inner {
        min-height: auto;
        padding: calc(var(--nav-h) + 24px) var(--site-gutter) 40px;
        width: 100%;
        max-width: none;
        margin-inline: 0;
        grid-template-columns: 1fr;
    }

    .hero-visual {
        width: min(100%, 420px);
        height: auto;
        margin-inline: auto;
        margin-left: auto;
    }

    .hero-copy { text-align: center; }
    .hero-desc { margin-inline: auto; }
    .hero-actions { justify-content: center; }

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

    .hero h1 { letter-spacing: 3px; }

    .menu-page-box { padding: 40px 24px; }
    .menu-pdf-card { grid-template-columns: 1fr; }
    .menu-category-nav { top: calc(var(--nav-h) + 4px); }
}

@media (max-width: 600px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .offerings-grid { grid-template-columns: 1fr; }
    section { padding: 20px 4%; }
    .hero { padding-inline: 4%; }
}
