/* L'Olivier — Restaurant demo (Elegant Moroccan-Fusion) */
:root {
  --rest-burgundy: #6b2727;
  --rest-burgundy-dark: #4a1a1a;
  --rest-cream: #fdfbf7;
  --rest-olive: #556b2f;
  --rest-gold: #c5a059;
  --rest-gold-light: #e8d5a5;
  --rest-charcoal: #2d2d2d;
  --rest-slate: #5a5a5a;
  --rest-border: #e8e2d5;
  --rest-shadow: 0 8px 24px rgba(45, 45, 45, 0.08);
  --rest-font-display: 'Playfair Display', Georgia, serif;
  --rest-font-body: 'Lato', system-ui, sans-serif;
  --demo-banner-height: 2.75rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--rest-font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--rest-charcoal);
  background: var(--rest-cream);
}
img, svg { display: block; max-width: 100%; }
a { color: var(--rest-burgundy); text-decoration: none; transition: color 150ms ease; }
a:hover { color: var(--rest-gold); }
h1, h2, h3, h4 {
  font-family: var(--rest-font-display);
  line-height: 1.2;
  font-weight: 700;
  margin: 0 0 1rem;
  color: var(--rest-burgundy-dark);
}

/* Header */
.rest-header {
  position: sticky;
  top: var(--demo-banner-height);
  z-index: 50;
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rest-border);
}
.rest-header__inner {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rest-logo {
  font-family: var(--rest-font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--rest-burgundy-dark);
  text-decoration: none;
}
.rest-logo span { color: var(--rest-olive); }
.rest-nav { display: none; gap: 0.5rem; }
@media (min-width: 768px) { .rest-nav { display: flex; } }
.rest-nav a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--rest-slate);
  border-radius: 0.375rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--rest-font-body);
}
.rest-nav a:hover { color: var(--rest-burgundy); background: rgba(107, 39, 39, 0.05); }
.rest-header__cta {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--rest-cream);
  background: var(--rest-burgundy);
  border-radius: 0.375rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.rest-header__cta:hover { background: var(--rest-burgundy-dark); color: var(--rest-cream); }

/* Hero */
.rest-hero {
  position: relative;
  padding: 6rem 1.25rem 7rem;
  background: linear-gradient(135deg, var(--rest-burgundy-dark) 0%, var(--rest-burgundy) 100%);
  color: var(--rest-cream);
  text-align: center;
  overflow: hidden;
}
.rest-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(197, 160, 89, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.rest-hero__inner { position: relative; max-width: 48rem; margin: 0 auto; }
.rest-hero__badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rest-gold-light);
  border: 1px solid rgba(232, 213, 165, 0.4);
  border-radius: 9999px;
  font-family: var(--rest-font-body);
}
.rest-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--rest-cream);
  margin-bottom: 1.25rem;
}
.rest-hero__subtitle {
  font-size: 1.125rem;
  color: rgba(253, 251, 247, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  max-width: 38ch;
  margin-inline: auto;
}
.rest-hero__btn {
  display: inline-flex;
  padding: 1rem 2.5rem;
  font-weight: 700;
  color: var(--rest-burgundy-dark);
  background: var(--rest-gold);
  border-radius: 0.375rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.9375rem;
  transition: transform 150ms ease, background 150ms ease;
}
.rest-hero__btn:hover { background: var(--rest-gold-light); transform: translateY(-2px); color: var(--rest-burgundy-dark); }

/* Sections */
.rest-section { padding: 5rem 1.25rem; }
.rest-section--alt { background: #ffffff; }
.rest-section__inner { max-width: 72rem; margin: 0 auto; }
.rest-section__header { text-align: center; margin-bottom: 3.5rem; }
.rest-section__title { font-size: clamp(1.75rem, 3vw, 2.5rem); color: var(--rest-burgundy-dark); }
.rest-section__subtitle { color: var(--rest-slate); max-width: 42ch; margin: 0 auto; font-size: 1.0625rem; }

/* Menu Grid */
.rest-menu { display: grid; gap: 2rem; }
@media (min-width: 768px) { .rest-menu { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .rest-menu { grid-template-columns: repeat(3, 1fr); } }

.rest-dish {
  background: var(--rest-cream);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--rest-border);
  box-shadow: var(--rest-shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.rest-dish:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(45, 45, 45, 0.12); }
.rest-dish__img {
  height: 14rem;
  background-size: cover;
  background-position: center;
}
.rest-dish__img--tagine { background: linear-gradient(160deg, #6b2727 0%, #c5a059 100%); }
.rest-dish__img--couscous { background: linear-gradient(160deg, #556b2f 0%, #e8d5a5 100%); }
.rest-dish__img--pastilla { background: linear-gradient(160deg, #4a1a1a 0%, #c5a059 100%); }
.rest-dish__body { padding: 1.5rem; }
.rest-dish__title { font-size: 1.375rem; margin-bottom: 0.5rem; color: var(--rest-burgundy-dark); }
.rest-dish__desc { font-size: 0.9375rem; color: var(--rest-slate); margin-bottom: 1rem; line-height: 1.6; }
.rest-dish__price { font-family: var(--rest-font-display); font-size: 1.25rem; font-weight: 700; color: var(--rest-olive); }

/* AI Concierge Hook */
.rest-ai {
  background: var(--rest-charcoal);
  color: var(--rest-cream);
  border-radius: 1rem;
  padding: 3rem 2rem;
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}
@media (min-width: 768px) { .rest-ai { grid-template-columns: 1fr 1fr; padding: 4rem; } }
.rest-ai__icon {
  width: 4rem;
  height: 4rem;
  background: var(--rest-gold);
  color: var(--rest-charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.rest-ai__title { font-size: 1.75rem; color: var(--rest-cream); margin-bottom: 1rem; }
.rest-ai__text { color: rgba(253, 251, 247, 0.8); margin-bottom: 1.5rem; line-height: 1.7; }
.rest-ai__features { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.rest-ai__features li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9375rem; color: rgba(253, 251, 247, 0.9); }
.rest-ai__features li::before { content: '✦'; color: var(--rest-gold); font-size: 1.125rem; }

/* Ambiance / Gallery */
.rest-gallery { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .rest-gallery { grid-template-columns: repeat(4, 1fr); } }
.rest-gallery__item {
  height: 12rem;
  border-radius: 0.5rem;
  background-size: cover;
  background-position: center;
  transition: transform 300ms ease;
}
.rest-gallery__item:hover { transform: scale(1.02); }
.rest-gallery__item--1 { background: linear-gradient(45deg, #2d2d2d, #6b2727); grid-column: span 2; height: 16rem; }
.rest-gallery__item--2 { background: linear-gradient(45deg, #556b2f, #c5a059); }
.rest-gallery__item--3 { background: linear-gradient(45deg, #4a1a1a, #e8d5a5); }
.rest-gallery__item--4 { background: linear-gradient(45deg, #c5a059, #2d2d2d); }

/* Footer */
.rest-footer {
  background: var(--rest-burgundy-dark);
  color: rgba(253, 251, 247, 0.75);
  padding: 4rem 1.25rem 2rem;
}
.rest-footer__inner { max-width: 72rem; margin: 0 auto; display: grid; gap: 2rem; }
@media (min-width: 768px) { .rest-footer__inner { grid-template-columns: 2fr 1fr 1fr; } }
.rest-footer__brand { font-family: var(--rest-font-display); font-size: 1.5rem; color: var(--rest-cream); margin-bottom: 0.75rem; }
.rest-footer__brand span { color: var(--rest-gold); }
.rest-footer__text { font-size: 0.9375rem; line-height: 1.7; margin: 0; max-width: 32ch; }
.rest-footer__heading { font-size: 0.8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--rest-gold); margin-bottom: 1rem; font-family: var(--rest-font-body); }
.rest-footer__links { list-style: none; padding: 0; margin: 0; font-size: 0.9375rem; }
.rest-footer__links li { margin-bottom: 0.5rem; }
.rest-footer__links a { color: rgba(253, 251, 247, 0.75); text-decoration: none; }
.rest-footer__links a:hover { color: var(--rest-cream); }
.rest-footer__bottom { max-width: 72rem; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(253, 251, 247, 0.1); font-size: 0.8125rem; text-align: center; }
