:root {
    --gold: #C5A059;
    --dark: #121212;
    --surface: #1C1C1C;
    --light: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Montserrat', sans-serif; background: var(--dark); color: var(--light); overflow-x: hidden; }
.serif { font-family: 'Playfair Display', serif; }
.hidden { display: none !important; }

/* Header */
.header { height: 64px; background: rgba(26,26,26,0.9); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 0 20px; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.cta-btn.primary { background: var(--gold); border: none; padding: 8px 16px; border-radius: 20px; font-weight: bold; }

/* Gallery Grid */
.gallery-grid { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 20px; }
.menu-card { height: 400px; border-radius: 24px; position: relative; overflow: hidden; background: var(--surface); }
.menu-card img { width: 100%; height: 100%; object-fit: cover; }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, black, transparent); padding: 20px; display: flex; flex-direction: column; justify-content: flex-end; }

/* Drawer & Modal */
.drawer { position: fixed; bottom: 0; left: 0; right: 0; height: 85vh; background: var(--dark); z-index: 1000; border-radius: 25px 25px 0 0; display: flex; flex-direction: column; box-shadow: 0 -10px 40px rgba(0,0,0,0.5); }
.drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.drawer-footer { padding: 20px; border-top: 1px solid rgba(255,255,255,0.05); }
.modal { position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-card { background: var(--surface); width: 100%; max-width: 400px; padding: 30px; border-radius: 24px; text-align: center; }

/* Form Elements */
.input-group { margin-bottom: 15px; }
.input-group label { display: block; margin-bottom: 5px; color: var(--gold); }
.input-group input { width: 100%; background: #222; border: 1px solid #333; color: white; padding: 12px; border-radius: 10px; }
.w-100 { width: 100%; }
.primary-btn { background: var(--gold); color: black; border: none; padding: 15px; border-radius: 12px; font-weight: bold; cursor: pointer; }