/* =========================================================
   POULET GRILLE – Lille · feuille de style
   Palette tirée de la carte imprimée : ardoise noire,
   cartes orange, titres jaune fluo, coq rouge.
   ========================================================= */

:root {
  --charbon: #0B0A0A;
  --charbon-2: #171312;
  --charbon-3: #241D1A;
  --braise: #FF4D11;
  --braise-dark: #D93A05;
  --citron: #E4F53C;
  --coq: #E3140F;
  --creme: #FFF6EA;
  --creme-2: #F7E6D0;
  --encre: #1E1410;
  --encre-2: #6B5749;
  --tag: #321919;
  --blanc: #FFFFFF;
  --sable: rgba(255, 255, 255, 0.72);

  --font-display: "Lilita One", "Arial Black", Impact, sans-serif;
  --font-body: "Nunito", "Segoe UI", system-ui, -apple-system, sans-serif;

  --max: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px rgba(20, 8, 0, 0.18);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--encre);
  background: var(--charbon);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.05; margin: 0; text-wrap: balance; letter-spacing: 0.01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.wrap { width: min(var(--max), 100% - 2 * var(--gutter)); margin-inline: auto; }
.wrap--narrow { width: min(760px, 100% - 2 * var(--gutter)); }

.skip {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--citron); color: var(--encre); padding: 8px 14px; border-radius: 8px; font-weight: 800;
}
.skip:focus { left: 8px; }

:focus-visible { outline: 3px solid var(--citron); outline-offset: 3px; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 999px;
  font-weight: 800; font-size: 16px; text-decoration: none; border: 2px solid transparent;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--orange { background: var(--braise); color: var(--blanc); box-shadow: 0 10px 24px rgba(255, 77, 17, 0.35); }
.btn--orange:hover { background: var(--braise-dark); }
.btn--ghost { background: transparent; color: var(--blanc); border-color: rgba(255, 255, 255, 0.45); }
.btn--ghost:hover { border-color: var(--citron); color: var(--citron); }
.btn--dark { background: var(--encre); color: var(--blanc); }
.btn--dark:hover { background: var(--charbon-3); }
.btn--sm { padding: 10px 18px; font-size: 15px; }

.section--creme .btn--ghost { color: var(--encre); border-color: rgba(30, 20, 16, 0.35); }
.section--creme .btn--ghost:hover { border-color: var(--braise); color: var(--braise-dark); }

.linklike {
  background: none; border: 0; padding: 0; color: inherit;
  text-decoration: underline; text-decoration-color: var(--braise); text-underline-offset: 3px; font-weight: 800;
}
.linklike:hover { color: var(--braise); }

/* ---------- Bandeau du haut ---------- */
.topbar { background: var(--braise); color: var(--blanc); font-size: 14px; font-weight: 700; }
.topbar__in { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-block: 7px; }
.topbar__tel { text-decoration: none; font-weight: 800; letter-spacing: 0.02em; }
.topbar__tel:hover { text-decoration: underline; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 10, 10, 0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 10px; }
.nav__logo img { width: clamp(200px, 28vw, 300px); }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a { color: var(--sable); text-decoration: none; font-weight: 700; padding: 8px 12px; border-radius: 8px; }
.nav__links a:hover { color: var(--citron); }
.nav__links .btn { color: var(--blanc); margin-left: 8px; }
.nav__links .btn:hover { color: var(--blanc); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; padding: 10px;
  background: transparent; border: 2px solid rgba(255, 255, 255, 0.25); border-radius: 10px;
}
.nav__burger span { display: block; width: 22px; height: 3px; background: var(--blanc); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: radial-gradient(ellipse at 70% 40%, rgba(255, 77, 17, 0.22), transparent 55%), var(--charbon);
  color: var(--blanc);
}
.hero__flames {
  position: absolute; inset: auto 0 0 0; z-index: -2; width: 100%; height: 55%; object-fit: cover; object-position: center top;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to top, #000 20%, transparent 100%);
          mask-image: linear-gradient(to top, #000 20%, transparent 100%);
}
.hero__coq {
  position: absolute; z-index: -1; left: -4%; bottom: -12%; width: clamp(220px, 32vw, 460px);
  opacity: 0.07; transform: rotate(-8deg); pointer-events: none;
}
.hero__in {
  display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: clamp(24px, 5vw, 64px);
  padding-block: clamp(48px, 8vw, 96px) clamp(56px, 9vw, 110px);
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--citron);
  margin-bottom: 18px;
}
.dot { width: 9px; height: 9px; border-radius: 50%; background: var(--citron); box-shadow: 0 0 0 4px rgba(228, 245, 60, 0.2); }
.hero h1 { font-size: clamp(42px, 6.4vw, 78px); text-shadow: 0 4px 0 rgba(0, 0, 0, 0.35); }
.hero h1 em { font-style: normal; color: var(--citron); }
.hero__sub { margin-top: 22px; max-width: 54ch; font-size: clamp(17px, 1.6vw, 20px); color: var(--sable); }
.hero__sub strong { color: var(--blanc); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; font-size: 15px; font-weight: 700; color: var(--sable); }
.trust li { display: inline-flex; align-items: center; gap: 8px; }
.trust strong { color: var(--blanc); }
.stars { color: #FFC42E; letter-spacing: 0.06em; font-size: 16px; }
.status::before { content: ""; display: inline-block; width: 9px; height: 9px; border-radius: 50%; background: #8bd35a; margin-right: 8px; vertical-align: 1px; }
.status.is-closed::before { background: #ff6a3d; }

.hero__visual { position: relative; display: grid; place-items: center; }
.hero__glow {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 77, 17, 0.55), rgba(255, 77, 17, 0) 70%);
  filter: blur(8px);
}
.hero__visual > img { position: relative; width: min(100%, 560px); filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.6)); animation: float 6s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.sticker {
  position: absolute; right: 2%; top: 6%;
  display: grid; place-items: center; gap: 2px; width: 118px; aspect-ratio: 1; border-radius: 50%;
  background: var(--citron); color: var(--encre); text-decoration: none; transform: rotate(10deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  transition: transform .2s ease;
}
.sticker:hover { transform: rotate(4deg) scale(1.05); }
.sticker__name { font-family: var(--font-display); font-size: 15px; line-height: 1; text-align: center; }
.sticker__price { font-family: var(--font-display); font-size: 26px; line-height: 1; color: var(--braise-dark); }

/* ---------- Bandeau infos ---------- */
.infos { background: var(--braise); color: var(--blanc); }
.infos__in { display: grid; grid-template-columns: repeat(3, 1fr); }
.info {
  display: grid; gap: 2px; padding: 22px 24px; text-decoration: none;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}
.info:first-child { border-left: 0; padding-left: 0; }
a.info:hover .info__value { text-decoration: underline; text-underline-offset: 4px; }
.info__label { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.85; }
.info__value { font-family: var(--font-display); font-size: clamp(20px, 2vw, 24px); }
.info__note { font-size: 14px; opacity: 0.9; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(56px, 8vw, 96px); }
.section--tight { padding-top: 0; }
.section--creme { background: var(--creme); color: var(--encre); }
.section--charbon {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(255, 77, 17, 0.14), transparent 45%),
    var(--charbon);
  color: var(--blanc);
}
.section__head { max-width: 62ch; margin-bottom: clamp(28px, 4vw, 44px); }
.section__head h2 { font-size: clamp(32px, 4.2vw, 50px); }
.section__head--light h2 { color: var(--blanc); }
.kicker { font-size: 13px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--braise); margin-bottom: 12px; }
.section--charbon .kicker { color: var(--citron); }
.lead { margin-top: 14px; font-size: 18px; color: var(--encre-2); max-width: 60ch; }
.section--charbon .lead { color: var(--sable); }

/* ---------- Formules ---------- */
.formules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.formule {
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--braise); color: var(--blanc); border-radius: var(--radius);
  box-shadow: var(--shadow); min-height: 300px;
  transition: transform .2s ease;
}
.formule:hover { transform: translateY(-4px); }
.formule__body { padding: 24px 24px 18px; }
.formule h3 { font-size: clamp(26px, 2.4vw, 30px); color: var(--citron); text-shadow: 0 3px 0 rgba(0, 0, 0, 0.25); }
.formule p { margin-top: 10px; font-size: 16px; line-height: 1.45; }
.formule p em { font-style: normal; font-weight: 400; opacity: 0.85; }
.formule__img { margin-top: auto; width: 100%; height: 150px; object-fit: cover; object-position: center 35%; }
.formule--box .formule__img { object-fit: contain; height: 190px; padding: 0 24px 12px; object-position: center; }
.tag {
  position: absolute; right: 16px; bottom: 16px;
  font-family: var(--font-display); font-size: 28px; line-height: 1;
  background: var(--tag); color: var(--blanc); padding: 10px 16px; border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35); transform: rotate(-3deg);
}
.formule--offres { background: var(--charbon-2); border: 2px dashed rgba(228, 245, 60, 0.45); box-shadow: none; }
.formule--offres h3 { color: var(--citron); }
.offres { margin-top: 16px; display: grid; gap: 12px; font-size: 17px; font-weight: 700; }
.offres li { display: flex; align-items: baseline; gap: 8px; }
.offres b { font-family: var(--font-display); font-weight: 400; font-size: 22px; color: var(--citron); font-variant-numeric: tabular-nums; }

/* ---------- Carte à onglets ---------- */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 26px; }
.tab {
  padding: 12px 20px; border-radius: 999px; border: 2px solid rgba(255, 255, 255, 0.2);
  background: transparent; color: var(--sable); font-weight: 800; font-size: 15px;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.tab:hover { border-color: var(--citron); color: var(--citron); }
.tab.is-active { background: var(--citron); border-color: var(--citron); color: var(--encre); }

.panel { animation: fade .25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

.carte { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 40px; }
.carte li, .offres li { display: flex; align-items: baseline; gap: 10px; }
.carte li { padding: 14px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.carte__name { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.01em; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; }
.carte__name small { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--sable); }
.leader { flex: 1; min-width: 24px; border-bottom: 2px dotted rgba(255, 255, 255, 0.35); transform: translateY(-6px); }
.carte b { font-family: var(--font-display); font-weight: 400; font-size: 24px; color: var(--citron); font-variant-numeric: tabular-nums; white-space: nowrap; }
.carte__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-top: 30px; color: var(--sable); font-weight: 700; }

/* ---------- Atouts ---------- */
.atouts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.atout { padding: 26px 24px; background: var(--blanc); border-radius: var(--radius); border-top: 5px solid var(--braise); }
.atout__ico { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 14px; background: var(--charbon); font-size: 26px; margin-bottom: 16px; }
.atout__halal { width: 34px; }
.atout h3 { font-size: 24px; }
.atout p { margin-top: 10px; font-size: 15.5px; color: var(--encre-2); }

/* ---------- Galerie ---------- */
.galerie { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.galerie__item { margin: 0; border-radius: var(--radius-sm); overflow: hidden; background: var(--charbon-2); }
.galerie__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.galerie__item:hover img { transform: scale(1.04); }
.galerie__item--wide { grid-column: span 2; }
.galerie__item--box { background: var(--braise); }
.galerie__item--box img { object-fit: contain; padding: 12px; }

/* ---------- Avis ---------- */
.avis { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.avis__note {
  display: grid; place-items: center; gap: 4px; padding: 36px 24px; text-align: center;
  background: var(--blanc); border-radius: var(--radius); box-shadow: var(--shadow);
}
.avis__score { font-family: var(--font-display); font-size: 84px; line-height: 1; color: var(--encre); }
.stars--big { font-size: 30px; }
.avis__src { font-weight: 700; color: var(--encre-2); }
.avis__text h2 { font-size: clamp(32px, 4vw, 46px); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--blanc); border-radius: var(--radius-sm); border: 1px solid var(--creme-2); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; font-weight: 800; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 26px; color: var(--braise); line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 22px 20px; color: var(--encre-2); }
.faq details a { color: var(--braise-dark); font-weight: 800; }

/* ---------- Contact ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact h2 { font-size: clamp(32px, 4vw, 46px); }
.contact__addr { font-style: normal; margin-top: 20px; font-size: 18px; color: var(--sable); line-height: 1.5; }
.contact__addr strong { color: var(--blanc); font-family: var(--font-display); font-weight: 400; font-size: 22px; letter-spacing: 0.02em; }
.horaires { margin-top: 22px; border-collapse: collapse; width: 100%; max-width: 380px; font-variant-numeric: tabular-nums; }
.horaires th, .horaires td { padding: 10px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); text-align: left; }
.horaires th { font-weight: 700; color: var(--sable); }
.horaires td { text-align: right; font-weight: 800; color: var(--citron); }
.horaires__note { margin-top: 12px; font-size: 15px; color: var(--sable); }
.contact__map { position: relative; min-height: 380px; border-radius: var(--radius); overflow: hidden; background: var(--charbon-2); box-shadow: var(--shadow); }
.contact__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map__fallback { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; gap: 6px; color: var(--sable); padding: 24px; }
.map__fallback strong { color: var(--blanc); font-family: var(--font-display); font-weight: 400; font-size: 22px; }

/* ---------- Footer ---------- */
.footer { background: #070606; color: var(--sable); border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer__in { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-block: 48px 32px; }
.footer__brand img { width: 240px; }
.footer__brand p { margin-top: 14px; font-size: 15px; max-width: 32ch; }
.footer__col { display: grid; gap: 8px; align-content: start; font-size: 15px; }
.footer__col h4 { font-size: 18px; color: var(--citron); margin-bottom: 6px; letter-spacing: 0.03em; }
.footer__col a { text-decoration: none; }
.footer__col a:hover { color: var(--citron); text-decoration: underline; text-underline-offset: 3px; }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 20px; padding-block: 18px 28px; font-size: 13px; border-top: 1px solid rgba(255, 255, 255, 0.06); }

/* ---------- Barre mobile ---------- */
.mobilebar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(11, 10, 10, 0.94); backdrop-filter: blur(10px); border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 10px;
}
.mobilebar .btn { flex: 1; }

/* ---------- Lightbox carte ---------- */
.lightbox { border: 0; padding: 0; background: transparent; max-width: min(92vw, 720px); max-height: 92vh; overflow: auto; border-radius: var(--radius-sm); }
.lightbox::backdrop { background: rgba(0, 0, 0, 0.82); backdrop-filter: blur(4px); }
.lightbox img { width: 100%; border-radius: var(--radius-sm); }
.lightbox__close {
  position: sticky; top: 8px; float: right; margin: 8px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%; border: 0; background: var(--citron); color: var(--encre); font-weight: 800; font-size: 18px;
}
.lightbox__dl { position: sticky; bottom: 12px; left: 50%; transform: translateX(-50%); margin-top: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__in { grid-template-columns: 1fr; text-align: center; }
  .hero__text { display: flex; flex-direction: column; align-items: center; }
  .hero__cta, .trust { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__visual > img { width: min(70%, 420px); }
  .sticker { right: 6%; top: 0; }
  .formules { grid-template-columns: repeat(2, 1fr); }
  .atouts { grid-template-columns: repeat(2, 1fr); }
  .galerie { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .avis { grid-template-columns: 1fr; }
  .avis__note { max-width: 320px; }
  .contact { grid-template-columns: 1fr; }
  .footer__in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .topbar__in { justify-content: center; text-align: center; }
  .nav__burger { display: flex; }
  .nav__links {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--charbon); padding: 12px var(--gutter) 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 10px; font-size: 17px; }
  .nav__links .btn { margin: 8px 0 0; }
  .infos__in { grid-template-columns: 1fr; }
  .info { border-left: 0; border-top: 1px solid rgba(255, 255, 255, 0.28); padding: 16px 0; }
  .info:first-child { border-top: 0; }
  .carte { grid-template-columns: 1fr; }
  .carte__name { font-size: 20px; }
  .carte b { font-size: 22px; }
  .mobilebar { display: flex; }
  .footer__legal { padding-bottom: 110px; } /* place pour la barre d’appel fixe */
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .formules { grid-template-columns: 1fr; }
  .atouts { grid-template-columns: 1fr; }
  .galerie { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .footer__in { grid-template-columns: 1fr; gap: 24px; }
  .sticker { width: 96px; }
  .sticker__price { font-size: 22px; }
  .hero h1 { font-size: clamp(38px, 11vw, 48px); }
}
