.hero {
    position: relative;
    min-height: 92svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #111;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
}

.hero__bg .carousel-slide.active {
    opacity: 1;
}

.hero__bg .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__grad {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(26, 25, 23, 0.82) 0%, rgba(26, 25, 23, 0.3) 50%, rgba(26, 25, 23, 0.45) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    padding: 2rem 1.25rem 4rem;
    text-align: center;
    color: #fff;
}

.hero__badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: rgba(230, 185, 59, 0.2);
    border: 1px solid rgba(230, 185, 59, 0.45);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #E6B93B;
    margin-bottom: 1.25rem;
}

.hero__h1 {
    font-size: clamp(2rem, 7vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.hero__h1 em {
    color: #E6B93B;
    font-style: normal;
}

.hero__sub {
    font-size: clamp(0.9rem, 3vw, 1.05rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    max-width: 480px;
    margin: 0 auto 2rem;
}

/* Search bar */
.hero__search {
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 50px;
    padding: 0.4rem 0.4rem 0.4rem 1.1rem;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    max-width: 480px;
    margin: 0 auto 2rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.hero__search:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.hero__search svg {
    flex-shrink: 0;
    color: #9C998F;
    width: 18px;
    height: 18px;
}

.hero__search input {
    flex: 1;
    border: none;
    background: none;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    color: #1A1917;
    padding: 0 0.75rem;
    min-width: 0;
    pointer-events: none;
}

.hero__search input::placeholder {
    color: #9C998F;
}

.hero__search button {
    flex-shrink: 0;
    background: #E6B93B;
    color: #1A1917;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.25rem;
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    transition: background 0.15s;
}

.hero__search button:hover {
    background: #C89B1F;
}

/* Stats */
.hero__stats {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__stat:last-child {
    border-right: none;
}

.hero__stat-n {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.hero__stat-l {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ── Page container ── */
.pg {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ── Section ── */
.sec {
    padding: 3rem 0;
}

.sec--alt {
    background: var(--cream);
}

.sec__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.sec__left {}

.sec__eye {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 0.35rem;
}

.sec__title {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--ink);
}

.sec__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--muted);
    flex-shrink: 0;
    transition: color 0.15s;
}

.sec__link:hover {
    color: var(--adk);
}

.sec__link svg {
    transition: transform 0.2s;
}

.sec__link:hover svg {
    transform: translateX(3px);
}

/* ── Scroll row (horizontal) ── */
.scroll-row {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.scroll-row::-webkit-scrollbar {
    display: none;
}

/* ── Card ── */
.card {
    flex: 0 0 72vw;
    max-width: 280px;
    background: var(--surface);
    border-radius: var(--r);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--sh-sm);
    cursor: pointer;
    scroll-snap-align: start;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh);
}

@media (min-width: 480px) {
    .card {
        flex: 0 0 55vw;
    }
}

@media (min-width: 768px) {
    .card {
        flex: 0 0 240px;
        max-width: 240px;
    }
}

.card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.card__body {
    padding: 0.85rem;
}

.card__title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
}

.card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
}

.card__user {
    font-size: 0.75rem;
    color: var(--muted);
}

.card__score {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--adk);
}

/* ── Lists grid (2-col on mobile) ── */
.lists-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

@media (min-width: 600px) {
    .lists-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .lists-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.lists-grid .card {
    flex: none;
    max-width: 100%;
    width: 100%;
}

.lists-grid .card__img {
    aspect-ratio: 1/1;
}

/* ── Cuisine grid ── */
.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 600px) {
    .cuisine-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 900px) {
    .cuisine-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.cuisine-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    aspect-ratio: 3/4;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    background: #222;
}

.cuisine-card.featured {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

@media (min-width: 600px) {
    .cuisine-card.featured {
        grid-column: span 1;
        aspect-ratio: 3/4;
    }
}

.cuisine-card .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.cuisine-card:hover .bg {
    transform: scale(1.07);
}

.cuisine-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 25, 23, 0.75) 0%, transparent 60%);
}

.cuisine-info {
    position: relative;
    z-index: 1;
    padding: 0.85rem;
}

.cuisine-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(230, 185, 59, 0.9);
    margin-bottom: 0.25rem;
}

.cuisine-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.cuisine-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.2rem;
}

/* ── About ── */
.about {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 1.25rem;
    text-align: center;
}

.about__inner {
    max-width: 620px;
    margin: 0 auto;
}

.about__badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.35rem 0.9rem;
    background: rgba(230, 185, 59, 0.15);
    border: 1px solid rgba(230, 185, 59, 0.35);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #E6B93B;
}

.about__h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.about__p {
    font-family: 'Source Serif 4', serif;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about__note {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 1.5rem;
}

.about__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #E6B93B;
    border-bottom: 1px solid rgba(230, 185, 59, 0.35);
    padding-bottom: 2px;
    transition: border-color 0.15s;
}

.about__link:hover {
    border-color: #E6B93B;
}

/* ── Ad block ── */
.ad-wrap {
    text-align: center;
    padding: 1.5rem 1rem;
}

/* ── Search modal (bottom sheet on mobile) ── */
.srch-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
}

.srch-modal.active {
    display: block;
}

.srch-modal__bg {
    position: absolute;
    inset: 0;
    background: rgba(26, 25, 23, 0.55);
    backdrop-filter: blur(4px);
}

.srch-modal__box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    border-radius: 24px 24px 0 0;
    padding: 1.5rem 1.25rem 2.5rem;
    max-height: 90svh;
    overflow-y: auto;
    animation: sheetUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes sheetUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

@media (min-width: 640px) {
    .srch-modal__box {
        position: absolute;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: min(600px, 95vw);
        max-height: 88vh;
        border-radius: 24px;
        animation: modalIn 0.25s ease;
    }

    @keyframes modalIn {
        from {
            opacity: 0;
            transform: translate(-50%, -48%);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }
}

.srch-modal__handle {
    width: 40px;
    height: 4px;
    background: var(--border);
    border-radius: 50px;
    margin: 0 auto 1.25rem;
}

@media (min-width: 640px) {
    .srch-modal__handle {
        display: none;
    }
}

.srch-modal__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.srch-modal__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
}

.srch-modal__close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    border: none;
    border-radius: 50%;
    color: var(--muted);
}

.srch-irow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .srch-irow {
        grid-template-columns: 1fr 1fr;
    }
}

.srch-ig {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.srch-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.srch-input {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--cream);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    color: var(--ink);
    transition: border-color 0.15s;
    width: 100%;
}

.srch-input:focus {
    outline: none;
    border-color: var(--accent);
    background: #fff;
}

.srch-fsec {
    margin-bottom: 1rem;
}

.srch-ftitle {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.srch-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.srch-chip {
    padding: 0.45rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    background: var(--surface);
    font-family: 'Sora', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.15s;
}

.srch-chip:hover {
    border-color: var(--accent);
    color: var(--adk);
}

.srch-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--ink);
    font-weight: 700;
}

.srch-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.srch-btn-clear {
    flex: 1;
    padding: 0.85rem;
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--surface);
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.15s;
}

.srch-btn-clear:hover {
    background: var(--cream);
}

.srch-btn-go {
    flex: 2;
    padding: 0.85rem;
    background: var(--accent);
    border: none;
    border-radius: var(--r-sm);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.15s;
}

.srch-btn-go:hover {
    background: var(--adk);
}