:root {
  --red: #c41e3a;
  --red-dark: #9a1529;
  --cream: #faf6ef;
  --cream-dark: #f0e6d6;
  --brown: #2c1810;
  --brown-soft: #5c4033;
  --gold: #e8a317;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(44, 24, 16, 0.12);
  --radius: 16px;
  --font: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--brown);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { width: min(1100px, 92vw); margin: 0 auto; }

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.82);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(44, 24, 16, 0.06);
}
.header-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.75rem; line-height: 1; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong { font-size: 1rem; letter-spacing: -0.02em; }
.logo-text small { font-size: 0.68rem; color: var(--brown-soft); text-transform: uppercase; letter-spacing: 0.08em; }
.nav { display: none; gap: 1.5rem; margin-left: auto; }
.nav a { color: var(--brown); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.nav a:hover { color: var(--red); }
.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
}
.btn-call:hover { background: var(--red-dark); }
.header-call { display: none; margin-left: auto; }
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0.5rem;
  border: 1px solid rgba(44,24,16,0.12);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--brown); border-radius: 2px; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 4vw 1rem;
  border-top: 1px solid rgba(44,24,16,0.06);
  background: rgba(250,246,239,0.95);
  backdrop-filter: blur(12px);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  padding: 0.75rem 0.5rem;
  color: var(--brown);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(44,24,16,0.06);
}
.mobile-nav .btn-call { margin-top: 0.5rem; text-align: center; }

@media (min-width: 768px) {
  .nav { display: flex; }
  .header-call { display: inline-flex; }
  .burger, .mobile-nav { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none !important;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.35);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: var(--white);
  color: var(--brown);
  border: 2px solid rgba(44,24,16,0.12);
}
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(44,24,16,0.75) 0%, rgba(196,30,58,0.45) 50%, rgba(232,163,23,0.25) 100%),
    url('https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero-content { position: relative; z-index: 1; color: var(--white); max-width: 640px; }
.hero-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  font-weight: 700;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-lead { font-size: 1.05rem; opacity: 0.92; margin: 0 0 1.75rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-tags li {
  padding: 0.35rem 0.75rem;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Sections */
.section { padding: 4.5rem 0; }
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.section-head { text-align: center; max-width: 560px; margin: 0 auto 2.5rem; }
.section-head h2, .horaires h2, .contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin: 0 0 0.75rem;
  color: var(--brown);
}
.section-head p { margin: 0; color: var(--brown-soft); }

/* Services */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.service-card {
  padding: 1.75rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(44,24,16,0.06);
}
.service-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.service-card h2 { font-size: 1.15rem; margin: 0 0 0.5rem; }
.service-card p { margin: 0; font-size: 0.92rem; color: var(--brown-soft); }

/* Menu */
.menu-extras {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.menu-extra {
  padding: 0.45rem 0.85rem;
  background: var(--white);
  border-radius: 999px;
  font-size: 0.82rem;
  border: 1px solid rgba(44,24,16,0.08);
}
.menu-extra strong { color: var(--red); }
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.menu-tabs button {
  padding: 0.55rem 1rem;
  border: 1px solid rgba(44,24,16,0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--brown);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
}
.menu-tabs button[aria-selected="true"] {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.menu-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.35rem 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}
.menu-category-head { margin-bottom: 1rem; text-align: center; }
.menu-category-head h3 { margin: 0; font-size: 1.25rem; }
.menu-category-head p { margin: 0.35rem 0 0; font-size: 0.88rem; color: var(--brown-soft); }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(44,24,16,0.06);
}
.menu-row:last-child { border-bottom: 0; }
.menu-row-main { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.menu-row-main strong { font-size: 0.98rem; }
.menu-row-main span { font-size: 0.84rem; color: var(--brown-soft); line-height: 1.4; }
.menu-badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.1rem 0.45rem;
  background: var(--gold);
  color: var(--brown);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  vertical-align: middle;
}
.menu-price {
  flex-shrink: 0;
  font-weight: 800;
  color: var(--red);
  font-size: 0.95rem;
  white-space: nowrap;
}
.menu-info { margin: 0; color: var(--brown-soft); font-size: 0.95rem; }
.menu-note { text-align: center; margin-top: 1.5rem; color: var(--brown-soft); font-size: 0.92rem; }

/* Offres */
.offres { background: var(--cream-dark); }
.offres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.offre-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  color: var(--white);
  box-shadow: var(--shadow);
}
.offre-red { background: linear-gradient(145deg, #c41e3a, #9a1529); }
.offre-green { background: linear-gradient(145deg, #2d6a4f, #1b4332); }
.offre-gold { background: linear-gradient(145deg, #b8860b, #8b6914); color: #fff8e7; }
.offre-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}
.offre-card h3 { margin: 0 0 0.5rem; font-size: 1.05rem; line-height: 1.3; }
.offre-card p { margin: 0; font-size: 0.88rem; opacity: 0.92; line-height: 1.45; }
.livraison-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
}
.livraison-box h3 { margin: 0 0 0.75rem; font-size: 1.1rem; }
.livraison-box ul { margin: 0; padding-left: 1.1rem; color: var(--brown-soft); }
.livraison-box li { margin-bottom: 0.35rem; }
.livraison-note { margin: 0.75rem 0 0; font-size: 0.82rem; color: var(--brown-soft); }
.flyer-wrap {
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
}
.flyer-wrap img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--white);
  display: block;
}
.flyer-wrap figcaption { margin-top: 0.65rem; font-size: 0.82rem; color: var(--brown-soft); }

/* Avis */
.avis { background: var(--brown); color: var(--cream); }
.avis-inner { text-align: center; max-width: 560px; }
.avis-stars { color: var(--gold); font-size: 1.5rem; letter-spacing: 0.15em; margin-bottom: 1rem; }
.avis blockquote { margin: 0; }
.avis blockquote p { font-size: 1.15rem; font-style: italic; margin: 0 0 0.75rem; line-height: 1.5; }
.avis footer { font-size: 0.85rem; opacity: 0.7; }

/* Horaires */
.horaires-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .horaires-grid { grid-template-columns: 1.2fr 0.8fr; }
}
.horaires-lead { color: var(--brown-soft); margin-bottom: 1.5rem; }
.hours-list { margin: 0; }
.hours-list div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(44,24,16,0.08);
}
.hours-list dt { font-weight: 700; margin: 0; }
.hours-list dd { margin: 0; color: var(--brown-soft); }
.horaires-card {
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.horaires-card h3 { margin: 0 0 0.5rem; }
.horaires-card p { margin: 0 0 1rem; color: var(--brown-soft); font-size: 0.92rem; }
.pay-note { margin-top: 1rem !important; font-size: 0.78rem !important; text-align: center; }

/* Contact */
.contact { background: var(--cream-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
}
address { font-style: normal; font-size: 1.1rem; line-height: 1.7; margin: 1rem 0; }
.contact-meta { color: var(--brown-soft); font-size: 0.9rem; margin-bottom: 1.25rem; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 280px;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 280px; border: 0; display: block; }

/* Footer */
.footer {
  padding: 2rem 0;
  background: var(--brown);
  color: rgba(250,246,239,0.75);
  font-size: 0.85rem;
  text-align: center;
}
.footer-inner p { margin: 0.35rem 0; }
.footer a { color: var(--gold); }

/* FAB */
.fab-call {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(196,30,58,0.45);
}
.fab-call:hover { background: var(--red-dark); color: var(--white); text-decoration: none; }
