﻿:root {
    --bg: #f7f4ef;
    --bg-grad-start: #fbf9f5;
    --bg-grad-end: #f3efe9;
    --surface: #ffffff;
    --surface-soft: #f3efe9;
    --surface-card: #fdfcf9;
    --text: #111827;
    --text-strong: #1f2937;
    --text-muted: #667085;
    --text-subtle: #8a94a6;
    --line: rgba(15, 23, 42, 0.06);
    --line-soft: rgba(15, 23, 42, 0.05);
    --line-strong: rgba(15, 23, 42, 0.08);
    --brand: #a30d12;
    --brand-hover: #980d12;
    --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.06);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-button: 0 10px 24px rgba(0, 0, 0, 0.18);
    --radius-sm: 16px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --wrap: 1160px;
    --ease: 0.18s ease;
    --ease-slow: 0.45s ease;
    --transition-standard: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease), color var(--ease);
    --hero-overlay-desktop: linear-gradient( 90deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.15) 34%, rgba(0, 0, 0, 0.05) 64%, rgba(0, 0, 0, 0.00) 100% ), linear-gradient( 180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.14) 55%, rgba(0, 0, 0, 0.22) 100% );
    --hero-overlay-mobile: linear-gradient( 180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.22) 42%, rgba(0, 0, 0, 0.40) 100% );
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text-strong);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 15px;
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 22px 18px 72px;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    overflow: hidden;
    background: var(--surface-soft);
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: var(--radius-xl);
    box-shadow: none;
}

.hero-media {
    position: absolute;
    inset: 0;
    opacity: 1;
}

    .hero-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 70% center;
        filter: brightness(1.04) contrast(1.03) saturate(1.02);
        transform: scale(1.01);
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: var(--hero-overlay-desktop);
    opacity: .9;
}

    .hero-overlay::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(255, 255, 255, 0.10) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(255, 255, 255, 0) 72% );
    }

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 14px;
    min-height: 480px;
    max-width: 620px;
    padding: 40px 34px 34px;
    color: #fff;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.86);
}

    .hero-kicker .dot {
        width: 7px;
        height: 7px;
        flex: 0 0 auto;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
    }

.hero-title {
    margin: 0;
    max-width: 12ch;
    font-size: clamp(44px, 5.2vw, 68px);
    line-height: 0.95;
    letter-spacing: -0.05em;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.hero-sub {
    margin: 0;
    max-width: 33ch;
    font-size: 19px;
    line-height: 1.48;
    color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    appearance: none;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1;
    letter-spacing: -0.01em;
    font-weight: 600;
    white-space: nowrap;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transition: var(--transition-standard);
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-primary {
    color: #fff;
    background: rgba(17, 24, 39, 0.92);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
}

    .btn-primary:hover {
        background: #0f172a;
    }

.btn-secondary {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.20);
    backdrop-filter: none;
}

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.16);
    }

/* =========================================================
   INFO STRIP
   ========================================================= */

.strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 18px 0 4px;
}

.strip-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line-soft);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: none;
}

.badge {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
}

.strip-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.strip-text {
    margin: 2px 0 0;
    font-size: 14px;
    line-height: 1.45;
    color: var(--text-muted);
}

/* =========================================================
   SECTION HEAD
   ========================================================= */

.menu-section {
    margin-top: 64px;
}

.menu-section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin: 0 2px 14px;
}

.menu-section-title {
    margin: 0;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.06;
    font-weight: 650;
    letter-spacing: -0.035em;
    color: var(--text-strong);
}

.menu-section-meta {
    margin: 0;
    max-width: 58ch;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-muted);
}

/* =========================================================
   FILTER CHIPS
   ========================================================= */

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 2px 18px;
}

.chip {
    appearance: none;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 6px 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: rgba(27, 27, 27, 0.5);
    transition: color var(--ease), transform var(--ease);
}

    .chip:hover {
        color: var(--text-strong);
        background: transparent;
        transform: none;
        box-shadow: none;
    }

    .chip.is-active {
        font-weight: 600;
        background: transparent;
        border: none;
        box-shadow: none;
        color: rgba(27, 27, 27, 0.95);
    }

/* =========================================================
   GRID + CARDS
   ========================================================= */

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    row-gap: 24px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    -webkit-tap-highlight-color: transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,.04);
    background: transparent;
    transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

    .card:hover {
        background: rgba(17,24,39,.02);
        transform: translateY(-2px);
        box-shadow: var(--shadow-soft), 0 6px 16px rgba(0,0,0,0.04);
    }
    .card:active {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    }
    .card.is-hidden {
        display: none;
    }

.card-media {
    aspect-ratio: 16 / 10.4;
    overflow: hidden;
    border: none;
    border-radius: 0;
    background: var(--surface-soft);
}

    .card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: none;
    }

.card:hover .card-media img {
    transform: none;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 18px 20px;
    flex: 1;
    border-radius: 0;
    border-top: 1px solid rgba(0,0,0,0.035);
    background: rgba(255,255,255,0.75);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.card-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text);
}

.pill {
    flex: 0 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    white-space: nowrap;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    color: var(--text-subtle);
}

.card-desc {
    margin: 0;
    max-width: 42ch;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-muted);
}

.card-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    margin-top: 2px;
}

.price {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

    .sub,
    .price .sub {
        font-size: 12.5px;
        font-weight: 500;
        color: var(--text-subtle);
    }

.cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #6b7280;
    transition: color var(--ease);
}

.card:hover .cta {
    color: var(--text);
}

.cta span {
    opacity: 1;
}

/* =========================================================
   FAQ
   Matches main.js height animation
   ========================================================= */

.faqSection {
    position: relative;
    max-width: 820px;
    margin: 96px auto 48px;
    padding: 0;
}

    .faqSection::before {
        display: none;
    }

.faqSection__title {
    margin: 0 0 22px;
    font-size: clamp(30px, 3vw, 36px);
    line-height: 1.06;
    letter-spacing: -0.04em;
    font-weight: 700;
    color: var(--text-strong);
}

.faqSection .accordion {
    position: relative;
    display: block;
    width: 100%;
    appearance: none;
    margin: 0;
    padding: 20px 32px 20px 0;
    border: none;
    border-bottom: 1px solid var(--line-strong);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    text-align: left;
    cursor: pointer;
    color: var(--text-strong);
    font: inherit;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: -0.015em;
    transition: color var(--ease), border-color var(--ease);
}

    .faqSection .accordion:hover {
        color: var(--text);
        border-bottom-color: rgba(15, 23, 42, 0.12);
        transform: none;
        background: transparent;
        box-shadow: none;
    }

    .faqSection .accordion.is-open {
        border-bottom-color: transparent;
        background: transparent;
        box-shadow: none;
    }

    .faqSection .accordion::after {
        content: "+";
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        font-size: 20px;
        line-height: 1;
        font-weight: 400;
        color: #98a2b3;
        background: transparent;
        box-shadow: none;
        transition: color var(--ease);
    }

    .faqSection .accordion:hover::after {
        color: var(--text-muted);
    }

    .faqSection .accordion.is-open::after {
        content: "–";
        color: var(--text-muted);
    }

.faqSection .panel {
    display: block;
    height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    transition: height 320ms cubic-bezier(.22, 1, .36, 1);
    will-change: height;
}

    .faqSection .panel .inner {
        padding: 0 0 22px;
    }

    .faqSection .panel p {
        margin: 0;
        max-width: 62ch;
        font-size: 15px;
        line-height: 1.75;
        color: var(--text-muted);
    }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (min-width: 760px) {
    .wrap {
        padding: 24px 18px 76px;
    }

    .grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1040px) {
    .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1040px) {
    .hero-content {
        max-width: 560px;
    }

    .hero-title {
        max-width: 13ch;
    }
}

@media (max-width: 759px) {
    .wrap {
        padding: 16px 14px 52px;
    }

    .hero {
        border-radius: var(--radius-lg);
    }

    .hero-media img {
        object-position: 72% center;
        filter: brightness(0.98) contrast(1.02);
    }

    .hero-overlay {
        background: var(--hero-overlay-mobile);
    }

        .hero-overlay::after {
            display: none;
        }

    .hero-content {
        min-height: 380px;
        max-width: none;
        padding: 24px 18px 20px;
        gap: 10px;
    }

    .hero-title {
        max-width: 10ch;
        font-size: clamp(30px, 8vw, 40px);
        line-height: 0.98;
    }

    .hero-sub {
        max-width: 30ch;
        font-size: 15px;
        line-height: 1.5;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 8px;
    }

    .btn {
        min-height: 42px;
        padding: 0 16px;
        border-radius: 12px;
        font-size: 14px;
    }

    .strip {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 14px;
    }

    .strip-card {
        padding: 14px;
        border-radius: var(--radius-sm);
    }

    .menu-section {
        margin-top: 26px;
    }

    .menu-section-title {
        font-size: 30px;
    }

    .menu-section-meta {
        font-size: 14px;
    }

    .filter-chips {
        gap: 8px;
        margin-bottom: 14px;
    }

    .chip {
        padding: 8px 2px;
        font-size: 12.5px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .card-body {
        padding: 14px 14px 16px;
    }

    .card-title {
        font-size: 17px;
    }

    .card-desc {
        font-size: 13.5px;
    }

    .price {
        font-size: 16px;
    }

    .cta {
        font-size: 13.5px;
    }

    .faqSection {
        margin: 56px auto 28px;
    }

    .faqSection__title {
        margin-bottom: 16px;
        font-size: 28px;
    }

    .faqSection .accordion {
        padding: 17px 26px 17px 0;
        font-size: 15px;
    }

        .faqSection .accordion::after {
            font-size: 18px;
        }

    .faqSection .panel .inner {
        padding: 0 0 18px;
    }

    .faqSection .panel p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}