:root {
    --color-page-bg: #180033;
    --color-surface: #240048;
    --color-surface-soft: #2f0a60;
    --color-surface-strong: #14002b;
    --color-surface-overlay: rgba(46, 15, 89, 0.86);
    --color-text-primary: #ff89d6;
    --color-text-secondary: #fbe6ff;
    --color-text-muted: #d8b8ee;
    --color-text-contrast: #fff7ff;
    --color-text-on-accent: #2a1038;
    --color-accent: #ffd86b;
    --color-accent-strong: #f1c94d;
    --color-accent-soft: #e7ce86;
    --color-border: rgba(255, 137, 214, 0.22);
    --color-border-strong: rgba(255, 137, 214, 0.35);
    --color-shadow: rgba(120, 24, 94, 0.32);
    --color-accent-shadow: rgba(241, 201, 77, 0.28);
    --color-accent-border: rgba(241, 201, 77, 0.5);
    --color-hero-glow-pink: rgba(255, 137, 214, 0.2);
    --color-hero-glow-gold: rgba(241, 201, 77, 0.16);
    --color-hero-dot-gold: rgba(241, 201, 77, 0.12);
    --color-divider: rgba(241, 201, 77, 0.2);
    --color-dot-veg: #7bcf79;
    --color-dot-nonveg: #f28b4b;
    --color-dot-grain: #e9c84b;
    --color-dot-sweet: #f08dcf;
    --color-dot-extra: #8c7bff;
    --bg: var(--color-page-bg);
    --surface: var(--color-surface);
    --surface-soft: var(--color-surface-soft);
    --text: var(--color-text-primary);
    --ink: var(--color-text-contrast);
    --accent: var(--color-accent);
    --accent-soft: var(--color-accent-soft);
    --muted: var(--color-text-muted);
    --line: var(--color-border);
    --hero-shadow: var(--color-shadow);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Work Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
}

.wrap {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ===== TOP NAV ===== */
.topnav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--color-surface-strong);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

.topnav-inner {
    max-width: 1040px;
    margin: 0 auto;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brandmark {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.brandmark span {
    color: var(--accent);
}

/* Logo + brand wrapper */
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.brand-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.06));
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    flex: none;
}

.navlinks {
    display: flex;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navlinks a {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    text-decoration: none;
    color: var(--muted);
    font-weight: 600;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.navlinks a:hover,
.navlinks a.active {
    color: var(--accent);
    border-color: var(--accent);
}

.nav-call {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent), #ffe48a);
    color: var(--color-text-on-accent);
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(42, 16, 56, 0.15);
    box-shadow: 0 8px 20px rgba(241, 201, 77, 0.24);
    white-space: nowrap;
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.nav-call:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(241, 201, 77, 0.32);
    filter: brightness(1.02);
}

.navtoggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    flex: none;
    position: relative;
}

.navtoggle span,
.navtoggle span::before,
.navtoggle span::after {
    content: "";
    display: block;
    position: absolute;
    left: 9px;
    right: 9px;
    height: 2px;
    background: var(--ink);
    transition: transform .25s ease, opacity .2s ease;
}

.navtoggle span {
    top: 19px;
}

.navtoggle span::before {
    content: "";
    top: -7px;
}

.navtoggle span::after {
    content: "";
    top: 7px;
}

.navtoggle.is-open span {
    background: transparent;
}

.navtoggle.is-open span::before {
    transform: translateY(7px) rotate(45deg);
}

.navtoggle.is-open span::after {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
    display: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height .28s ease;
    border-top: 1px solid transparent;
}

.nav-drawer.is-open {
    max-height: 280px;
    border-top-color: var(--line);
}

.nav-drawer ul {
    list-style: none;
    margin: 0;
    padding: 10px 28px 18px;
}

.nav-drawer a {
    display: block;
    padding: 13px 0;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--accent-soft);
    border-bottom: 1px solid var(--line);
}

.nav-drawer a:last-child {
    border-bottom: 0;
}

/* ===== HERO ===== */
.hero {
    background: var(--bg);
    color: var(--text);
    padding: 96px 0 84px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--color-hero-dot-gold) 1.4px, transparent 1.4px);
    background-size: 26px 26px;
    opacity: 0.45;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.eyebrow {
    font-family: 'IBM Plex Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--accent);
    margin: 0 0 18px;
}

h1.headline {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    line-height: 0.98;
    letter-spacing: -0.01em;
    color: var(--accent-soft);
    margin: 0 0 22px;
    max-width: 26ch;
}



.headline-logo {
    width: min(100%, 1800px);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 0 24px;
    filter: none;
}

.hero-sub {
    font-size: 1.12rem;
    line-height: 1.6;
    max-width: 46ch;
    color: var(--color-text-secondary);
    margin: 0 0 36px;
}

.spice-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin: 0 0 40px;
}

.spice-legend .dot-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    color: var(--accent-soft);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex: none;
}

.dot.veg {
    background: var(--color-dot-veg);
}

.dot.nonveg {
    background: var(--color-dot-nonveg);
}

.dot.grain {
    background: var(--color-dot-grain);
}

.dot.sweet {
    background: var(--color-dot-sweet);
}

.dot.extra {
    background: var(--color-dot-extra);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 14px 26px;
    border-radius: 100px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent);
    color: var(--color-text-on-accent);
    box-shadow: 0 8px 22px var(--color-accent-shadow);
}

.btn-ghost {
    background: var(--bg);
    border: 1.5px solid var(--color-accent-border);
    color: var(--text);
}

/* ===== INTRO STRIP ===== */
.intro {
    padding: 64px 0 20px;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 40px 0;
}

.intro-grid .num {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--accent);
    font-size: .90rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    display: block;
}

.intro-grid h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 1.24rem;
    margin: 0 0 8px;
}

.intro-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ===== MENU ===== */
.menu-section {
    padding: 70px 0 10px;
}

.menu-loading {
    padding: 70px 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.menu-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
}

.menu-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: clamp(1.7rem, 3.4vw, 2.3rem);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-head .count {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.78rem;
    color: var(--muted);
}

.menu-note {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 60ch;
    margin: 0 0 30px;
    line-height: 1.55;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 44px;
    margin-bottom: 64px;
}

.dish-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
}

.dish-image-wrap {
    flex: none;
    width: 100px;
    min-width: 100px;
    height: 100px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--surface-soft);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.dish-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dish-details {
    flex: 1;
    min-width: 0;
}

.dish-name {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--accent-soft);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.leader {
    flex: 1;
    border-bottom: 1.5px dotted var(--color-border-strong);
    position: relative;
    top: -4px;
}

.dish-price {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--accent-soft);
    white-space: nowrap;
}

.dish-description {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
    margin-top: 6px;
    font-style: italic;
}

@media (max-width:680px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== NOTES ===== */
.notes {
    padding: 20px 0 80px;
}

.notes-box {
    margin-top: 22px;
    padding: 24px 28px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: 0 16px 40px var(--color-shadow);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.notes-box>div {
    position: relative;
    z-index: 1;
    padding: 18px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.notes-box h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    margin: 0 0 12px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.01em;
}

.notes-box ul {
    margin: 0;
    padding-left: 18px;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.75;
}

.notes-box .notes {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.notes-box li::marker {
    color: var(--accent);
}

.reviews-panel {
    margin-top: 22px;
    padding: 24px 28px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: 0 16px 40px var(--color-shadow);
}

.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.reviews-header h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    margin: 0 0 8px;
    color: var(--accent);
}

.reviews-header p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 0.92rem;
    line-height: 1.6;
}

.review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--color-text-on-accent);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 20px var(--color-accent-shadow);
    white-space: nowrap;
}

.review-link:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.review-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

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

.review-card {
    padding: 16px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
}

.review-stars {
    color: var(--accent);
    letter-spacing: 0.16em;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.review-card p {
    margin: 0;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.65;
}

.instagram-panel {
    margin-top: 22px;
    padding: 24px 28px;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    box-shadow: 0 16px 40px var(--color-shadow);
}

.facebook-panel {
    margin-top: 22px;
    padding: 20px 22px;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    box-shadow: 0 12px 34px var(--color-shadow);
}

.fb-post-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
    overflow: hidden;
}

.facebook-panel .fb-post,
.facebook-panel .fb-post iframe,
.facebook-panel .fb-post iframe>* {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.facebook-panel .fb-post {
    min-width: 0 !important;
    overflow: hidden !important;
}

.fb-post-placeholder {
    padding: 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.instagram-frame {
    margin-top: 18px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: rgba(255, 255, 255, 0.04);
    padding: 10px;
}

.instagram-frame iframe {
    width: 100%;
    min-height: 560px;
    border: 0;
    border-radius: 12px;
    background: transparent;
}

@media (max-width:680px) {
    .notes-box {
        grid-template-columns: 1fr;
        padding: 28px 24px;
    }

    .reviews-panel,
    .facebook-panel,
    .instagram-panel {
        padding: 20px 20px;
    }

    .reviews-grid,
    .fb-post-wrapper {
        grid-template-columns: 1fr;
    }

    .instagram-frame {
        padding: 8px;
    }

    .instagram-frame iframe {
        min-height: 320px;
    }

    .fb-post-wrapper {
        gap: 12px;
    }

    .facebook-panel .fb-post,
    .facebook-panel .fb-post iframe,
    .facebook-panel .fb-post>div {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .review-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--surface);
    color: var(--text);
    padding: 56px 0 34px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px;
}

footer .brandmark {
    color: var(--text);
    font-size: 1.3rem;
}

footer .brandmark span {
    color: var(--accent);
}

footer .call {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1.1rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

/* mobile nav call styling */
.nav-drawer a.call {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
}

footer .tagline {
    color: var(--accent-soft);
    font-size: 0.88rem;
    margin-top: 8px;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 20px;
    border-top: 1px solid var(--color-divider);
    font-size: 0.78rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom .footer-disclaimer {
    flex-basis: 100%;
    color: var(--muted);
    font-size: 0.78rem;
    margin-top: 6px;
}

@media (max-width:760px) {
    .navlinks {
        display: none;
    }

    .nav-call {
        display: none;
    }

    .navtoggle {
        display: block;
    }

    .nav-drawer {
        display: block;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 32px 0;
    }

    .hero {
        padding: 56px 0 56px;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        justify-content: center;
        text-align: center;
    }

    .menu-section {
        padding: 48px 0 4px;
    }

    .menu-note {
        margin-bottom: 22px;
    }

    .menu-grid {
        margin-bottom: 44px;
    }

    .notes {
        padding: 8px 0 56px;
    }

    .notes-box {
        padding: 26px 22px;
        border-radius: 14px;
    }

    footer {
        padding: 44px 0 26px;
    }

    .footer-inner {
        align-items: flex-start;
    }
}

@media (max-width:480px) {
    .wrap {
        padding: 0 20px;
    }

    .topnav-inner {
        padding: 12px 20px;
    }

    h1.headline {
        max-width: 100%;
    }

    .hero-sub {
        max-width: 100%;
    }

    .spice-legend {
        gap: 14px 18px;
    }

    .dish-row {
        flex-wrap: wrap;
        align-items: center;
        gap: 2px 8px;
    }

    .dish-name {
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        flex: 1 1 auto;
        min-width: 60%;
    }

    .leader {
        display: none;
    }

    .dish-price {
        margin-left: auto;
    }

    .dish-description {
        flex-basis: 100%;
        margin-top: 6px;
    }
}