/* Food Bistro — Deep Red / Candlelight Gold / Black upscale dining theme */

:root {
  --primary:   #7c1f1f;   /* deep wine red */
  --primary-light: #9e2a2a;
  --accent:    #c9a84c;   /* candlelight gold */
  --accent-light: #e0c070;
  --text:      #f5f0e8;
  --text-muted:#a8998a;
  --bg:        #0a0604;   /* near-black warm */
  --bg-alt:    #140e08;
  --bg-light:  #1e1510;
  --border:    #2a2018;
  --radius:    2px;
  --font-sans: 'Playfair Display', Georgia, serif;
  --font-serif:'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Open Sans', sans-serif;
  --max-w:     1200px;
  --shadow:    0 4px 24px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; }

.skip-link { position: absolute; top: -40px; left: 0; background: var(--primary); color: #fff; padding: 8px 16px; z-index: 9999; transition: top 0.2s; }
.skip-link:focus { top: 0; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }

.btn { display: inline-block; padding: 0.875rem 2rem; font-family: var(--font-body); font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.2s; border: 1px solid transparent; font-size: 0.875rem; letter-spacing: 0.07em; text-transform: uppercase; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-light); }
.btn-outline { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--bg); }
.btn-ghost { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.btn-lg { padding: 1.1rem 2.5rem; }
.btn-full { width: 100%; text-align: center; }

.site-header { position: sticky; top: 0; background: rgba(10,6,4,0.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--border); z-index: 100; padding: 1rem 0; }
.header-inner { display: flex; align-items: center; gap: 2rem; }
.site-logo { flex: 1; }
.logo-text { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--accent); letter-spacing: 0.04em; }
.site-logo img { height: 40px; width: auto; }
.site-nav ul { display: flex; gap: 2rem; list-style: none; }
.site-nav a { color: rgba(245,240,232,0.65); text-decoration: none; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.site-nav a:hover { color: var(--accent); }

.hero { min-height: 85vh; display: flex; align-items: center; background: var(--bg-alt); position: relative; }
.hero-inner { display: flex; align-items: center; justify-content: center; width: 100%; text-align: center; }
.hero-content { max-width: 640px; }
.cuisine-label { font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.5rem; }
.hero h1 { font-family: var(--font-serif); font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; line-height: 1.05; margin-bottom: 1.25rem; color: #fff; }
.hero-tagline { font-size: 1.125rem; color: rgba(245,240,232,0.65); font-style: italic; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-hours { font-size: 0.8rem; color: rgba(245,240,232,0.45); letter-spacing: 0.08em; text-transform: uppercase; }

.highlights-section { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3rem 0; }
.highlights-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; text-align: center; }
.highlight-item { max-width: 240px; }
.highlight-icon { font-size: 2rem; margin-bottom: 1rem; }
.highlight-item h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--accent); margin-bottom: 0.5rem; }
.highlight-item p { font-size: 0.875rem; color: var(--text-muted); }

.menu-section { padding: 5rem 0; }
.menu-section h2 { text-align: center; font-family: var(--font-serif); font-size: 2.5rem; color: var(--accent); margin-bottom: 3rem; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 3rem; }
.menu-category h3 { font-family: var(--font-serif); font-size: 1.25rem; color: var(--accent); border-bottom: 1px solid var(--border); padding-bottom: 0.75rem; margin-bottom: 1.25rem; }
.menu-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; gap: 0.5rem; }
.menu-item-name { font-weight: 600; font-size: 0.9375rem; }
.menu-item-price { color: var(--accent); font-size: 0.875rem; white-space: nowrap; }
.menu-item-desc { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.3rem; font-style: italic; }
.menu-placeholder { text-align: center; color: var(--text-muted); }
.menu-placeholder a { color: var(--accent); }
.menu-cta { text-align: center; margin-top: 2.5rem; }

.about-section { padding: 5rem 0; background: var(--bg-light); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--accent); margin-bottom: 1.25rem; }
.about-text p { color: var(--text-muted); line-height: 1.9; }
.chef-signature { margin-top: 1.5rem; font-family: var(--font-serif); font-style: italic; font-size: 1.1rem; color: var(--accent); }

.reserve-section { padding: 5rem 0; }
.reserve-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.reserve-info h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--accent); margin-bottom: 0.75rem; }
.reserve-info > p { color: var(--text-muted); margin-bottom: 1.5rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.contact-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--text-muted); }
.contact-list a { color: var(--text); text-decoration: none; }
.contact-list a:hover { color: var(--accent); }
.contact-list svg { color: var(--accent); flex-shrink: 0; }
.reserve-external { margin-top: 1.5rem; }

.reserve-form { background: var(--bg-light); padding: 2rem; border: 1px solid var(--border); }
.reserve-form h3 { font-family: var(--font-serif); font-size: 1.375rem; color: var(--accent); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 0.75rem 0.875rem; border: 1px solid var(--border); background: var(--bg); color: var(--text); font-family: var(--font-body); font-size: 0.9rem; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
select option { background: var(--bg-alt); }

.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 2.5rem 0; color: var(--text-muted); font-size: 0.875rem; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; justify-content: space-between; }
.footer-brand strong { font-family: var(--font-serif); color: var(--accent); font-size: 1.1rem; display: block; }
.footer-brand small { font-size: 0.75rem; color: var(--text-muted); }
.footer-nav { display: flex; gap: 1.5rem; }
.footer-nav a { color: var(--text-muted); text-decoration: none; letter-spacing: 0.06em; font-size: 0.8rem; text-transform: uppercase; }
.footer-nav a:hover { color: var(--accent); }
.footer-contact { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-contact a, .footer-contact span { color: var(--text-muted); text-decoration: none; }
.footer-contact a:hover { color: var(--accent); }
.footer-copy { width: 100%; text-align: center; font-size: 0.75rem; opacity: 0.4; }

.reviews-section { background: var(--bg-light); }
.reviews-section h2 { font-family: var(--font-serif); color: var(--accent); }
.review-badge { background: var(--bg-alt); border-color: var(--border); color: var(--text); }
.review-card { background: var(--bg-alt); border-color: var(--border); }
.star--filled { color: var(--accent); }
.review-text { color: var(--text-muted); }
.review-meta cite { color: var(--text); }

@media (max-width: 900px) { .about-inner, .reserve-inner { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  .site-nav { display: none; }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: clamp(2.25rem, 10vw, 4rem); }
  .form-row { grid-template-columns: 1fr; }
  .highlights-inner { flex-direction: column; align-items: center; }
}
