/* === Menus spéciaux — DA v2 === */
.menus { margin-top: 1.5rem; }

.menus-container {
  width: min(88%, var(--max-width));
  margin: 0 auto;
}

.menus-title {
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  margin: 0 0 1.2rem;
}

.menus-grid {
  width: 100%; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
}

/* Card */
.menu-card {
  background: var(--card, #fff);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(20,8,0,.07);
  padding: 1.2rem 1.2rem 1.3rem;
  transition: transform .2s, box-shadow .25s, border-color .22s;
}
.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(20,8,0,.11);
  border-color: rgba(181,117,46,.2);
}

.menu-card__head { display: flex; align-items: baseline; gap: 10px; margin: .1rem 0 .5rem; }
.menu-title {
  margin: 0; font-size: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--accent); line-height: 1.2; flex: 1; min-width: 0;
}
.price-badge {
  margin-left: auto; font-size: .95rem; font-weight: 800;
  color: var(--brand-dark); border: 1px solid var(--brand-dark);
  border-radius: 999px; padding: .12rem .6rem; line-height: 1; white-space: nowrap; background: #fff;
}

.menu-description { color: var(--text); margin: .25rem 0 .6rem; font-size: .98rem; }

/* Meta */
.menu-meta { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; margin: .1rem 0 .65rem; }
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: .84rem; line-height: 1;
  padding: .2rem .6rem; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--text);
}
.tag--date          { border-color: #c7e1ff; background: #eef6ff; color: #0b4a6f; }
.tag--state-current { border-color: #b7e4c7; background: #f3fcf6; color: #1F5038; }
.tag--state-upcoming{ border-color: #f0d5a0; background: #fdf8ee; color: #7a5a00; }
.tag--state-past    { border-color: var(--line); background: var(--bg-soft); color: var(--muted); }

/* Parties */
.menu-parts {
  display: grid; grid-template-columns: 1fr; gap: .85rem;
}
@media (min-width: 820px) { .menu-parts { grid-template-columns: repeat(3, 1fr); } }

.menu-part {
  background: var(--bg, #FAF7F2);
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: .75rem .85rem;
}
.menu-part__title { margin: 0 0 .35rem 0; color: var(--brand); font-size: .97rem; font-weight: 700; }

.menu-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .35rem; }
.menu-line { padding: .2rem 0 .35rem; border-bottom: 1px dotted var(--line); }
.menu-line:last-child { border-bottom: none; }
.menu-line__name { color: var(--text); font-weight: 500; }
.menu-line__desc { display: block; font-size: .88rem; color: var(--muted); margin-top: .12rem; }

/* Utilitaires */
.clamp-4 { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.hover-lift { transition: transform .2s, box-shadow .25s; }
.hover-lift:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(20,8,0,.12); }

@media (max-width: 900px) { .menus-container { width: 94%; } }
