:root {
    --melon-green: #2BA24C;
    --melon-orange: #FF914D;
    --ink: #2B2B2B;
    --cream: #FFF2E6;
    --cream-strong: #FFE1C8;
    --paper: #FFFFFF;
    --muted: #726A62;
    --line: rgba(43, 43, 43, 0.12);
    --shadow: 0 22px 60px rgba(43, 43, 43, 0.18);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100%;
    color: var(--ink);
    background:
        radial-gradient(circle at 18% 0%, rgba(43, 162, 76, 0.12), transparent 34rem),
        linear-gradient(180deg, #fff8f0 0%, var(--cream) 38%, #ffffff 100%);
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body.is-nav-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

.container,
.section-heading,
.footer-inner,
.footer-bottom {
    width: min(var(--container), calc(100vw - 40px));
    margin: 0 auto;
}

.intro-photo {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    padding: 26px;
    background: rgba(15, 12, 10, 0.78);
    backdrop-filter: blur(10px);
}

.intro-photo.is-hidden {
    display: none;
}

.intro-photo img {
    width: min(720px, 92vw);
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.intro-photo__close {
    position: fixed;
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.nav-shell {
    width: min(1320px, calc(100vw - 36px));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 76px;
    height: 76px;
    padding: 5px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 26px rgba(43, 43, 43, 0.1);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.site-nav a {
    padding: 12px 14px;
    border-radius: var(--radius);
    color: rgba(43, 43, 43, 0.78);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: rgba(43, 162, 76, 0.11);
    color: var(--ink);
    outline: none;
}

.site-nav .nav-cta {
    background: var(--melon-green);
    color: var(--paper);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
    background: var(--melon-orange);
    color: var(--paper);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: calc(100vh - 88px);
    display: grid;
    place-items: center;
    overflow: hidden;
    background: var(--ink);
}

.hero-media,
.hero-slide,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: opacity 900ms ease, transform 7000ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    background:
        linear-gradient(180deg, rgba(8, 7, 6, 0.28), rgba(8, 7, 6, 0.74)),
        linear-gradient(90deg, rgba(43, 43, 43, 0.58), rgba(43, 162, 76, 0.08), rgba(255, 145, 77, 0.18));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(980px, calc(100vw - 42px));
    padding-top: 24px;
    text-align: center;
    color: var(--paper);
}

.hero-content h1 {
    margin: 0;
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(52px, 9vw, 122px);
    line-height: 0.92;
    letter-spacing: 0;
    text-shadow: 0 16px 52px rgba(0, 0, 0, 0.48);
}

.hero-content p {
    width: min(660px, 100%);
    margin: 24px auto 0;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
}

.button--primary {
    background: var(--melon-green);
    color: var(--paper);
}

.button--ghost {
    border: 1px solid rgba(255, 255, 255, 0.58);
    color: var(--paper);
    background: rgba(255, 255, 255, 0.08);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.hero-dots {
    position: absolute;
    z-index: 2;
    bottom: 28px;
    left: 50%;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 34px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.hero-dots button.is-active {
    background: var(--melon-orange);
}

.product-section,
.inline-menu-section,
.category-section,
.reviews,
.location-section {
    padding: 84px 0;
}

.inline-menu-section {
    scroll-margin-top: 106px;
}

.inline-menu-shell {
    width: min(var(--container), calc(100vw - 40px));
    margin: 0 auto;
}

.section-heading--menu {
    align-items: center;
}

.menu-accordion {
    display: grid;
    gap: 12px;
}

.menu-accordion__item {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid rgba(43, 43, 43, 0.13);
    box-shadow: 0 16px 44px rgba(43, 43, 43, 0.1);
}

.menu-accordion__summary {
    position: relative;
    width: 100%;
    min-height: 96px;
    display: grid;
    grid-template-columns: 1fr auto 34px;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border: 0;
    background-color: #191511;
    background-size: cover;
    background-position: center;
    color: var(--paper);
    text-align: left;
    cursor: pointer;
}

.menu-accordion__summary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(43, 162, 76, 0.18), transparent 48%, rgba(255, 145, 77, 0.15));
    opacity: 0;
    transition: opacity 240ms ease;
}

.menu-accordion__summary:hover::after,
.menu-accordion__summary:focus-visible::after,
.menu-accordion__item.is-open .menu-accordion__summary::after {
    opacity: 1;
}

.menu-accordion__summary:focus-visible {
    outline: 3px solid rgba(43, 162, 76, 0.35);
    outline-offset: 3px;
}

.menu-accordion__title,
.menu-accordion__count,
.menu-accordion__chevron {
    position: relative;
    z-index: 1;
}

.menu-accordion__title {
    font-family: "Cinzel", Georgia, serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.42);
}

.menu-accordion__count {
    align-self: center;
    justify-self: end;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.menu-accordion__chevron {
    width: 18px;
    height: 18px;
    justify-self: center;
    border-right: 3px solid var(--melon-orange);
    border-bottom: 3px solid var(--melon-orange);
    transform: rotate(45deg) translateY(-4px);
    transition: transform 220ms ease, border-color 220ms ease;
}

.menu-accordion__item.is-open .menu-accordion__chevron {
    transform: rotate(225deg) translate(-2px, -2px);
    border-color: var(--melon-green);
}

.menu-accordion__panel {
    padding: 18px;
    background: linear-gradient(180deg, #fffdf9, #fff5eb);
}

.menu-product-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.menu-product {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    min-height: 112px;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid rgba(43, 43, 43, 0.09);
    scroll-margin-top: 108px;
}

.menu-product img,
.menu-product__placeholder {
    width: 92px;
    height: 92px;
    border-radius: var(--radius);
    background: var(--cream-strong);
}

.menu-product img {
    object-fit: cover;
}

.menu-product__placeholder {
    display: grid;
    place-items: center;
    border: 1px dashed rgba(43, 43, 43, 0.18);
    color: rgba(43, 43, 43, 0.34);
}

.menu-product__placeholder svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-product__body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.menu-product__line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 10px;
}

.menu-product__line h3 {
    margin: 0;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.25;
}

.menu-product__line span {
    color: var(--melon-orange);
    font-size: 16px;
    font-weight: 800;
    white-space: nowrap;
}

.menu-product p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.section-heading h2,
.reviews-header h2,
.location-heading h2 {
    margin: 0;
    color: var(--ink);
    font-family: "Cinzel", Georgia, serif;
    font-size: 42px;
    line-height: 1.06;
}

.section-heading a {
    flex: 0 0 auto;
    color: var(--melon-green);
    font-size: 13px;
    font-weight: 800;
}

.product-grid {
    width: min(var(--container), calc(100vw - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card,
.category-card,
.review-card {
    border-radius: var(--radius);
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 16px 44px rgba(43, 43, 43, 0.09);
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: var(--cream-strong);
    overflow: hidden;
}

.product-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.product-card__media-placeholder,
.category-card__placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: var(--cream-strong);
    color: var(--melon-green);
    font-size: 28px;
    font-weight: 800;
}

.product-card:hover .product-card__media img,
.product-card:focus-within .product-card__media img {
    transform: scale(1.04);
}

.product-card__body {
    flex: 1;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-card__category {
    color: var(--melon-green);
    font-size: 11px;
    font-weight: 800;
}

.product-card h3 {
    min-height: 48px;
    margin: 0;
    font-size: 19px;
    line-height: 1.25;
}

.product-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.product-card__price {
    margin-top: auto;
    color: var(--melon-orange);
    font-size: 20px;
    font-weight: 800;
}

.category-rail {
    width: min(var(--container), calc(100vw - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.category-card {
    overflow: hidden;
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
    min-height: 106px;
}

.category-card img {
    width: 92px;
    height: 106px;
    object-fit: cover;
}

.category-card__placeholder {
    width: 92px;
    height: 106px;
}

.category-card__body {
    padding: 14px;
}

.category-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
}

.category-card p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.reviews {
    background: linear-gradient(180deg, rgba(255, 145, 77, 0.1), rgba(43, 162, 76, 0.08));
}

.reviews-header {
    width: min(760px, 100%);
    margin-bottom: 28px;
}

.reviews-header p,
.location-heading p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.reviews-badge {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(43, 162, 76, 0.12);
    color: var(--melon-green);
    font-size: 12px;
    font-weight: 800;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.review-card {
    min-height: 260px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.review-rating {
    color: var(--melon-orange);
    letter-spacing: 2px;
}

.review-text {
    flex: 1;
    margin: 0;
    color: #3b352f;
    font-size: 15px;
}

.review-author {
    font-weight: 800;
}

.review-meta {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.reviews-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    min-height: 48px;
    padding: 12px 20px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--paper);
    font-size: 13px;
    font-weight: 800;
}

.location-section {
    background: var(--paper);
}

.location-heading {
    width: min(760px, 100%);
    margin-bottom: 24px;
}

.map-wrapper {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(43, 43, 43, 0.12);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.site-footer {
    padding: 54px 0 24px;
    background: #1f1d1b;
    color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 34px;
}

.site-footer img {
    width: 76px;
    height: 76px;
    padding: 5px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
}

.site-footer h3 {
    margin: 0 0 12px;
    color: var(--paper);
    font-size: 14px;
    text-transform: uppercase;
}

.site-footer p,
.site-footer a {
    display: block;
    margin: 0 0 8px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
}

.status-text {
    grid-column: 1 / -1;
    min-height: 140px;
    display: grid;
    place-items: center;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--muted);
}

@media (max-width: 980px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 88px 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 20px 24px;
        background: rgba(255, 248, 240, 0.98);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 24px 44px rgba(43, 43, 43, 0.12);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 14px 12px;
    }

    .product-grid,
    .category-rail,
    .review-grid,
    .footer-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 640px) {
    .container,
    .section-heading,
    .footer-inner,
    .footer-bottom,
    .product-grid,
    .category-rail {
        width: min(100% - 28px, var(--container));
    }

    .nav-shell {
        width: calc(100vw - 28px);
    }

    .brand img {
        width: 70px;
        height: 70px;
    }

    .hero {
        min-height: calc(100vh - 80px);
    }

    .hero-content p {
        font-size: 15px;
    }

    .product-grid,
    .category-rail,
    .review-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-heading h2,
    .reviews-header h2,
    .location-heading h2 {
        font-size: 34px;
    }

    .product-section,
    .inline-menu-section,
    .category-section,
    .reviews,
    .location-section {
        padding: 58px 0;
    }

    .inline-menu-shell {
        width: min(100% - 28px, var(--container));
    }

    .menu-accordion__summary {
        min-height: 76px;
        grid-template-columns: 1fr 26px;
        gap: 10px;
        padding: 16px;
    }

    .menu-accordion__count {
        display: none;
    }

    .menu-product-list {
        grid-template-columns: 1fr;
    }

    .menu-product {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
    }

    .menu-product img,
    .menu-product__placeholder {
        width: 78px;
        height: 78px;
    }

    .menu-product__line {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .review-card {
        min-height: 0;
    }

    .map-wrapper iframe {
        height: 340px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}
