:root {
    --page-bg: #fff3e0;
    --section-bg: #fff8ed;
    --navbar-bg: #f6d7a7;
    --footer-bg: #2b1a12;
    --text-main: #2b1a12;
    --text-secondary: #6b4a35;
    --text-accent: #c76a24;
    --btn-primary: #8b4513;
    --btn-primary-text: #ffffff;
    --btn-secondary-border: #c76a24;
    --card-bg: #ffffff;
    --card-border: #e8c89a;
    --price-color: #8b4513;
    --hero-warm-1: #fff8ed;
    --hero-warm-2: #f6d7a7;
    --hero-warm-3: #edd4a8;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text-main);
    background: var(--page-bg);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

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

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.top-nav-wrap {
    position: relative;
    width: 100%;
    z-index: 10;
    background: var(--navbar-bg);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 14px rgba(43, 26, 18, 0.08);
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0 12px;
    gap: 12px;
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 2px solid var(--card-border);
    border-radius: 10px;
    background: var(--card-bg);
    cursor: pointer;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-main);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

.brand-logo {
    height: 84px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    gap: 24px;
    font-weight: 600;
    color: var(--text-main);
}

.main-nav a {
    transition: color 0.2s ease;
    padding: 8px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.main-nav a:hover {
    color: var(--text-accent);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 48px;
    padding-bottom: 150px;
    margin-top: -1px;
    background: linear-gradient(165deg, var(--hero-warm-1) 0%, var(--hero-warm-2) 55%, var(--hero-warm-3) 100%);
    isolation: isolate;
    min-height: 560px;
}

.hero-bg-layer {
    display: none;
}

.hero-bg-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 140px;
    background: transparent;
    z-index: -1;
    pointer-events: none;
}

.hero-bg-wave::before {
    content: "";
    position: absolute;
    left: -8%;
    width: 116%;
    height: 165px;
    bottom: -108px;
    background: var(--page-bg);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-bg-wave::after {
    content: "";
    position: absolute;
    left: -8%;
    width: 116%;
    height: 165px;
    bottom: -101px;
    background: transparent;
    border-top: 6px solid var(--card-border);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 28px;
    min-height: 360px;
}

.eyebrow {
    display: inline-block;
    color: var(--text-accent);
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.hero-content h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    line-height: 1.08;
    color: var(--text-main);
}

.hero-content h1 span {
    color: var(--text-accent);
    display: block;
}

.hero-content p {
    max-width: 520px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 26, 18, 0.15);
}

.btn-primary {
    color: var(--btn-primary-text);
    background: var(--btn-primary);
}

.btn-primary:hover {
    background: #723809;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--btn-secondary-border);
    color: var(--btn-secondary-border);
}

.btn-secondary:hover {
    background: rgba(199, 106, 36, 0.08);
}

.btn-small {
    padding: 9px 22px;
    font-size: 0.85rem;
    color: var(--btn-primary-text);
    background: var(--btn-primary);
}

.hero-image-wrap {
    display: flex;
    justify-content: center;
}

.hero-image-placeholder {
    width: min(560px, 100%);
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 24px rgba(43, 26, 18, 0.12));
}

.page-content {
    margin-top: 8px;
}

.section {
    padding: 48px 0 64px;
    background: var(--page-bg);
}

.section-alt {
    background: var(--section-bg);
}

h2 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    color: var(--text-main);
}

.section-lead {
    margin: 0 0 28px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.chip-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.chip {
    border: 1.5px solid var(--card-border);
    background: var(--card-bg);
    border-radius: 999px;
    padding: 8px 20px;
    font-weight: 600;
    color: var(--text-accent);
    cursor: pointer;
}

.chip.active {
    background: var(--section-bg);
    border-color: var(--btn-secondary-border);
}

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

.product-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 14px;
    border: 1px solid var(--card-border);
    box-shadow: 0 8px 20px rgba(43, 26, 18, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover {
    box-shadow: 0 12px 28px rgba(43, 26, 18, 0.1);
    transform: translateY(-2px);
}

.card-image {
    width: 100%;
    height: 150px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--text-secondary);
    font-weight: 600;
    background: var(--section-bg);
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.best-selling-grid .card-image {
    height: auto;
    background: var(--section-bg);
    display: block;
    border: 1px solid var(--card-border);
}

.best-selling-grid .product-image {
    width: 100%;
    height: auto;
    object-fit: initial;
}

.product-card h3 {
    margin: 14px 0 8px;
    font-size: 1.08rem;
    color: var(--text-main);
}

.product-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.5;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 4px;
}

.card-bottom strong {
    color: var(--price-color);
    font-size: 1.05rem;
}

.menu-board {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 22px rgba(43, 26, 18, 0.06);
}

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

.menu-category {
    background: var(--section-bg);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 16px;
}

.menu-category h2 {
    font-size: 1.3rem;
    margin-bottom: 14px;
    color: var(--text-main);
}

.menu-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.menu-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px dashed var(--card-border);
    color: var(--text-secondary);
}

.menu-items li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.menu-items strong {
    color: var(--price-color);
}

.menu-full {
    max-width: 900px;
}

.menu-section {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 24px 28px;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(43, 26, 18, 0.05);
}

.menu-section h2 {
    margin-bottom: 10px;
    color: var(--text-main);
}

.menu-section-desc,
.menu-section-note {
    margin: 0 0 16px;
    color: var(--text-secondary);
    line-height: 1.55;
    font-size: 0.95rem;
}

.menu-section-note {
    font-style: italic;
    margin-top: 12px;
    margin-bottom: 0;
}

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

.menu-subsection h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    color: var(--text-accent);
}

.menu-items-plain {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 20px;
}

.menu-items-plain li {
    border-bottom: 0;
    padding-bottom: 0;
    justify-content: flex-start;
}

.menu-items-detailed li {
    align-items: flex-start;
    justify-content: flex-start;
    border-bottom: 1px dashed var(--card-border);
    padding-bottom: 12px;
    margin-bottom: 4px;
}

.menu-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-item-name {
    font-weight: 600;
    color: var(--text-main);
}

.menu-item-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.45;
    font-weight: 400;
}

.simple-hero {
    position: relative;
    background: linear-gradient(165deg, var(--hero-warm-1) 0%, var(--hero-warm-2) 55%, var(--hero-warm-3) 100%);
    padding: 100px 0 52px;
    overflow: hidden;
}

.simple-hero::after {
    content: "";
    position: absolute;
    left: -8%;
    width: 116%;
    height: 165px;
    bottom: -108px;
    background: var(--page-bg);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.simple-hero::before {
    content: "";
    position: absolute;
    left: -8%;
    width: 116%;
    height: 165px;
    bottom: -101px;
    background: transparent;
    border-top: 6px solid var(--card-border);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.simple-hero h1 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-main);
}

.simple-hero p {
    color: var(--text-secondary);
}

.split-block {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.split-text p {
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 14px;
}

.split-image {
    min-height: 280px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: var(--section-bg);
    border: 2px solid var(--card-border);
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(43, 26, 18, 0.08);
}

.about-image {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.about-section {
    display: grid;
    gap: 28px;
}

.about-intro p {
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 0 14px;
}

.about-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.about-media-card {
    margin: 0;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(43, 26, 18, 0.08);
}

.about-photo,
.about-video {
    width: 100%;
    display: block;
    background: var(--text-main);
}

.about-photo {
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.about-video {
    aspect-ratio: 9 / 16;
    max-height: min(70vh, 520px);
    margin: 0 auto;
    object-fit: contain;
    background: #1a120e;
}

.about-media-card figcaption {
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-accent);
    background: var(--section-bg);
    border-top: 1px solid var(--card-border);
}

.contact-card {
    max-width: 760px;
    background: var(--card-bg);
    border-radius: 18px;
    border: 1px solid var(--card-border);
    padding: 28px;
    box-shadow: 0 12px 24px rgba(43, 26, 18, 0.06);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--card-border);
}

.contact-info-grid p {
    margin: 0 0 8px;
    color: var(--text-secondary);
}

.contact-info-grid h2 {
    color: var(--text-main);
}

.hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px dashed var(--card-border);
    padding-bottom: 5px;
    color: var(--text-secondary);
}

.hours-list strong {
    color: var(--text-main);
}

.map-btn {
    display: inline-flex;
    margin: 8px 0 14px;
}

.map-wrap {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

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

.hidden {
    display: none !important;
}

.email-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.email-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(43, 26, 18, 0.55);
}

.email-popup-card {
    position: relative;
    width: min(520px, calc(100% - 24px));
    margin: max(5vh, env(safe-area-inset-top)) auto 24px;
    max-height: calc(100vh - 48px - env(safe-area-inset-top));
    overflow-y: auto;
    background: var(--card-bg);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 20px 50px rgba(43, 26, 18, 0.22);
    border: 1px solid var(--card-border);
}

.email-popup-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    color: var(--text-secondary);
}

.email-popup-eyebrow {
    margin: 0 0 6px;
    color: var(--text-accent);
    font-weight: 600;
}

.email-popup-card h2 {
    margin: 0 0 8px;
    color: var(--text-main);
}

.email-popup-card p {
    margin: 0 0 16px;
    color: var(--text-secondary);
}

.email-popup-card strong {
    color: var(--text-accent);
}

.email-popup-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.email-popup-form input {
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    background: var(--section-bg);
    color: var(--text-main);
}

.email-popup-form input:focus {
    outline: 2px solid var(--btn-secondary-border);
    outline-offset: 1px;
}

.site-footer {
    margin-top: 40px;
    padding: 40px 0 calc(22px + env(safe-area-inset-bottom));
    color: #f5e6d8;
    background: var(--footer-bg);
}

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

.footer-grid h3 {
    margin: 0 0 10px;
    color: #fff8ed;
    font-size: 1.1rem;
}

.footer-grid p {
    margin: 0 0 8px;
    color: #e8d4c4;
    line-height: 1.5;
}

.footer-grid a {
    color: #f6d7a7;
    transition: color 0.2s ease;
}

.footer-grid a:hover {
    color: #fff8ed;
}

.footer-copy {
    margin: 16px 0 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 248, 237, 0.2);
    color: #c9b5a5;
    font-size: 0.9rem;
}

.mastermenu-credit {
    margin: 16px 0 0;
    text-align: center;
}

.mastermenu-credit a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(90deg, #f5a623 0%, #e86f1a 55%, #d95a12 100%);
    box-shadow: 0 4px 14px rgba(217, 90, 18, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.mastermenu-credit a:hover {
    color: #ffffff;
    transform: translateY(-1px);
    filter: brightness(1.05);
    box-shadow: 0 6px 18px rgba(217, 90, 18, 0.45);
}

.footer-mastermenu {
    margin-top: 12px;
    padding-top: 0;
}

.mastermenu-credit--popup {
    margin-top: 16px;
    margin-bottom: 0;
}

.mastermenu-credit--popup a {
    font-size: 0.82rem;
    padding: 9px 16px;
}

/* Tablet landscape & small laptops */
@media (max-width: 1024px) {
    .brand-logo {
        height: 72px;
    }

    .hero {
        min-height: auto;
        padding-bottom: 130px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
}

/* Tablet portrait */
@media (max-width: 900px) {
    .container {
        width: min(1120px, 94%);
    }

    .hero-grid,
    .split-block,
    .about-media-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrap {
        order: -1;
    }

    .hero-image-placeholder {
        width: min(420px, 88vw);
    }

    .simple-hero {
        padding: 88px 0 48px;
    }

    .menu-columns,
    .menu-subsections,
    .menu-items-plain {
        grid-template-columns: 1fr 1fr;
    }

    .menu-full {
        max-width: 100%;
    }
}

/* Large phones & small tablets */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        flex-direction: column;
        gap: 0;
        background: var(--card-bg);
        border: 1px solid var(--card-border);
        border-radius: 14px;
        padding: 8px;
        box-shadow: 0 12px 28px rgba(43, 26, 18, 0.12);
        z-index: 100;
    }

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

    .main-nav a {
        width: 100%;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .main-nav a:hover {
        background: var(--section-bg);
    }

    .brand-logo {
        height: 64px;
    }

    .top-nav-wrap {
        border-radius: 0 0 16px 16px;
    }

    .hero {
        padding-top: 32px;
        padding-bottom: 110px;
    }

    .hero-bg-wave::before,
    .hero-bg-wave::after,
    .simple-hero::before,
    .simple-hero::after {
        height: 120px;
        bottom: -88px;
    }

    .simple-hero::before,
    .hero-bg-wave::after {
        bottom: -82px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .card-bottom {
        flex-wrap: wrap;
        gap: 10px;
    }

    .contact-card {
        padding: 20px;
    }

    .map-wrap iframe {
        height: 280px;
    }

    .hours-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }
}

/* Phones */
@media (max-width: 480px) {
    .container {
        width: min(1120px, 96%);
    }

    .brand-logo {
        height: 52px;
    }

    .top-nav {
        padding: 10px 0 8px;
    }

    .hero {
        padding-top: 24px;
        padding-bottom: 95px;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .simple-hero {
        padding: 76px 0 40px;
    }

    .simple-hero h1 {
        font-size: clamp(1.65rem, 7vw, 2rem);
    }

    .section {
        padding: 32px 0 40px;
    }

    h2 {
        font-size: 1.45rem;
    }

    .section-lead {
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .menu-columns,
    .menu-subsections,
    .menu-items-plain {
        grid-template-columns: 1fr;
    }

    .menu-section {
        padding: 16px 14px;
        margin-bottom: 18px;
    }

    .menu-item-desc {
        font-size: 0.88rem;
    }

    .email-popup-card {
        margin-top: max(3vh, env(safe-area-inset-top));
        padding: 20px 18px;
    }

    .email-popup-form {
        grid-template-columns: 1fr;
    }

    .email-popup-form .btn {
        width: 100%;
    }

    .email-popup-close {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .split-image,
    .about-image,
    .about-photo {
        min-height: 220px;
    }

    .about-video {
        min-height: 200px;
    }

    .map-wrap iframe {
        height: 240px;
    }

    .site-footer {
        padding-top: 32px;
    }
}

/* Very small phones */
@media (max-width: 360px) {
    .brand-logo {
        height: 46px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Large desktops */
@media (min-width: 1400px) {
    .container {
        width: min(1240px, 90%);
    }
}
