/* ==========================================================================
   Pizz'Avenue — feuille de style
   Ambiance : ardoise noire, tricolore italien, jaune "promo" et rouge tomate.
   ========================================================================== */

:root {
  --bg: #0f0f0f;
  --bg-2: #161616;
  --card: #1c1c1c;
  --card-2: #232323;
  --line: rgba(255, 255, 255, .09);
  --text: #f6f1e7;
  --muted: #b8b0a2;
  --yellow: #ffc933;
  --yellow-2: #ffdb6e;
  --red: #e1262c;
  --red-dark: #b3191f;
  --green: #1f9d55;
  --white: #ffffff;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, .8);
  --container: 1180px;
  --header-h: 100px;

  --font-display: "Lilita One", "Arial Rounded MT Bold", "Trebuchet MS", sans-serif;
  --font-body: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  /* grain "ardoise" très léger */
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(255, 201, 51, .06), transparent 60%),
    radial-gradient(900px 500px at 110% 10%, rgba(225, 38, 44, .07), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .035 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; font-weight: 400; }
button { font: inherit; color: inherit; cursor: pointer; }
[hidden] { display: none !important; }

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; border-radius: 6px; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--yellow); color: #111; padding: 10px 16px; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Tricolore italien */
.tricolore {
  height: 5px;
  background: linear-gradient(90deg, var(--green) 0 33.33%, var(--white) 33.33% 66.66%, var(--red) 66.66% 100%);
}

/* ---------- Typo ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--green) 0 33%, var(--white) 33% 66%, var(--red) 66%);
}

.display {
  font-family: var(--font-display);
  letter-spacing: .01em;
  text-transform: uppercase;
}

.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 72px) 0; }

.section-head { max-width: 680px; margin-bottom: clamp(32px, 5vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  text-transform: uppercase;
  margin: 12px 0 14px;
}
.section-title .hl { color: var(--yellow); }
.section-title .hl-red { color: var(--red); }
.lead { color: var(--muted); font-size: 1.05rem; }

/* soulignement "craie" */
.swoosh { position: relative; display: inline-block; }
.swoosh::after {
  content: ""; position: absolute; left: 2%; right: 2%; bottom: -.18em; height: .22em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'%3E%3Cpath d='M2 9 C 50 2, 120 2, 198 6' fill='none' stroke='%23ffc933' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* ---------- Boutons ---------- */
.btn {
  --btn-bg: var(--red);
  --btn-fg: var(--white);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px; border: 2px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 700; font-size: .98rem; letter-spacing: .01em; white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  box-shadow: 0 10px 24px -12px var(--btn-bg);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px var(--btn-bg); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--yellow { --btn-bg: var(--yellow); --btn-fg: #141414; }
.btn--ghost { background: transparent; border-color: rgba(255, 255, 255, .25); box-shadow: none; }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); box-shadow: none; }
.btn--sm { padding: 10px 18px; font-size: .9rem; }

/* ---------- Bandeau promo ---------- */
.topbar {
  background: var(--yellow); color: #141414;
  font-size: .86rem; font-weight: 600; text-align: center;
}
.topbar a { display: block; padding: 8px 16px; }
.topbar strong { font-weight: 800; }
.topbar a:hover u { text-decoration-thickness: 2px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15, 15, 15, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-scrolled { background: rgba(12, 12, 12, .95); box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .9); }

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }

.brand { display: inline-flex; align-items: center; flex: none; }
.brand-logo {
  height: 82px; width: auto;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .55));
  transition: transform .25s ease;
}
.brand:hover .brand-logo { transform: rotate(-3deg) scale(1.04); }
.brand-logo--lg { height: 130px; }

.promo-logo {
  display: block; width: min(230px, 62%); height: auto; margin: 0 auto 4px; position: relative;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .6));
}

.site-nav ul { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 6px; }
.site-nav a:not(.btn) {
  display: block; padding: 8px 14px; border-radius: 999px; font-weight: 500; font-size: .95rem; color: var(--muted);
  transition: color .2s ease, background-color .2s ease;
}
.site-nav a:not(.btn):hover { color: var(--text); background: rgba(255, 255, 255, .06); }
.site-nav a.is-active { color: var(--yellow); }
.site-nav .nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--line);
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px;
  position: relative; transition: transform .25s ease, background-color .25s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { padding: clamp(40px, 7vw, 90px) 0 clamp(56px, 8vw, 100px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 70px); align-items: center; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.6vw, 5.2rem);
  text-transform: uppercase; line-height: .98;
  margin: 18px 0 22px;
}
.hero h1 .hl { color: var(--yellow); }
.hero h1 .hl-red { color: var(--red); }
.hero .lead { max-width: 520px; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero-points { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 34px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: .92rem; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points svg { width: 18px; height: 18px; color: var(--green); flex: none; }

.hero-visual { position: relative; aspect-ratio: 1; max-width: 560px; justify-self: center; width: 100%; }
.hero-plate {
  position: absolute; inset: 9%; border-radius: 50%; overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .95), 0 0 0 10px rgba(255, 255, 255, .03);
  background: #2a1a10;
}
.hero-plate img { width: 100%; height: 100%; object-fit: cover; }
.hero-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: spin 38s linear infinite; }
.hero-ring text { font-family: var(--font-display); font-size: 21px; letter-spacing: 6px; fill: var(--yellow); text-transform: uppercase; }
.hero-ring .dash { fill: none; stroke: rgba(255, 255, 255, .12); stroke-width: 1.5; stroke-dasharray: 3 9; }

.sticker {
  position: absolute; display: grid; place-items: center; text-align: center; border-radius: 50%;
  font-family: var(--font-display); line-height: 1; text-transform: uppercase;
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, .9);
}
.sticker--price {
  right: 0; bottom: 8%; width: clamp(110px, 24%, 140px); aspect-ratio: 1;
  background: var(--red); color: var(--white); transform: rotate(-10deg);
  border: 4px dashed rgba(255, 255, 255, .35);
}
.sticker--price small { display: block; font-size: .8rem; letter-spacing: .08em; }
.sticker--price b { display: block; font-size: 2rem; font-weight: 400; color: var(--yellow); margin: 4px 0; }
.sticker--since {
  left: 0; top: 10%; width: clamp(84px, 18%, 104px); aspect-ratio: 1;
  background: var(--yellow); color: #141414; transform: rotate(12deg); font-size: .9rem;
}
.sticker--since b { display: block; font-size: 1.55rem; font-weight: 400; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Bande chiffres ---------- */
.stats { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .02); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 28px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 3.4vw, 2.5rem); color: var(--yellow); line-height: 1.1; }
.stat span { color: var(--muted); font-size: .9rem; }

/* ---------- Promo étudiante ---------- */
.promo { position: relative; }
.promo-board {
  position: relative; border-radius: 26px; padding: clamp(28px, 5vw, 56px);
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255, 255, 255, .05), transparent 70%),
    #141414;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
/* double liseré tricolore comme sur l'affiche */
.promo-board::before {
  content: ""; position: absolute; inset: 12px; border-radius: 18px; pointer-events: none;
  padding: 3px;
  background: linear-gradient(135deg, var(--green) 0 33%, var(--white) 33% 66%, var(--red) 66%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .55;
}

.promo-title {
  font-family: var(--font-display); text-transform: uppercase; text-align: center;
  font-size: clamp(2.4rem, 7vw, 4.6rem); line-height: 1; margin: 10px 0 8px;
  color: var(--yellow); text-shadow: 0 4px 0 rgba(0, 0, 0, .5);
}
.promo-title span { color: var(--red); }
.promo-sub { text-align: center; color: var(--muted); margin-bottom: clamp(28px, 4vw, 44px); }

.promo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 3vw, 28px); position: relative; }

.formule {
  display: grid; grid-template-columns: 1fr 44%; align-items: center; gap: 12px;
  padding: clamp(20px, 3vw, 30px); border-radius: var(--radius);
  border: 2px solid rgba(255, 201, 51, .55);
  background: linear-gradient(160deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, 0));
  transition: transform .25s ease, border-color .25s ease;
}
.formule:hover { transform: translateY(-4px); border-color: var(--yellow); }
.formule h3 { font-family: var(--font-body); font-weight: 800; font-size: clamp(1.25rem, 2.2vw, 1.6rem); text-transform: uppercase; line-height: 1.15; }
.formule h3 span { color: var(--yellow); display: block; }
.formule p { color: var(--text); font-weight: 600; text-transform: uppercase; font-size: .9rem; margin: 8px 0 18px; letter-spacing: .02em; }
.formule p em { font-style: normal; color: var(--yellow); }
.formule-price {
  display: inline-grid; place-items: center; min-width: 108px; height: 78px; padding: 0 22px;
  border-radius: 50%; background: var(--red); color: var(--yellow);
  font-family: var(--font-display); font-size: 2.6rem; line-height: 1;
  transform: rotate(-4deg); box-shadow: 0 10px 24px -10px var(--red);
}
.formule-media { position: relative; }
.formule-media img {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%;
  box-shadow: 0 24px 40px -20px rgba(0, 0, 0, .95); border: 6px solid rgba(255, 255, 255, .06);
}

.promo-foot {
  margin-top: clamp(26px, 4vw, 40px); text-align: center; position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.promo-foot .note { color: var(--yellow); font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: .95rem; margin: 0; }

/* ---------- Cartes pizzas (accueil) ---------- */
.pizza-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }
.pizza-card {
  position: relative; display: flex; flex-direction: column; gap: 10px;
  padding: 24px 22px 20px; border-radius: var(--radius);
  background: var(--card); border: 1px solid var(--line);
  transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}
.pizza-card:hover { transform: translateY(-4px); border-color: rgba(255, 201, 51, .45); background: var(--card-2); }
.pizza-card h3 { font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.pizza-card p { color: var(--muted); font-size: .92rem; margin: 0; flex: 1; }
.pizza-card .prices { display: flex; gap: 8px; margin-top: 8px; }

.price-pill {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 5px 12px; border-radius: 999px; background: rgba(255, 255, 255, .06);
  font-weight: 700; font-size: .92rem; white-space: nowrap;
}
.price-pill small { font-weight: 500; color: var(--muted); font-size: .75rem; }
.price-pill--hl { background: rgba(255, 201, 51, .14); color: var(--yellow); }

.tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 999px; background: rgba(255, 255, 255, .07); color: var(--muted);
  line-height: 1.4;
}
.tag--veggie { background: rgba(31, 157, 85, .16); color: #6fdc9c; }
.tag--epice { background: rgba(225, 38, 44, .16); color: #ff8a8d; }
.tag--mer { background: rgba(80, 160, 255, .14); color: #9cc7ff; }
.tag--creme { background: rgba(255, 248, 236, .1); color: #f3e6cf; }

.center-cta { text-align: center; margin-top: 40px; }

/* ---------- Split (lasagne / valeurs) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-media { position: relative; }
.split-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: 26px; box-shadow: var(--shadow); }
.split-media .sticker--price { right: -14px; bottom: -20px; }

.features { display: grid; gap: 18px; margin: 28px 0 32px; padding: 0; list-style: none; }
.features li { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: start; }
.features .ico {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(255, 201, 51, .12); color: var(--yellow);
}
.features .ico svg { width: 24px; height: 24px; }
.features h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; margin: 2px 0 4px; }
.features p { color: var(--muted); margin: 0; font-size: .94rem; }

/* ---------- Infos pratiques ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.info-card {
  padding: 28px 26px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line);
}
.info-card .ico {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--red); color: var(--white);
}
.info-card .ico svg { width: 22px; height: 22px; }
.info-card h3 { font-family: var(--font-display); font-size: 1.4rem; text-transform: uppercase; margin-bottom: 10px; }
.info-card p { color: var(--muted); margin: 0 0 6px; }
.info-card .big { font-size: 1.35rem; font-weight: 700; color: var(--text); }
.info-card a.link { color: var(--yellow); font-weight: 600; display: inline-flex; gap: 6px; align-items: center; margin-top: 8px; }
.info-card a.link:hover { text-decoration: underline; }

.hours { width: 100%; border-collapse: collapse; font-size: .94rem; }
.hours th, .hours td { padding: 6px 0; text-align: left; border-bottom: 1px dashed var(--line); font-weight: 400; }
.hours td { text-align: right; color: var(--muted); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--yellow); font-weight: 700; }
.hours .closed { color: #ff8a8d; }

.open-status {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px;
  font-size: .82rem; font-weight: 600; padding: 4px 12px; border-radius: 999px;
}
.open-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.open-status.is-open { background: rgba(31, 157, 85, .16); color: #6fdc9c; }
.open-status.is-closed { background: rgba(225, 38, 44, .16); color: #ff8a8d; }

.map {
  margin-top: 18px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 21 / 8; background: var(--card);
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(.35) contrast(1.05); }

/* ---------- Bande CTA ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--red); color: var(--white); }
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background: repeating-linear-gradient(-45deg, transparent 0 22px, rgba(0, 0, 0, .6) 22px 44px);
}
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding: 44px 0; }
.cta-inner h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.cta-inner p { margin: 6px 0 0; opacity: .9; }
.cta-phone {
  font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.6rem); letter-spacing: .03em;
  background: var(--white); color: var(--red); padding: 10px 26px; border-radius: 999px;
  display: inline-flex; align-items: center; gap: 12px; transition: transform .2s ease;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .6);
}
.cta-phone:hover { transform: scale(1.03); }
.cta-phone svg { width: 28px; height: 28px; }

/* ---------- En-tête de page intérieure ---------- */
.page-hero { padding: clamp(48px, 7vw, 84px) 0 clamp(28px, 4vw, 40px); text-align: center; }
.page-hero h1 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.6rem, 7vw, 4.6rem); margin: 14px 0 12px; }
.page-hero h1 .hl { color: var(--yellow); }
.page-hero .lead { max-width: 620px; margin: 0 auto; }
.page-hero .eyebrow { justify-content: center; }

/* ---------- La carte ---------- */
.menu-toolbar {
  position: sticky; top: calc(var(--header-h) + 5px); z-index: 50;
  background: rgba(15, 15, 15, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-block: 1px solid var(--line);
}
.menu-toolbar-inner { display: flex; align-items: center; gap: 16px; padding: 14px 0; }
.chips { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; flex: 1; padding: 2px; }
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: none; padding: 8px 16px; border-radius: 999px; font-size: .88rem; font-weight: 600;
  background: rgba(255, 255, 255, .06); border: 1px solid transparent; color: var(--muted);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.chip:hover { color: var(--text); border-color: var(--line); }
.chip[aria-pressed="true"] { background: var(--yellow); color: #141414; }

.search {
  position: relative; flex: 0 0 260px;
}
.search svg { position: absolute; left: 14px; top: 50%; width: 18px; height: 18px; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.search input {
  width: 100%; padding: 10px 14px 10px 42px; border-radius: 999px;
  background: rgba(255, 255, 255, .06); border: 1px solid var(--line); color: var(--text);
  font: inherit; font-size: .92rem;
}
.search input::placeholder { color: #8a8378; }
.search input:focus { outline: none; border-color: var(--yellow); background: rgba(255, 255, 255, .09); }

.menu-legend {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 12px 24px;
  margin: 34px 0 10px; color: var(--muted); font-size: .92rem;
}
.menu-legend .sizes { display: flex; flex-wrap: wrap; gap: 10px; }
.menu-legend [data-count] { font-weight: 600; color: var(--text); }

.menu-section { margin-top: 44px; }
.menu-section-head { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.menu-section-head h2 { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.7rem, 3.4vw, 2.3rem); white-space: nowrap; }
.menu-section-head h2 span { color: var(--yellow); }
.menu-section-head::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.menu-section-head .cols { display: flex; gap: 12px; order: 3; color: var(--muted); font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }

.menu-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 48px; list-style: none; margin: 0; padding: 0; }
.menu-item { padding: 16px 0; border-bottom: 1px dashed var(--line); }
.menu-item-top { display: flex; align-items: baseline; gap: 10px; }
.menu-item h3 { font-weight: 700; font-size: 1.08rem; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.menu-item .dots { flex: 1; border-bottom: 2px dotted rgba(255, 255, 255, .16); transform: translateY(-4px); min-width: 20px; }
.menu-item .menu-prices { display: flex; gap: 14px; font-weight: 700; white-space: nowrap; }
.menu-item .menu-prices span:first-child { color: var(--yellow); }
.menu-item p { color: var(--muted); font-size: .9rem; margin: 4px 0 0; }
.menu-item .menu-prices small { display: none; font-weight: 500; font-size: .72rem; color: var(--muted); margin-right: 3px; }
@media (max-width: 600px) { .menu-item .menu-prices small { display: inline; } }

.promo-foot .note { display: inline-flex; align-items: center; gap: 8px; }
.promo-foot .note svg { width: 20px; height: 20px; }

.menu-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.menu-empty p { font-size: 1.05rem; }

.lasagne-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 28px; align-items: center;
  padding: 22px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line);
}
.lasagne-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; }
.lasagne-card h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.8rem; margin-bottom: 6px; }
.lasagne-card p { color: var(--muted); margin-bottom: 14px; }
.lasagne-card .prices { display: flex; flex-wrap: wrap; gap: 8px; }

.menu-note {
  margin-top: 48px; padding: 22px 26px; border-radius: var(--radius);
  background: rgba(255, 201, 51, .08); border: 1px dashed rgba(255, 201, 51, .45);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.menu-note p { margin: 0; }
.menu-note strong { color: var(--yellow); }

/* ---------- Page contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-grid .info-card { height: 100%; }

/* ---------- Pages texte (mentions légales) ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-family: var(--font-display); text-transform: uppercase; font-size: 1.6rem; margin: 40px 0 12px; color: var(--yellow); }
.prose p, .prose li { color: var(--muted); }
.prose a { color: var(--yellow); text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: #0a0a0a; border-top: 1px solid var(--line); padding-top: 60px; color: var(--muted); font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.footer-grid h4 { font-family: var(--font-display); text-transform: uppercase; color: var(--text); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: .03em; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-grid a:hover { color: var(--yellow); }
.footer-about p { margin: 16px 0 0; max-width: 300px; }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 20px 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  font-size: .84rem;
}
.footer-bottom a:hover { color: var(--yellow); }

/* Bouton d'appel flottant (mobile) */
.fab-call {
  position: fixed; right: 16px; bottom: 16px; z-index: 90;
  display: none; align-items: center; gap: 8px;
  padding: 14px 20px; border-radius: 999px; background: var(--red); color: var(--white);
  font-weight: 700; box-shadow: 0 16px 34px -12px rgba(225, 38, 44, .8);
}
.fab-call svg { width: 20px; height: 20px; }

/* ---------- Animations d'apparition ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2, .7, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .info-grid .info-card:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  :root { --header-h: 82px; }
  .nav-toggle { display: inline-flex; }
  /* absolute (et non fixed) : le backdrop-filter du header crée un bloc conteneur */
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 99;
    height: calc(100vh - var(--header-h) - 5px); height: calc(100dvh - var(--header-h) - 5px); overflow-y: auto;
    background: rgba(12, 12, 12, .98);
    padding: 24px 20px 40px;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
  }
  body.nav-open .site-nav { opacity: 1; transform: none; visibility: visible; }
  .site-nav ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .site-nav a:not(.btn) { font-size: 1.3rem; padding: 14px 16px; font-family: var(--font-display); text-transform: uppercase; color: var(--text); }
  .site-nav .nav-cta { margin: 16px 0 0; }
  .site-nav .nav-cta .btn { width: 100%; padding: 16px; }

  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; }
  .hero { text-align: center; }
  .hero .eyebrow { justify-content: center; }
  .hero .lead { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .promo-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; }
  .menu-toolbar-inner { flex-direction: column; align-items: stretch; gap: 10px; }
  .search { flex: 1 1 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .map { aspect-ratio: 4 / 3; }
  .fab-call { display: inline-flex; }
  .site-footer { padding-bottom: 70px; }
}

@media (max-width: 600px) {
  .header-inner .brand-logo { height: 66px; }
  .info-grid, .footer-grid { grid-template-columns: 1fr; }
  .formule { grid-template-columns: 1fr; text-align: center; }
  .formule-media { max-width: 200px; margin: 0 auto; order: -1; }
  .lasagne-card { grid-template-columns: 1fr; text-align: center; }
  .lasagne-card img { max-width: 220px; margin: 0 auto; }
  .lasagne-card .prices { justify-content: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .menu-section-head .cols { display: none; }
  .split-media .sticker--price { right: 8px; bottom: -16px; }
}
