:root {
    --cream: #f4eddc;
    --paper: #fffaf0;
    --white: #ffffff;
    --gold: #4f8a5b;
    --gold-dark: #24170f;
    --green: #1f5a3f;
    --ink: #191713;
    --muted: #665d52;
    --line: #dfd0ba;
    --shadow: 0 20px 55px rgba(31, 22, 14, 0.16);
    --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: var(--gold-dark);
    max-width: 100%;
    background-color: var(--gold-dark);
}

body {
    min-height: 100%;
    width: 100%;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    max-width: 100%;
    background-color: var(--gold-dark);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
    width: min(100% - 2.5rem, 1200px);
    margin-inline: auto;
}

.section-snap {
    min-height: 100svh;
    display: flex;
    align-items: center;
    scroll-margin-top: var(--nav-h);
}

.section-title {
    font-family: "DM Serif Display", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    color: var(--gold-dark);
    letter-spacing: 0;
}

.section-title--light { color: var(--white); }

.section-sub, .section-lead {
    color: var(--muted);
    line-height: 1.75;
    max-width: 680px;
    margin-top: 0.65rem;
}

.section-title-center {
    text-align: center;
    display: grid;
    justify-items: center;
    gap: 0.45rem;
    margin-bottom: 2rem;
}

.eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.78rem 1.2rem;
    border: 0;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: 800;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-1px); }
.btn-lg { min-height: 52px; padding-inline: 1.6rem; }
.btn-primary { color: var(--white); background: var(--gold); box-shadow: 0 14px 28px rgba(47, 93, 61, 0.24); }
.btn-primary:hover { background: var(--green); }
.btn-outline { color: var(--gold-dark); background: var(--white); border: 1px solid var(--line); }
.btn-outline:hover { box-shadow: 0 10px 24px rgba(69, 26, 3, 0.12); }

.nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(255, 253, 248, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(234, 219, 195, 0.8);
}

.nav-inner {
    width: min(100% - 1.4rem, 1200px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    color: var(--gold-dark);
    font-family: "DM Serif Display", serif;
    font-size: 1.25rem;
    white-space: nowrap;
}

.nav-logo strong { color: var(--gold); font-weight: 400; }
.nav-logo-img { width: 42px; height: 42px; object-fit: contain; border-radius: 50%; }

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
    gap: 0.4rem;
}

.language-toggle, .nav-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 0;
    color: var(--white);
    cursor: pointer;
}

.language-toggle {
    gap: 0.3rem;
    padding: 0 0.75rem;
    background: var(--gold-dark);
    font-weight: 800;
}

.nav-action {
    --action-color: var(--gold);
    background: var(--action-color);
    padding: 0 0.7rem;
    font-size: 0.88rem;
    font-weight: 800;
}

.nav-action-logo { width: 1.4rem; height: 1.4rem; object-fit: contain; filter: brightness(0) invert(1); }
.nav-action-logo--uber { width: 2rem; }
.nav-action--phone { --action-color: var(--gold); gap: 0.45rem; min-width: 86px; }
.nav-action--facebook { --action-color: #1877f2; }
.nav-action--instagram { --action-color: #b83f78; }

.hero {
    position: relative;
    min-height: 100svh;
    padding-top: var(--nav-h);
    text-align: center;
    background:
        linear-gradient(180deg, rgba(18, 17, 14, 0.62), rgba(18, 17, 14, 0.72)),
        url("images/layout.jpg") center / cover;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    display: block;
    overflow: hidden;
    border: 5px solid rgba(255,255,255,0.92);
    box-shadow: var(--shadow);
    pointer-events: none;
    z-index: 1;
}

.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img--left { left: -1.7rem; top: 15%; width: 118px; height: 158px; border-radius: 46% 54% 42% 58%; transform: rotate(-8deg); }
.hero-img--right { right: -1.8rem; bottom: 8%; width: 112px; height: 150px; border-radius: 54% 46% 58% 42%; transform: rotate(8deg); }

.hero-content {
    position: relative;
    z-index: 2;
    width: min(100% - 2.5rem, 740px);
    margin-inline: auto;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--gold-dark);
    border: 1px solid var(--line);
    font-weight: 800;
    font-size: 0.82rem;
}

.hero-badge-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #6fc071;
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.15);
}

.hero-heading {
    font-family: "DM Serif Display", serif;
    font-size: clamp(3.1rem, 8vw, 6rem);
    line-height: 0.98;
    color: var(--white);
    text-shadow: 0 3px 20px rgba(0,0,0,0.45);
}

.hero-heading-accent { color: #b7e4aa; }

.hero-sub {
    margin: 1.25rem auto 0;
    color: rgba(255,255,255,0.9);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.8;
    max-width: 640px;
    overflow-wrap: break-word;
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.updates-section {
    background: var(--white);
    padding: 5rem 0;
    border-block: 1px solid var(--line);
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.fb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--gold);
    font-weight: 800;
    white-space: nowrap;
}

.updates-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 0.3rem;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior: contain;
    touch-action: pan-x;
}

.updates-scroll::-webkit-scrollbar { display: none; }

.update-card {
    flex: 0 0 min(315px, calc(100vw - 2.5rem));
    overflow: hidden;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    scroll-snap-align: start;
}

.update-card-img { height: 205px; background: var(--line); cursor: pointer; }
.update-card-img img, .update-card-img video { width: 100%; height: 100%; object-fit: cover; }
.update-card-body { padding: 1rem 1.1rem 1.2rem; }
.update-date { display: inline-flex; gap: 0.35rem; color: var(--gold); font-size: 0.76rem; font-weight: 800; margin-bottom: 0.45rem; }
.update-title { color: var(--gold-dark); font-family: "DM Serif Display", serif; font-size: 1.12rem; line-height: 1.25; }

.update-read-more {
    display: inline;
    margin-left: 0.3rem;
    background: none;
    border: 0;
    padding: 0;
    color: var(--gold);
    font-family: "Inter", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: underline;
    cursor: pointer;
}

.text-lightbox-box {
    position: relative;
    background: var(--cream);
    color: var(--ink);
    width: 100%;
    max-width: 520px;
    max-height: 80svh;
    overflow-y: auto;
    padding: 2rem 1.75rem 1.75rem;
    border-radius: 0.9rem;
    cursor: auto;
}

.text-lightbox-box p {
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    white-space: pre-wrap;
}

.text-lightbox .lightbox-close {
    color: var(--gold-dark);
    top: 0.6rem;
    right: 0.7rem;
}

.menu-section {
    background: var(--paper);
    padding: 5.5rem 0;
}

.category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.category-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    border-radius: 0.5rem;
    background-image: var(--card-image);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
    isolation: isolate;
    transition: transform 0.18s, box-shadow 0.2s;
}

.category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 65px rgba(69, 26, 3, 0.2);
}

.category-card-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(23, 18, 13, 0.08), rgba(23, 18, 13, 0.76));
}

.category-card-content {
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1.2rem;
    color: var(--white);
}

.category-card-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.32);
}

.category-card-title {
    font-family: "DM Serif Display", serif;
    font-size: 2rem;
    line-height: 1.05;
}

.category-card-copy {
    max-width: 34rem;
    color: rgba(255,255,255,0.88);
    line-height: 1.55;
    font-weight: 600;
}

.category-card-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    margin-top: 0.2rem;
    color: var(--cream);
    font-weight: 800;
    font-size: 0.88rem;
}

.about-section {
    background: var(--cream);
    padding: 5.5rem 0;
}

.about-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.about-copy {
    display: grid;
    gap: 1rem;
}

.about-copy p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.85;
    font-size: 1.05rem;
}

.about-photo {
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    background: var(--line);
}

.about-photo img {
    width: 100%;
    height: min(60svh, 520px);
    object-fit: cover;
    cursor: pointer;
}

.embed-frame {
    overflow: hidden;
    border-radius: 0.5rem;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: var(--cream);
}

.embed-frame iframe {
    display: block;
    width: 100%;
    min-height: 390px;
    border: 0;
}

.location-section {
    background: linear-gradient(135deg, var(--gold-dark), #1f3d2d);
    color: var(--white);
    padding: 6rem 0;
}

.location-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.location-intro {
    color: #eee0c5;
    margin-top: 0.7rem;
    line-height: 1.75;
}

.location-details {
    display: grid;
    gap: 1.35rem;
    margin-top: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 0.5rem;
    background: rgba(255,255,255,0.1);
    color: #b7e4aa;
}

.location-item h4 { margin-bottom: 0.32rem; }
.location-item a, .hours { color: #eee0c5; line-height: 1.65; font-size: 0.94rem; }
.location-phone { font-size: 1.35rem !important; font-weight: 800; }
.hours { display: grid; grid-template-columns: auto auto; gap: 0.25rem 1rem; }
.location-map iframe { min-height: 430px; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0,0,0,0.86);
    cursor: pointer;
}

.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90svh; border-radius: 0.7rem; object-fit: contain; }
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    color: var(--white);
    background: transparent;
    border: 0;
    font-size: 2rem;
    cursor: pointer;
}

.subpage {
    padding-top: var(--nav-h);
    background: var(--paper);
}

.category-hero {
    position: relative;
    min-height: 58svh;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    background-image: linear-gradient(180deg, rgba(23,18,13,0.1), rgba(23,18,13,0.82)), var(--hero-image);
    background-size: cover;
    background-position: center;
}

.category-hero-content {
    width: min(100% - 2.5rem, 1100px);
    margin: 0 auto;
    padding: 5rem 0 3rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    min-height: 42px;
    padding: 0.5rem 0.82rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.28);
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.category-hero h1 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.98;
}

.category-hero p {
    max-width: 680px;
    margin-top: 1rem;
    color: rgba(255,255,255,0.9);
    font-size: 1.12rem;
    line-height: 1.7;
}

.category-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.category-count {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.5rem 0.9rem;
    border-radius: 0.5rem;
    color: var(--gold-dark);
    background: var(--cream);
    font-weight: 800;
}

.listing-section {
    padding: 4rem 0 5rem;
}

.listing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.listing-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    background: var(--white);
}

.listing-item h3 {
    font-size: 1rem;
    line-height: 1.35;
}

.listing-item p {
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.listing-item strong {
    color: var(--gold);
    white-space: nowrap;
}

.order-page {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 3rem) 0 4rem;
    background: linear-gradient(135deg, var(--cream), var(--paper));
}

.order-layout {
    display: grid;
    gap: 2rem;
    align-items: start;
}

.order-copy {
    display: grid;
    gap: 1rem;
}

.order-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    padding: 1.25rem;
}

.order-form {
    display: grid;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.form-field {
    display: grid;
    gap: 0.4rem;
}

.form-field label {
    color: var(--gold-dark);
    font-weight: 800;
    font-size: 0.9rem;
}

.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 0.5rem;
    min-height: 46px;
    padding: 0.75rem 0.82rem;
    background: var(--paper);
    color: var(--ink);
}

.form-field textarea { min-height: 120px; resize: vertical; }
.form-field--full { grid-column: 1 / -1; }

.order-message {
    padding: 0.85rem 1rem;
    border-radius: 0.5rem;
    background: #ecfdf5;
    color: var(--green);
    font-weight: 800;
    line-height: 1.5;
}

@media (min-width: 720px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: repeat(2, 1fr); }
    .listing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 940px) {
    .hero-img--left { left: 4%; top: 48%; width: 230px; height: 310px; }
    .hero-img--right { right: 4%; top: 44%; bottom: auto; width: 220px; height: 300px; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .about-grid, .location-grid, .order-layout { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
    :root { --nav-h: 72px; }
    .nav-inner { gap: 0.45rem; }
    .nav-logo span { display: none; }
    .nav-actions { gap: 0.32rem; }
    .language-toggle { min-width: 50px; padding: 0 0.55rem; }
    .nav-action { min-width: 38px; height: 38px; padding-inline: 0.55rem; }
    .nav-action--phone { min-width: 38px; }
    .nav-action-label--phone { display: none; }
    .nav-action-logo { width: 1.25rem; }
    .nav-action-logo--uber { width: 1.7rem; }
    .container, .hero-content, .category-hero-content { width: min(100% - 1.5rem, 1200px); }
    .section-header { align-items: flex-start; flex-direction: column; }
    .hours { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
    .nav-logo-img { width: 42px; height: 42px; }
    .hero-heading { font-size: 2.28rem; }
    .hero-sub { font-size: 0.96rem; }
    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }
    .category-card {
        min-height: 118px;
        border-radius: 0.65rem;
        box-shadow: 0 12px 28px rgba(69, 26, 3, 0.16);
    }
    .category-card-shade {
        background: linear-gradient(180deg, rgba(23, 18, 13, 0.12), rgba(23, 18, 13, 0.74));
    }
    .category-card-content {
        align-items: center;
        justify-content: center;
        gap: 0.35rem;
        min-height: 118px;
        padding: 0.55rem 0.35rem;
        text-align: center;
    }
    .category-card-icon {
        width: 32px;
        height: 32px;
        font-size: 0.84rem;
    }
    .category-card-title {
        font-family: "Inter", sans-serif;
        font-size: 0.78rem;
        font-weight: 800;
        line-height: 1.16;
        overflow-wrap: anywhere;
    }
    .category-card-copy,
    .category-card-meta {
        display: none;
    }
}

@media (max-width: 430px) {
    .category-grid { gap: 0.45rem; }
    .category-card { min-height: 104px; }
    .category-card-content { min-height: 104px; }
    .category-card-title { font-size: 0.7rem; }
    .category-card-icon {
        width: 30px;
        height: 30px;
    }
}
