/* ================================================
   PIZZA'Y'OLO — Design system complet
   Direction : Bold & chaud, sections alternées
   ================================================ */

@import url('./fonts.css');
@import url('./aos.css');

/* ------------------------------------------------
   1. VARIABLES CSS
   ------------------------------------------------ */
:root {
  /* Palette */
  --cream:    #FBF4E6;
  --cream-2:  #F3E8D2;
  --cream-3:  #EAD9B8;
  --char:     #16110E;
  --char-2:   #241D19;
  --red:      #E0301E;
  --red-2:    #B8281A;
  --green:    #3B7A2E;
  --amber:    #F2A33C;
  --ink:      #1C1714;
  --muted:    #6B5F54;
  --border:   rgba(28,23,20,0.12);

  /* Typographies */
  --font-display: 'Anton', 'Arial Black', sans-serif;
  --font-accent:  'Fraunces', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Espacements */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;

  /* Rayons */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Ombres "sticker" artisanales */
  --shadow-sticker:     4px 4px 0 var(--ink);
  --shadow-sticker-red: 4px 4px 0 var(--red);
  --shadow-soft:        0 8px 30px rgba(0,0,0,0.10);
  --shadow-hover:       0 16px 48px rgba(0,0,0,0.18);

  /* Nav height */
  --nav-h: 64px;
}

/* ------------------------------------------------
   2. RESET & BASE
   ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea { font-family: inherit; }

/* ------------------------------------------------
   3. TYPOGRAPHIE
   ------------------------------------------------ */

/* Anton display — titres de sections, hero, noms pizzas */
.display, h1 {
  font-family: var(--font-display);
  font-weight: 400; /* Anton n'a qu'un seul weight */
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.95;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.05;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

/* Fraunces italic — section histoire, taglines, citations */
.accent-title {
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

p { line-height: 1.65; }

.text-muted { color: var(--muted); }
.text-red   { color: var(--red); }
.text-cream { color: var(--cream); }
.text-amber { color: var(--amber); }

/* ------------------------------------------------
   4. LAYOUT UTILITAIRES
   ------------------------------------------------ */
.container {
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.container--narrow {
  width: min(780px, 100%);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.section {
  padding-block: var(--space-xl);
}

.section--sm {
  padding-block: var(--space-lg);
}

/* Alternance des fonds */
.bg-cream   { background: var(--cream); }
.bg-cream-2 { background: var(--cream-2); }
.bg-dark    { background: var(--char); color: var(--cream); }
.bg-red     { background: var(--red); color: var(--cream); }

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-sm); }

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
}

/* ------------------------------------------------
   5. NAV
   ------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(251, 244, 230, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav__inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav__logo img {
  height: 58px;
  width: auto;
}

/* Logo blanc : pilule sombre en arrière-plan quand nav devient claire */
.nav.scrolled .nav__logo {
  background: rgba(22,17,14,0.85);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

.nav__links {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.nav__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--cream);
  transition: color 0.2s;
}

.nav.scrolled .nav__links a {
  color: var(--ink);
}

.nav__links a:hover { color: var(--red); }

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Sélecteur de langue */
.lang-selector {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-selector a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.nav.scrolled .lang-selector a { color: var(--ink); }
.lang-selector a:hover, .lang-selector a.active { opacity: 1; color: var(--red); }

/* Burger mobile */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav.scrolled .nav__burger span { background: var(--ink); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--char);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--cream);
  text-transform: uppercase;
}
.nav__mobile a:hover { color: var(--red); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
}

/* ------------------------------------------------
   6. BOUTONS
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--red-2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,48,30,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}
.btn--outline:hover {
  background: var(--cream);
  color: var(--ink);
  transform: translateY(-1px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--outline-dark:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-group {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* ------------------------------------------------
   7. HERO
   ------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: var(--space-xl);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--char);
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

/* Dégradé sombre en bas pour lisibilité texte */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(22,17,14,0.2) 0%,
    rgba(22,17,14,0.1) 40%,
    rgba(22,17,14,0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: var(--space-md);
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(251,244,230,0.15);
  border: 1px solid rgba(251,244,230,0.4);
  backdrop-filter: blur(4px);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  text-transform: uppercase;
  color: var(--cream);
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: var(--space-sm);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(251,244,230,0.8);
  font-weight: 400;
  margin-bottom: var(--space-md);
}

.hero__ctas { margin-top: var(--space-sm); }

/* ------------------------------------------------
   8. BANDE DE CONFIANCE
   ------------------------------------------------ */
.trust-band {
  background: var(--char-2);
  padding: 24px 0;
}

.trust-band__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
}

.trust-item__icon {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ------------------------------------------------
   9. SECTION HISTOIRE
   ------------------------------------------------ */
.histoire__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  position: relative;
}

.histoire__photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.histoire__text .accent-title {
  margin-bottom: var(--space-sm);
}

.histoire__text p {
  color: var(--muted);
  margin-bottom: var(--space-sm);
  font-size: 1.05rem;
}

/* Placeholder photo quand image manquante */
.photo-placeholder {
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.875rem;
  border: 2px dashed var(--cream-3);
}

/* ------------------------------------------------
   10. CARDS PIZZA
   ------------------------------------------------ */
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 900px) {
  .pizza-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .pizza-grid { grid-template-columns: 1fr; }
}

.pizza-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
}

.pizza-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
  transform: translateY(-4px);
}

.pizza-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pizza-card__img--placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 2rem;
}

.pizza-card__body {
  padding: var(--space-sm) var(--space-sm) var(--space-md);
}

.pizza-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.pizza-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.pizza-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.pizza-card__price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
}

/* Labels diéta */
.labels {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.label {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.label--vege { background: var(--green); color: #fff; }
.label--hot  { background: var(--red); color: #fff; }
.label--fish { background: #1A6FA8; color: #fff; }

/* ------------------------------------------------
   11. BANDE GALERIE (fond sombre)
   ------------------------------------------------ */
.galerie {
  background: var(--char);
  padding-block: var(--space-xl);
}

.galerie__title {
  color: var(--cream);
  text-align: center;
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-lg);
}

.galerie__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

/* Première image en grand (1ère colonne, 2 lignes) */
.galerie__grid .galerie__item:first-child {
  grid-row: 1 / 3;
}

.galerie__item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.galerie__item img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform 0.4s;
}

.galerie__item:hover img { transform: scale(1.04); }

.galerie__item--placeholder {
  border-radius: var(--radius-md);
  background: var(--char-2);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  border: 1px solid rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
  .galerie__grid { grid-template-columns: repeat(2, 1fr); }
  .galerie__grid .galerie__item:first-child { grid-row: auto; }
}

/* ------------------------------------------------
   12. SERVICES
   ------------------------------------------------ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 700px) {
  .services__grid { grid-template-columns: 1fr; }
}

.service-card {
  text-align: center;
  padding: var(--space-md);
  background: var(--cream);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  /* Ligne rouge subtile en haut — couleur du resto, pas du BD */
  border-top: 3px solid var(--red);
  transition: box-shadow 0.25s, transform 0.25s;
}

.service-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-card__desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
}

/* ------------------------------------------------
   13. AVIS CLIENTS
   ------------------------------------------------ */
.avis__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 800px) {
  .avis__grid { grid-template-columns: 1fr; }
}

.avis-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  /* Trait rouge gauche discret — signature couleur du resto */
  border-left: 4px solid var(--red);
  padding: var(--space-md);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s, transform 0.25s;
}

.avis-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.11);
  transform: translateY(-3px);
}

.avis-card__stars {
  color: var(--amber);
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.avis-card__text {
  font-style: italic;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.avis-card__author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.avis__cta {
  text-align: center;
  margin-top: var(--space-lg);
}

/* ------------------------------------------------
   14. BANDE YOLO (signature)
   ------------------------------------------------ */
.yolo-band {
  background: var(--red);
  padding: 10px 0;
  overflow: hidden;
  user-select: none;
  /* contain empêche le débordement horizontal */
  contain: layout;
}

.yolo-band__wrap {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee 14s linear infinite;
}

.yolo-band__track {
  display: flex;
  gap: var(--space-md);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: var(--space-md);
}

.yolo-band__text {
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1.4vw, 1rem);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  align-self: center;
}

.yolo-band__logo {
  height: clamp(18px, 2.5vw, 28px);
  width: auto;
  flex-shrink: 0;
  align-self: center;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.yolo-band__sep {
  color: rgba(251,244,230,0.5);
  align-self: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .yolo-band__wrap { animation: none; }
}

/* ------------------------------------------------
   15. CONTACT & MAP
   ------------------------------------------------ */
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (max-width: 768px) {
  .contact__wrap { grid-template-columns: 1fr; }
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.contact__map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: none;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.horaires-table {
  width: 100%;
  border-collapse: collapse;
}

.horaires-table tr { border-bottom: 1px solid var(--border); }
.horaires-table tr:last-child { border-bottom: none; }

.horaires-table td {
  padding: 8px 0;
  font-size: 0.9rem;
}

.horaires-table td:first-child {
  font-weight: 500;
  width: 120px;
}

.horaires-table td:last-child {
  color: var(--muted);
  text-align: right;
}

.horaires-table .ferme { color: var(--red); font-style: italic; }

.tel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  color: var(--red);
  transition: color 0.2s;
}
.tel-cta:hover { color: var(--red-2); }

.adresse-line {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.proximity-note {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-top: 8px;
}

/* ------------------------------------------------
   16. FOOTER
   ------------------------------------------------ */
.footer {
  background: var(--char);
  color: var(--cream);
  padding-block: var(--space-lg);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(251,244,230,0.1);
  margin-bottom: var(--space-md);
}

@media (max-width: 768px) {
  .footer__inner { grid-template-columns: 1fr; gap: var(--space-md); }
}

.footer__logo img { height: 52px; width: auto; filter: brightness(0) invert(1); }
.footer__tagline {
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(251,244,230,0.6);
  margin-top: 8px;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  color: var(--cream);
}

.footer__col p, .footer__col li {
  font-size: 0.875rem;
  color: rgba(251,244,230,0.65);
  line-height: 1.9;
}

.footer__col a:hover { color: var(--red); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  font-size: 0.8rem;
  color: rgba(251,244,230,0.4);
}

.footer__bottom a { color: rgba(251,244,230,0.4); }
.footer__bottom a:hover { color: var(--cream); }

/* ------------------------------------------------
   17. CARTE PAGE (carte.html)
   ------------------------------------------------ */
.carte-header {
  padding-top: calc(var(--nav-h) + var(--space-xl));
  padding-bottom: var(--space-lg);
  background: var(--char);
  color: var(--cream);
  text-align: center;
}

.carte-header h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--cream);
}

.carte-header p {
  color: rgba(251,244,230,0.7);
  margin-top: var(--space-sm);
}

/* Barre de navigation catégories */
.cat-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
  background: var(--cream);
  border-bottom: 2px solid var(--ink);
  overflow-x: auto;
  scrollbar-width: none;
}

.cat-nav::-webkit-scrollbar { display: none; }

.cat-nav__list {
  display: flex;
  padding-inline: var(--space-md);
  min-width: max-content;
}

.cat-nav__item a {
  display: block;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.cat-nav__item a:hover,
.cat-nav__item a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Section catégorie */
.cat-section {
  padding-block: var(--space-lg);
}

.cat-section__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: var(--space-md);
  color: var(--ink);
}

.menu-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.menu-item:hover { background: var(--cream-2); padding-inline: var(--space-sm); margin-inline: calc(-1 * var(--space-sm)); border-radius: var(--radius-sm); }

.menu-item__name {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 6px;
}

.menu-item__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.5;
}

.menu-item__prices {
  text-align: right;
  flex-shrink: 0;
}

.menu-item__price {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--red);
}

.menu-item__price-sm {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

.menu-item__label-wrap {
  margin-top: 8px;
}

/* ------------------------------------------------
   18. SECTION HERO PAGE (padding top sous nav)
   ------------------------------------------------ */
.page-top { padding-top: var(--nav-h); }

/* ------------------------------------------------
   19. ANIMATIONS AOS OVERRIDES
   ------------------------------------------------ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ------------------------------------------------
   20. RESPONSIVE GLOBAL
   ------------------------------------------------ */
@media (max-width: 768px) {
  :root {
    --space-lg: 3rem;
    --space-xl: 4rem;
  }
  .section { padding-block: var(--space-lg); }
}

@media (max-width: 480px) {
  :root { --space-md: 1.25rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; justify-content: center; }
}

/* ------------------------------------------------
   21. PRINT
   ------------------------------------------------ */
@media print {
  .nav, .yolo-band, .galerie, .hero__ctas { display: none; }
  .hero { min-height: auto; padding-top: 2rem; }
}
