/* ============================================================================
   BITE & BYTE — STYLES
   Palette pulled from the café's real neon interior: black/near-black base,
   white text, neon purple/pink/cyan accents. Mobile-first, then scaled up.
   ============================================================================ */

:root {
    --bg: #0b0a10;
    --bg-alt: #131019;
    --card: #17131f;
    --card-border: #2a2438;
    --text: #f5f3fb;
    --text-muted: #b3aabf;
    --purple: #a855f7;
    --pink: #ff3ec8;
    --cyan: #22d3ee;
    --gold: #ffcf40;
    --gradient: linear-gradient(135deg, var(--purple), var(--pink));
    --radius: 14px;
    --shadow: 0 10px 30px rgba(0,0,0,0.45);
    --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 { line-height: 1.2; margin: 0 0 0.6em; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); text-align: center; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text-muted); }

.section-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 1.25rem;
}

/* ---------------------------------------------------------------- Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    padding: 0.85em 1.6em;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 6px 20px rgba(168, 85, 247, 0.4);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(255, 62, 200, 0.5); }
.btn-outline {
    background: transparent;
    border-color: var(--purple);
    color: var(--text);
}
.btn-outline:hover { background: rgba(168, 85, 247, 0.12); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-lg { padding: 1em 2em; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------------------------------------------------------------- Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(11, 10, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.7rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.6rem; margin-right: auto; }
.brand-logo { border-radius: 50%; }
.brand-name { font-weight: 800; font-size: 1.1rem; letter-spacing: 0.02em; }

.main-nav { display: none; gap: 1.5rem; }
.main-nav a { color: var(--text-muted); font-weight: 600; font-size: 0.92rem; }
.main-nav a:hover { color: var(--pink); }

.header-ctas { display: none; align-items: center; gap: 0.75rem; }
.header-call { font-size: 0.85rem; padding: 0.6em 1em; }

.nav-toggle {
    background: none;
    border: none;
    width: 40px; height: 40px;
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; }

.main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-alt);
    padding: 1.25rem;
    border-bottom: 1px solid var(--card-border);
    gap: 1rem;
}

@media (min-width: 900px) {
    .main-nav { display: flex; }
    .header-ctas { display: flex; }
    .nav-toggle { display: none; }
}

/* ---------------------------------------------------------------- Hero */
.hero {
    background:
        radial-gradient(circle at 15% 20%, rgba(168,85,247,0.25), transparent 45%),
        radial-gradient(circle at 85% 0%, rgba(255,62,200,0.2), transparent 45%),
        var(--bg);
    padding: 3rem 1.25rem 4rem;
}
.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
}
.eyebrow {
    color: var(--cyan);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}
.hero h1 {
    font-size: clamp(1.9rem, 5vw, 3rem);
    background: linear-gradient(135deg, #fff, var(--pink) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub { font-size: 1.05rem; max-width: 46ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0 0.75rem; }
.hero-microcopy { font-size: 0.85rem; color: var(--text-muted); }

.trust-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.badge {
    background: var(--card);
    border: 1px solid var(--card-border);
    padding: 0.5em 1em;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}
.badge-rating {
    background: rgba(255, 207, 64, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}

.hero-panel {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.countdown-label { text-align: center; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.countdown-unit {
    background: var(--bg-alt);
    border-radius: 10px;
    text-align: center;
    padding: 0.75rem 0.25rem;
    border: 1px solid var(--card-border);
}
.countdown-unit span { display: block; font-size: clamp(1.4rem, 4vw, 1.9rem); font-weight: 800; color: var(--cyan); }
.countdown-unit small { color: var(--text-muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.06em; }
.countdown-date { text-align: center; margin: 1rem 0 1.25rem; font-weight: 600; }

.offer-card {
    background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(255,62,200,0.14));
    border: 1px solid var(--purple);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
}
.offer-title { font-weight: 700; margin-bottom: 0.35rem; color: var(--text); }
.offer-sub { font-size: 0.85rem; margin: 0; }

@media (min-width: 960px) {
    .hero-inner { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
}

/* ---------------------------------------------------------------- Trust bar */
.trust-bar { background: var(--bg-alt); border-top: 1px solid var(--card-border); border-bottom: 1px solid var(--card-border); }
.trust-bar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 2rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.trust-item strong { display: block; font-size: 1.8rem; color: var(--pink); }
.trust-item span { font-size: 0.85rem; color: var(--text-muted); }
@media (min-width: 700px) { .trust-bar-inner { grid-template-columns: repeat(4, 1fr); } }

/* ---------------------------------------------------------------- Pain section */
.pain-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.pain-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-left: 4px solid var(--pink);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.pain-text { color: var(--text); font-weight: 600; }
.benefit-text { color: var(--cyan); margin: 0; }
@media (min-width: 760px) { .pain-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------------------------------------------- Services */
.services-section { background: var(--bg-alt); }
.services-grid { display: grid; gap: 1.25rem; margin-top: 2rem; }
.service-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    transition: transform 0.15s ease, border-color 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--purple); }
.service-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.service-link { color: var(--pink); font-weight: 700; font-size: 0.9rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------------------------------------------------------------- Tables */
.table-wrap { overflow-x: auto; margin-top: 1.5rem; border-radius: var(--radius); border: 1px solid var(--card-border); }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
th, td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--card-border); }
th { background: var(--card); color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; }
td { color: var(--text-muted); }
tr:last-child td { border-bottom: none; }
.table-note { font-size: 0.85rem; margin-top: 0.6rem; }
.highlight-col { color: var(--text) !important; font-weight: 600; background: rgba(168,85,247,0.08); }

.combo-heading { margin-top: 3rem; text-align: center; }
.combo-grid { display: grid; gap: 1.1rem; margin: 1.5rem 0 2rem; }
.combo-card { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1.25rem; }
.combo-head { display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem; margin-bottom: 0.4rem; }
.combo-name { font-weight: 700; }
.combo-price { color: var(--cyan); font-weight: 800; font-size: 1.1rem; }
.combo-desc { margin: 0; font-size: 0.9rem; }
@media (min-width: 700px) { .combo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------------------------------------------------------------- Menu highlights */
.menu-highlights-section { background: var(--bg-alt); }
.menu-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.menu-item { background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 1.25rem; }
.menu-tag { display: inline-block; font-size: 0.7rem; font-weight: 800; padding: 0.2em 0.7em; border-radius: 999px; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.menu-tag-veg { background: rgba(34, 211, 153, 0.15); color: #4ade80; }
.menu-tag-nonveg { background: rgba(255, 62, 62, 0.15); color: #ff6b6b; }
.menu-item p { font-size: 0.88rem; margin: 0; }
@media (min-width: 640px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .menu-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------------------------------------------------------------- Process */
.process-grid { display: grid; gap: 1.5rem; margin-top: 2rem; }
.process-card { text-align: center; padding: 1.5rem; }
.process-number {
    width: 52px; height: 52px; margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem; color: #fff;
}
@media (min-width: 760px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------------------------------------------------------------- Social proof */
.social-section { background: var(--bg-alt); text-align: center; }
.social-intro { max-width: 60ch; margin: 0 auto 2rem; }
.social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 2rem; }
.social-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); aspect-ratio: 4/3; }
.social-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.2s ease; }
.social-photo:hover img { transform: scale(1.05); }
@media (min-width: 700px) { .social-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------------------------------------------------------------- Map */
.map-section { text-align: center; }
.map-wrap { height: 360px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--card-border); margin: 1.5rem 0; }

/* ---------------------------------------------------------------- Comparison */
.comparison-section { background: var(--bg-alt); }

/* ---------------------------------------------------------------- FAQ */
.faq-list { max-width: 760px; margin: 2rem auto 0; display: grid; gap: 0.75rem; }
.faq-item { background: var(--card); border: 1px solid var(--card-border); border-radius: 10px; overflow: hidden; }
.faq-question {
    width: 100%; text-align: left; background: none; border: none; color: var(--text);
    padding: 1.1rem 1.25rem; font-weight: 700; font-size: 1rem; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-icon { color: var(--pink); font-size: 1.3rem; transition: transform 0.2s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; padding: 0 1.25rem; }
.faq-answer p { margin: 0 0 1.1rem; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---------------------------------------------------------------- Final CTA */
.final-cta {
    background:
        radial-gradient(circle at 20% 10%, rgba(255,62,200,0.18), transparent 45%),
        radial-gradient(circle at 90% 90%, rgba(34,211,238,0.15), transparent 45%),
        var(--bg-alt);
}
.final-cta-inner { display: grid; gap: 2.5rem; }
.final-cta-list { list-style: none; padding: 0; margin: 1.25rem 0; display: grid; gap: 0.6rem; }
.final-cta-alt { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

.rsvp-form {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
}
.form-row { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); }
.form-row input, .form-row select, .form-row textarea {
    background: var(--bg-alt);
    border: 1px solid var(--card-border);
    color: var(--text);
    padding: 0.75em 0.9em;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
    outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(168,85,247,0.25);
}
.form-microcopy { font-size: 0.8rem; text-align: center; margin: 0.75rem 0 0; }
.form-status { margin-top: 0.75rem; font-size: 0.9rem; font-weight: 600; text-align: center; }
.form-status.success { color: #4ade80; }
.form-status.error { color: #ff6b6b; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

@media (min-width: 960px) { .final-cta-inner { grid-template-columns: 1fr 1fr; align-items: start; } }

/* ---------------------------------------------------------------- Footer */
.site-footer { background: #08070c; border-top: 1px solid var(--card-border); padding-top: 3rem; }
.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem 2rem;
    display: grid;
    gap: 2rem;
}
.footer-col h3 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); }
.footer-col a { display: block; color: var(--text-muted); margin-bottom: 0.5rem; }
.footer-col a:hover { color: var(--pink); }
.footer-tagline { color: var(--text); font-weight: 700; margin-top: 0.75rem; margin-bottom: 0.15rem; }
.footer-sub { font-size: 0.85rem; }
.footer-social { display: flex; gap: 1rem; margin-top: 0.5rem; }
address { font-style: normal; color: var(--text-muted); margin-bottom: 0.75rem; }
.footer-legal {
    border-top: 1px solid var(--card-border);
    text-align: center;
    padding: 1.25rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-note { max-width: 60ch; margin: 0.4rem auto 0; }

@media (min-width: 700px) { .footer-inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }

/* ---------------------------------------------------------------- Mobile call FAB */
.mobile-call-fab {
    position: fixed;
    bottom: 1.25rem; right: 1.25rem;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(168,85,247,0.5);
    z-index: 90;
}
@media (min-width: 900px) { .mobile-call-fab { display: none; } }
