:root {
    --green-deep: #132a1e;
    --green-deeper: #0d2016;
    --green-mid: #1c4530;
    --gold: #c6a15b;
    --gold-light: #dcc088;
    --cream: #f6f0e4;
    --cream-soft: #faf5ea;
    --ink: #17241a;
    --ink-soft: #4d564c;
    --line: rgba(23,36,26,0.1);
    --radius: 6px;
    --shadow-soft: 0 18px 40px -18px rgba(19,42,30,0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--green-deep);
    line-height: 1.05;
}

.brand-font {
    font-family: 'Marcellus', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

.eyebrow {
    font-size: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 30px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 3px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn-filled {
    background: var(--green-deep);
    color: var(--cream-soft);
    border-color: var(--green-deep);
}

    .btn-filled:hover {
        background: var(--green-mid);
    }

.btn-outline {
    border-color: var(--green-deep);
    color: var(--green-deep);
    background: transparent;
}

    .btn-outline:hover {
        background: var(--green-deep);
        color: var(--cream-soft);
    }

.btn-gold {
    background: var(--gold);
    color: var(--green-deeper);
    border-color: var(--gold);
}

    .btn-gold:hover {
        background: var(--gold-light);
    }

.btn-line-cream {
    border-color: rgba(246,240,228,0.5);
    color: var(--cream-soft);
    background: transparent;
}

    .btn-line-cream:hover {
        background: rgba(246,240,228,0.12);
        border-color: var(--cream-soft);
    }

/* ===== HEADER ===== */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--green-deep);
    border-bottom: 1px solid rgba(198,161,91,0.25);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    max-width: 1320px;
    margin: 0 auto;
}

.logo {
    font-size: 26px;
    letter-spacing: 5px;
    color: var(--gold);
    font-weight: 600;
    width: 100px;
}
img.arabilogo {
    display: none;
}
nav.main-nav {
    display: flex;
    gap: 38px;
}

    nav.main-nav a {
        font-size: 12.5px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #eee7d8;
        position: relative;
        padding-bottom: 6px;
        transition: color .2s;
    }

        nav.main-nav a.active {
            color: var(--gold);
        }

            nav.main-nav a.active::after {
                content: '';
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 2px;
                background: var(--gold);
            }

        nav.main-nav a:hover {
            color: var(--gold-light);
        }

.nav-right {
    display: flex;
    align-items: center;
    gap: 26px;
}

.lang-toggle {
    font-size: 13px;
    color: #eee7d8;
    letter-spacing: 1px;
    cursor: pointer;
}

.nav-cta {
    padding: 11px 24px;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    font-size: 11.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 3px;
    transition: .2s;
}

    .nav-cta:hover {
        background: var(--gold);
        color: var(--green-deeper);
    }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .burger span {
        width: 24px;
        height: 2px;
        background: var(--gold);
    }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(180deg,#efe7d6 0%, var(--cream) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}


    .hero::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 72px;
        background: url(../images/theme.jpeg) no-repeat;
        background-size: cover;
    }

    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 40px;
        align-items: center;
    }

.hero-copy h1 {
    font-size: 64px;
    color: var(--green-deep);
    margin-top: 14px;
}

    .hero-copy h1 .accent {
        color: var(--gold);
        display: block;
        font-style: italic;
    }

.hero-copy p {
    margin-top: 24px;
    max-width: 420px;
    color: var(--ink-soft);
    font-size: 15.5px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.join-journey {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green-deep);
    font-weight: 600;
    cursor: pointer;
}

.play-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
}

    .hero-visual .box-behind {
        position: absolute;
        top: -9%;
        right: -7%;
        width: 89%;
        border-radius: 8px;
        box-shadow: var(--shadow-soft);
        transform: rotate(6deg);
        z-index: 1;
    }

    .hero-visual .plate-wrap {
        position: relative;
        z-index: 2;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: var(--shadow-soft);
        aspect-ratio: 4/3;
    }

        .hero-visual .plate-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

/* ===== ORIGIN SECTION ===== */
.origin {
    padding: 90px 0;
    background: var(--cream);
}

    .origin .container {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 60px;
        align-items: center;
    }

    .origin h2 {
        font-size: 34px;
        margin-bottom: 22px;
    }

    .origin p {
        color: var(--ink-soft);
        font-size: 14.5px;
        line-height: 1.85;
        margin-bottom: 16px;
        max-width: 430px;
    }

    .origin .btn {
        margin-top: 18px;
    }

.origin-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 14px;
}

    .origin-grid .cell {
        border-radius: 8px;
        overflow: hidden;
        aspect-ratio: 3/4;
        box-shadow: 0 10px 26px -14px rgba(19,42,30,0.3);
    }

        .origin-grid .cell img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }

        .origin-grid .cell:hover img {
            transform: scale(1.08);
        }

        .origin-grid .cell.box-cell {
            background: var(--green-deep);
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .origin-grid .cell.box-cell span {
                color: var(--gold);
                font-family: 'Marcellus',serif;
                letter-spacing: 4px;
                font-size: 20px;
            }

/* divider */
.gold-divider {
    padding: 16px 0;
    text-align: center;
    color: var(--gold);
    letter-spacing: 10px;
    font-size: 11px;
    background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(198,161,91,0.35) 40px, rgba(198,161,91,0.35) 41px);
    opacity: .8;
}

/* ===== EXPLORE ===== */
.explore {
    padding: 80px 0 60px;
    text-align: center;
}

.section-title {
    font-size: 20px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 46px;
    font-weight: 600;
    font-family: 'Poppins',sans-serif;
}

    .section-title::before, .section-title::after {
        content: '';
        width: 50px;
        height: 1px;
        background: var(--gold);
    }

.explore-grid {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 16px;
}

.cat-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3/3.6;
    cursor: pointer;
    box-shadow: 0 14px 28px -16px rgba(19,42,30,0.35);
}

    .cat-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

    .cat-card:hover img {
        transform: scale(1.1);
    }

    .cat-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(13,32,22,0.05) 40%, rgba(13,32,22,0.85) 100%);
    }

    .cat-card .cat-label {
        position: absolute;
        bottom: 16px;
        left: 0;
        right: 0;
        z-index: 2;
        color: #f6f0e4;
        text-align: center;
        font-size: 11px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .cat-card .cat-icon {
        position: absolute;
        top: 16px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        width: 34px;
        height: 34px;
        border: 1px solid rgba(246,240,228,0.6);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #f6f0e4;
        font-size: 14px;
    }

/* ===== BROWSE BY CATEGORY ===== */
.browse-category {
    padding: 70px 0 20px;
    text-align: center;
}

.browse-heading {
    margin-bottom: 38px;
}

    .browse-heading h2 {
        font-size: 32px;
    }

.category-row {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    justify-content: center;
    flex-wrap: wrap;
    scrollbar-width: none;
    padding: 4px 0 8px;
}

    .category-row::-webkit-scrollbar {
        display: none;
    }

.cat-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Poppins',sans-serif;
    flex: 0 0 auto;
}

    .cat-pill .pill-circle {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--cream-soft);
        box-shadow: 0 8px 18px -10px rgba(19,42,30,0.3);
        transition: border-color .25s, transform .25s;
        font-size: 24px;
    }

        .cat-pill .pill-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .cat-pill span.pill-label {
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--ink-soft);
        font-weight: 600;
        transition: color .25s;
    }

    .cat-pill:hover .pill-circle {
        transform: translateY(-3px);
    }

    .cat-pill.active .pill-circle {
        border-color: var(--gold);
        box-shadow: 0 10px 22px -10px rgba(198,161,91,0.5);
    }

    .cat-pill.active span.pill-label {
        color: var(--green-deep);
    }

/* ===== FEATURED MENU ===== */
.featured {
    padding: 40px 0 90px;
}

.featured-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 30px;
}

    .featured-head h2 {
        font-size: 20px;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-family: 'Poppins',sans-serif;
        font-weight: 600;
        color: var(--green-deep);
    }

.view-all {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-deep);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.slider-wrap {
    position: relative;
}

.menu-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px;
}

    .menu-track::-webkit-scrollbar {
        display: none;
    }

.menu-card {
    flex: 0 0 calc((100% - 22px*5)/6);
    min-width: 190px;
    background: var(--cream-soft);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 26px -18px rgba(19,42,30,0.3);
    transition: transform .3s;
}

    .menu-card:hover {
        transform: translateY(-6px);
    }

    .menu-card .thumb {
        aspect-ratio: 1/1;
        overflow: hidden;
    }

        .menu-card .thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .menu-card .info {
        padding: 16px 16px 18px;
    }

    .menu-card h4 {
        font-size: 16px;
        font-family: 'Cormorant Garamond',serif;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .menu-card p {
        font-size: 12px;
        color: var(--ink-soft);
        line-height: 1.5;
        min-height: 52px;
    }

    .menu-card .price-row {
        margin-top: 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-card .price {
        font-size: 13px;
        font-weight: 600;
        color: var(--green-deep);
    }

.add-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: .2s;
}

    .add-btn:hover {
        background: var(--gold);
        color: #fff;
    }

.slider-arrow {
    position: absolute;
    top: 40%;
    right: -18px;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--green-deep);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: none;
    z-index: 5;
    transition: .2s;
}

    .slider-arrow:hover {
        background: var(--green-mid);
    }

    .slider-arrow.prev {
        right: auto;
        left: -18px;
    }

/* ===== HELP BUILD QOR ===== */
.build-band {
    background: var(--green-deep);
    color: var(--cream-soft);
    padding: 54px 0;
}

    .build-band .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        flex-wrap: wrap;
    }

.build-copy {
    max-width: 340px;
}

    .build-copy .eyebrow {
        color: var(--gold);
    }

    .build-copy h3 {
        color: var(--cream-soft);
        font-size: 26px;
        margin: 10px 0 14px;
    }

    .build-copy p {
        font-size: 13.5px;
        color: #cfd6cd;
        line-height: 1.7;
        margin-bottom: 20px;
    }

.build-icons {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
}

.build-icon {
    text-align: center;
    max-width: 96px;
}

    .build-icon .ic {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: 1px solid rgba(198,161,91,0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 12px;
        color: var(--gold);
        font-size: 20px;
    }

    .build-icon span {
        font-size: 11px;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #e7e2d3;
        line-height: 1.4;
        font-weight: 500;
    }

/* ===== QOR LAB ===== */
.lab-section {
    padding: 80px 0;
    background: var(--cream-soft);
}

.lab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
}

.lab-col {
}

    .lab-col .eyebrow {
        color: var(--gold);
    }

    .lab-col h3 {
        font-size: 22px;
        margin: 8px 0 6px;
    }

.lab-badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--green-deep);
    border: 1px solid var(--green-deep);
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 14px;
}

.lab-col .lab-img {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 14px;
    box-shadow: 0 14px 30px -18px rgba(19,42,30,.35);
}

    .lab-col .lab-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.lab-col p.desc {
    font-size: 13px;
    color: var(--ink-soft);
    margin-bottom: 14px;
    line-height: 1.6;
}

.lab-link {
    font-size: 11.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--green-deep);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vote-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.vote-item {
    margin-bottom: 16px;
}

    .vote-item .vote-label {
        display: flex;
        justify-content: space-between;
        font-size: 12.5px;
        margin-bottom: 6px;
        color: var(--ink);
        font-weight: 500;
    }

.vote-bar-bg {
    height: 8px;
    border-radius: 6px;
    background: rgba(19,42,30,0.1);
    overflow: hidden;
}

.vote-bar-fill {
    height: 100%;
    background: linear-gradient(90deg,var(--gold),var(--green-deep));
    border-radius: 6px;
}

.vote-thanks {
    margin-top: 18px;
    font-size: 11.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

/* ===== TESTIMONIALS + INSIDE QOR ===== */
.social-section {
    padding: 80px 0;
    background: var(--cream);
}

.social-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
}

.testi-title {
    font-size: 20px;
    margin-bottom: 26px;
    max-width: 260px;
}

.testi-slider {
    position: relative;
    min-height: 150px;
}

.testi-slide {
    display: none;
}

    .testi-slide.active {
        display: block;
        animation: fadeIn .5s ease;
    }

 @keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testi-slide .quote {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.quote::before {
    content: '\201C';
    color: var(--gold);
    font-size: 26px;
    margin-right: 4px;
    font-family: 'Cormorant Garamond',serif;
}

.testi-slide .who {
    font-size: 12.5px;
    color: var(--ink-soft);
    font-weight: 600;
    margin-bottom: 4px;
}

.verified {
    font-size: 11px;
    color: var(--green-mid);
    display: flex;
    align-items: center;
    gap: 5px;
}

.testi-dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

    .testi-dots button {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(19,42,30,0.25);
        border: none;
        cursor: pointer;
        transition: .25s;
        padding: 0;
    }

        .testi-dots button.active {
            background: var(--gold);
            width: 22px;
            border-radius: 5px;
        }

.inside-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

    .inside-head h3 {
        font-size: 20px;
    }

    .inside-head p {
        font-size: 12.5px;
        color: var(--ink-soft);
        margin-top: 4px;
    }

.follow-icons {
    display: flex;
    gap: 12px;
}

    .follow-icons a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--green-deep);
        transition: .2s;
    }

        .follow-icons a:hover {
            background: var(--green-deep);
            color: var(--cream-soft);
        }

.inside-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 12px;
}

    .inside-grid .cell {
        border-radius: 8px;
        overflow: hidden;
        aspect-ratio: 1/1;
    }

        .inside-grid .cell img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }

        .inside-grid .cell:hover img {
            transform: scale(1.08);
        }

/* ===== FOOTER ===== */
footer {
    background: var(--green-deeper);
    color: #dfe4dc;
    position: relative;
    overflow: hidden;
}

.footer-top {
    padding: 44px 0;
    border-bottom: 1px solid rgba(198,161,91,0.2);
}

    .footer-top .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 26px;
    }

    .footer-top h4 {
        color: var(--gold);
        font-size: 20px;
        margin-bottom: 4px;
    }

    .footer-top p {
        font-size: 12.5px;
        color: #b9c0b3;
    }

.platform-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

    .platform-badges span {
        padding: 10px 18px;
        border-radius: 5px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: .5px;
        color: #fff;
    }

.pb-hunger {
    background: #f9a825;
    color: #1a1a1a;
}

.pb-jahez {
    background: #e0212b;
}

.pb-chefz {
    background: #111;
}

.pb-ninja {
    background: #5c2d91;
}

.pb-whatsapp {
    background: #25d366;
    color: #0d2016;
}

.footer-mid {
    padding: 46px 0;
    border-bottom: 1px solid rgba(198,161,91,0.2);
}

    .footer-mid .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }

    .footer-mid h4 {
        color: var(--gold);
        font-size: 19px;
        margin-bottom: 14px;
    }

.join-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    float: left;
    width: 33%;
}

    .join-form input {
        background: transparent;
        border: 1px solid rgba(223,228,220,0.35);
        color: #eee;
        padding: 12px 16px;
        border-radius: 4px;
        font-size: 13px;
        min-width: 170px;
        font-family: 'Poppins',sans-serif;
        font-size: 13px;
        min-width: 100%;
    }

        .join-form input::placeholder {
            color: #9fa89a;
        }

    .join-form button {
        border: none;
    }


textarea#description {
    background: transparent;
    border: 1px solid rgba(223, 228, 220, 0.35);
    color: #eee;
    padding: 12px 16px;
    border-radius: 4px;
    font-size: 13px;
    min-width: 75%;
    height: 72px;
    font-family: 'Poppins', sans-serif;
}

.footer-bottom {
    padding: 50px 0 30px;
}

    .footer-bottom .container {
        display: grid;
        grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
        gap: 30px;
    }

.footer-logo {
    font-size: 26px;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 8px;
}

.footer-bottom .tagline {
    font-size: 12.5px;
    color: #b9c0b3;
    margin-bottom: 20px;
}

.footer-bottom h5 {
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 16px;
}

.footer-bottom li {
    margin-bottom: 10px;
    font-size: 12.5px;
    color: #c7ccc1;
}

    .footer-bottom li a:hover {
        color: var(--gold);
    }

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

    .social-row a {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        border: 1px solid rgba(223,228,220,0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        transition: .2s;
    }

        .social-row a:hover {
            background: var(--gold);
            color: var(--green-deeper);
            border-color: var(--gold);
        }

.footer-pattern {
    position: absolute;
    right: -40px;
    bottom: 0;
    width: 260px;
    height: 291px;
    background-image: url(../images/theme.jpeg);
     opacity: 0.2;
    pointer-events: none;
}
.line p {
    font-size: 12px;
}

.platform-badges {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

    .platform-badges a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 140px;
         background: #fff;
        border-radius: 12px;
        padding: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,.12);
        transition: .3s;
    }

        .platform-badges a:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,.2);
        }

    .platform-badges img {
        max-width: 100%;
         object-fit: contain;
    }


/* ===== RESPONSIVE ===== */
 @media (max-width:1080px) {
    .explore-grid {
        grid-template-columns: repeat(4,1fr);
    }

    .menu-card {
        flex: 0 0 calc((100% - 22px*3)/3.4);
    }

    .lab-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .origin .container {
        grid-template-columns: 1fr;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        grid-template-columns: 1fr 1fr;
    }
}

 @media (max-width:760px) {
    .container {
        padding: 0 22px;
    }

    nav.main-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-copy h1 {
        font-size: 42px;
    }

    .explore-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .origin-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .menu-card {
        flex: 0 0 68%;
    }

    .build-band .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-top .container, .footer-mid .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom .container {
        grid-template-columns: 1fr;
    }

    .inside-grid {
        grid-template-columns: repeat(3,1fr);
    }


    .join-form {
         width: 100%;
    }

}


.card-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 9999;
}

    .card-modal.show {
        opacity: 1;
        visibility: visible;
    }

.card-popup {
    position: relative;
    width: 90%;
    max-width: 450px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transform: scale(.7);
    transition: .35s ease;
}

.card-modal.show .card-popup {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 35px;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

#popupContent .thumb img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

#popupContent .info {
    padding: 20px;
}