
:root {
    --red: #ef233c;
    --yellow: #ffbe0b;
    --dark: #0a0a0a;
}

html { scroll-behavior: smooth; }
body { font-family: Inter, sans-serif; }

#pageLoader { transition: opacity .5s ease, visibility .5s ease; }
#pageLoader.hide { opacity: 0; visibility: hidden; }
.loader-burger { animation: loaderBounce .7s infinite alternate ease-in-out; }
@keyframes loaderBounce { to { transform: translateY(-14px) rotate(-4deg); } }

.nav-link {
    position: relative;
    color: rgba(255,255,255,.68);
    transition: color .2s ease;
}
.nav-link:hover { color: white; }
.nav-link::after {
    content: "";
    position: absolute;
    left: 0; right: 100%; bottom: -7px;
    height: 2px;
    background: var(--yellow);
    transition: right .25s ease;
}
.nav-link:hover::after { right: 0; }

.mobile-link {
    border-radius: .9rem;
    padding: .9rem 1rem;
    font-weight: 700;
    color: rgba(255,255,255,.75);
}
.mobile-link:hover { background: rgba(255,255,255,.07); color: white; }

.hero-grid {
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(90px);
    pointer-events: none;
}
.blob-one {
    width: 380px; height: 380px;
    right: 5%; top: 12%;
    background: rgba(239,35,60,.25);
}
.blob-two {
    width: 320px; height: 320px;
    left: -8%; bottom: 0;
    background: rgba(255,190,11,.12);
}

.stat-card {
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
    border-radius: 1rem;
    padding: 1rem;
    backdrop-filter: blur(12px);
}
.stat-card strong { display: block; font-size: 1.6rem; font-weight: 900; }
.stat-card span { display: block; margin-top: .2rem; font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; }

.food-orbit { animation: floatScene 5s ease-in-out infinite; }
@keyframes floatScene { 50% { transform: translateY(-10px); } }
.orbit-ring {
    position: absolute; inset: 0;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,.08);
}
.burger-card { transform: rotate(-3deg); }

.burger-illustration { position: relative; width: 76%; height: 62%; filter: drop-shadow(0 28px 24px rgba(0,0,0,.42)); }
.burger-illustration > div { position: absolute; left: 5%; width: 90%; }
.bun { background: linear-gradient(#ffc85c, #e58e20); box-shadow: inset 0 -12px 0 rgba(132,69,0,.16); }
.bun-top { top: 0; height: 26%; border-radius: 50% 50% 18% 18% / 80% 80% 20% 20%; }
.bun-top span { position: absolute; width: 8px; height: 3px; border-radius: 50%; background: #fff2c7; transform: rotate(25deg); }
.bun-top span:nth-child(1){left:22%;top:28%}.bun-top span:nth-child(2){left:43%;top:18%}.bun-top span:nth-child(3){left:64%;top:34%}.bun-top span:nth-child(4){left:78%;top:20%}
.lettuce { top: 23%; height: 10%; background: #64b944; clip-path: polygon(0 45%,8% 15%,18% 70%,29% 22%,40% 75%,52% 15%,64% 74%,77% 18%,88% 68%,100% 35%,96% 100%,4% 100%); }
.cheese { top: 31%; height: 12%; background: #ffcc21; clip-path: polygon(0 0,100% 0,97% 55%,82% 48%,75% 100%,61% 54%,45% 66%,32% 44%,18% 72%,3% 50%); }
.patty { top: 39%; height: 16%; background: linear-gradient(#5a2417,#2e0d08); border-radius: 30%; box-shadow: inset 0 4px 0 rgba(255,255,255,.06); }
.sauce { top: 53%; left: 9% !important; width: 82% !important; height: 6%; background: #ef233c; border-radius: 50%; }
.patty.second { top: 57%; }
.cheese.second-cheese { top: 69%; }
.bun-bottom { top: 77%; height: 20%; border-radius: 18% 18% 45% 45% / 20% 20% 70% 70%; }

.floating-tag {
    position: absolute;
    display: flex; align-items: center; gap: .7rem;
    padding: .85rem 1rem;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(18,18,18,.72);
    border-radius: 1rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.floating-tag > span { font-size: 1.5rem; }
.floating-tag strong,.floating-tag small { display:block; }
.floating-tag small { font-size:.65rem;color:rgba(255,255,255,.45); }
.tag-one { left: -2%; top: 18%; animation: tagFloat 3.4s ease-in-out infinite; }
.tag-two { right: -1%; top: 48%; animation: tagFloat 4s .4s ease-in-out infinite; }
.tag-three { left: 8%; bottom: 4%; animation: tagFloat 3.8s .8s ease-in-out infinite; }
@keyframes tagFloat { 50% { transform: translateY(-10px) rotate(2deg); } }

.marquee { overflow: hidden; white-space: nowrap; }
.marquee-track { display:flex; width:max-content; animation: marquee 24s linear infinite; }
.marquee-track span { padding-right: 2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-kicker {
    margin-bottom: 1rem;
    color: var(--yellow);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .25em;
    text-transform: uppercase;
}
.section-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4rem, 9vw, 7rem);
    line-height: .84;
}
.section-title span { color: var(--red); }

.filter-btn {
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 9999px;
    padding: .75rem 1.15rem;
    color: rgba(255,255,255,.55);
    font-size: .85rem;
    font-weight: 800;
    transition: .2s ease;
}
.filter-btn:hover,.filter-btn.active { background: var(--yellow); border-color: var(--yellow); color: black; }

.menu-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 1.7rem;
    padding: 1.6rem;
    background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.menu-card::before {
    content:"";
    position:absolute; width:150px;height:150px;right:-60px;top:-60px;
    border-radius:999px;background:rgba(239,35,60,.14);filter:blur(35px);
}
.menu-card:hover { transform: translateY(-8px); border-color: rgba(255,190,11,.35); background: rgba(255,255,255,.07); }
.menu-card.hidden-card { display: none; }

.quality-mini { border:1px solid rgba(255,255,255,.16); background:rgba(0,0,0,.12); border-radius:1.3rem; padding:1rem; backdrop-filter:blur(12px); }
.quality-mini strong { display:block;font-size:2rem;font-weight:900; }
.quality-mini span { display:block;font-size:.75rem;color:rgba(255,255,255,.72); }

.quality-row { display:grid;grid-template-columns:52px 1fr;gap:1rem;border-bottom:1px solid rgba(255,255,255,.09);padding:1.4rem 0; }
.quality-row > span { color:var(--yellow);font-weight:900; }
.quality-row h3 { font-size:1.2rem;font-weight:900; }
.quality-row p { margin-top:.35rem;color:rgba(255,255,255,.48);font-size:.9rem;line-height:1.6; }

.review-card { border:1px solid rgba(255,255,255,.09);background:rgba(255,255,255,.035);border-radius:1.7rem;padding:1.7rem;transition:.3s ease; }
.review-card:hover { transform:translateY(-7px);background:rgba(255,255,255,.06); }

.faq-item { border:1px solid rgba(255,255,255,.09);border-radius:1.2rem;background:rgba(255,255,255,.035);overflow:hidden; }
.faq-button { width:100%;display:flex;align-items:center;justify-content:space-between;gap:1rem;padding:1.25rem;text-align:left;font-weight:800; }
.faq-icon { font-size:1.5rem;color:var(--yellow);transition:transform .25s ease; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-answer { max-height:0;overflow:hidden;transition:max-height .35s ease; }
.faq-answer p { padding:0 1.25rem 1.25rem;color:rgba(255,255,255,.55);line-height:1.7; }

.contact-card { display:flex;gap:1rem;border:1px solid rgba(255,255,255,.08);border-radius:1.2rem;padding:1rem;background:rgba(255,255,255,.03); }
.contact-card > span { font-size:1.5rem; }
.contact-card strong { display:block;font-size:.85rem; }
.contact-card p { margin-top:.35rem;font-size:.78rem;line-height:1.5;color:rgba(255,255,255,.45); }

.map-pattern {
    background-image:
        linear-gradient(30deg, rgba(255,255,255,.3) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.3) 87.5%, rgba(255,255,255,.3)),
        linear-gradient(150deg, rgba(255,255,255,.3) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.3) 87.5%, rgba(255,255,255,.3)),
        linear-gradient(30deg, rgba(255,255,255,.3) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.3) 87.5%, rgba(255,255,255,.3)),
        linear-gradient(150deg, rgba(255,255,255,.3) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.3) 87.5%, rgba(255,255,255,.3));
    background-size: 80px 140px;
}

.reveal { opacity:0;transform:translateY(24px);transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1;transform:none; }

@media (max-width: 640px) {
    .floating-tag { transform:scale(.8); }
    .tag-one { left:-6%; }
    .tag-two { right:-8%; }
    .tag-three { left:2%;bottom:-2%; }
    .burger-card { inset:13%;border-radius:2rem; }
}
