﻿
/* =====================================================
        PAAJI ANNA — BRAND TOKENS (per brand guideline deck)
        Primary:   Tandoori Red #B33320 (Paaji), Turban Maroon #962D1E,
                   Mustard Gold #E5B85F, Banana Leaf Green #8E9E4A (Anna)
        Secondary: Palm Green #5E6C2F, Filter Coffee Brown #2B2B30 (base),
                   Idli White #F3F0E5 (digital bg), Chutney Mint #A5C196
        Type:      Headlines = Anton / Bebas Neue
                   Sub-heads & dish names = Kenyan Coffee (licensed file
                   needed at launch; Bebas Neue stands in until then)
                   Body = Montserrat · Banter = Patrick Hand
        ===================================================== */
:root {
    --tandoori: #B33320;
    --maroon: #962D1E;
    --mustard: #E5B85F;
    --banana: #8E9E4A;
    --palm: #5E6C2F;
    --charcoal: #2B2B30;
    --charcoal-deep: #1C1C20;
    --idli: #F3F0E5;
    --mint: #A5C196;
    --ink: #2B1C13;
    --headline: 'Anton', 'Bebas Neue', sans-serif;
    --subhead: 'Kenyan Coffee', 'Bebas Neue', sans-serif;
    --body: 'Montserrat', sans-serif;
    --banter: 'Patrick Hand', cursive;
    --radius: 18px;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body);
    background: var(--idli);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden
}

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

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

h1, h2 {
    font-family: var(--headline);
    font-weight: 400;
    letter-spacing: .015em;
    text-transform: uppercase;
    line-height: 1.04
}

h3 {
    font-family: var(--subhead);
    font-weight: 400;
    letter-spacing: .05em;
    text-transform: uppercase
}

.wrap {
    width: min(1180px,92%);
    margin-inline: auto
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase
}

    .eyebrow::before {
        content: "";
        width: 26px;
        height: 3px;
        background: currentColor;
        border-radius: 2px
    }

.banter {
    font-family: var(--banter);
    font-size: 1.2rem;
    letter-spacing: .01em
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--body);
    font-weight: 700;
    font-size: .92rem;
    letter-spacing: .04em;
    padding: .95rem 1.7rem;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease
}

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

    .btn:focus-visible, a:focus-visible, button:focus-visible {
        outline: 3px solid var(--mustard);
        outline-offset: 3px
    }

.btn-red {
    background: var(--tandoori);
    color: var(--idli);
    box-shadow: 0 8px 0 var(--maroon)
}

    .btn-red:hover {
        box-shadow: 0 11px 0 var(--maroon)
    }

.btn-ghost {
    border-color: var(--idli);
    color: var(--idli)
}

    .btn-ghost:hover {
        background: var(--idli);
        color: var(--charcoal)
    }

/* ---------- NAV ---------- */
header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 60;
    transition: background .25s ease, box-shadow .25s ease
}

    header.scrolled {
        background: rgba(28,28,32,.94);
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 24px rgba(0,0,0,.3)
    }

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0
}

.logo {
    font-family: var(--headline);
    font-size: 1.45rem;
    color: var(--idli);
    letter-spacing: .04em;
    display: flex;
    align-items: center;
    gap: .6rem
}

    .logo .badge {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        background: var(--mustard);
        display: grid;
        place-items: center;
        font-size: 1rem;
        color: var(--charcoal);
        box-shadow: 0 0 0 3px var(--tandoori)
    }

.nav-links {
    display: flex;
    gap: 1.8rem;
    list-style: none;
    align-items: center
}

    .nav-links a {
        color: var(--idli);
        font-weight: 600;
        font-size: .9rem;
        letter-spacing: .06em;
        text-transform: uppercase;
        position: relative;
        padding: .3rem 0
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 2px;
            background: var(--mustard);
            transition: width .2s ease
        }

        .nav-links a:hover::after {
            width: 100%
        }

.nav .btn {
    padding: .65rem 1.3rem;
    font-size: .85rem
}

.burger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    width: 42px;
    height: 42px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px
}

    .burger span {
        display: block;
        width: 26px;
        height: 3px;
        background: var(--idli);
        border-radius: 2px;
        transition: transform .25s ease, opacity .25s ease
    }

    .burger.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg)
    }

    .burger.open span:nth-child(2) {
        opacity: 0
    }

    .burger.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg)
    }

/* ---------- HERO ---------- */
.hero {
    min-height: 100svh;
    background: radial-gradient(1200px 600px at 85% -10%, rgba(229,184,95,.18), transparent 60%), radial-gradient(900px 500px at -10% 110%, rgba(179,51,32,.28), transparent 60%), var(--charcoal);
    color: var(--idli);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 7.5rem 0 0;
    overflow: hidden
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(243,240,229,.07) 1px, transparent 1.4px);
        background-size: 26px 26px;
        pointer-events: none
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 3rem;
    align-items: center
}

.hero .eyebrow {
    color: var(--mustard)
}

.hero h1 {
    font-size: clamp(3rem, 8.4vw, 7.4rem);
    margin: .9rem 0 1.2rem
}

    .hero h1 .gold {
        color: var(--mustard)
    }

    .hero h1 .leaf {
        color: var(--mint)
    }

.hero p.lede {
    font-size: clamp(1rem,1.4vw,1.15rem);
    max-width: 34rem;
    color: rgba(243,240,229,.88)
}

.hero .banter {
    color: var(--mint);
    margin-top: 1rem;
    display: block
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem
}

.hero-art {
    position: relative;
    min-height: 420px
}

.polaroid {
    position: absolute;
    background: var(--idli);
    padding: .65rem .65rem 2.2rem;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,.4);
    transition: transform .25s ease
}

    .polaroid img, .mascot-slot img {
        width: 100%;
        height: 230px;
        object-fit: cover;
        border-radius: 6px;
        background: var(--charcoal-deep)
    }

    .polaroid figcaption, .mascot-slot figcaption {
        font-family: var(--banter);
        font-size: 1.05rem;
        color: var(--charcoal);
        text-align: center;
        margin-top: .45rem
    }

    .polaroid:hover {
        transform: rotate(0deg) scale(1.04) !important;
        z-index: 5
    }

.pol-1 {
    width: min(62%,300px);
    top: 0;
    left: 0;
    transform: rotate(-6deg)
}

.pol-2 {
    width: min(62%,300px);
    bottom: 0;
    right: 0;
    transform: rotate(5deg)
}

.sticker {
    position: absolute;
    top: 72%;
    right: 40%;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    background: var(--tandoori);
    color: var(--idli);
    display: grid;
    place-items: center;
    text-align: center;
    font-family: var(--headline);
    font-size: .95rem;
    line-height: 1.15;
    transform: rotate(10deg);
    box-shadow: 0 10px 24px rgba(0,0,0,.4);
    z-index: 6;
    border: 3px dashed var(--mustard);
    animation: bob 4.5s ease-in-out infinite
}

.sticker1 {
    position: absolute;
    top: -15%;
    right: 3%;
    width: 151px;
    height: 200px;
   
}

@keyframes bob {
    0%,100% {
        transform: rotate(10deg) translateY(0)
    }

    50% {
        transform: rotate(7deg) translateY(-10px)
    }
}

/* ---------- MASCOT PLACEHOLDERS ----------
        Drop transparent PNGs of Paaji & Anna (arms-folded poses from the
        mascot files) into these slots: replace the .mascot-slot div with
        <img src="assets/img/mascots/paaji.png" alt="Paaji mascot">      */
.mascot-slot {
    background: var(--idli);
    padding: .65rem .65rem 2.2rem;
    border-radius: 10px;
    box-shadow: 0 18px 40px rgba(0,0,0,.4);
    transition: transform .25s ease;
}

    .mascot-slot .m-emoji {
        font-size: 2.6rem;
        filter: grayscale(.2)
    }

    .mascot-slot .m-label {
        font-family: var(--headline);
        font-size: .85rem;
        letter-spacing: .12em;
        text-transform: uppercase
    }

    .mascot-slot .m-note {
        font-family: var(--banter);
        font-size: .95rem;
        opacity: .8
    }

.hero-mascots {
    position: absolute;
    bottom: -70px;
    right: -30px;
    width: min(62%,300px);
    aspect-ratio: 4/3.4;
    transform: rotate(4deg);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
    transition: transform .25s ease
}

    .hero-mascots:hover {
        transform: rotate(0) scale(1.03);
        z-index: 5
    }

/* ---------- QSR STRIP ---------- */
.qsr {
    background: var(--idli);
    position: relative;
    overflow: hidden
}

    .qsr::before {
        content: "QSR";
        position: absolute;
        font-family: var(--headline);
        font-size: clamp(10rem,26vw,22rem);
        color: rgba(43,43,48,.05);
        right: -1rem;
        top: -3rem;
        line-height: 1;
        pointer-events: none
    }

    .qsr .eyebrow {
        color: var(--tandoori)
    }

    .qsr h2 {
        color: var(--charcoal)
    }

.qsr-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative
}

.qsr-img {
    position: relative
}

    .qsr-img img {
        border-radius: var(--radius);
        object-fit: cover;
        box-shadow: 0 22px 50px rgba(30,30,34,.22);
        transform: rotate(-2deg);
        transition: transform .25s ease
    }

        .qsr-img img:hover {
            transform: rotate(0) scale(1.02)
        }

    .qsr-img .stamp {
        position: absolute;
        top: -1.4rem;
        right: -.8rem;
        background: var(--banana);
        color: var(--idli);
        font-family: var(--banter);
        font-size: 1.05rem;
        padding: .5rem 1rem;
        border-radius: 999px;
        transform: rotate(6deg);
        box-shadow: 0 8px 18px rgba(30,30,34,.25)
    }

.qsr p {
    margin-top: 1.1rem;
    color: rgba(43,28,19,.8)
}

.qsr-facts {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.8rem
}

.qsr-fact {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff;
    border: 2px solid var(--mint);
    border-radius: 14px;
    padding: 1rem 1.2rem;
    transition: transform .18s ease
}

    .qsr-fact:hover {
        transform: translateX(6px)
    }

    .qsr-fact .ic {
        font-size: 1.5rem;
        flex-shrink: 0
    }

    .qsr-fact h3 {
        font-size: 1.1rem;
        letter-spacing: .07em;
        color: var(--charcoal)
    }

    .qsr-fact p {
        margin: 0;
        font-size: .9rem;
        color: rgba(43,28,19,.75)
    }

/* Brothers card art slot */
.bro-art {
    aspect-ratio: 16/10;
    margin-bottom: .4rem
}

    .bro-art .m-emoji {
        font-size: 3.4rem
    }

/* marquee */
.marquee {
    background: var(--mustard);
    color: var(--charcoal);
    overflow: hidden;
    border-block: 4px solid var(--maroon);
    margin-top: 4.5rem;
    position: relative;
    z-index: 2
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll 28s linear infinite
}

.marquee span {
    font-family: var(--headline);
    font-size: 1.25rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .8rem 1.4rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 1.4rem
}

    .marquee span::after {
        content: "🤝"
    }

@keyframes scroll {
    to {
        transform: translateX(-50%)
    }
}

/* ---------- SECTIONS ---------- */
section {
    padding: 6rem 0
}

.sec-head {
    max-width: 46rem;
    margin-bottom: 3rem
}

    .sec-head h2 {
        font-size: clamp(2.2rem,4.6vw,3.8rem);
        margin-top: .8rem
    }

    .sec-head p {
        margin-top: 1rem;
        color: rgba(43,28,19,.75)
    }

/* story */
.story {
    background: var(--idli)
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.story-img {
    position: relative
}

    .story-img img {
        border-radius: var(--radius);
        aspect-ratio: 4/5;
        object-fit: cover;
        background: var(--charcoal)
    }

    .story-img::after {
        content: "";
        position: absolute;
        inset: 18px -18px -18px 18px;
        border: 3px solid var(--banana);
        border-radius: var(--radius);
        z-index: -1
    }

.story .eyebrow {
    color: var(--tandoori)
}

.story h2 {
    font-size: clamp(2.2rem,4.4vw,3.6rem);
    color: var(--charcoal)
}

.story p {
    margin-top: 1.1rem;
    color: rgba(43,28,19,.8)
}

.story .banter {
    color: var(--palm);
    display: block;
    margin-top: 1.2rem
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    margin-top: 1.8rem
}

.chip {
    background: var(--charcoal);
    color: var(--idli);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .05em;
    padding: .55rem 1rem;
    border-radius: 999px
}

    .chip.alt {
        background: var(--banana)
    }

    .chip.alt2 {
        background: var(--tandoori)
    }

/* ---------- MEET THE BROTHERS ---------- */
.brothers {
    background: var(--mint);
    position: relative
}

    .brothers .eyebrow {
        color: var(--maroon)
    }

    .brothers h2 {
        color: var(--charcoal)
    }

.bro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.bro {
    border-radius: var(--radius);
    padding: 2.4rem;
    color: var(--idli);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: .9rem;
    transition: transform .2s ease
}

    .bro:hover {
        transform: translateY(-6px)
    }

.bro-paaji {
    background: linear-gradient(150deg,var(--tandoori),var(--maroon))
}

.bro-anna {
    background: linear-gradient(150deg,var(--banana),var(--palm))
}

.bro .tag {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    opacity: .85
}

.bro h3 {
    font-size: 2rem;
    letter-spacing: .06em
}

.bro .real-name {
    font-family: var(--banter);
    font-size: 1.15rem;
    opacity: .9;
    margin-top: -.5rem
}

.bro p {
    font-size: .95rem;
    color: rgba(243,240,229,.92)
}

.bro .quote {
    font-family: var(--banter);
    font-size: 1.25rem;
    background: rgba(0,0,0,.18);
    border-left: 4px solid var(--mustard);
    padding: .8rem 1rem;
    border-radius: 0 10px 10px 0;
    margin-top: .4rem
}

.bro .traits {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: auto;
    padding-top: .8rem
}

    .bro .traits span {
        background: rgba(243,240,229,.16);
        border: 1px solid rgba(243,240,229,.35);
        font-size: .74rem;
        font-weight: 600;
        letter-spacing: .06em;
        padding: .35rem .8rem;
        border-radius: 999px
    }

.bro .glyph {
    position: absolute;
    right: -1.2rem;
    bottom: -2rem;
    font-size: 9rem;
    opacity: .14;
    transform: rotate(-8deg);
    user-select: none
}

/* ---------- MENU ---------- */
.menu {
    background: var(--charcoal);
    color: var(--idli)
}

    .menu .eyebrow {
        color: var(--mustard)
    }

    .menu .sec-head p {
        color: rgba(243,240,229,.75)
    }

.tabs {
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
    margin-bottom: 2.6rem
}

.tab {
    font-family: var(--headline);
    font-size: 1rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: transparent;
    color: var(--idli);
    border: 2px solid rgba(243,240,229,.35);
    padding: .7rem 1.4rem;
    border-radius: 999px;
    cursor: pointer;
    transition: all .18s ease
}

    .tab:hover {
        border-color: var(--mustard);
        color: var(--mustard)
    }

    .tab.active {
        background: var(--mustard);
        color: var(--charcoal);
        border-color: var(--mustard)
    }

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.4rem
}

.dish {
    background: rgba(243,240,229,.05);
    border: 1px solid rgba(243,240,229,.12);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
    transition: transform .18s ease, border-color .18s ease, background .18s ease
}

    .dish:hover {
        transform: translateY(-5px);
        border-color: var(--mustard);
        background: rgba(229,184,95,.08)
    }

.dish-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: baseline
}

.dish h3 {
    font-size: 1.3rem;
    letter-spacing: .05em
}

.price {
    font-family: var(--headline);
    color: var(--mustard);
    font-size: 1.05rem;
    white-space: nowrap
}

.dish p {
    font-size: .88rem;
    color: rgba(243,240,229,.72)
}

.dish .tagline {
    font-family: var(--banter);
    margin-top: auto;
    padding-top: .5rem;
    font-size: 1.1rem;
    color: #E8907F
}

.dish.south .tagline {
    color: var(--mint)
}

.menu-note {
    margin-top: 2.4rem;
    text-align: center;
    color: rgba(243,240,229,.6);
    font-size: .9rem
}

.menu-cta {
    display: flex;
    justify-content: center;
    margin-top: 1.4rem
}

.panel {
    display: none
}

    .panel.active {
        display: block;
        animation: fadeUp .35s ease
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ---------- TASTE-OFF ---------- */
.tasteoff {
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
    position: relative
}

.side {
    padding: 6rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--idli);
    position: relative;
    overflow: hidden
}

    .side h2 {
        font-size: clamp(2rem,3.8vw,3.2rem)
    }

    .side .quote {
        font-family: var(--banter);
        font-size: 1.35rem;
        margin: 1.1rem 0 1.6rem;
        max-width: 26rem;
        color: rgba(243,240,229,.95)
    }

    .side .big-emoji {
        position: absolute;
        font-size: 11rem;
        opacity: .14;
        right: -1.5rem;
        bottom: -2rem;
        transform: rotate(-8deg);
        user-select: none
    }

.side-paaji {
    background: linear-gradient(135deg,var(--tandoori),var(--maroon))
}

.side-anna {
    background: linear-gradient(225deg,var(--banana),var(--palm))
}

.vs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: var(--mustard);
    color: var(--charcoal);
    display: grid;
    place-items: center;
    font-family: var(--headline);
    font-size: 2rem;
    border: 5px solid var(--idli);
    z-index: 5;
    box-shadow: 0 12px 30px rgba(0,0,0,.35)
}

.vote {
    background: var(--idli);
    color: var(--charcoal);
    border: 0;
    font-family: var(--body);
    font-weight: 700;
    font-size: .95rem;
    padding: .9rem 1.6rem;
    border-radius: 999px;
    cursor: pointer;
    width: max-content;
    box-shadow: 0 7px 0 rgba(0,0,0,.25);
    transition: transform .15s ease, box-shadow .15s ease
}

    .vote:hover {
        transform: translateY(-2px);
        box-shadow: 0 9px 0 rgba(0,0,0,.25)
    }

    .vote:active {
        transform: translateY(2px);
        box-shadow: 0 4px 0 rgba(0,0,0,.25)
    }

.tally-wrap {
    grid-column: 1/-1;
    background: var(--charcoal-deep);
    padding: 1.4rem 0 2rem
}

.tally-bar {
    height: 22px;
    border-radius: 999px;
    overflow: hidden;
    display: flex;
    border: 3px solid var(--idli)
}

.tally-paaji {
    background: var(--tandoori);
    transition: width .4s ease
}

.tally-anna {
    background: var(--banana);
    flex: 1;
    transition: width .4s ease
}

.tally-labels {
    display: flex;
    justify-content: space-between;
    color: var(--idli);
    font-weight: 700;
    font-size: .85rem;
    margin-top: .6rem;
    letter-spacing: .06em
}

/* ---------- YAARI CARD ---------- */
.yaari {
    background: var(--mustard)
}

    .yaari .eyebrow {
        color: var(--maroon)
    }

    .yaari h2 {
        color: var(--charcoal)
    }

.yaari-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.ycard {
    aspect-ratio: 1.586;
    max-width: 430px;
    border-radius: 20px;
    background: linear-gradient(135deg,var(--charcoal) 0%,var(--charcoal-deep) 100%);
    color: var(--idli);
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 24px 50px rgba(28,28,32,.45);
    transform: rotate(-4deg);
    transition: transform .3s ease;
    border: 2px solid var(--maroon)
}

    .ycard:hover {
        transform: rotate(0) scale(1.03)
    }

    .ycard .y-top {
        display: flex;
        justify-content: space-between;
        align-items: flex-start
    }

    .ycard .y-title {
        font-family: var(--headline);
        font-size: 1.7rem;
        letter-spacing: .06em;
        color: var(--mustard)
    }

    .ycard .y-sub {
        font-family: var(--banter);
        font-size: 1rem;
        color: var(--mint)
    }

    .ycard .y-chip {
        width: 42px;
        height: 32px;
        border-radius: 6px;
        background: linear-gradient(135deg,var(--mustard),#caa04e)
    }

    .ycard .y-line {
        font-size: .92rem;
        color: rgba(243,240,229,.88)
    }

    .ycard .y-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        font-size: .72rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: rgba(243,240,229,.6)
    }

.yaari ul {
    list-style: none;
    margin-top: 1.6rem;
    display: grid;
    gap: .9rem
}

.yaari li {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    font-weight: 500;
    color: var(--charcoal)
}

    .yaari li::before {
        content: "🤝";
        flex-shrink: 0
    }

.yaari .banter {
    color: var(--maroon);
    display: block;
    margin-top: 1.4rem;
    font-size: 1.35rem
}

/* ---------- REVIEWS ---------- */
.reviews {
    background: var(--idli)
}

    .reviews .eyebrow {
        color: var(--palm)
    }

    .reviews h2 {
        color: var(--charcoal)
    }

.review-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem
}

.review {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.8rem;
    border: 2px solid var(--mint);
    box-shadow: 0 10px 30px rgba(30,30,34,.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .18s ease
}

    .review:hover {
        transform: translateY(-5px) rotate(-.5deg)
    }

    .review .stars {
        color: var(--mustard);
        letter-spacing: .15em;
        font-size: 1rem
    }

    .review p {
        font-family: var(--banter);
        font-size: 1.15rem;
        color: rgba(43,28,19,.85)
    }

    .review .who {
        font-weight: 700;
        color: var(--charcoal);
        font-size: .85rem;
        letter-spacing: .04em
    }

/* ---------- VISIT ---------- */
.visit {
    background: var(--charcoal);
    color: var(--idli)
}

    .visit .eyebrow {
        color: var(--mustard)
    }

.visit-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 4rem;
    align-items: center
}

.visit h2 {
    font-size: clamp(2.2rem,4.4vw,3.6rem)
}

.visit-info {
    display: grid;
    gap: 1.4rem;
    margin-top: 2rem
}

.v-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

    .v-item .ic {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: rgba(229,184,95,.18);
        display: grid;
        place-items: center;
        font-size: 1.2rem;
        flex-shrink: 0
    }

    .v-item h3 {
        font-size: 1.15rem;
        letter-spacing: .08em;
        color: var(--mustard)
    }

    .v-item p, .v-item a {
        color: rgba(243,240,229,.85);
        font-size: .95rem
    }

        .v-item a:hover {
            color: var(--mustard)
        }

.hours-card {
    background: rgba(243,240,229,.06);
    border: 1px solid rgba(243,240,229,.15);
    border-radius: var(--radius);
    padding: 2.4rem;
    text-align: center
}

    .hours-card .big {
        font-family: var(--headline);
        font-size: clamp(1.8rem,3vw,2.6rem);
        color: var(--mustard);
        margin: .6rem 0 1rem
    }

    .hours-card p {
        color: rgba(243,240,229,.78);
        font-size: .95rem
    }

/* ---------- FOOTER ---------- */
footer {
    background: var(--charcoal-deep);
    color: rgba(243,240,229,.72);
    padding: 3.5rem 0 2rem
}

.foot-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid rgba(243,240,229,.14);
    padding-bottom: 2rem;
    margin-bottom: 1.6rem
}

.foot-logo {
    font-family: var(--headline);
    font-size: 1.6rem;
    color: var(--idli)
}

.foot-links {
    display: flex;
    gap: 1.6rem;
    flex-wrap: wrap
}

    .foot-links a {
        font-weight: 600;
        font-size: .86rem;
        letter-spacing: .05em
    }

        .foot-links a:hover {
            color: var(--mustard)
        }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .82rem
}

    .foot-bottom .banter {
        font-size: 1.1rem;
        color: var(--mint)
    }

/* ---------- RESPONSIVE ---------- */
@media (max-width:980px) {
    .hero-grid, .story-grid, .yaari-grid, .visit-grid, .bro-grid, .qsr-grid {
        grid-template-columns: 1fr
    }

    .hero-art {
        min-height: 380px;
        margin-top: 1rem
    }

    .menu-grid, .review-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .tasteoff {
        grid-template-columns: 1fr
    }

    .side {
        padding: 4rem 2rem
    }
}

@media (max-width:680px) {
    section {
        padding: 4rem 0
    }

    .nav-links {
        position: fixed;
        inset: 0;
        background: var(--charcoal-deep);
        flex-direction: column;
        justify-content: center;
        gap: 2.2rem;
        transform: translateX(100%);
        transition: transform .3s ease;
        z-index: 55
    }

        .nav-links.open {
            transform: none
        }

        .nav-links a {
            font-size: 1.3rem
        }

    .burger {
        display: flex;
        z-index: 56
    }

    .nav .btn {
        display: none
    }

    .menu-grid, .review-grid {
        grid-template-columns: 1fr
    }

    .pol-1 {
        width: 72%
    }

    .pol-2 {
        width: 72%
    }

    .sticker {
        width: 96px;
        height: 96px;
        font-size: .8rem;
        right:55%;
        top: 76%;
    }

    .sticker1 {
        top: 0%;
        width: 76px;
        height: 100px;      
        right: 3%
    }

    .hero-mascots {
        position: absolute;
        bottom: -70px;
        right: 0px;
        width: min(62%,300px);
        aspect-ratio: 4/3.4;
        transform: rotate(4deg);
        box-shadow: 0 18px 40px rgba(0,0,0,.35);
        transition: transform .25s ease; 
        margin-bottom: 30px;
    }
    .story-img::after {
        inset: 12px -10px -10px 12px
    }

    .ycard {
        transform: rotate(0)
    }
}

@media (prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important
    }

    html {
        scroll-behavior: auto
    }
}

