/* ═══════════════════════════════════════════════
   SPEED RABBIT PIZZA — Shared Stylesheet
   Used by all inner pages
═══════════════════════════════════════════════ */

/* ─── POLICE HATTEN (logo) ─── */
@font-face {
  font-family: 'Hatten';
  src: url('../font/hatten.woff2') format('woff2'),
       url('../font/hatten.woff')  format('woff'),
       url('../font/HATTEN.TTF')   format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.hatten {
  font-family: 'Hatten', 'Playfair Display', serif;
  letter-spacing: .5px;
}
    /* ─── RESET & VARIABLES ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --red:    #E5151A;
      --red-dk: #B50F13;
      --cream:  #FFF8F0;
      --cream-dk :  #cc9966;  
      --dark:   #1A1008;
      --warm:   #3D2B1F;
      --gold:   #F4A228;
      --yellow: #ffd900;   
      --text:   #2A1810;
      --muted:  #7A6258;
      --border: rgba(0,0,0,.09);
      --radius: 16px;
      --nav-h:  72px;
    }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(26,16,8,.97);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: normal;
  color: #fff; letter-spacing: .5px;
}
.nav-logo .gold { color: var(--yellow); }
.logo-rabbit {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--yellow); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(229,21,26,.45);
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.75);
  font-size: .875rem; font-weight: 500; letter-spacing: .3px;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: .5rem 1.3rem; border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 3px 14px rgba(229,21,26,.4);
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--red-dk) !important; transform: translateY(-1px); }
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(26,16,8,.97); flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: #fff; font-size: 1.5rem; font-family: 'Hatten', 'Playfair Display', serif; font-weight: normal; transition: color .2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .m-cta { background: var(--red); padding: .7rem 2.2rem; border-radius: 50px; font-size: 1rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  min-height: 340px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: calc(var(--nav-h) + 3rem) 5vw 4rem;
  position: relative; overflow: hidden;
}
.page-hero-dark {
  background:
    linear-gradient(160deg, rgba(26,16,8,0.82) 0%, rgba(46,24,16,0.78) 60%, rgba(26,16,8,0.82) 100%),
    url('../img/hero-carte-background.webp') center/cover no-repeat;
}
.page-hero-red {
  background: linear-gradient(160deg, #B50F13 0%, #E5151A 50%, #B50F13 100%);
}
.page-hero-warm {
  background: linear-gradient(160deg, #2E1810 0%, #3D2B1F 60%, #2E1810 100%);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.hero-breadcrumb {
  font-size: .75rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: .75rem; position: relative; z-index: 1;
}
.hero-breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.hero-breadcrumb a:hover { color: var(--yellow); }
.page-hero h1 {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: normal; color: #fff; line-height: 1.1;
  position: relative; z-index: 1;
}
.page-hero h1 em { color: var(--yellow); font-style: italic; }
.page-hero p {
  color: rgba(255,255,255,.6); font-size: 1rem; max-width: 560px;
  margin: 1rem auto 0; line-height: 1.7; position: relative; z-index: 1;
}
.hero-icon {
  font-size: 3.5rem; margin-bottom: 1rem; position: relative; z-index: 1;
}

/* ─── MAIN CONTENT ─── */
.page-body { max-width: 1140px; margin: 0 auto; padding: 5rem 5vw 6rem; }
.page-body-full { padding: 5rem 5vw 6rem; }

/* ─── SECTION ATOMS ─── */
.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--red); margin-bottom: .6rem;
  display: block;
}
.section-title {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: normal; line-height: 1.12; color: var(--dark);
  margin-bottom: 1.5rem;
}
.section-title em { color: var(--red); font-style: italic; }
.section-title.light { color: #fff; }
.section-title.light em { color: var(--gold); }

/* ─── PROSE ─── */
.prose h2 {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: normal; color: var(--dark);
  margin: 2.5rem 0 .75rem;
}
.prose h3 {
  font-size: 1.1rem; font-weight: 600; color: var(--warm);
  margin: 1.8rem 0 .5rem;
}
.prose p { line-height: 1.8; color: var(--text); margin-bottom: 1rem; font-size: .95rem; }
.prose ul { margin: .75rem 0 1.2rem 1.5rem; }
.prose ul li { line-height: 1.7; color: var(--text); margin-bottom: .35rem; font-size: .92rem; }
.prose blockquote {
  border-left: 3px solid var(--red); padding-left: 1.25rem;
  margin: 1.5rem 0; font-style: italic; color: var(--warm);
  font-size: 1.05rem;
}
.prose a { color: var(--red); border-bottom: 1px solid rgba(229,21,26,.3); transition: border-color .2s; }
.prose a:hover { border-color: var(--red); }
.legal-prose h2 { border-top: 1px solid var(--border); padding-top: 2rem; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red); color: #fff;
  padding: .85rem 2rem; border-radius: 50px; font-weight: 600;
  font-size: .95rem; letter-spacing: .3px;
  box-shadow: 0 4px 20px rgba(229,21,26,.35);
  transition: background .2s, transform .2s, box-shadow .2s;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(229,21,26,.45); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1.5px solid rgba(0,0,0,.2); color: var(--dark);
  padding: .85rem 2rem; border-radius: 50px; font-weight: 500;
  font-size: .95rem; transition: border-color .2s, background .2s;
  background: transparent; cursor: pointer; font-family: inherit;
}
.btn-outline:hover { border-color: var(--dark); background: rgba(0,0,0,.04); }
.btn-outline-white {
  border-color: rgba(255,255,255,.4); color: #fff;
}
.btn-outline-white:hover { border-color: rgba(255,255,255,.9); background: rgba(255,255,255,.08); color: #fff; }

/* ─── CARDS ─── */
.card {
  background: #fff; border-radius: var(--radius);
  padding: 2rem; box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,.1); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: normal; margin-bottom: .5rem;
}
.card p { color: var(--muted); font-size: .88rem; line-height: 1.65; }

.menu-card-emoji {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


/* ─── GRID HELPERS ─── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── FORM ─── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 600;
  color: var(--warm); margin-bottom: .4rem; letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .8rem 1.1rem;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: inherit; font-size: .9rem; background: #fff;
  color: var(--text); outline: none; transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .75rem; color: var(--muted); margin-top: .3rem; }
.form-success {
  display: none; background: #E8F5E9; border: 1px solid #A5D6A7;
  color: #1B5E20; border-radius: 10px; padding: 1rem 1.25rem;
  font-size: .9rem; font-weight: 500; margin-top: 1rem;
}

/* ─── DARK SECTION ─── */
.section-dark {
  background: var(--dark); padding: 5rem 5vw;
}
.section-red {
  background: var(--red); padding: 5rem 5vw;
}

/* ─── DIVIDER ─── */
.divider {
  width: 48px; height: 3px; background: var(--red);
  border-radius: 2px; margin: 1.25rem 0 1.75rem;
}
.divider.gold { background: var(--gold); }
.divider.center { margin-left: auto; margin-right: auto; }

/* ─── TAGS ─── */
.tag {
  display: inline-block; background: rgba(229,21,26,.1); color: var(--red);
  font-size: .72rem; font-weight: 700; letter-spacing: .5px;
  padding: .22rem .7rem; border-radius: 50px; text-transform: uppercase;
}
.tag.gold { background: rgba(244,162,40,.15); color: #B5760A; }
.tag.dark { background: rgba(0,0,0,.08); color: var(--warm); }

/* ─── ACCORDION ─── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-btn {
  width: 100%; background: #fff; border: none; cursor: pointer;
  padding: 1.2rem 1.5rem; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  font-family: inherit; font-size: .95rem; font-weight: 600; color: var(--text);
  transition: background .2s;
}
.accordion-btn:hover { background: rgba(229,21,26,.04); }
.accordion-btn span { font-size: 1.1rem; transition: transform .3s; }
.accordion-btn.open span { transform: rotate(45deg); }
.accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s ease;
  padding: 0 1.5rem;
  font-size: .9rem; line-height: 1.75; color: var(--muted); background: #fff;
}
.accordion-body.open { max-height: 600px; padding: 1rem 1.5rem 1.5rem; }

/* ─── STAT BAND ─── */
.stat-band {
  display: flex; flex-wrap: wrap; gap: 0;
}
.stat-band-item {
  flex: 1 1 180px; padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-band-item:last-child { border-right: none; }
.stat-band-number {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: normal; color: var(--gold);
  display: block;
}
.stat-band-label { font-size: .82rem; color: rgba(255,255,255,.45); margin-top: .3rem; }

/* ─── TABLE ─── */
.srp-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.srp-table th {
  background: var(--dark); color: #fff; padding: .9rem 1rem;
  text-align: left; font-weight: 600; font-size: .8rem; letter-spacing: .5px;
}
.srp-table td { padding: .85rem 1rem; border-bottom: 1px solid var(--border); color: var(--text); }
.srp-table tr:hover td { background: rgba(229,21,26,.03); }
.srp-table td strong { color: var(--red); }

/* ─── FOOTER ─── */
footer {
  background: #0E0705; color: rgba(255,255,255,.5);
  padding: 4rem 5vw 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
  font-family: 'Hatten', 'Playfair Display', serif; font-size: 1.1rem; font-weight: normal; color: #fff;
}
.footer-brand-logo .gold { color: var(--yellow); }
.footer-brand p { font-size: .82rem; line-height: 1.7; max-width: 240px; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: background .2s; color: #fff;
}
.social-btn:hover { background: var(--red); }
.footer-col h4 { color: #fff; font-size: .85rem; font-weight: 600; letter-spacing: .5px; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .65rem; }
.footer-col ul a { font-size: .82rem; transition: color .2s; }
.footer-col ul a:hover { color: var(--yellow); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.75rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .78rem; }
.health-msg { font-size: .72rem; color: rgba(255,255,255,.25); font-style: italic; }

/* ─── TIMELINE ─── */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: .75rem; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--red), var(--gold));
  border-radius: 1px;
}
.timeline-item { position: relative; margin-bottom: 2.2rem; }
.timeline-dot {
  position: absolute; left: -2.05rem; top: .25rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--red); border: 2px solid var(--cream);
  box-shadow: 0 0 0 3px rgba(229,21,26,.2);
}
.timeline-year {
  font-size: .75rem; font-weight: 700; color: var(--red);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: .2rem;
}
.timeline-text { font-size: .9rem; color: var(--text); line-height: 1.65; }
.timeline-text strong { color: var(--dark); font-weight: 600; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stat-band-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 280px; }
}

/* ═══════════════════════════════════════════════
   CARTE — Styles
═══════════════════════════════════════════════ */

    .menu-tabs {
      display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 3rem;
      position: sticky; top: var(--nav-h); background: var(--cream);
      padding: 1rem 0; z-index: 10;
      border-bottom: 1px solid var(--border);
    }
    .tab-btn {
      padding: .55rem 1.3rem; border-radius: 50px; border: 1.5px solid var(--border);
      font-family: inherit; font-size: .85rem; font-weight: 600; cursor: pointer;
      background: #fff; color: var(--text); transition: .2s;
    }
    .tab-btn:hover, .tab-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
    .menu-section { display: none; }
    .menu-section.active { display: block; }
    .menu-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }
    .menu-card {
      background: #fff; border-radius: var(--radius);
      overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06);
      transition: transform .3s, box-shadow .3s; display: flex; flex-direction: column;
      border-left: 3px solid var(--yellow);
    }
    .menu-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,.11); }
    .menu-card-img {
      height: 180px; display: flex; align-items: center; justify-content: center;
      font-size: 5.5rem; position: relative; background: #ebe5df;
    }

    .menu-card-img-bg {
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 60%, var(--c1, transparent) 0%, var(--c2, transparent) 100%);
    }
    .menu-card-emoji { position: relative; z-index: 1; }
    .badge-new, .badge-hot, .badge-promo {
      position: absolute; top: 10px; right: 10px; z-index: 2;
      font-size: .68rem; font-weight: 700; padding: .22rem .65rem; border-radius: 50px;
      letter-spacing: .4px; text-transform: uppercase;
    }
    .badge-new { background: var(--gold); color: var(--dark); }
    .badge-no-pork {
      position: absolute; bottom: 10px; left: 10px; z-index: 2;
      font-size: .65rem; font-weight: 700; padding: .25rem .6rem .25rem .35rem; border-radius: 50px;
      letter-spacing: .3px; background: #fff; color: var(--dark);
      border: 1.5px solid rgba(0,0,0,.12);
      display: inline-flex; align-items: center; gap: .3rem;
    }
    .badge-no-pork img { width: 20px; height: 20px; display: block; }
    .badge-hot { background: var(--red); color: #fff; }
    .badge-promo { background: var(--dark); color: #fff; }
    .menu-card-body { padding: 1.2rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
    .menu-card-body h3 {
      font-family: 'Hatten', 'Playfair Display', serif; font-size: 1.05rem; font-weight: normal;
      margin-bottom: .3rem;
    }
    .menu-card-body p { color: var(--muted); font-size: .82rem; line-height: 1.55; flex: 1; }
    .menu-card-footer {
      display: flex; align-items: center; justify-content: space-between;
      margin-top: 1rem; padding-top: .75rem; border-top: 1px solid var(--border);
    }
    .price { font-weight: 700; color: var(--red); font-size: 1.05rem; }
    .size-tags { display: flex; gap: .4rem; }
    .size-tag {
      font-size: .7rem; background: rgba(0,0,0,.06); color: var(--muted);
      padding: .18rem .55rem; border-radius: 50px; font-weight: 600;
    }
    .order-btn {
      background: var(--dark); color: #fff; border: none;
      padding: .4rem 1rem; border-radius: 50px; font-family: inherit;
      font-size: .78rem; font-weight: 600; cursor: pointer; transition: background .2s;
    }
    .order-btn:hover { background: var(--red); }
    .category-title {
      font-family: 'Hatten', 'Playfair Display', serif; font-size: 1.6rem; font-weight: normal;
      color: var(--dark); margin-bottom: .4rem;
    }
    .category-sub { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
    .cta-band {
      background: var(--dark); border-radius: var(--radius);
      padding: 3rem 2.5rem; text-align: center; margin-top: 4rem;
    }
    .cta-band h2 {
      font-family: 'Hatten', 'Playfair Display', serif; font-size: 2rem; font-weight: normal;
      color: #fff; margin-bottom: .75rem;
    }
    .cta-band p { color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
    .allergen-note {
      background: rgba(244,162,40,.1); border: 1px solid rgba(244,162,40,.3);
      border-radius: 10px; padding: .9rem 1.25rem;
      font-size: .82rem; color: #7A5C00; margin-bottom: 2.5rem;
      display: flex; align-items: flex-start; gap: .6rem;
    }
    .allergen-note a { color: #7A5C00; font-weight: 600; border-bottom: 1px solid currentColor; }
    /* ── FILTRES PIZZA ── */
    .pizza-filters {
      display: flex; flex-wrap: wrap; gap: .6rem;
      margin-bottom: 2rem;
    }
    .filter-btn {
      padding: .5rem 1.2rem; border-radius: 50px;
      border: 1.5px solid rgba(0,0,0,.15);
      background: #fff; color: var(--dark);
      font-size: .82rem; font-weight: 600; cursor: pointer;
      transition: all .2s;
    }
    .filter-btn:hover { border-color: var(--red); color: var(--red); }
    .filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
    .menu-card.hidden { display: none !important; }
    .mentions-ingredients {
      max-width: 900px; margin: 3rem auto 2rem; padding: 1.25rem 1.5rem;
      background: rgba(0,0,0,.04); border-left: 3px solid var(--yellow);
      border-radius: 8px; font-size: .78rem; color: var(--muted);
      line-height: 1.6;
    }
    .mentions-ingredients p { margin: .25rem 0; }
  
/* ═══════════════════════════════════════════════
   MENTIONS LÉGALES
═══════════════════════════════════════════════ */

/* ── Sections ── */
.ml-section {
  margin-bottom: 3rem;
  scroll-margin-top: 160px;
}
.ml-section-title {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: normal;
  color: var(--dark);
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--red);
  margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: .75rem;
}
.ml-section-title .ml-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(229,21,26,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.ml-article {
  margin-bottom: 2rem;
}
.ml-article h3 {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1rem; font-weight: normal;
  color: var(--dark);
  margin-bottom: .65rem;
  padding-left: .85rem;
  border-left: 3px solid var(--red);
}
.ml-article p {
  font-size: .88rem; color: var(--text);
  line-height: 1.8; margin-bottom: .65rem;
}
.ml-article ul {
  padding-left: 1.25rem; margin-bottom: .65rem;
}
.ml-article ul li {
  font-size: .88rem; color: var(--text);
  line-height: 1.8; margin-bottom: .25rem;
}
.ml-article a { color: var(--red); text-decoration: underline; }
.ml-article a:hover { color: var(--red-dk); }

/* ── Bloc identité société ── */
.ml-identity {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  font-size: .88rem; line-height: 1.8;
  color: var(--text);
}
.ml-identity strong { color: var(--dark); }

/* ── Bloc adresse ── */
.ml-address {
  display: inline-flex; align-items: flex-start; gap: .65rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: .85rem; line-height: 1.7;
  color: var(--text);
  margin: .5rem 0 1rem;
}

/* ── Badge ADEME ── */
.ademe-badge {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #e8f5e9;
  border: 1.5px solid #a5d6a7;
  border-radius: 10px;
  padding: .65rem 1rem;
  font-size: .82rem; color: #2e7d32;
  margin-top: .5rem;
}

/* ── Séparateur ── */
.ml-divider {
  border: none;
  border-top: 2px dashed var(--border);
  margin: 3rem 0;
}

/* ═══════════════════════════════════════════════
   INVESTISSEURS
═══════════════════════════════════════════════ */

/* ── Contact investisseurs ── */
.inv-contact {
  display: flex; align-items: center; gap: 1rem;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.inv-contact-icon { font-size: 1.5rem; }
.inv-contact-text { flex: 1; }
.inv-contact-text p { color: rgba(255,255,255,.55); font-size: .82rem; margin-bottom: .2rem; }
.inv-contact-text a {
  color: var(--yellow);
  font-weight: 600; font-size: .95rem;
  text-decoration: none;
}
.inv-contact-text a:hover { text-decoration: underline; }
.euronext-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border-radius: 8px;
  padding: .4rem .9rem;
  font-size: .78rem; font-weight: 700; color: var(--dark);
  text-decoration: none;
  transition: opacity .2s;
}
.euronext-badge:hover { opacity: .85; }

/* ── Accordéon investisseurs ── */
.inv-accordion { display: flex; flex-direction: column; gap: .75rem; }
.inv-block {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.inv-btn {
  width: 100%; display: flex; align-items: center; gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: #fff; border: none; cursor: pointer;
  font-family: inherit; text-align: left;
  transition: background .2s;
}
.inv-btn:hover { background: #fafafa; }
.inv-btn.open { background: var(--dark); }
.inv-btn-icon {
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
  background: rgba(229,21,26,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  transition: background .2s;
}
.inv-btn.open .inv-btn-icon { background: rgba(255,255,255,.1); }
.inv-btn-label {
  flex: 1;
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: normal;
  color: var(--dark);
  transition: color .2s;
}
.inv-btn.open .inv-btn-label { color: #fff; }
.inv-btn-chevron {
  font-size: 1rem; color: var(--muted);
  transition: transform .3s, color .2s;
}
.inv-btn.open .inv-btn-chevron { transform: rotate(180deg); color: #fff; }
.inv-body {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease;
}
.inv-body.open { max-height: 4000px; }
.inv-body-inner {
  padding: 1.75rem 1.75rem 2rem;
  border-top: 1.5px solid var(--border);
}

/* ── Contenu sections ── */
.inv-body-inner h3 {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1rem; font-weight: normal;
  color: var(--dark); margin: 1.5rem 0 .5rem;
}
.inv-body-inner h3:first-child { margin-top: 0; }
.inv-body-inner p {
  font-size: .88rem; color: var(--text);
  line-height: 1.75; margin-bottom: .85rem;
}
.inv-body-inner strong { color: var(--dark); }
.inv-body-inner ul { padding-left: 1.25rem; margin-bottom: .85rem; }
.inv-body-inner ul li {
  font-size: .88rem; color: var(--text);
  line-height: 1.75; margin-bottom: .3rem;
}

/* Actionnariat */
.actionnariat-grid {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}
.actionnariat-card {
  flex: 1; min-width: 200px;
  background: var(--cream);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.actionnariat-pct {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: normal;
  color: var(--red); line-height: 1;
  margin-bottom: .4rem;
}
.actionnariat-label { font-size: .8rem; color: var(--muted); line-height: 1.4; }
.capital-badge {
  display: inline-block;
  background: var(--dark); color: var(--yellow);
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: normal;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  margin: 1rem 0;
}

/* Fichiers PDF */
.pdf-year {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1rem; font-weight: normal;
  color: var(--dark);
  margin: 1.5rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--border);
}
.pdf-year:first-child { margin-top: 0; }
.pdf-links { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.pdf-link {
  display: flex; align-items: center; gap: .75rem;
  padding: .75rem 1rem;
  background: var(--cream);
  border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: .85rem; color: var(--dark);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.pdf-link:hover { border-color: var(--red); background: #fff; }
.pdf-link-icon { font-size: 1.1rem; flex-shrink: 0; }
.pdf-link span { flex: 1; }
.pdf-link-arrow { color: var(--muted); font-size: .8rem; }

/* Calendrier */
.event-list { display: flex; flex-direction: column; gap: .75rem; }
.event-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--cream);
  border-radius: 12px;
  border-left: 4px solid var(--red);
}
.event-icon { font-size: 1.2rem; flex-shrink: 0; }
.event-date { font-weight: 700; font-size: .85rem; color: var(--red); white-space: nowrap; }
.event-label { font-size: .88rem; color: var(--text); }

/* Prix action */
.action-img-wrap {
  background: var(--cream);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  text-align: center;
}
.action-img-wrap img { max-width: 100%; border-radius: 8px; }
.euronext-link {
  display: inline-flex; align-items: center; gap: .6rem;
  background: #000C87; color: #fff;
  padding: .65rem 1.4rem;
  border-radius: 50px;
  font-size: .85rem; font-weight: 600;
  text-decoration: none;
  transition: opacity .2s;
}
.euronext-link:hover { opacity: .85; }

/* ═══════════════════════════════════════════════
   RECRUTEMENT
═══════════════════════════════════════════════ */

/* ── Hero recrutement ── */
.hero-recrutement {
  background-image:
    linear-gradient(to bottom, rgba(26,16,8,0.55) 0%, rgba(26,16,8,0.72) 100%),
    url('../img/hero-recrutement.webp');
  background-size: cover;
  background-position: center top;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 3.5rem;
}

/* ── Postes ── */
.postes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.poste-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: box-shadow .2s, transform .2s;
}
.poste-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.poste-icon {
  font-size: 2rem;
  width: 56px; height: 56px;
  background: rgba(229,21,26,.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.poste-title {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: normal;
  color: var(--dark);
}
.poste-desc {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}
.poste-badge {
  display: inline-block;
  background: rgba(229,21,26,.1);
  color: var(--red);
  font-size: .72rem; font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 50px;
  letter-spacing: .3px;
  align-self: flex-start;
}

/* ── Intro formulaire ── */
.form-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.form-intro h2 {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: normal;
  color: var(--dark);
  margin-bottom: .5rem;
}
.form-intro h2 em { color: var(--red); font-style: italic; }
.form-intro p { color: var(--muted); font-size: .92rem; }

/* ── JotForm ── */
.jotform-wrap {
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.jotform-wrap iframe {
  width: 100%;
  min-height: 820px;
  border: none;
  display: block;
}

/* ── Formulaire de candidature (interne) ── */
.candidature-form-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.form-file {
  border: 1.5px dashed var(--border);
  border-radius: 10px;
  background: var(--cream);
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.form-file:hover, .form-file.has-file { border-color: var(--red); }
.form-file input[type="file"] { display: none; }
.form-file-icon { font-size: 1.3rem; flex-shrink: 0; }
.form-file-text { font-size: .85rem; color: var(--dark); }
.form-file-text strong { color: var(--red); }
.form-file-name { font-size: .78rem; color: var(--muted); margin-top: .2rem; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .8rem; color: var(--muted); line-height: 1.5;
  margin-bottom: 1.25rem;
}
.form-checkbox input[type="checkbox"] {
  margin-top: .2rem; flex-shrink: 0;
  width: 16px; height: 16px; accent-color: var(--red); cursor: pointer;
}
.form-checkbox a { color: var(--red); text-decoration: underline; }
.form-error {
  display: none;
  background: #FDECEA; border: 1px solid #F5C6C2;
  color: #B71C1C; border-radius: 10px;
  padding: .75rem 1rem; font-size: .85rem;
  margin-bottom: 1.25rem;
}
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }
@media (max-width: 600px) {
  .candidature-form-wrap { padding: 1.5rem 1.25rem; }
}

/* ── Valeurs RH ── */
.rh-values {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.75rem;
  background: var(--dark);
  border-radius: var(--radius);
}
.rh-value {
  flex: 1; min-width: 180px;
  display: flex; align-items: flex-start; gap: .85rem;
}
.rh-value-icon {
  font-size: 1.5rem; flex-shrink: 0;
  margin-top: .1rem;
}
.rh-value-text strong {
  display: block;
  color: #fff;
  font-size: .9rem;
  margin-bottom: .2rem;
}
.rh-value-text span {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */

.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
}

/* ── Colonne infos ── */
.contact-info { display: flex; flex-direction: column; gap: 1rem; }

.contact-info-block {
  display: flex; align-items: flex-start; gap: 1rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  transition: box-shadow .2s;
}
.contact-info-block:hover { box-shadow: 0 4px 20px rgba(0,0,0,.07); }
.contact-info-icon {
  font-size: 1.4rem; flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(229,21,26,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-block h3 {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: .95rem; font-weight: normal;
  color: var(--dark); margin-bottom: .35rem;
}
.contact-info-block p {
  font-size: .85rem; color: var(--muted); line-height: 1.65;
}
.contact-info-block a { color: var(--red); text-decoration: none; }
.contact-info-block a:hover { text-decoration: underline; }
.contact-cta {
  display: inline-block; margin-top: .6rem;
  background: var(--dark); color: #fff;
  font-size: .8rem; font-weight: 600;
  padding: .45rem 1rem; border-radius: 50px;
  text-decoration: none;
  transition: background .2s;
}
.contact-cta:hover { background: var(--red); color: #fff !important; }

/* ── Formulaire ── */
.contact-form-wrap {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.contact-form-title {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: normal;
  color: var(--dark); margin-bottom: 1.75rem;
}
.contact-form-title em { color: var(--red); font-style: italic; }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-bottom: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .82rem; font-weight: 600; color: var(--dark);
}
.required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .65rem 1rem;
  font-family: inherit; font-size: .88rem; color: var(--dark);
  background: var(--cream);
  transition: border-color .2s, background .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 140px; }

.form-footer {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  margin-top: 1.25rem;
}
.form-mention {
  font-size: .75rem; color: var(--muted);
  line-height: 1.55; flex: 1; min-width: 200px;
}
.form-mention a { color: var(--red); text-decoration: underline; }

.btn-submit {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--red); color: #fff;
  border: none; cursor: pointer;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-family: inherit; font-size: .9rem; font-weight: 700;
  transition: background .2s, transform .2s;
  white-space: nowrap;
}
.btn-submit:hover:not(:disabled) { background: var(--red-dk); transform: translateY(-2px); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }

/* ── Message succès ── */
.form-success {
  display: none;
  flex-direction: column; align-items: center;
  text-align: center; padding: 3rem 1.5rem;
  gap: 1rem;
}
.form-success-icon { font-size: 3rem; }
.form-success h3 {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: normal; color: var(--dark);
}
.form-success p { font-size: .9rem; color: var(--muted); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem 1.25rem; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }
}


.hero-mentions {
  background-image:
    linear-gradient(to bottom, rgba(26,16,8,0.45) 0%, rgba(26,16,8,0.65) 100%),
    url('../img/hero-mentions.webp');
  background-size: cover;
  background-position: center;
}

.hero-confidentialite {
  background-image:
    linear-gradient(to bottom, rgba(0,10,30,0.55) 0%, rgba(0,10,30,0.70) 100%),
    url('../img/hero-confidentialite.webp');
  background-size: cover;
  background-position: center;
}

.hero-investisseurs {
  background-image:
    linear-gradient(to bottom, rgba(26,16,8,0.50) 0%, rgba(26,16,8,0.68) 100%),
    url('../img/hero-investisseurs.webp');
  background-size: cover;
  background-position: center top;
}

.hero-contact {
  background-image:
    linear-gradient(to bottom, rgba(26,16,8,0.50) 0%, rgba(26,16,8,0.68) 100%),
    url('../img/hero-contact.webp');
  background-size: cover;
  background-position: center;
}
