/* ========== VARIABLES ========== */
:root {
    --yellow: #F5A623;
    --yellow-light: #FFD166;
    --green: #2D6A4F;
    --green-light: #52B788;
    --green-dark: #1B4332;
    --red: #D62828;
    --red-light: #E76F51;
    --dark: #1A1A2E;
    --dark-card: #16213E;
    --dark-surface: #0F3460;
    --cream: #FFF8F0;
    --white: #FFFFFF;
    --text: #E8E8E8;
    --text-muted: #A0A0B0;
    --font-display: 'Paytone One', sans-serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 6px;
    --radius-lg: 12px;
    --shadow: 0 8px 32px rgba(0,0,0,0.3);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-body);
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ========== UTILITIES ========== */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

.section-label {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    text-align: center;
}
.section-label::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--green) 0 33.33%, var(--yellow) 33.33% 66.66%, var(--red) 66.66% 100%);
}
/* "Our Story" uses its own divider instead of the stripe */
.about-text .section-label::after { display: none; }
.about-text .about-divider { margin-left: auto; margin-right: auto; }
.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 48px;
    text-align: center;
}
.accent { color: var(--yellow); }
.highlight { color: var(--yellow-light); font-weight: 600; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--yellow), var(--red-light));
    color: var(--dark);
    border-color: transparent;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245,166,35,0.4);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}
.btn-uber {
    background: #06C167;
    color: var(--white);
    border-color: transparent;
    font-size: 1.1rem;
    padding: 16px 40px;
}
.btn-uber:hover {
    background: #05a558;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6,193,103,0.4);
}

/* ========== NAV ========== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(26,26,46,0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}
.nav-wm { display: flex; flex-direction: column; line-height: 1; }
.nav-wm .wm-top { font-family: var(--font-display); font-size: 1.15rem; color: #fff; letter-spacing: 0.5px; }
.nav-wm .wm-bar { height: 3px; margin: 3px 0; border-radius: 2px;
    background: linear-gradient(90deg, var(--green-light) 0 50%, var(--yellow-light) 50% 100%); }
.nav-wm .wm-sub { font-family: var(--font-display); font-size: 0.6rem; letter-spacing: 0.3em; color: var(--green-light); }
@media (max-width: 480px){ .nav-wm .wm-top{ font-size: 1rem; } .nav-logo{ gap: 9px; } }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
    position: relative;
}
.nav-links a:hover { color: var(--yellow); }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--yellow);
    transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-ig { display: flex; align-items: center; }
.nav-ig svg { width: 20px; height: 20px; }
.nav-ig::after { display: none !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(26,26,46,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    z-index: 999;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.mobile-menu.open { max-height: 400px; padding: 24px 0; }
.mobile-link {
    display: block;
    text-align: center;
    padding: 16px 24px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}
.mobile-link:hover { color: var(--yellow); }
.mobile-link.ig-link { color: var(--yellow); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, var(--dark) 0%, #0a1628 40%, var(--green-dark) 100%);
}
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-overlay-old {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(245,166,35,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(82,183,136,0.12) 0%, transparent 60%);
}
.hero-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: glowPulse 6s ease-in-out infinite alternate;
}
.hero-glow-1 { width: 500px; height: 500px; background: var(--yellow); top: -10%; left: -10%; }
.hero-glow-2 { width: 400px; height: 400px; background: var(--green); bottom: -10%; right: -5%; animation-delay: 2s; }
.hero-glow-3 { width: 300px; height: 300px; background: var(--red-light); top: 40%; right: 20%; animation-delay: 4s; opacity: 0.15; }

@keyframes glowPulse {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.15); opacity: 0.35; }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 800px;
}
.hero-pre {
    font-size: 1rem;
    font-weight: 600;
    color: var(--yellow-light);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--text-muted);
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.6s;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.8s;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ========== ABOUT ========== */
.about-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--yellow), var(--green-light));
    border-radius: 2px;
    margin-bottom: 40px;
}
.about-content { max-width: 720px; }
.about-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ========== MENU ========== */
.menu-section { background: linear-gradient(180deg, var(--dark) 0%, rgba(15,52,96,0.3) 50%, var(--dark) 100%); }

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,0.15);
    background: transparent;
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover { border-color: var(--yellow); color: var(--yellow); }
.filter-btn.active {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--dark);
    font-weight: 600;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 16px;
}

.menu-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    transition: var(--transition);
}
.menu-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(245,166,35,0.4);
}
/* ---- Menu category sections (dual-mode: tabs desktop / accordion phone) ---- */
.menu-cat-head { display: none; }
.menu-cats .menu-cat { display: none; }
.menu-cats .menu-cat.active { display: block; }

@media (max-width: 767px) {
    .menu-filters { display: none; }
    .menu-cats .menu-cat { display: block; margin-bottom: 12px; }
    .menu-cat-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 16px 20px;
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--radius);
        color: var(--white);
        font-family: var(--font-body);
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        text-align: left;
        transition: var(--transition);
    }
    .menu-cat-head:hover { border-color: rgba(245,166,35,0.4); }
    .menu-cat-chev {
        color: var(--yellow);
        font-size: 1.6rem;
        line-height: 1;
        font-weight: 400;
        transition: transform .25s ease;
    }
    .menu-cat.open .menu-cat-head { border-color: var(--yellow); }
    .menu-cat.open .menu-cat-chev { transform: rotate(45deg); }
    .menu-cat-body { display: none; }
    .menu-cat.open .menu-cat-body { display: block; padding-top: 12px; }
}

.menu-card-info { flex: 1; min-width: 0; }
.menu-card-info h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.menu-card-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}
.menu-card-price {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yellow);
    flex-shrink: 0;
}

/* ========== ORDER ========== */
.order-section {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--dark) 100%);
}
.order-wrap {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
}
.order-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin: 24px 0 32px;
    line-height: 1.7;
}
.order-sub {
    margin-top: 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ========== CONTACT ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-content: start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 34px;
}
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-detail-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(245,166,35,0.12);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 1.1rem;
    color: var(--yellow);
}
.contact-detail-text { display: flex; flex-direction: column; gap: 4px; }
.contact-detail-label {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--yellow);
}
.contact-detail-value {
    color: var(--text-muted);
    line-height: 1.6;
}
.contact-detail-value a {
    color: var(--yellow-light);
    transition: var(--transition);
}
.contact-detail-value a:hover { color: var(--yellow); }

.hours-table {
    width: 100%;
    max-width: 300px;
    border-collapse: collapse;
}
.hours-table td {
    padding: 3px 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.4;
}
.hours-table td:first-child { font-weight: 500; color: var(--text); }
.hours-table td:last-child { text-align: right; padding-left: 24px; }

.contact-map {
    min-height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; }

/* Map wrapper (Auntie Bonnie's style — fixed-height embed under Find Us) */
.contact-map-wrap {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    line-height: 0;
}
.contact-map-wrap iframe { width: 100%; height: 400px; border: 0; }
@media (max-width: 600px) { .contact-map-wrap iframe { height: 300px; } }

@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-map { min-height: 300px; }
    .contact-map iframe { min-height: 300px; }
}

/* ========== FOOTER ========== */
.footer {
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: start;
    gap: 40px;
    margin-bottom: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 2px;
}
.footer-visit {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}
.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--yellow);
}
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.footer-social a:hover {
    background: var(--yellow);
    color: #1A1A2E;
    transform: translateY(-2px);
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social .footer-phone { width: auto; height: 40px; padding: 0 16px; gap: 8px; border-radius: 999px; font-weight: 700; font-size: 0.95rem; white-space: nowrap; }
.footer-social .footer-phone svg { width: 16px; height: 16px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
}
.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.25);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 600px) {
    .section-pad { padding: 72px 0; }
    .hero-tagline .hero-place { display: block; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-card { padding: 16px; }
    .order-wrap { padding: 40px 24px; }
    .hero-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 320px; }
    .footer-inner { flex-direction: column; text-align: center; }

    /* Find Us heading + details left-aligned; centre only the form */
    .contact-info { grid-template-columns: 1fr; gap: 24px; text-align: left; }
    .contact-form-wrap { text-align: center; }
    .contact-form-wrap .form-group label { text-align: center; }
}

/* ========== CONTACT FORM ========== */
.contact-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}
.contact-top-row .contact-map-wrap { margin-top: 0; }
.contact-form-wrap {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 36px 36px 40px;
}
.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 20px;
    text-align: center;
}
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: inherit;
    font-family: inherit;
    font-size: 0.95rem;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--yellow);
}
#contact .contact-map { margin-top: 48px; min-height: 350px; }
@media (max-width: 768px) {
    .contact-top-row { grid-template-columns: 1fr; gap: 32px; }
    #contact .contact-form-wrap { margin-top: 32px; }
    .contact-info { text-align: center; }
    .contact-detail { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
    .contact-detail-text { align-items: center; text-align: center; }
    .hours-table { margin: 0 auto; }
}

/* ========== GALLERY CAROUSEL ========== */
.gallery-section {
    padding: 0;
    background: var(--dark);
}
.gallery-carousel {
    position: relative;
    overflow: hidden;
    max-width: 100%;
}
.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}
.gallery-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
}
.gallery-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 2.5rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    line-height: 1;
}
.gallery-btn:hover { background: rgba(0,0,0,0.8); }
.gallery-prev { left: 16px; }
.gallery-next { right: 16px; }
@media (max-width: 768px) {
    .gallery-slide img { height: 260px; }
    .gallery-btn { width: 36px; height: 36px; font-size: 1.8rem; }
}

/* ========== CRITICAL MOBILE FIX ========== */
@media (max-width: 768px) {
    body { font-size: 15px; }
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.5rem !important; }
    .hero { min-height: 80vh; padding: 100px 20px 60px; }
    .hero p { font-size: 0.95rem; }
    .section-pad { padding: 60px 0; }

    .menu-grid,
    .contact-grid,
    .footer-inner {
        grid-template-columns: 1fr !important;
    }

    .menu-filters {
        flex-wrap: wrap;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .nav-links, .nav-ig { display: none; }
    .hamburger { display: flex !important; }

    iframe { width: 100% !important; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.7rem !important; }
    h2 { font-size: 1.3rem !important; }
    .container { padding: 0 16px; }
    .hero { padding: 90px 16px 50px; }
}

/* ========== NAV ORDER BUTTON ========== */
.nav-order-btn {
    background: linear-gradient(135deg, var(--yellow), var(--red-light));
    color: var(--dark) !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: var(--transition);
}
.nav-order-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(245,166,35,0.4); color: var(--dark) !important; }
.nav-order-btn::after { display: none !important; }

/* ========== HERO EXTRAS ========== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(245,166,35,0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 22px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 0.1s;
}
.hero-stars { color: var(--yellow); letter-spacing: 2px; }
.hero-loc {
    margin-top: 28px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1s;
}

/* ========== STATS BAR ========== */
.stats-bar {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 36px;
}
.stat { text-align: center; }
.stat-top {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    color: var(--yellow-light);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.85); }
@media (max-width: 600px) {
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
}

/* ========== ABOUT GRID ========== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.about-images img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
@media (max-width: 860px) {
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-images img { max-height: 320px; }
}

/* ========== SIGNATURE DISHES ========== */
.dishes-section { background: linear-gradient(180deg, var(--dark) 0%, rgba(15,52,96,0.25) 100%); }
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.dish-card {
    background: var(--dark-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(245,166,35,0.25); }
.dish-img { aspect-ratio: 4 / 3; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dish-card:hover .dish-img img { transform: scale(1.06); }
.dish-body { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.dish-head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.dish-head h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: #fff; }
.dish-body p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.55; flex: 1; }
.dish-price {
    display: inline-block;
    margin-top: 16px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--yellow);
}
.dishes-cta { text-align: center; margin-top: 44px; }
@media (max-width: 860px) { .dishes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dishes-grid { grid-template-columns: 1fr; } }

/* ========== SHOPFRONT BANNER ========== */
.shop-banner {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.shop-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.shop-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(10,18,20,0.88) 0%, rgba(12,30,24,0.7) 50%, rgba(12,30,24,0.35) 100%);
}
.shop-banner-content { position: relative; z-index: 2; max-width: 640px; padding: 60px 24px; margin: 0 auto; width: 100%; max-width: 1140px; }
.shop-banner-pre { color: var(--yellow-light); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; font-size: 0.9rem; margin-bottom: 12px; }
.shop-banner-content h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 14px; }
.shop-banner-sub { color: rgba(255,255,255,0.88); font-size: 1.05rem; margin-bottom: 28px; max-width: 460px; }
.shop-banner-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ========== REVIEWS ========== */
.reviews-section { background: linear-gradient(135deg, var(--green-dark) 0%, var(--dark) 100%); }
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
}
.review-stars { color: var(--yellow); letter-spacing: 3px; font-size: 1.05rem; margin-bottom: 14px; }
.review-card blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    flex: 1;
    margin-bottom: 16px;
}
.review-card figcaption { font-weight: 600; color: var(--yellow-light); font-size: 0.95rem; }
.review-card figcaption span { color: var(--text-muted); font-weight: 400; }
@media (max-width: 860px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ========== REVIEWS CAROUSEL ========== */
.reviews-carousel { position: relative; }
.js-reviews-track { display: flex !important; grid-template-columns: none !important; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; gap: 24px; scrollbar-width: none; padding-bottom: 4px; }
.js-reviews-track::-webkit-scrollbar { display: none; }
.js-reviews-track > * { flex: 0 0 calc((100% - 48px) / 3); scroll-snap-align: start; }
.js-reviews-track > .reveal { opacity: 1; transform: none; }
.rev-clone { opacity: 1 !important; transform: none !important; }
.rev-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer; z-index: 6; background: var(--yellow); color: #1A1A2E; display: flex; align-items: center; justify-content: center; font-size: 24px; line-height: 1; box-shadow: 0 4px 14px rgba(0,0,0,0.25); transition: transform .2s; }
.rev-nav:hover { transform: translateY(-50%) scale(1.08); }
.rev-nav--prev { left: -8px; }
.rev-nav--next { right: -8px; }
.reviews-dots { display: none; justify-content: center; gap: 8px; margin-top: 22px; }
.reviews-dots button { width: 8px; height: 8px; padding: 0; border: none; border-radius: 50%; background: rgba(160,160,160,0.4); cursor: pointer; transition: all .2s; }
.reviews-dots button.active { background: var(--yellow); width: 22px; border-radius: 4px; }
@media (max-width: 768px) {
  .js-reviews-track { gap: 12px; scroll-padding-left: 11%; }
  .js-reviews-track > * { flex: 0 0 78%; }
  .rev-nav { width: 36px; height: 36px; font-size: 20px; }
  .rev-nav--prev { left: 2px; }
  .rev-nav--next { right: 2px; }
  .reviews-dots { display: flex; }
}

/* ========== CATERING ========== */
.catering { background: var(--dark); padding: 80px 0; }
.catering-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.catering-text p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; margin: 16px 0; }
.catering-quote {
    border-left: 3px solid var(--yellow);
    padding-left: 18px;
    font-style: italic;
    color: var(--text) !important;
}
.catering-quote span { display: block; margin-top: 8px; font-style: normal; color: var(--yellow-light); font-weight: 600; }
.catering-text .btn { margin-top: 12px; }
.catering-img img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
@media (max-width: 860px) { .catering-inner { grid-template-columns: 1fr; gap: 28px; } .catering-img { order: -1; } .catering-img img { max-height: 280px; } }

/* ========== ORDER GRID ========== */
.order-section { background: linear-gradient(135deg, var(--green-dark) 0%, var(--dark) 100%); }
.order-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}
.order-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}
.order-card:hover { transform: translateY(-5px); border-color: var(--yellow); box-shadow: var(--shadow); }
.order-card-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; height: 38px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; }
.order-logo { height: 38px; width: auto; max-width: 80%; margin: 0 auto 10px; display: block; }
.order-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 14px; }
.order-card-go { font-weight: 600; color: var(--yellow); }
.order-deliveroo:hover { border-color: #00CCBC; }
.order-deliveroo:hover .order-card-go { color: #00CCBC; }
.order-justeat:hover { border-color: #FF8000; }
.order-justeat:hover .order-card-go { color: #FF8000; }
.order-ubereats:hover { border-color: #06C167; }
.order-ubereats:hover .order-card-go { color: #06C167; }
@media (max-width: 900px) { .order-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) {
  /* Slim stacked horizontal bars: logo/name left, action right */
  .order-grid { grid-template-columns: 1fr; gap: 12px; }
  .order-card { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; text-align: left; }
  .order-card .order-logo { height: 22px; width: auto; max-width: 120px; margin: 0; }
  .order-card .order-card-name { height: auto; margin: 0; font-size: 1.15rem; justify-content: flex-start; }
  .order-card > p { display: none; }
  .order-card .order-card-go { margin: 0; white-space: nowrap; }
}

/* ========== MAP DIRECTIONS + FOOTER LINKS ========== */
.map-directions { margin-top: 16px; text-align: center; }
.map-directions a { color: var(--yellow-light); font-weight: 600; }
.map-directions a:hover { color: var(--yellow); }
.footer-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-links a { color: var(--text-muted); font-size: 0.95rem; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); }
@media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-col { align-items: center; }
    .footer-links { align-items: center; }
    .footer-social { justify-content: center; }
}

/* Nav logo image + TikTok section */
.nav-logo-img { height: 46px; width: 46px; display: block; border-radius: 50%; }
.tiktok-wrap { display: flex; justify-content: center; }

/* Contact form sits below the map now — add top spacing */
.contact-form-wrap { margin-top: 44px; }
.footer-brand-img { height: 84px; width: 84px; display: block; }
