/* ==================================================
   RESET
================================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    background: #0c0c0c;
}

body {
    margin: 0;
    min-width: 320px;

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background: #0c0c0c;
    color: #ffffff;

    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}


/* ==================================================
   VARIABLES
================================================== */

:root {

    --bg: #0b0b0b;
    --bg-soft: #111111;
    --bg-card: #151515;
    --bg-card-2: #1a1a1a;

    --text: #ffffff;
    --text-soft: #aaa6a2;
    --text-muted: #77736f;

    --accent: #e34b31;
    --accent-hover: #f05a3e;

    --border: rgba(255,255,255,.09);
    --border-light: rgba(255,255,255,.13);

    --radius-small: 12px;
    --radius-medium: 18px;
    --radius-large: 28px;

    --container: 1240px;

    --shadow:
        0 25px 80px rgba(0,0,0,.38);

    --transition:
        180ms ease;
}


/* ==================================================
   GLOBAL
================================================== */

.container {
    width: min(
        calc(100% - 32px),
        var(--container)
    );

    margin-inline: auto;
}

.section {
    padding: 80px 0;
}

.section-label {
    margin-bottom: 13px;

    color: var(--accent);

    font-size: .72rem;
    font-weight: 850;

    letter-spacing: .18em;
}

.section-top {
    display: flex;
    flex-direction: column;

    gap: 24px;

    margin-bottom: 36px;
}

.section-top h2,
.about-content h2 {
    margin: 0;

    font-size:
        clamp(2.3rem, 10vw, 4.8rem);

    line-height: .96;

    letter-spacing: -.06em;
}

.section-top h2 span,
.about-content h2 span {
    color: var(--text-soft);
}

.section-description {
    max-width: 480px;

    margin: 0;

    color: var(--text-soft);
}


/* ==================================================
   BUTTONS
================================================== */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 50px;

    padding: 12px 20px;

    border-radius: 10px;

    font-size: .88rem;
    font-weight: 750;

    transition:
        transform var(--transition),
        background var(--transition),
        border var(--transition);
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            #c93421
        );

    box-shadow:
        0 9px 30px
        rgba(227,75,49,.24);
}

.button-primary:hover {
    background:
        linear-gradient(
            135deg,
            var(--accent-hover),
            var(--accent)
        );
}

.button-glass {
    border:
        1px solid rgba(255,255,255,.15);

    background:
        rgba(18,18,18,.55);

    backdrop-filter: blur(15px);
}

.button-outline {
    border: 1px solid var(--border-light);
}

.button-large {
    min-height: 62px;
    padding: 13px 22px;
}

.button-large > span:last-child {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    line-height: 1.2;
}

.button-large small {
    margin-top: 4px;

    color: rgba(255,255,255,.65);

    font-size: .68rem;
    font-weight: 500;
}

.button-icon {
    font-size: 1.05rem;
}

.button-full {
    width: 100%;
}


/* ==================================================
   HEADER
================================================== */

.site-header {
    position: fixed;

    z-index: 1000;

    top: 0;
    right: 0;
    left: 0;

    border-bottom: 1px solid transparent;

    background: transparent;

    transition:
        background-color var(--transition),
        border-color var(--transition);
}

.site-header.scrolled {
    border-bottom-color: var(--border);

    background:
        rgba(10,10,10,.88);

    backdrop-filter:
        blur(20px);
}

.menu-open .site-header {
    background: #0d0d0d;

    backdrop-filter: none;
}

.navbar {
    display: flex;

    min-height: 72px;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* BRAND */

.brand,
.footer-brand {
    display: flex;

    align-items: center;

    gap: 12px;
}

.brand-mark {
    display: grid;

    width: 36px;
    height: 36px;

    place-items: center;

    border: 1px solid rgba(227,75,49,.6);

    border-radius: 10px;

    color: var(--accent);

    background: rgba(227,75,49,.1);

    font-family: Georgia, serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 700;

    box-shadow: 0 0 15px rgba(227,75,49,.15);
}

.brand-logo-img {
    width: 52px;
    height: 52px;

    object-fit: cover;

    border-radius: 14px;

    border: 2px solid rgba(227,75,49,.6);

    box-shadow: none;

    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;

    transition: border-color .2s ease;
}

.brand:hover .brand-logo-img {
    border-color: var(--accent);

    box-shadow: none;
}

.brand-text {
    display: flex;

    flex-direction: column;

    line-height: 1.05;
}

.brand-text strong {
    font-size: 1.15rem;

    font-weight: 850;

    letter-spacing: -.02em;
}

.brand-text small {
    margin-top: 3px;

    color: var(--accent);

    font-size: .74rem;

    font-weight: 800;

    letter-spacing: .14em;

    text-transform: uppercase;
}


/* DESKTOP NAV */

.desktop-nav {
    display: none;
}

.navbar-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}

.header-phone {
    display: none;
}


/* MENU TOGGLE */

.menu-toggle {
    display: flex;

    width: 42px;
    height: 42px;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

    padding: 0;

    border:
        1px solid var(--border-light);

    border-radius: 10px;

    background:
        rgba(20,20,20,.7);
}

.menu-toggle span {
    width: 17px;
    height: 2px;

    border-radius: 2px;

    background: #fff;

    transition:
        transform var(--transition),
        opacity var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform:
        translateY(7px)
        rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-7px)
        rotate(-45deg);
}


/* MOBILE MENU */

.mobile-menu {
    position: fixed;

    z-index: 999;

    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;

    display: flex;

    flex-direction: column;

    padding: 28px 20px;

    visibility: hidden;

    opacity: 0;

    transform:
        translateY(-10px);

    background:
        #0d0d0d;

    transition:
        .22s ease;
}

.mobile-menu.active {
    visibility: visible;

    opacity: 1;

    transform: translateY(0);
}

.mobile-menu nav {
    display: flex;

    flex-direction: column;
}

.mobile-menu nav a {
    padding: 17px 0;

    border-bottom:
        1px solid var(--border);

    font-size: 1.4rem;
    font-weight: 750;
}

.mobile-menu-phone {
    margin-top: auto;
}


/* ==================================================
   HERO
================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 105px 0 20px;
    background: #0b0b0b;
}

.hero-background {
    position: absolute;

    inset: -25px;

    background-image:
        url("assets/hero.webp");

    background-position: center;
    background-size: cover;

    will-change: transform;

    animation:
        hero-ken-burns 30s linear
        infinite alternate;
}

@keyframes hero-ken-burns {
    0% {
        transform: scale(1.0) translate(0, 0);
    }
    100% {
        transform: scale(1.08) translate(-1%, -1%);
    }
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            to top,
            rgba(5,5,5,1) 0%,
            rgba(5,5,5,.78) 24%,
            rgba(5,5,5,.25) 63%,
            rgba(5,5,5,.55) 100%
        ),

        linear-gradient(
            90deg,
            rgba(0,0,0,.75),
            rgba(0,0,0,.18)
        );
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hero-content {
    max-width: 680px;
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: 20px;
}

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;
    padding: 7px 11px;

    border:
        1px solid rgba(255,255,255,.12);

    border-radius: 999px;

    color: #ddd;

    background:
        rgba(10,10,10,.42);

    backdrop-filter:
        blur(10px);

    font-size: .7rem;
    font-weight: 700;
}

.badge-dot {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--accent);

    box-shadow:
        0 0 12px
        var(--accent);
}

.hero h1 {
    max-width: 680px;

    margin-bottom: 20px;

    font-size:
        clamp(3.4rem, 14vw, 7rem);

    line-height: .87;

    letter-spacing: -.075em;
}

.hero h1 span {
    display: block;

    color: #d4d0cc;
}

.hero-description {
    max-width: 580px;

    margin-bottom: 26px;

    color: #c0bbb6;

    font-size: 1rem;
}

.hero-actions {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.hero-actions .button {
    width: 100%;
}


/* BENEFITS - FLOATING GLASS BAR */

.hero-benefits {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 8px;

    margin-top: 18px;

    padding: 8px;

    border: 1px solid rgba(255,255,255,.14);

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(26,26,26,.88),
            rgba(12,12,12,.82)
        );

    backdrop-filter: blur(25px);

    box-shadow:
        0 15px 40px rgba(0,0,0,.5),
        0 0 25px rgba(227,75,49,.08);
}

.benefit-card {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 8px 10px;

    position: relative;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.05);

    border-radius: 12px;

    transition:
        background .3s ease,
        transform .3s ease;
}

.benefit-card::after {
    display: none;
}

.benefit-card:hover {
    background: rgba(255,255,255,.07);

    transform: translateY(-2px);
}

.benefit-icon {
    display: grid;

    width: 34px;
    height: 34px;

    flex-shrink: 0;

    place-items: center;

    border-radius: 9px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--accent),
            #c93421
        );

    font-size: 1rem;

    box-shadow:
        0 3px 10px rgba(227,75,49,.3);
}

.benefit-card strong {
    display: block;

    margin: 0;

    color: #ffffff;

    font-size: .8rem;

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -.01em;
}

.benefit-card p {
    display: none; /* Hide verbose paragraphs on phone to keep it ultra compact */
}


/* ==================================================
   MENU
================================================== */

.menu-section {
    background: #0b0b0b;
}

.menu-filter {
    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 24px;
}

.filter-button {
    padding: 8px 14px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    color: var(--text-soft);

    background: #141414;

    font-size: .73rem;
    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;

    transition: .2s;
}

.filter-button:hover,
.filter-button.active {
    border-color: var(--accent);

    color: #fff;

    background: var(--accent);
}


/* DISH GRID */

.dish-grid {
    display: grid;

    gap: 14px;
}

.dish-card {
    overflow: hidden;

    border:
        1px solid var(--border);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #171717,
            #121212
        );

    transition:
        transform .25s ease,
        border .25s ease,
        box-shadow .25s ease;
}

.dish-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(227,75,49,.35);

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.35),
        0 0 30px
        rgba(227,75,49,.06);
}

.dish-card.hidden {
    display: none;
}


/* PHOTO */

.dish-image {
    position: relative;

    height: 215px;

    overflow: hidden;

    background-image:

        linear-gradient(
            to top,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,.1) 50%,
            transparent 100%
        ),

        var(--dish-image);

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    will-change: transform;

    transition:
        transform .5s cubic-bezier(.25,.46,.45,.94);
}

.dish-card:hover .dish-image {
    transform: scale(1.06);
}

.dish-tag {
    position: absolute;

    top: 13px;
    left: 13px;

    padding:
        5px 9px;

    border-radius:
        999px;

    color: #fff;

    background:
        rgba(227,75,49,.9);

    font-size: .59rem;
    font-weight: 800;
}

.dish-tag-hot {
    background:
        rgba(150,35,25,.93);
}


/* CONTENT */

.dish-content {
    position: relative;

    padding: 17px;
}

.dish-heading {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;

    margin-bottom: 8px;
}

.dish-heading h3 {
    margin: 0;

    font-size: 1rem;

    letter-spacing: -.02em;
}

.dish-price {
    flex-shrink: 0;

    color: #fff;

    font-size: .87rem;
    font-weight: 850;
}

.dish-content p {
    max-width: 85%;

    margin: 0;

    color: var(--text-muted);

    font-size: .69rem;
    line-height: 1.55;
}

.dish-order {
    position: absolute;

    right: 16px;
    bottom: 16px;

    display: grid;

    width: 30px;
    height: 30px;

    place-items: center;

    border-radius: 50%;

    background: var(--accent);

    font-size: 1rem;
    font-weight: 500;

    transition: .2s;
}

.dish-order:hover {
    transform: rotate(90deg);

    background:
        var(--accent-hover);
}


/* COMPACT DISH CARDS (Zapiekanki, Napoje, Przekąski) */

.dish-card-compact {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 135px;

    padding: 18px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #171717,
            #121212
        );

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.dish-card-compact:hover {
    transform: translateY(-4px);

    border-color: rgba(227,75,49,.35);

    box-shadow:
        0 15px 40px rgba(0,0,0,.35),
        0 0 20px rgba(227,75,49,.06);
}

.dish-card-compact.hidden {
    display: none;
}

.dish-compact-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 12px;

    margin-bottom: 8px;
}

.dish-compact-top h3 {
    margin: 0;

    font-size: .98rem;

    letter-spacing: -.02em;
}

.dish-compact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    flex-shrink: 0;

    border-radius: 8px;

    background: rgba(227,75,49,.12);

    font-size: 1.1rem;
}

.dish-card-compact p {
    margin: 0;

    color: var(--text-muted);

    font-size: .75rem;

    line-height: 1.45;
}

.dish-compact-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 14px;
    padding-top: 12px;

    border-top: 1px solid rgba(255,255,255,.07);
}

.dish-compact-bottom .dish-price {
    color: #fff;

    font-size: .95rem;
    font-weight: 850;
}

.dish-compact-order {
    display: grid;

    width: 28px;
    height: 28px;

    place-items: center;

    border-radius: 50%;

    background: var(--accent);

    font-size: .95rem;
    font-weight: 600;

    transition: .2s;
}

.dish-compact-order:hover {
    background: var(--accent-hover);
    transform: rotate(90deg);
}

.menu-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin: 28px 0 10px;
}

.button-show-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1px solid rgba(227,75,49,.4);
    background: rgba(227,75,49,.12);
    color: #ffffff;
    font-size: .84rem;
    font-weight: 800;
    cursor: pointer;
    transition: all .25s ease;
}

.button-show-more:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(227,75,49,.35);
}

.menu-bottom {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    gap: 15px;

    margin-top: 25px;
    padding-top: 24px;

    border-top:
        1px solid var(--border);
}

.menu-bottom p {
    margin: 0;

    color: var(--text-soft);
}


/* ==================================================
   ABOUT
================================================== */

.about {
    overflow: hidden;

    background:
        #101010;
}

.about-grid {
    display: grid;

    gap: 45px;
}

.about-photo {
    position: relative;

    min-height: 520px;
}

.about-photo-inner {
    position: absolute;

    inset: 0;

    border-radius:
        var(--radius-large);

    background:

        linear-gradient(
            to top,
            rgba(0,0,0,.55),
            transparent
        ),

        url("assets/about.webp"),

        linear-gradient(
            135deg,
            #2a201b,
            #151515
        );

    background-position: center;
    background-size: cover;
}

.about-photo-card {
    position: absolute;

    right: 15px;
    bottom: 15px;
    left: 15px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding: 18px;

    border:
        1px solid rgba(255,255,255,.1);

    border-radius: 13px;

    background:
        rgba(15,15,15,.68);

    backdrop-filter:
        blur(15px);
}

.about-photo-card strong {
    font-size: .9rem;
}

.about-photo-card span {
    color: var(--text-muted);

    font-size: .7rem;
}

.about-content {
    align-self: center;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-lead {
    color: #ddd !important;

    font-size: 1.08rem !important;
}

.about-content > p:not(.section-label) {
    color: var(--text-soft);

    line-height: 1.7;
}

.about-features {
    display: grid;

    grid-template-columns: 1fr;

    gap: 10px;

    margin-top: 24px;
}

.about-feature-box {
    padding: 16px 18px;

    border:
        1px solid rgba(255,255,255,.09);

    border-left:
        3px solid var(--accent);

    border-radius: 14px;

    background:
        linear-gradient(
            145deg,
            rgba(26,26,26,.85),
            rgba(16,16,16,.75)
        );

    backdrop-filter: blur(15px);

    transition:
        border-color .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}

.about-feature-box:hover {
    border-color: rgba(227,75,49,.5);

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.4),
        0 0 15px rgba(227,75,49,.12);
}

.about-feature-box strong {
    display: block;

    margin-bottom: 3px;

    color: #ffffff;

    font-size: 1.05rem;
    font-weight: 850;
    letter-spacing: -.02em;
}

.about-feature-box span {
    display: block;

    color: var(--text-soft);

    font-size: .80rem;
    font-weight: 500;
}


/* ==================================================
   GALLERY
================================================== */

.gallery {
    position: relative;

    padding: 60px 0;

    overflow: hidden;

    background: #0b0b0b;
}

.gallery::before,
.gallery::after {
    content: '';

    position: absolute;

    z-index: 2;

    top: 0;
    bottom: 0;

    width: 25px;

    pointer-events: none;
}

.gallery::before {
    left: 0;

    background:
        linear-gradient(
            to right,
            #0b0b0b,
            transparent
        );
}

.gallery::after {
    right: 0;

    background:
        linear-gradient(
            to left,
            #0b0b0b,
            transparent
        );
}

.gallery .section-top {
    margin-bottom: 24px;
}

.gallery-track {
    display: flex;

    gap: 14px;

    width: 100%;

    overflow-x: auto;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;

    padding: 6px 20px 20px;

    scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    position: relative;

    flex-shrink: 0;

    width: 82vw;
    max-width: 330px;
    height: 225px;

    scroll-snap-align: center;

    overflow: hidden;

    border-radius: 18px;

    border:
        1px solid rgba(255,255,255,.1);

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.45);

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}

.gallery-item-dup {
    display: none;
}

.gallery-item:hover {
    transform: scale(1.02);

    box-shadow:
        0 20px 50px
        rgba(0,0,0,.45),
        0 0 0 1px
        rgba(227,75,49,.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: '';

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.65) 0%,
            rgba(0,0,0,.1) 40%,
            transparent 70%
        );

    pointer-events: none;

    transition: opacity .4s ease;
}

.gallery-item:hover::after {
    opacity: .7;
}

.gallery-item-label {
    position: absolute;

    z-index: 3;

    bottom: 14px;
    left: 14px;

    padding: 6px 14px;

    border-radius: 999px;

    background:
        rgba(10,10,10,.82);

    backdrop-filter: blur(10px);

    border:
        1px solid rgba(255,255,255,.16);

    color: #fff;

    font-size: .72rem;
    font-weight: 750;
    letter-spacing: .02em;

    transform: translateY(0);
    opacity: 1;

    transition:
        transform .35s ease,
        opacity .35s ease;
}

@keyframes gallery-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}


/* ==================================================
   DELIVERY
================================================== */

.delivery {
    background: #0b0b0b;
}

.delivery-grid {
    display: grid;

    gap: 14px;
}

.info-card {
    padding: 21px;

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-medium);

    background:
        linear-gradient(
            145deg,
            #171717,
            #121212
        );
}

.info-heading {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 24px;
}

.info-heading > div:last-child > span {
    display: block;

    margin-bottom: 4px;

    color: var(--accent);

    font-size: .6rem;
    font-weight: 850;

    letter-spacing: .14em;
}

.info-heading h3 {
    margin: 0;

    font-size: 1.25rem;
}

.info-icon {
    display: grid;

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    place-items: center;

    border-radius: 12px;

    color: var(--accent);

    background:
        rgba(227,75,49,.09);
}

.hours,
.delivery-areas {
    border-top:
        1px solid var(--border);
}

.hours > div,
.delivery-areas > div {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

    border-bottom:
        1px solid var(--border);

    font-size: .78rem;
}

.hours span,
.delivery-areas span {
    color: var(--text-soft);
}

.hours strong,
.delivery-areas strong {
    text-align: right;
}

.free-delivery {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin: 18px 0;
    padding: 17px;

    border:
        1px solid
        rgba(227,75,49,.13);

    border-radius: 12px;

    background:
        rgba(227,75,49,.06);
}

.free-delivery > span {
    display: grid;

    width: 30px;
    height: 30px;

    flex-shrink: 0;

    place-items: center;

    border-radius: 50%;

    color: #fff;

    background: var(--accent);
}

.free-delivery strong {
    display: block;

    margin-bottom: 4px;

    font-size: .84rem;
}

.free-delivery p {
    margin: 0;

    color: var(--text-muted);

    font-size: .69rem;
}


/* ==================================================
   FINAL CTA
================================================== */

.final-cta {
    position: relative;

    overflow: hidden;

    padding: 100px 0;

    text-align: center;

    background:
        linear-gradient(
            rgba(8,8,8,.88),
            rgba(8,8,8,.95)
        ),
        url("assets/piec.webp");

    background-position: center;
    background-size: cover;
}

.final-cta-glow {
    position: absolute;

    top: -200px;
    left: 50%;

    width: 800px;
    height: 600px;

    transform:
        translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(227,75,49,.22),
            rgba(227,75,49,.06) 60%,
            transparent 80%
        );

    filter: blur(100px);

    animation:
        cta-pulse 5s ease-in-out
        infinite alternate;
}

@keyframes cta-pulse {
    0% {
        opacity: .7;
        transform:
            translateX(-50%)
            scale(1);
    }
    100% {
        opacity: 1;
        transform:
            translateX(-50%)
            scale(1.1);
    }
}

.final-cta-inner {
    position: relative;

    z-index: 1;

    display: flex;

    max-width: 800px;

    flex-direction: column;

    align-items: center;
}

.final-cta h2 {
    margin-bottom: 18px;

    font-size:
        clamp(3rem, 12vw, 6.6rem);

    line-height: .9;

    letter-spacing: -.07em;
}

.final-cta h2 span {
    color: var(--accent);
}

.final-cta > .container > p:not(.section-label),
.final-cta-inner > p:not(.section-label) {
    margin-bottom: 26px;

    color: var(--text-soft);
}


/* ==================================================
   FOOTER
================================================== */

.footer {
    padding:
        70px 0 95px;

    border-top:
        1px solid var(--border);

    background: #080808;
}

.footer-grid {
    display: grid;

    gap: 40px;
}

.footer-brand span:last-child {
    display: flex;

    flex-direction: column;
}

.footer-brand strong {
    font-size: 1rem;
}

.footer-brand small {
    color: var(--text-muted);
}

.footer-description {
    max-width: 320px;

    margin-top: 22px;

    color: var(--text-muted);
}

.contact-list {
    display: grid;

    gap: 22px;

    margin-top: 32px;
}

.contact-list div {
    display: flex;

    flex-direction: column;

    gap: 5px;
}

.contact-list span {
    color: var(--text-muted);

    font-size: .6rem;
    font-weight: 850;

    letter-spacing: .14em;
}

.contact-list strong,
.contact-list a {
    font-size: .92rem;
}

.socials {
    display: flex;

    gap: 8px;

    margin-top: 28px;
}

.socials a {
    padding: 9px 13px;

    border:
        1px solid var(--border);

    border-radius: 999px;

    color: var(--text-soft);

    font-size: .68rem;

    transition: .2s;
}

.socials a:hover {
    border-color: var(--accent);

    color: #fff;
}


/* MAP */

.map {
    position: relative;

    overflow: hidden;

    min-height: 300px;
    height: 300px;

    border:
        1px solid var(--border-light);

    border-radius:
        var(--radius-large);

    background:
        #141414;

    box-shadow:
        0 15px 40px
        rgba(0,0,0,.3);
}

.map iframe {
    width: 100%;
    height: 100%;

    min-height: 300px;

    border: 0;
}

.map-placeholder > span {
    margin-bottom: 12px;

    font-size: 1.8rem;
}

.map-placeholder strong {
    margin-bottom: 5px;
}

.map-placeholder p {
    margin: 0;

    color: var(--text-muted);

    font-size: .75rem;
}

.map-placeholder small {
    margin-top: 12px;

    color: #555;

    font-size: .58rem;
}

.footer-bottom {
    display: flex;

    flex-direction: column;

    gap: 12px;

    margin-top: 38px;
    padding-top: 22px;

    border-top:
        1px solid var(--border);

    color: var(--text-muted);

    font-size: .65rem;
}

.footer-bottom p {
    margin: 0;
}


/* ==================================================
   MOBILE CALL BAR
================================================== */

.mobile-call-bar {
    position: fixed;

    z-index: 800;

    right: 12px;
    bottom: 12px;
    left: 12px;

    box-shadow:
        0 18px 50px
        rgba(0,0,0,.55);
}

.mobile-call-bar > a {
    display: flex;

    min-height: 62px;

    align-items: center;
    justify-content: space-between;

    padding: 9px 11px 9px 16px;

    border:
        1px solid
        rgba(255,255,255,.12);

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #df4830,
            #bd2e1e
        );
}

.mobile-call-bar > a > div {
    display: flex;

    align-items: center;

    gap: 11px;
}

.mobile-call-bar p {
    display: flex;

    flex-direction: column;

    margin: 0;

    line-height: 1.2;
}

.mobile-call-bar small {
    margin-bottom: 3px;

    color:
        rgba(255,255,255,.68);

    font-size: .6rem;
}

.mobile-call-bar strong {
    font-size: .84rem;
}

.call-arrow {
    display: grid;

    width: 38px;
    height: 38px;

    place-items: center;

    border-radius: 10px;

    background:
        rgba(0,0,0,.15);
}


/* ==================================================
   SCROLL REVEAL
================================================== */

.reveal {
    opacity: 0;

    transform: translateY(30px);

    transition:
        opacity .7s cubic-bezier(.25,.46,.45,.94),
        transform .7s cubic-bezier(.25,.46,.45,.94);
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: .1s;
}

.reveal-delay-2 {
    transition-delay: .2s;
}

.reveal-delay-3 {
    transition-delay: .3s;
}


/* ==================================================
   TABLET
================================================== */

@media (min-width: 600px) {

    .container {
        width:
            min(
                calc(100% - 48px),
                var(--container)
            );
    }

    .hero-actions {
        width: fit-content;

        flex-direction: row;
    }

    .hero-actions .button {
        width: auto;
    }

    .dish-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .menu-bottom {
        flex-direction: row;

        align-items: center;
        justify-content: space-between;
    }

    .footer-bottom {
        flex-direction: row;

        align-items: center;
        justify-content: space-between;
    }

    .gallery-item {
        width: 420px;

        height: 300px;
    }

    .about-features {
        grid-template-columns:
            repeat(3, 1fr);

        gap: 14px;

        margin-top: 32px;
    }
}


/* ==================================================
   DESKTOP
================================================== */

@media (min-width: 900px) {

    .section {
        padding: 115px 0;
    }


    /* HEADER */

    .navbar {
        min-height: 88px;
    }

    .menu-toggle,
    .mobile-menu {
        display: none;
    }

    .desktop-nav {
        display: flex;

        align-items: center;

        gap: 6px;
    }

    .desktop-nav a {
        padding: 10px 16px;

        border-radius: 9px;

        color: #ddd9d5;

        font-size: .92rem;
        font-weight: 700;

        transition: .2s;
    }

    .desktop-nav a:hover {
        color: #fff;

        background:
            rgba(255,255,255,.08);
    }

    .header-phone {
        display: inline-flex;

        align-items: center;

        gap: 10px;

        padding: 13px 22px;

        border-radius: 12px;

        background:
            var(--accent);

        font-size: .88rem;
        font-weight: 800;

        box-shadow: 0 4px 18px rgba(227,75,49,.35);

        transition: .2s;
    }

    .header-phone:hover {
        background:
            var(--accent-hover);

        transform:
            translateY(-2px);

        box-shadow: 0 6px 22px rgba(227,75,49,.5);
    }


    /* HERO - FLUID VIEWPORT ADAPTIVE WITH BIG BOLD TYPOGRAPHY */

    .hero {
        min-height: 100svh;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        padding-top: clamp(88px, 11vh, 120px);
        padding-bottom: clamp(16px, 2.5vh, 28px);
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .hero-content {
        max-width: 720px;
        margin-top: auto;
        margin-bottom: auto;
        padding-bottom: clamp(16px, 2.5vh, 30px);
    }

    .hero-badge {
        margin-bottom: clamp(10px, 1.4vh, 16px);
        padding: 7px 13px;
        font-size: .74rem;
    }

    .hero h1 {
        font-size: clamp(3.8rem, 6.2vw, 6.4rem);
        line-height: .88;
        letter-spacing: -.065em;
        margin-bottom: clamp(12px, 1.8vh, 18px);
    }

    .hero-description {
        font-size: clamp(1.0rem, 1.25vw, 1.12rem);
        line-height: 1.45;
        margin-bottom: clamp(16px, 2.4vh, 26px);
        max-width: 640px;
    }

    .hero-actions {
        gap: 14px;
    }

    .hero-actions .button {
        padding: 15px 26px;
        font-size: .88rem;
    }

    .hero-benefits {
        grid-template-columns:
            repeat(4, 1fr);

        border-radius: 16px;

        padding: clamp(8px, 1vh, 12px);

        gap: clamp(8px, 1vw, 12px);
    }

    .benefit-card {
        padding: clamp(10px, 1.4vh, 15px) clamp(12px, 1.2vw, 18px);

        border-radius: 12px;
    }

    .benefit-card p {
        display: block;

        margin: 3px 0 0;

        color: rgba(255,255,255,.5);

        font-size: .72rem;

        font-weight: 500;

        line-height: 1.3;
    }

    .benefit-card:not(:last-child)::after {
        display: none;
    }


    /* SECTION HEAD */

    .section-top {
        flex-direction: row;

        align-items: flex-end;
        justify-content: space-between;

        margin-bottom: 46px;
    }

    .section-description {
        padding-bottom: 6px;
    }


    /* MENU */

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

        gap: 16px;
    }

    .dish-image {
        height: 195px;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns:
            .9fr 1.1fr;

        align-items: center;

        gap: 90px;
    }

    .about-photo {
        min-height: 660px;
    }

    .about-content {
        max-width: 600px;
    }


    /* DELIVERY */

    .delivery-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 18px;
    }

    .info-card {
        padding: 30px;
    }


    /* FOOTER */

    .footer {
        padding:
            90px 0 35px;
    }

    .footer-grid {
        grid-template-columns:
            .72fr 1.28fr;

        align-items: stretch;

        gap: 80px;
    }

    .map,
    .map iframe {
        min-height: 320px;
        height: 320px;
    }


    /* MOBILE BAR */

    .mobile-call-bar {
        display: none;
    }


    /* GALLERY */

    .gallery {
        padding: 110px 0;
    }

    .gallery-track {
        width: max-content;

        overflow-x: visible;

        scroll-snap-type: none;

        padding: 0;

        gap: 20px;

        animation:
            gallery-scroll 38s linear infinite;
    }

    .gallery-track:hover {
        animation-play-state: paused;
    }

    .gallery-item {
        width: 530px;

        height: 375px;

        border-radius: 20px;

        scroll-snap-align: none;
    }

    .gallery-item-dup {
        display: block;
    }

    .gallery-item-label {
        display: none;
    }

    .gallery::before,
    .gallery::after {
        width: 140px;
    }

}



/* ==================================================
   LARGE DESKTOP
================================================== */

@media (min-width: 1200px) {

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

        gap: 20px;
    }

    .dish-image {
        height: 220px;
    }

}


/* ==================================================
   ACCESSIBILITY
================================================== */

a:focus-visible,
button:focus-visible {
    outline:
        2px solid var(--accent);

    outline-offset: 4px;
}


/* ==================================================
   REDUCED MOTION
================================================== */

@media (
    prefers-reduced-motion: reduce
) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;

        transition: none !important;
    }

}
/* ==================================================
/* ==================================================
   GLOBAL DEMO SWITCHER BAR (RESPONSIVE)
================================================== */
.global-demo-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    background: rgba(14, 14, 18, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
    max-width: calc(100% - 24px);
    width: fit-content;
    box-sizing: border-box;
    transition: transform 0.25s ease, opacity 0.25s ease, bottom 0.25s ease;
}

.global-demo-bar.is-minimized {
    display: none !important;
}

.demo-bar-body {
    display: flex;
    align-items: center;
    gap: 10px;
}

.demo-bar-group {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.demo-group-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.demo-pills-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.demo-pill-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 750;
    text-decoration: none;
    color: #dedede;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.09);
    transition: all 0.2s ease;
    white-space: nowrap;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.demo-pill-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    transform: translateY(-1px);
}

.demo-pill-btn.active {
    background: var(--accent, #e34b31);
    color: #ffffff;
    border-color: var(--accent, #e34b31);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.demo-bar-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.16);
}

.demo-hub-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
    user-select: none;
}

.demo-hub-link:hover {
    background: rgba(255, 255, 255, 0.25);
}

.demo-bar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    flex-shrink: 0;
}

.demo-bar-toggle:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.demo-name-short {
    display: none;
}

.demo-name-full {
    display: inline;
}

.demo-min-badge {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 14px;
    z-index: 999999;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(14, 14, 18, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.demo-min-badge:hover {
    background: rgba(28, 28, 34, 0.98);
    transform: translateY(-2px);
}

.demo-min-badge.is-visible {
    display: inline-flex;
}

/* Tablet view (601px - 880px) */
@media (max-width: 880px) {
    .global-demo-bar {
        bottom: 84px;
        gap: 8px;
        padding: 6px 10px;
    }
    .demo-bar-body {
        gap: 8px;
    }
    .demo-group-label {
        display: none;
    }
    .demo-name-full {
        display: none;
    }
    .demo-name-short {
        display: inline;
    }
    .demo-pill-btn {
        padding: 6px 9px;
        font-size: 0.72rem;
    }
    .demo-hub-link {
        padding: 6px 10px;
        font-size: 0.7rem;
    }
    .demo-min-badge {
        bottom: 84px;
    }
}

/* Mobile phones (<= 600px) */
@media (max-width: 600px) {
    .global-demo-bar {
        bottom: calc(74px + env(safe-area-inset-bottom, 0px));
        width: calc(100% - 16px);
        max-width: 410px;
        padding: 8px 10px 7px;
        border-radius: 18px;
        flex-direction: column;
        gap: 6px;
        box-shadow: 0 12px 36px rgba(0, 0, 0, 0.75);
    }

    .demo-bar-toggle {
        position: absolute;
        top: 6px;
        right: 6px;
        width: 22px;
        height: 22px;
        font-size: 0.62rem;
        z-index: 2;
    }

    .demo-bar-body {
        flex-direction: column;
        width: 100%;
        gap: 6px;
    }

    .demo-bar-group {
        width: 100%;
        justify-content: center;
    }

    .demo-group-projects {
        padding-right: 22px; /* clearance for close toggle */
    }

    .demo-group-projects .demo-pills-row {
        width: 100%;
        display: flex;
        gap: 4px;
    }

    .demo-group-projects .demo-pill-btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 7px 2px;
        font-size: 0.72rem;
        text-align: center;
        justify-content: center;
    }

    .demo-name-full {
        display: none;
    }

    .demo-name-short {
        display: inline;
    }

    .demo-group-label {
        display: none;
    }

    .demo-bar-sep {
        display: none;
    }

    .demo-group-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 6px;
        padding-top: 5px;
        border-top: 1px solid rgba(255, 255, 255, 0.09);
    }

    .demo-group-actions .demo-pills-row {
        display: flex;
        gap: 4px;
        flex: 1;
    }

    .demo-color-btn {
        padding: 5px 6px;
        font-size: 0.68rem;
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
    }

    .demo-hub-link {
        padding: 5px 10px;
        font-size: 0.68rem;
        flex-shrink: 0;
    }

    .demo-min-badge {
        bottom: calc(74px + env(safe-area-inset-bottom, 0px));
        right: 12px;
        font-size: 0.72rem;
        padding: 7px 12px;
    }
}

/* ==================================================
   REVIEWS (GOOGLE REVIEWS)
================================================== */
.reviews-section {
    position: relative;
    background: #08080a;
    padding: 100px 0;
    overflow: hidden;
}

.reviews-container {
    width: min(calc(100% - 40px), 1040px);
    margin: 0 auto;
}

.reviews-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 18px;
    font-size: 0.88rem;
}

.reviews-google-svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.reviews-score-val {
    font-weight: 800;
    color: #ffffff;
    font-size: 1.05rem;
}

.reviews-stars {
    color: #fbbc04;
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.reviews-count {
    color: var(--text-soft, #a0a0a8);
    font-size: 0.82rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.review-card {
    background: rgba(18, 18, 22, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent, #e34b31), #ff7a59);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.92rem;
    flex-shrink: 0;
}

.review-meta h4 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 750;
    color: #ffffff;
}

.review-meta span {
    font-size: 0.72rem;
    color: var(--text-muted, #71717e);
    display: block;
    margin-top: 2px;
}

.review-google-badge {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    opacity: 0.9;
}

.review-stars-row {
    color: #fbbc04;
    font-size: 0.95rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #d8d8e0;
    margin-bottom: 18px;
    flex-grow: 1;
}

.review-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 650;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-soft, #b3b3bf);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: fit-content;
}

.reviews-cta-wrap {
    text-align: center;
    margin-top: 45px;
}

.reviews-google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.reviews-google-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 980px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .reviews-section {
        padding: 60px 0;
    }
}
