:root {
    /* -------------------------
       Brown / Gold
    ------------------------- */
    --brown: #b4945a;
    --brown-dark: #8e703d;
    --brown-light: #d2bd91;

    /* -------------------------
       Green
    ------------------------- */
    --green: #159b91;
    --green-dark: #087b74;
    --green-light: #dcefeb;

    /* -------------------------
       Neutral
    ------------------------- */
    --white: #ffffff;
    --cream: #faf8f3;
    --text: #4b4b45;
    --muted: #929087;
    --border: #e8e3d9;

    /* -------------------------
       Shadows
    ------------------------- */
    --shadow:
        0 10px 30px rgba(100, 82, 48, 0.08);

    --shadow-hover:
        0 18px 40px rgba(100, 82, 48, 0.14);
}

/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:
        "Vazirmatn",
        Tahoma,
        sans-serif;
    background: #ffffff;
    color: var(--text);
    min-height: 100vh;
}

/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.background-decoration {
    position: fixed;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: .55;
}

.decoration-1 {
    top: -190px;
    right: -150px;
    border:
        1px solid
        rgba(180, 148, 90, .22);
}

.decoration-2 {
    bottom: -190px;
    left: -150px;
    border:
        1px solid
        rgba(21, 155, 145, .18);
}

/* =========================================================
   MAIN PAGE
========================================================= */

.page {
    width:
        min(
            1120px,
            calc(100% - 40px)
        );
    margin: 0 auto;
}

/* =========================================================
   HEADER
========================================================= */

.header {
    padding-top: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 230px;
}

/* -------------------------
   Logo
------------------------- */

.brand-symbol {
    width: 62px;
    height: 62px;
    border-radius:
        50% 50% 46% 46%;
    background:
        var(--brown);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 8px 20px
        rgba(180, 148, 90, .18);
}

.brand-symbol::before {
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    border:
        1px solid
        rgba(255,255,255,.6);
    border-radius: 50%;
}

.brand-symbol span {
    position: relative;
    font-size: 12px;
    font-weight: 700;
}

/* -------------------------
   Brand Text
------------------------- */

.brand-small {
    color: var(--green);
    font-size: 11px;
    margin-bottom: 1px;
}

.brand-title {
    color: var(--brown-dark);
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: bold;
    line-height: 1;
}

.brand-subtitle {
    color: var(--brown);
    font-size: 9px;
    letter-spacing: 2px;
    margin-top: 5px;
    direction: ltr;
}

.header-line {
    height: 1px;
    flex: 1;
    background:
        rgba(180, 148, 90, .5);
}

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    min-height: 235px;
    border-radius: 22px;
    /*
       فقط قهوه‌ای
    */
    background:
        var(--brown);
    box-shadow:
        0 20px 45px
        rgba(100, 82, 48, .16);
    display: flex;
    align-items: center;
    padding: 45px 60px;
}

/* -------------------------
   Hero Circles
------------------------- */

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border:
        1px solid
        rgba(255,255,255,.16);
    left: -130px;
    top: -160px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border:
        1px solid
        rgba(255,255,255,.13);
    left: 120px;
    bottom: -180px;
}

/* -------------------------
   Hero Content
------------------------- */

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    padding:
        7px 17px;
    border-radius: 30px;
    color: #ffffff;
    background:
        rgba(255,255,255,.12);
    border:
        1px solid
        rgba(255,255,255,.22);
    font-size: 12px;
    margin-bottom: 18px;
}

.hero h1 {
    color: #ffffff;
    font-size:
        clamp(
            28px,
            4vw,
            43px
        );
    font-weight: 400;
    line-height: 1.6;
}

.hero h1 strong {
    color: #f2dfb6;
    font-weight: 800;
}

.hero p {
    color:
        rgba(255,255,255,.78);
    font-size: 14px;
    margin-top: 7px;
}

/* -------------------------
   Hero Pattern
------------------------- */

.hero-pattern {
    position: absolute;
    left: 80px;
    top: 20px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background:
        repeating-radial-gradient(
            circle,
            transparent 0,
            transparent 20px,
            rgba(255,255,255,.055) 21px,
            rgba(255,255,255,.055) 22px
        );
}

/* =========================================================
   MENU SECTION
========================================================= */

.menu-section {
    padding:
        48px 0 30px;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.section-heading h2 {
    white-space: nowrap;
    color: var(--green);
    font-size: 16px;
    font-weight: 700;
}

.section-line {
    height: 1px;
    flex: 1;
    background:
        rgba(180, 148, 90, .45);
}

/* =========================================================
   MENU GRID
========================================================= */

.menu-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 18px;
}

/* =========================================================
   CARD
========================================================= */

.menu-card {
    min-height: 175px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    background: #ffffff;
    border:
        1px solid
        var(--border);
    border-radius: 15px;
    padding: 35px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow:
        var(--shadow);
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

/* =========================================================
   CARD TOP LINE
========================================================= */

.menu-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background:
        var(--brown);
    transform:
        scaleX(0);
    transform-origin: right;
    transition:
        transform .35s ease;
}

.menu-card:hover {
    transform:
        translateY(-7px);
    box-shadow:
        var(--shadow-hover);
    border-color:
        rgba(180,148,90,.35);
}

.menu-card:hover::before {
    transform:
        scaleX(1);
}

/* =========================================================
   CARD CONTENT
========================================================= */

.card-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-content h3 {
    color:
        var(--brown-dark);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.8;
}

.card-content p {
    color:
        var(--muted);
    font-size: 11px;
    line-height: 2;
    max-width: 210px;
    margin: 0 auto;
}

/* =========================================================
   ARROW
========================================================= */

.arrow {
    position: absolute;
    bottom: 17px;
    left: 50%;
    transform:
        translateX(-50%);
    width: 27px;
    height: 27px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color:
        var(--brown);
    background:
        rgba(180,148,90,.09);
    font-size: 15px;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.menu-card:hover .arrow {
    background:
        var(--brown);
    color:
        #ffffff;
    transform:
        translateX(-50%)
        translateY(-3px);
}

/* =========================================================
   FEATURED CARD
   کاملاً سبز
========================================================= */

.menu-card.featured {
    background:
        var(--green);
    border-color:
        var(--green);
}

.menu-card.featured::before {
    background:
        #ffffff;
}

.menu-card.featured .card-content h3 {
    color:
        #ffffff;
}

.menu-card.featured .card-content p {
    color:
        rgba(255,255,255,.75);
}

.menu-card.featured .arrow {
    background:
        rgba(255,255,255,.13);
    color:
        #ffffff;
}

.menu-card.featured:hover .arrow {
    background:
        #ffffff;
    color:
        var(--green);
}

/* =========================================================
   FOOTER
========================================================= */

footer {
    padding:
        25px 0 35px;
}

.footer-line {
    height: 1px;
    background:
        rgba(180,148,90,.5);
    margin-bottom: 18px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color:
        #aaa;
    font-size: 10px;
}

.footer-center {
    color:
        var(--green);
    letter-spacing: 2px;
    direction: ltr;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
    .page {
        width:
            min(
                100% - 26px,
                520px
            );
    }

    /* -------------------------
       Header
    ------------------------- */

    .header {
        padding-top: 18px;
    }

    .brand {
        min-width: auto;
    }

    .header-line {
        display: none;
    }

    .brand-symbol {
        width: 52px;
        height: 52px;
    }

    .brand-title {
        font-size: 23px;
    }

    /* -------------------------
       Hero
    ------------------------- */

    .hero {
        min-height: 260px;
        padding:
            35px 27px;
        border-radius: 18px;
        margin-top: 22px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.7;
    }

    .hero p {
        font-size: 12px;
        line-height: 2;
    }

    /* -------------------------
       Menu
    ------------------------- */

    .menu-section {
        padding-top: 35px;
    }

    .menu-grid {
        grid-template-columns:
            repeat(2, 1fr);
        gap: 12px;
    }

    .menu-card {
        min-height: 165px;
        padding:
            30px 15px;
    }

    .card-content h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .card-content p {
        font-size: 10px;
        line-height: 1.9;
        max-width: 170px;
    }

    .arrow {
        width: 25px;
        height: 25px;
        font-size: 13px;
        bottom: 14px;
    }

    /* -------------------------
       Footer
    ------------------------- */

    .footer-content {
        flex-direction: column;
        gap: 9px;
    }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {
    .menu-grid {
        grid-template-columns:
            1fr;
    }

    .menu-card {
        min-height: 145px;
    }
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icons img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.back-button {
    text-decoration: none;
    color: var(--green);
    font-size: 12px;
    white-space: nowrap;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    font-size: 10px;
}