/* =====================================================
   DADU BURGER
   Main stylesheet
   Fully responsive
   ===================================================== */

:root {
    --green: #204029;
    --green-dark: #13291b;
    --green-light: #2c5638;
    --cream: #F5F0D2;
    --cream-light: #fbf8e8;
    --orange: #ef5a21;
    --orange-dark: #c94415;
    --black: #101310;
    --white: #ffffff;
    --border: rgba(245, 240, 210, 0.16);

    --container: 1200px;
    --radius: 18px;
    --transition: 0.35s cubic-bezier(.22, 1, .36, 1);
}


/* =====================================================
   RESET
   ===================================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-width: 0;
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--green);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(
        calc(100% - 40px),
        var(--container)
    );
    max-width: 100%;
    margin: 0 auto;
}


/* =====================================================
   HEADER
   ===================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1000;
    background: rgba(32, 64, 41, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(245, 240, 210, 0.1);
    transition:
        transform 0.4s ease,
        background 0.4s ease;
}

.nav-container {
    width: 100%;
    min-width: 0;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.logo-link {
    position: relative;
    z-index: 1001;
    flex-shrink: 0;
}

.logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform var(--transition);
}

.logo:hover {
    transform: rotate(-3deg) scale(1.05);
}

.nav {
    display: flex;
    align-items: center;
    gap: 36px;
    min-width: 0;
}

.nav a {
    position: relative;
    color: var(--cream);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px 0;
    transition: color var(--transition);
    white-space: nowrap;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width var(--transition);
}

.nav a:hover {
    color: white;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 210, 0.45);
    font-size: 12px;
    font-weight: 800;
}

.lang-btn {
    border: none;
    background: transparent;
    color: rgba(245, 240, 210, 0.45);
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    transition:
        color var(--transition),
        transform var(--transition);
}

.lang-btn:hover {
    color: var(--cream);
}

.lang-btn.active {
    color: var(--cream);
}

.lang-btn:active {
    transform: scale(0.9);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 1px solid rgba(245, 240, 210, 0.2);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    background: var(--cream);
    transition: transform var(--transition);
}


/* =====================================================
   HERO
   ===================================================== */

.hero {
    position: relative;
    min-height: 850px;
    padding-top: 86px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(44, 86, 56, 0.9),
            transparent 30%
        ),
        var(--green);
}

.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.hero-content {
    min-height: 690px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    min-width: 0;
    padding-top: 40px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.hero-tag span {
    width: 30px;
    height: 2px;
    flex-shrink: 0;
    background: var(--orange);
}

.hero-tag p {
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.hero h1 {
    color: var(--cream);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(55px, 7vw, 100px);
    line-height: 0.9;
    letter-spacing: -0.07em;
    max-width: 700px;
    overflow-wrap: break-word;
}

.hero h1 strong {
    display: block;
    color: var(--orange);
    font-weight: 900;
}

.hero-description {
    max-width: 520px;
    margin-top: 30px;
    color: rgba(245, 240, 210, 0.72);
    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 38px;
}

.btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 28px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}

.btn-primary {
    background: var(--orange);
    color: white;
    box-shadow:
        0 15px 35px rgba(239, 90, 33, 0.2);
}

.btn-primary:hover {
    background: #ff6a2c;
    transform: translateY(-4px);
    box-shadow:
        0 20px 45px rgba(239, 90, 33, 0.3);
}

.btn-outline {
    border: 1px solid rgba(245, 240, 210, 0.35);
    color: var(--cream);
}

.btn-outline:hover {
    background: var(--cream);
    color: var(--green);
    transform: translateY(-4px);
}


/* =====================================================
   HERO BURGER
   ===================================================== */

.hero-visual {
    position: relative;
    min-width: 0;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-circle {
    position: absolute;
    width: min(500px, 75vw);
    height: min(500px, 75vw);
    max-width: 90%;
    max-height: 90%;
    border-radius: 50%;
    border: 1px solid rgba(245, 240, 210, 0.12);
    box-shadow:
        0 0 0 50px rgba(245, 240, 210, 0.025),
        0 0 0 100px rgba(245, 240, 210, 0.015);
}

.burger-illustration {
    position: relative;
    width: 390px;
    height: 300px;
    max-width: 100%;
    flex-shrink: 0;
    z-index: 2;
    filter:
        drop-shadow(
            0 30px 25px rgba(0, 0, 0, 0.35)
        );
    transform: rotate(-3deg);
    animation: burgerFloat 5s ease-in-out infinite;
}

.burger-shadow {
    position: absolute;
    bottom: -25px;
    left: 50%;
    width: 300px;
    height: 25px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    filter: blur(12px);
}

.burger-bun-top {
    position: absolute;
    top: 20px;
    left: 30px;
    width: 330px;
    height: 125px;
    border-radius:
        180px 180px
        45px 45px;
    background:
        linear-gradient(
            180deg,
            #d28a3e,
            #a95220
        );
    border-bottom: 15px solid #803d1e;
}

.sesame {
    position: absolute;
    width: 9px;
    height: 4px;
    border-radius: 50%;
    background: #f7e8ae;
    transform: rotate(25deg);
}

.s1 { top: 30px; left: 80px; }
.s2 { top: 45px; left: 135px; }
.s3 { top: 28px; left: 180px; }
.s4 { top: 57px; left: 230px; }
.s5 { top: 30px; left: 275px; }
.s6 { top: 75px; left: 100px; }
.s7 { top: 72px; left: 190px; }
.s8 { top: 80px; left: 250px; }

.burger-lettuce {
    position: absolute;
    top: 130px;
    left: 38px;
    width: 315px;
    height: 22px;
    border-radius: 50%;
    background: #4b833e;
    box-shadow:
        0 7px 0 #32632e;
}

.burger-cheese {
    position: absolute;
    top: 148px;
    left: 42px;
    width: 310px;
    height: 42px;
    background: #e5a52b;
    clip-path: polygon(
        0 0,
        100% 0,
        93% 100%,
        75% 55%,
        60% 100%,
        45% 55%,
        30% 100%,
        15% 55%,
        5% 100%
    );
}

.burger-patty {
    position: absolute;
    top: 175px;
    left: 42px;
    width: 310px;
    height: 60px;
    border-radius: 22px;
    background:
        linear-gradient(
            180deg,
            #4a2419,
            #24130f
        );
    box-shadow:
        inset 0 7px 0 rgba(255, 255, 255, 0.04);
}

.burger-tomato {
    position: absolute;
    top: 225px;
    left: 45px;
    width: 305px;
    height: 18px;
    border-radius: 50%;
    background: #a83223;
}

.burger-bun-bottom {
    position: absolute;
    top: 238px;
    left: 35px;
    width: 325px;
    height: 58px;
    border-radius:
        20px 20px
        45px 45px;
    background:
        linear-gradient(
            180deg,
            #bd7130,
            #873d1d
        );
}

.hero-badge {
    position: absolute;
    right: 0;
    bottom: 65px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(10deg);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 4;
}

.hero-badge span {
    font-family: "Bebas Neue", sans-serif;
    font-size: 29px;
}

.hero-badge small {
    max-width: 75px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

@keyframes burgerFloat {
    0%,
    100% {
        transform:
            translateY(0)
            rotate(-3deg);
    }

    50% {
        transform:
            translateY(-15px)
            rotate(0deg);
    }
}

.hero-bottom {
    border-top: 1px solid var(--border);
}

.hero-info {
    min-height: 90px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
}

.hero-info div {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.hero-info div:last-child {
    border-right: none;
}

.hero-info strong {
    color: var(--orange);
    font-family: "Bebas Neue", sans-serif;
    font-size: 30px;
}

.hero-info span {
    color: rgba(245, 240, 210, 0.65);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* =====================================================
   SECTIONS
   ===================================================== */

.menu-section {
    padding: 130px 0;
    background: var(--cream);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 75px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.section-heading h2 {
    color: var(--green);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(45px, 6vw, 75px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    overflow-wrap: break-word;
}

.section-heading p {
    max-width: 600px;
    margin-top: 25px;
    color: rgba(32, 64, 41, 0.65);
    line-height: 1.8;
}


/* =====================================================
   MENU CATEGORIES
   ===================================================== */

.menu-category {
    margin-bottom: 95px;
}

.category-title {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
}

.category-title > div:first-child {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.category-number {
    color: var(--orange);
    font-family: "Bebas Neue", sans-serif;
    font-size: 38px;
    flex-shrink: 0;
}

.category-label {
    display: block;
    color: rgba(32, 64, 41, 0.45);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.category-title h3 {
    margin-top: 3px;
    color: var(--green);
    font-family: "Montserrat", sans-serif;
    font-size: 22px;
    letter-spacing: -0.03em;
}

.category-line {
    height: 1px;
    flex: 1;
    min-width: 20px;
    background:
        linear-gradient(
            90deg,
            rgba(32, 64, 41, 0.15),
            transparent
        );
}


/* =====================================================
   BURGER CARDS
   ===================================================== */

.products-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    min-width: 0;
    min-height: 280px;
    overflow: hidden;
    display: flex;
    border-radius: var(--radius);
    background: white;
    border: 1px solid rgba(32, 64, 41, 0.08);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 50px rgba(32, 64, 41, 0.12);
}

.product-card.featured {
    background: var(--green);
    color: var(--cream);
}

.product-card.vegan {
    background:
        linear-gradient(
            135deg,
            #21482e,
            #16351f
        );
    color: var(--cream);
}

.product-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(32, 64, 41, 0.08);
    color: var(--green);
    font-family: "Bebas Neue", sans-serif;
    font-size: 19px;
}

.featured .product-number,
.vegan .product-number {
    background: rgba(245, 240, 210, 0.1);
    color: var(--cream);
}

.product-content {
    width: 100%;
    min-width: 0;
    padding: 55px 35px 30px;
    display: flex;
    flex-direction: column;
}

.product-label {
    color: var(--orange);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.product-card h4 {
    margin-top: 8px;
    color: var(--green);
    font-family: "Montserrat", sans-serif;
    font-size: 28px;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
}

.featured h4,
.vegan h4 {
    color: var(--cream);
}

.product-description {
    max-width: 470px;
    margin-top: 15px;
    color: rgba(32, 64, 41, 0.58);
    font-size: 13px;
    line-height: 1.7;
}

.featured .product-description,
.vegan .product-description {
    color: rgba(245, 240, 210, 0.65);
}

.product-bottom {
    margin-top: auto;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid rgba(32, 64, 41, 0.1);
}

.featured .product-bottom,
.vegan .product-bottom {
    border-color: rgba(245, 240, 210, 0.12);
}

.weight {
    color: rgba(32, 64, 41, 0.45);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.featured .weight,
.vegan .weight {
    color: rgba(245, 240, 210, 0.5);
}

.price {
    color: var(--orange);
    font-family: "Bebas Neue", sans-serif;
    font-size: 32px;
    line-height: 1;
    white-space: nowrap;
}


/* =====================================================
   SMALL PRODUCTS
   ===================================================== */

.small-products-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.small-product {
    min-width: 0;
    min-height: 120px;
    display: grid;
    grid-template-columns: 45px minmax(0, 1fr) auto;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(32, 64, 41, 0.08);
    transition:
        transform var(--transition),
        background var(--transition);
}

.small-product:hover {
    background: white;
    transform: translateX(5px);
}

.small-product-number {
    color: var(--orange);
    font-family: "Bebas Neue", sans-serif;
    font-size: 25px;
}

.small-product h4 {
    color: var(--green);
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    overflow-wrap: break-word;
}

.small-product p {
    margin-top: 5px;
    color: rgba(32, 64, 41, 0.52);
    font-size: 11px;
    line-height: 1.5;
}

.small-product > strong {
    color: var(--orange);
    font-family: "Bebas Neue", sans-serif;
    font-size: 25px;
    white-space: nowrap;
}


/* =====================================================
   COMBO
   ===================================================== */

.combo-card {
    position: relative;
    min-width: 0;
    min-height: 230px;
    margin-bottom: 100px;
    padding: 45px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 40px;
    border-radius: 22px;
    background:
        linear-gradient(
            110deg,
            var(--green-dark),
            var(--green)
        );
    color: var(--cream);
    box-shadow:
        0 30px 70px rgba(32, 64, 41, 0.18);
}

.combo-card::after {
    content: "COMBO";
    position: absolute;
    right: -40px;
    bottom: -75px;
    color: rgba(245, 240, 210, 0.04);
    font-family: "Bebas Neue", sans-serif;
    font-size: 190px;
    pointer-events: none;
}

.combo-left {
    position: relative;
    z-index: 2;
    flex: 1 1 auto;
    min-width: 0;
}

.combo-card .eyebrow {
    margin-bottom: 5px;
}

.combo-card h3 {
    max-width: 520px;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(25px, 4vw, 42px);
    line-height: 1;
    overflow-wrap: break-word;
}

.combo-card p {
    max-width: 520px;
    margin-top: 15px;
    color: rgba(245, 240, 210, 0.62);
    font-size: 14px;
    line-height: 1.6;
}

.combo-plus {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--orange);
    color: white;
    font-size: 30px;
}

.combo-price {
    position: relative;
    z-index: 2;
    color: var(--orange);
    font-family: "Bebas Neue", sans-serif;
    font-size: 60px;
    white-space: nowrap;
}


/* =====================================================
   DRINKS
   ===================================================== */

.drink-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.drink-card {
    min-width: 0;
    min-height: 90px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border: 1px solid rgba(32, 64, 41, 0.08);
    border-radius: 12px;
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.drink-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 15px 30px rgba(32, 64, 41, 0.08);
}

.drink-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: var(--green);
    color: var(--cream);
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}

.drink-icon.water {
    background: #315d63;
}

.drink-card h4 {
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    overflow-wrap: break-word;
}

.drink-card span {
    display: block;
    margin-top: 3px;
    color: rgba(32, 64, 41, 0.45);
    font-size: 10px;
}

.drink-card > strong {
    margin-left: auto;
    color: var(--orange);
    font-family: "Bebas Neue", sans-serif;
    font-size: 23px;
    white-space: nowrap;
}


/* =====================================================
   SAUCES
   ===================================================== */

.sauce-grid {
    display: grid;
    grid-template-columns:
        repeat(7, minmax(0, 1fr));
    gap: 10px;
}

.sauce-item {
    min-width: 0;
    min-height: 80px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    background: var(--green);
    color: var(--cream);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.05em;
    overflow-wrap: break-word;
    transition:
        transform var(--transition),
        background var(--transition);
}

.sauce-item:hover {
    background: var(--orange);
    transform: translateY(-5px);
}

.price-note {
    margin-top: 15px;
    color: rgba(32, 64, 41, 0.5);
    font-size: 11px;
    font-style: italic;
}


/* =====================================================
   EXTRAS
   ===================================================== */

.extras-grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.extra-card {
    min-width: 0;
    min-height: 90px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border-radius: 12px;
    background: white;
    border: 1px solid rgba(32, 64, 41, 0.08);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.extra-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 15px 30px rgba(32, 64, 41, 0.08);
}

.extra-card h4 {
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    overflow-wrap: break-word;
}

.extra-card span {
    display: block;
    margin-top: 4px;
    color: rgba(32, 64, 41, 0.45);
    font-size: 10px;
}

.extra-card strong {
    flex-shrink: 0;
    color: var(--orange);
    font-family: "Bebas Neue", sans-serif;
    font-size: 25px;
    white-space: nowrap;
}


/* =====================================================
   ABOUT
   ===================================================== */

.about-section {
    padding: 140px 0;
    background: var(--green);
    color: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 100px;
}

.about-visual {
    position: relative;
    min-width: 0;
}

.about-card {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background:
        radial-gradient(
            circle,
            rgba(245, 240, 210, 0.1),
            transparent 60%
        );
    border: 1px solid rgba(245, 240, 210, 0.12);
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    width: 75%;
    height: 75%;
    border: 1px solid rgba(245, 240, 210, 0.15);
    border-radius: 50%;
}

.about-card img {
    position: relative;
    z-index: 2;
    width: 60%;
    max-width: 100%;
    filter:
        drop-shadow(
            0 20px 30px rgba(0, 0, 0, 0.25)
        );
}

.about-stamp {
    position: absolute;
    right: 10px;
    bottom: 20px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--orange);
    color: white;
    font-family: "Bebas Neue", sans-serif;
    font-size: 21px;
    line-height: 0.9;
    transform: rotate(12deg);
}

.about-content {
    min-width: 0;
}

.about-content .eyebrow {
    color: var(--orange);
}

.about-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(45px, 6vw, 75px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    overflow-wrap: break-word;
}

.about-content h2 span {
    color: var(--orange);
}

.about-content > p {
    max-width: 600px;
    margin-top: 25px;
    color: rgba(245, 240, 210, 0.65);
    font-size: 16px;
    line-height: 1.8;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-features span {
    color: var(--orange);
    font-family: "Bebas Neue", sans-serif;
    font-size: 24px;
}

.about-features strong {
    color: var(--cream);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* =====================================================
   CONTACT
   ===================================================== */

.contact-section {
    padding: 140px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: 30px;
}

.contact-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    min-width: 0;
    min-height: 105px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-radius: 14px;
    background: white;
    border: 1px solid rgba(32, 64, 41, 0.08);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.contact-item:hover {
    transform: translateX(6px);
    box-shadow:
        0 15px 35px rgba(32, 64, 41, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--green);
    color: var(--cream);
    font-size: 20px;
}

.contact-item span {
    color: rgba(32, 64, 41, 0.45);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.contact-item h3 {
    margin-top: 6px;
    color: var(--green);
    font-size: 15px;
    overflow-wrap: anywhere;
}

.map-placeholder {
    min-height: 480px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 20px;
    background:
        linear-gradient(
            135deg,
            #d7d4bc 25%,
            #ebe8d2 25%,
            #ebe8d2 50%,
            #d7d4bc 50%,
            #d7d4bc 75%,
            #ebe8d2 75%
        );
    background-size: 80px 80px;
    border: 10px solid white;
    box-shadow:
        0 20px 50px rgba(32, 64, 41, 0.08);
}

.map-placeholder::before,
.map-placeholder::after {
    content: "";
    position: absolute;
    width: 130%;
    height: 22px;
    background: rgba(255, 255, 255, 0.75);
    transform: rotate(-20deg);
}

.map-placeholder::after {
    transform: rotate(32deg);
    opacity: 0.65;
}

.map-content {
    position: relative;
    z-index: 2;
    width: min(
        calc(100% - 40px),
        340px
    );
    max-width: 100%;
    padding: 35px;
    text-align: center;
    border-radius: 18px;
    background: rgba(32, 64, 41, 0.96);
    color: var(--cream);
    box-shadow:
        0 25px 60px rgba(32, 64, 41, 0.3);
}

.map-pin {
    color: var(--orange);
    font-size: 38px;
    line-height: 1;
}

.map-content h3 {
    margin-top: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
}

.map-content p {
    margin-top: 10px;
    color: rgba(245, 240, 210, 0.62);
    font-size: 12px;
    line-height: 1.6;
}

.map-button {
    display: inline-flex;
    margin-top: 22px;
    padding: 12px 18px;
    border-radius: 7px;
    background: var(--orange);
    color: white;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition:
        transform var(--transition),
        background var(--transition);
}

.map-button:hover {
    background: #ff6a2c;
    transform: translateY(-3px);
}


/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: var(--green-dark);
    color: var(--cream);
}

.footer-grid {
    min-height: 290px;
    padding-top: 65px;
    padding-bottom: 65px;
    display: grid;
    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(0, 1fr)
        minmax(0, 1fr)
        minmax(0, 0.7fr);
    gap: 50px;
}

.footer-brand {
    min-width: 0;
}

.footer-brand img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer-brand p {
    margin-top: 15px;
    color: rgba(245, 240, 210, 0.5);
    font-size: 12px;
}

.footer-links {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.footer-links h4,
.footer-language h4 {
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.footer-links a,
.footer-links span {
    color: rgba(245, 240, 210, 0.58);
    font-size: 12px;
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--cream);
    transform: translateX(3px);
}

.footer-language > div {
    display: flex;
    gap: 10px;
}

.footer-language .lang-btn {
    color: rgba(245, 240, 210, 0.45);
}

.footer-language .lang-btn.active {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 210, 0.08);
}

.footer-bottom .container {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(245, 240, 210, 0.35);
    font-size: 10px;
    letter-spacing: 0.04em;
}


/* =====================================================
   SCROLL ANIMATIONS
   ===================================================== */

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition:
        opacity 0.8s cubic-bezier(.22, 1, .36, 1),
        transform 0.8s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   LANGUAGE TRANSITION
   ===================================================== */

.language-transition {
    animation:
        languageFade 0.42s cubic-bezier(.22, 1, .36, 1);
}

@keyframes languageFade {
    0% {
        opacity: 0.35;
        transform: translateY(5px);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}


/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */

@media (max-width: 1000px) {

    .nav {
        gap: 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .hero-text {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .hero-visual {
        min-height: 500px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .about-card {
        max-width: 450px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .sauce-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }
}


/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */

@media (max-width: 760px) {

    .container {
        width: min(
            calc(100% - 28px),
            var(--container)
        );
    }

    .nav-container {
        height: 74px;
    }

    .logo {
        width: 86px;
        height: 86px;
    }

    .nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: calc(100dvh - 74px);
        min-height: 0;
        z-index: 999;
        padding:
            40px
            max(28px, env(safe-area-inset-right))
            max(40px, env(safe-area-inset-bottom))
            max(28px, env(safe-area-inset-left));
        background: var(--green);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        overflow-y: auto;
        transform: translateX(100%);
        opacity: 0;
        transition:
            transform 0.45s cubic-bezier(.22, 1, .36, 1),
            opacity 0.3s ease;
        pointer-events: none;
    }

    .nav.open {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav a {
        font-size: 25px;
        white-space: normal;
    }

    .menu-toggle {
        display: flex;
    }

    .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);
    }

    .language-switcher {
        margin-right: 0;
    }

    .hero {
        padding-top: 74px;
    }

    .hero-content {
        min-height: auto;
    }

    .hero-text {
        padding-top: 75px;
    }

    .hero h1 {
        font-size: clamp(
            48px,
            15vw,
            80px
        );
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 400px;
    }

    .hero-circle {
        width: 340px;
        height: 340px;
        max-width: 90vw;
        max-height: 90vw;
    }

    .burger-illustration {
        transform:
            scale(0.72)
            rotate(-3deg);
    }

    .hero-badge {
        right: 15px;
        bottom: 25px;
        width: 90px;
        height: 90px;
    }

    .hero-badge span {
        font-size: 23px;
    }

    .hero-badge small {
        font-size: 7px;
    }

    .hero-info {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        min-height: 130px;
    }

    .hero-info div {
        min-height: 65px;
    }

    .hero-info div:nth-child(2) {
        border-right: none;
    }

    .hero-info div:nth-child(1),
    .hero-info div:nth-child(2) {
        border-bottom:
            1px solid var(--border);
    }

    .menu-section,
    .about-section,
    .contact-section {
        padding: 90px 0;
    }

    .section-heading {
        margin-bottom: 50px;
    }

    .section-heading h2 {
        font-size: 48px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 280px;
    }

    .small-products-grid {
        grid-template-columns: 1fr;
    }

    .combo-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
        gap: 15px;
    }

    .combo-plus {
        width: 45px;
        height: 45px;
        flex-basis: 45px;
        font-size: 22px;
    }

    .combo-price {
        font-size: 50px;
    }

    .drink-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .drink-card {
        padding: 13px;
        gap: 9px;
    }

    .drink-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .drink-card h4 {
        font-size: 11px;
    }

    .drink-card > strong {
        font-size: 20px;
    }

    .sauce-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .extras-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .extra-card {
        padding: 16px;
    }

    .extra-card h4 {
        font-size: 11px;
    }

    .about-features {
        flex-direction: column;
        gap: 18px;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom .container {
        padding: 18px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}


/* =====================================================
   RESPONSIVE — 430px
   ===================================================== */

@media (max-width: 430px) {

    .container {
        width: calc(100% - 24px);
    }

    .header-actions {
        gap: 8px;
    }

    .language-switcher {
        gap: 4px;
    }

    .lang-btn {
        font-size: 11px;
    }

    .hero-text {
        padding-top: 55px;
    }

    .hero h1 {
        font-size: clamp(
            44px,
            15vw,
            65px
        );
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-visual {
        min-height: 350px;
    }

    .hero-circle {
        width: 285px;
        height: 285px;
    }

    .burger-illustration {
        transform:
            scale(0.58)
            rotate(-3deg);
    }

    .hero-badge {
        right: 0;
        bottom: 15px;
        width: 82px;
        height: 82px;
    }

    .hero-badge span {
        font-size: 20px;
    }

    .hero-badge small {
        max-width: 65px;
        font-size: 6px;
    }

    .hero-info strong {
        font-size: 25px;
    }

    .hero-info span {
        font-size: 9px;
    }

    .category-title {
        gap: 12px;
    }

    .category-title > div:first-child {
        gap: 12px;
    }

    .category-number {
        font-size: 30px;
    }

    .category-title h3 {
        font-size: 16px;
    }

    .small-product {
        grid-template-columns:
            30px minmax(0, 1fr) auto;
        padding: 16px;
        gap: 10px;
    }

    .small-product h4 {
        font-size: 12px;
    }

    .small-product p {
        font-size: 10px;
    }

    .small-product > strong {
        font-size: 20px;
    }

    .drink-grid {
        grid-template-columns: 1fr;
    }

    .extras-grid {
        grid-template-columns: 1fr;
    }

    .about-card {
        max-width: 330px;
    }

    .about-stamp {
        width: 85px;
        height: 85px;
        font-size: 16px;
    }

    .contact-item {
        padding: 15px;
        gap: 12px;
    }

    .contact-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .map-placeholder {
        min-height: 400px;
        border-width: 6px;
    }

    .map-content {
        width: calc(100% - 24px);
        padding: 25px 18px;
    }
}


/* =====================================================
   RESPONSIVE — SMALL PHONES
   360px
   ===================================================== */

@media (max-width: 360px) {

    .container {
        width: calc(100% - 20px);
    }

    .nav-container {
        gap: 8px;
    }

    .logo {
        width: 52px;
        height: 52px;
    }

    .header-actions {
        gap: 6px;
    }

    .language-switcher {
        gap: 2px;
    }

    .lang-btn {
        font-size: 10px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .hero-text {
        padding-top: 45px;
    }

    .hero-tag {
        gap: 8px;
        margin-bottom: 18px;
    }

    .hero-tag span {
        width: 22px;
    }

    .hero-tag p {
        font-size: 9px;
        letter-spacing: 0.12em;
    }

    .hero h1 {
        font-size: 43px;
        letter-spacing: -0.065em;
    }

    .hero-description {
        font-size: 13px;
        margin-top: 22px;
    }

    .btn {
        min-height: 52px;
        padding: 0 18px;
        font-size: 10px;
    }

    .hero-visual {
        min-height: 315px;
    }

    .hero-circle {
        width: 255px;
        height: 255px;
    }

    .burger-illustration {
        transform:
            scale(0.52)
            rotate(-3deg);
    }

    .hero-badge {
        width: 72px;
        height: 72px;
        bottom: 10px;
    }

    .hero-badge span {
        font-size: 17px;
    }

    .hero-badge small {
        max-width: 55px;
        font-size: 5px;
    }

    .hero-info strong {
        font-size: 22px;
    }

    .hero-info span {
        font-size: 8px;
        letter-spacing: 0.04em;
    }

    .menu-section,
    .about-section,
    .contact-section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .category-title {
        align-items: center;
        gap: 8px;
    }

    .category-title > div:first-child {
        gap: 8px;
    }

    .category-number {
        font-size: 27px;
    }

    .category-label {
        font-size: 8px;
    }

    .category-title h3 {
        font-size: 14px;
    }

    .product-content {
        padding: 52px 20px 22px;
    }

    .product-card h4 {
        font-size: 23px;
    }

    .product-description {
        font-size: 12px;
    }

    .product-bottom {
        padding-top: 18px;
    }

    .price {
        font-size: 27px;
    }

    .weight {
        font-size: 9px;
    }

    .small-product {
        grid-template-columns:
            25px minmax(0, 1fr) auto;
        padding: 14px 12px;
        gap: 7px;
    }

    .small-product-number {
        font-size: 21px;
    }

    .small-product h4 {
        font-size: 11px;
    }

    .small-product p {
        font-size: 9px;
    }

    .small-product > strong {
        font-size: 18px;
    }

    .combo-card {
        padding: 25px 20px;
        border-radius: 16px;
        margin-bottom: 70px;
    }

    .combo-card h3 {
        font-size: 25px;
    }

    .combo-card p {
        font-size: 12px;
    }

    .combo-price {
        font-size: 43px;
    }

    .sauce-grid {
        gap: 7px;
    }

    .sauce-item {
        min-height: 65px;
        padding: 10px 6px;
        font-size: 8px;
    }

    .extra-card {
        padding: 14px 12px;
    }

    .extra-card h4 {
        font-size: 10px;
    }

    .extra-card span {
        font-size: 9px;
    }

    .extra-card strong {
        font-size: 21px;
    }

    .about-content h2 {
        font-size: 42px;
    }

    .about-content > p {
        font-size: 14px;
    }

    .about-card {
        max-width: 290px;
    }

    .about-stamp {
        right: 0;
        bottom: 10px;
        width: 72px;
        height: 72px;
        font-size: 14px;
    }

    .contact-item {
        min-height: 90px;
        padding: 12px;
    }

    .contact-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        font-size: 16px;
    }

    .contact-item span {
        font-size: 7px;
    }

    .contact-item h3 {
        font-size: 12px;
    }

    .map-placeholder {
        min-height: 360px;
        border-width: 5px;
    }

    .map-content {
        width: calc(100% - 16px);
        padding: 22px 14px;
    }

    .map-content h3 {
        font-size: 20px;
    }

    .map-content p {
        font-size: 10px;
    }

    .footer-grid {
        gap: 35px 15px;
    }

    .footer-links a,
    .footer-links span {
        font-size: 10px;
    }
}


/* =====================================================
   RESPONSIVE — VERY SMALL PHONES
   320px / 330px
   ===================================================== */

@media (max-width: 330px) {

    .container {
        width: calc(100% - 16px);
    }

    .nav-container {
        height: 68px;
    }

    .logo {
        width: 48px;
        height: 48px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .nav {
        top: 68px;
        height: calc(100dvh - 68px);
    }

    .hero {
        padding-top: 68px;
    }

    .hero-text {
        padding-top: 38px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-description {
        font-size: 12px;
    }

    .hero-buttons {
        gap: 10px;
        margin-top: 25px;
    }

    .btn {
        min-height: 50px;
        padding: 0 12px;
        font-size: 9px;
        letter-spacing: 0.05em;
    }

    .hero-visual {
        min-height: 285px;
    }

    .hero-circle {
        width: 225px;
        height: 225px;
    }

    .burger-illustration {
        transform:
            scale(0.46)
            rotate(-3deg);
    }

    .hero-badge {
        width: 65px;
        height: 65px;
        right: 0;
        bottom: 5px;
    }

    .hero-badge span {
        font-size: 15px;
    }

    .hero-badge small {
        max-width: 48px;
        font-size: 4.5px;
    }

    .hero-info {
        min-height: 110px;
    }

    .hero-info div {
        min-height: 55px;
        gap: 5px;
        flex-direction: column;
    }

    .hero-info strong {
        font-size: 20px;
        line-height: 1;
    }

    .hero-info span {
        font-size: 7px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .eyebrow {
        font-size: 9px;
    }

    .category-title {
        gap: 5px;
    }

    .category-title > div:first-child {
        gap: 6px;
    }

    .category-number {
        font-size: 24px;
    }

    .category-label {
        font-size: 7px;
    }

    .category-title h3 {
        font-size: 12px;
    }

    .product-card {
        min-height: 260px;
    }

    .product-content {
        padding:
            50px
            16px
            20px;
    }

    .product-card h4 {
        font-size: 21px;
    }

    .product-description {
        font-size: 11px;
        line-height: 1.55;
    }

    .small-product {
        grid-template-columns:
            22px minmax(0, 1fr) auto;
        padding: 12px 10px;
        gap: 5px;
    }

    .small-product-number {
        font-size: 19px;
    }

    .small-product h4 {
        font-size: 10px;
    }

    .small-product p {
        font-size: 8px;
    }

    .small-product > strong {
        font-size: 16px;
    }

    .combo-card {
        padding: 22px 16px;
    }

    .combo-card h3 {
        font-size: 22px;
    }

    .combo-price {
        font-size: 38px;
    }

    .combo-plus {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 20px;
    }

    .drink-card {
        padding: 11px;
    }

    .drink-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .drink-card h4 {
        font-size: 10px;
    }

    .drink-card span {
        font-size: 8px;
    }

    .drink-card > strong {
        font-size: 18px;
    }

    .sauce-item {
        font-size: 7px;
        min-height: 58px;
    }

    .extra-card {
        padding: 12px 10px;
    }

    .extra-card h4 {
        font-size: 9px;
    }

    .extra-card span {
        font-size: 8px;
    }

    .extra-card strong {
        font-size: 19px;
    }

    .about-content h2 {
        font-size: 37px;
    }

    .about-card {
        max-width: 260px;
    }

    .about-stamp {
        width: 62px;
        height: 62px;
        font-size: 12px;
    }

    .contact-item {
        gap: 8px;
    }

    .contact-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        font-size: 14px;
    }

    .contact-item h3 {
        font-size: 11px;
    }

    .map-content {
        padding: 18px 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 12px;
    }

    .footer-brand img {
        width: 80px;
        height: 80px;
    }
}


/* =====================================================
   ACCESSIBILITY
   ===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}


/* =====================================================
   EXTRA SAFETY AGAINST HORIZONTAL OVERFLOW
   ===================================================== */

@media (max-width: 760px) {

    section,
    header,
    footer,
    main,
    .hero,
    .menu-section,
    .about-section,
    .contact-section {
        max-width: 100%;
        overflow-x: clip;
    }

    h1,
    h2,
    h3,
    h4,
    p,
    a,
    span,
    strong {
        overflow-wrap: break-word;
    }
}