/* ─── POLICE HATTEN ─── */
@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; }
    html { overflow-x: hidden; max-width: 100%; }
    :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; }

    /* ─── SCROLLBAR ─── */
    ::-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;
      transition: background .35s, box-shadow .35s;
    }
    nav.scrolled {
      background: rgba(26,16,8,.96);
      box-shadow: 0 2px 24px rgba(0,0,0,.35);
      backdrop-filter: blur(12px);
    }
    .nav-logo {
      display: flex; align-items: center; gap: 10px;
      font-family: 'Hatten', 'Playfair Display', serif;
      font-size: 1.35rem; font-weight: normal;
      color: #fff; letter-spacing: .5px;
    }
    .nav-logo span { color: var(--yellow); }
    .logo-rabbit {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--yellow); display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; 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,.82);
      font-size: .875rem; font-weight: 500; letter-spacing: .3px;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--yellow); }
    .nav-cta {
      background: var(--red); color: #fff !important;
      padding: .55rem 1.4rem; border-radius: 50px;
      font-weight: 600 !important; letter-spacing: .4px;
      box-shadow: 0 3px 14px rgba(229,21,26,.4);
      transition: background .2s, transform .2s, box-shadow .2s !important;
    }
    .nav-cta:hover {
      background: var(--red-dk) !important;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(229,21,26,.5) !important;
    }
    .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 */
    .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: 2.2rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: #fff; font-size: 1.6rem; font-family: 'Hatten', 'Playfair Display', serif;
      font-weight: normal; letter-spacing: .5px; transition: color .2s;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-menu .m-cta {
      background: var(--red); padding: .75rem 2.5rem; border-radius: 50px;
      font-size: 1.1rem; margin-top: .5rem;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      min-height: 100svh;
      position: relative;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1A1008;
  background:
    linear-gradient(to right, rgba(26,16,8,0.85) 20%, rgba(26,16,8,0.4) 60%, rgba(26,16,8,0.9) 100%),
    url('../img/hero-pizza.webp') center/cover no-repeat;
  filter: brightness(0.85) contrast(1.1);
}
    /* Animated dots */
    .hero-bg::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 40px 40px;
      animation: drift 20s linear infinite;
    }
    @keyframes drift { from { background-position: 0 0; } to { background-position: 40px 40px; } }
      
      .hero-bg::after {
  content: '';
  position: absolute;
  background:
    radial-gradient(circle at 75% 50%, transparent 40%, rgba(0,0,0,0.6) 100%);
}

    .hero-content {
      position: relative; z-index: 2;
      text-align: center; padding: 0 5vw;
      max-width: 900px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(244,162,40,.15); border: 1px solid rgba(244,162,40,.3);
      color: var(--yellow); font-size: .8rem; font-weight: 600; letter-spacing: 1.5px;
      text-transform: uppercase; padding: .35rem 1rem; border-radius: 50px;
      margin-bottom: 1.8rem;
      animation: fadeUp .7s .1s both;
    }
    .hero-title {
      font-family: 'Hatten', 'Playfair Display', serif;
      font-size: clamp(3rem, 8vw, 6.5rem);
      font-weight: normal; color: #fff; line-height: 1.05;
      margin-bottom: 1.5rem;
      animation: fadeUp .7s .25s both;
    }
    .hero-title em { color: var(--yellow); font-style: italic; }
    .hero-sub {
      color: rgba(255,255,255,.65); font-size: clamp(.95rem, 1.8vw, 1.15rem);
      max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.7;
      animation: fadeUp .7s .4s both;
    }
    .hero-actions {
      display: flex; align-items: center; justify-content: center;
      gap: 1rem; flex-wrap: wrap;
      animation: fadeUp .7s .55s both;
    }
    .btn-primary {
      background: var(--red); color: #fff;
      padding: .85rem 2.2rem; border-radius: 50px; font-weight: 600;
      font-size: 1rem; letter-spacing: .3px;
      box-shadow: 0 4px 24px rgba(229,21,26,.45);
      transition: background .2s, transform .2s, box-shadow .2s;
      display: inline-flex; align-items: center; gap: .5rem;
    }
    .btn-primary:hover { background: var(--red-dk); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(229,21,26,.55); }
    .btn-outline {
      border: 1.5px solid rgba(255,255,255,.3); color: #fff;
      padding: .85rem 2.2rem; border-radius: 50px; font-weight: 500;
      font-size: 1rem; transition: border-color .2s, background .2s;
    }
    .btn-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.06); }

    /* Pizza hero visual */
    .hero-pizza {
      position: absolute; right: -4vw; top: 50%; transform: translateY(-50%);
      width: min(520px, 46vw);
      animation: float 6s ease-in-out infinite;
      opacity: .18; pointer-events: none;
    }
    @keyframes float { 0%,100% { transform: translateY(-50%) rotate(-3deg); } 50% { transform: translateY(calc(-50% - 18px)) rotate(3deg); } }
    .hero-pizza svg { width: 100%; }

    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      color: rgba(255,255,255,.35); font-size: .75rem; letter-spacing: 1px;
      text-transform: uppercase; animation: fadeUp .7s .9s both;
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,.3), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(.6); } }

    /* ─── KEYFRAMES ─── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── SECTION BASE ─── */
    section { padding: clamp(64px, 10vw, 120px) 5vw; }
    .section-label {
      font-size: .72rem; font-weight: 700; letter-spacing: 2.5px;
      text-transform: uppercase; color: var(--yellow); margin-bottom: .75rem;
    }
    .section-title {
      font-family: 'Hatten', 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: normal; line-height: 1.1; color: var(--dark);
    }
    .section-title em { color: var(--yellow); font-style: italic; }

    /* ─── ENGAGEMENTS ─── */
    .engagements { background: var(--dark); }
    .eng-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2px; margin-top: 3.5rem;
    }
    .eng-card {
      background: rgba(255,255,255,.04); padding: 2.5rem 2rem;
      border: 1px solid rgba(255,255,255,.06);
      transition: background .25s;
    }
    .eng-card:hover { background: rgba(229,21,26,.08); }
    .eng-icon {
      font-size: 2.2rem; margin-bottom: 1.2rem;
    }
    .eng-card h3 {
      font-family: 'Hatten', 'Playfair Display', serif;
      font-size: 1.15rem; font-weight: normal; color: #fff; margin-bottom: .6rem;
    }
    .eng-card p { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.6; }
    .engagements .section-title { color: #fff; }

    /* ─── COVERFLOW 3D ─── */
    .coverflow-scene {
      perspective: 1200px;
      overflow: hidden;
      padding: 2rem 0 1.5rem;
      position: relative;
    }
    .coverflow-track {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      position: relative;
      height: 520px;
    }
    .cf-card {
      position: absolute;
      width: 280px;
      transition: transform .6s cubic-bezier(.4,0,.2,1), opacity .6s ease, z-index 0s;
      cursor: pointer;
      transform-style: preserve-3d;
      border-radius: 20px;
      overflow: hidden;
    }
    .cf-card.pos-center {
      transform: translateX(0) scale(1) rotateY(0deg);
      opacity: 1; z-index: 5;
      box-shadow: 0 30px 80px rgba(0,0,0,.25);
    }
    .cf-card.pos-left1 {
      transform: translateX(-260px) scale(0.82) rotateY(45deg);
      opacity: 0.7; z-index: 3;
    }
    .cf-card.pos-left2 {
      transform: translateX(-460px) scale(0.65) rotateY(55deg);
      opacity: 0.4; z-index: 1;
    }
    .cf-card.pos-right1 {
      transform: translateX(260px) scale(0.82) rotateY(-45deg);
      opacity: 0.7; z-index: 3;
    }
    .cf-card.pos-right2 {
      transform: translateX(460px) scale(0.65) rotateY(-55deg);
      opacity: 0.4; z-index: 1;
    }
    .cf-dots {
      display: flex; justify-content: center; gap: .6rem;
      margin-top: 1rem;
    }
    .cf-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(0,0,0,.2); border: none; cursor: pointer;
      transition: background .3s, transform .3s; padding: 0;
    }
    .cf-dot.active { background: var(--red); transform: scale(1.3); }

    /* ─── PIZZAS VEDETTES ─── */
    .pizzas-section {
      max-width: 100%;
      background-color: var(--cream-dk);
      background-image:
        linear-gradient(to bottom, rgba(204,153,102,0.82) 0%, rgba(204,153,102,0.75) 100%),
        url('../img/pizza-background.webp');
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
    }
    .pizzas-head {
      display: flex; align-items: flex-end; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem;
    }
    /* ─── SLIDER PIZZAS ─── */
    .pizza-slider-wrap {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 2rem 0 1rem;
    }
    .pizza-slider-viewport {
      flex: 1;
      overflow: hidden;
      border-radius: var(--radius);
    }
    .pizza-slider {
      display: flex;
      transition: transform .45s cubic-bezier(.25,.46,.45,.94);
    }
    .pizza-slider .pizza-card {
      flex: 0 0 100%;
      width: 100%;
    }
    .carousel-arrow {
      background: #fff;
      border: none;
      border-radius: 50%;
      width: 46px; height: 46px;
      font-size: 1.2rem;
      box-shadow: 0 4px 16px rgba(0,0,0,.15);
      cursor: pointer;
      flex-shrink: 0;
      z-index: 20;
      transition: background .2s, transform .2s;
      position: relative;
    }
    .carousel-arrow:hover { background: var(--red); color: #fff; transform: scale(1.1); }
    .carousel-dots {
      display: flex; justify-content: center; gap: .5rem;
      margin-top: .5rem;
    }
    .cf-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(0,0,0,.2); cursor: pointer;
      transition: background .3s, transform .3s;
    }
    .cf-dot.active { background: var(--red); transform: scale(1.3); }
    .pizza-card {
      background: #fff; border-radius: var(--radius);
      overflow: hidden; cursor: pointer;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
      transition: transform .3s, box-shadow .3s;
      position: relative;
    }
    .pizza-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.12); }
    .pizza-img {
      height: 260px;
      display: flex; align-items: center; justify-content: center;
      font-size: 6rem;
      position: relative; overflow: hidden;
    }
    .pizza-img img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top;
    }
    .pizza-img-bg {
      position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 60%, var(--bg1) 0%, var(--bg2) 100%);
    }
    .pizza-emoji { position: relative; z-index: 1; }
    .pizza-badge {
      position: absolute; top: 12px; right: 12px; z-index: 2;
      background: var(--red); color: #fff;
      font-size: .7rem; font-weight: 700; letter-spacing: .5px;
      padding: .25rem .65rem; border-radius: 50px; text-transform: uppercase;
    }
    .pizza-badge-green { background: #2D8A4E; }
    .pizza-info { padding: 1.25rem 1.4rem 1.5rem; }
    .pizza-info h3 {
      font-family: 'Hatten', 'Playfair Display', serif;
      font-size: 1.15rem; font-weight: normal; margin-bottom: .35rem;
    }
    .pizza-info p {
      color: var(--muted); font-size: .82rem; line-height: 1.55; margin-bottom: 1rem;
    }
    .pizza-footer { display: flex; align-items: center; justify-content: space-between; }
    .pizza-price { font-size: 1.15rem; font-weight: 700; color: var(--red); }
    .pizza-order {
      background: var(--dark); color: #fff;
      border: none; padding: .5rem 1.1rem; border-radius: 50px;
      font-size: .82rem; font-weight: 600; cursor: pointer;
      transition: background .2s;
    }
    .pizza-order:hover { background: var(--red); }
    .see-more-wrap { text-align: center; margin-top: 2.5rem; }

    /* ─── STORES ─── */
    .stores-section {
      max-width: 100%;
      background-color: #F5EDE4;
      background-image:
        linear-gradient(to bottom, rgba(26,16,8,0.65) 0%, rgba(26,16,8,0.60) 100%),
        url('../img/restaurants-background.webp');
      background-attachment: fixed;
      background-size: cover;
      background-position: center;
    }
    .stores-inner { max-width: 1200px; margin: 0 auto; }
    .stores-head { margin-bottom: 2.5rem; }
    .stores-head .section-title { color: #fff; }
    .stores-head .section-title em { color: var(--yellow); }
    .pizzas-head .section-title em { color: #fff; font-style: italic; }
    .store-search {
      display: flex; gap: .75rem; flex-wrap: wrap; margin: 2rem 0 2.5rem;
    }
    .store-search input {
      flex: 1; min-width: 200px;
      padding: .8rem 1.2rem; border-radius: 50px;
      border: 1.5px solid rgba(0,0,0,.12);
      font-family: inherit; font-size: .9rem; background: #fff;
      outline: none; transition: border-color .2s;
    }
    .store-search input:focus { border-color: var(--red); }
    .store-search button {
      background: var(--red); color: #fff; border: none;
      padding: .8rem 1.8rem; border-radius: 50px;
      font-family: inherit; font-weight: 600; font-size: .9rem;
      cursor: pointer; transition: background .2s;
    }
    .store-search button:hover { background: var(--red-dk); }
    .stores-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1rem; max-height: 520px; overflow-y: auto;
      padding-right: .25rem;
      align-items: stretch;
    }
    .store-card {
      background: #fff; border-radius: 12px; padding: 0 0 1.25rem;
      border: 1.5px solid transparent;
      transition: border-color .2s, transform .2s, box-shadow .2s;
      cursor: pointer;
      display: flex; flex-direction: column;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,.06);
    }
    .store-card-header {
      background: var(--yellow);
      padding: .9rem 1.4rem;
      margin-bottom: .75rem;
    }
    .store-card .store-name {
      color: var(--dark);
    }
    .store-card .store-address,
    .store-card .store-phone,
    .store-card .store-actions {
      padding: 0 1.4rem;
    }
    .store-card:hover { border-color: var(--yellow); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(255,217,0,.25); }
    .store-name {
      font-family: 'Hatten', 'Playfair Display', serif;
      font-size: 1rem; font-weight: normal; margin-bottom: .3rem;
    }
    .store-address { font-size: .82rem; color: var(--muted); line-height: 1.5; }
    .store-phone { font-size: .82rem; color: var(--red); font-weight: 500; margin-top: .4rem; margin-bottom: 1rem; }
    .store-actions { display: flex; gap: .6rem; margin-top: auto; padding-top: .9rem; }
    .store-btn {
      flex: 1; padding: .45rem .8rem; border-radius: 50px; border: none;
      font-family: inherit; font-size: .78rem; font-weight: 600; cursor: pointer;
      transition: .2s;
    }
    .store-btn.livraison { background: var(--red); color: #fff; }
    .store-btn.livraison:hover { background: var(--red-dk); }
    .store-btn.emporter { background: transparent; border: 1.5px solid var(--dark); color: var(--dark); }
    .store-btn.emporter:hover { background: var(--dark); color: #fff; }

    /* ─── HISTORY ─── */
    .history-section { overflow: hidden;
      background: var(--dark);
      display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center;
    }
    .history-visual {
      position: relative; display: flex; justify-content: center; align-items: center;
      padding-top: 4rem;
    }
    .history-circle {
      width: clamp(260px, 30vw, 420px); height: clamp(260px, 30vw, 420px);
      border-radius: 50%;
      background: radial-gradient(circle at 40% 40%, #3D1A10, #1A0A05);
      border: 2px solid rgba(229,21,26,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: clamp(6rem, 12vw, 10rem);
      box-shadow: 0 0 80px rgba(229,21,26,.15), inset 0 0 60px rgba(0,0,0,.4);
      animation: float 8s ease-in-out infinite;
    }
    .history-ring {
      position: absolute;
      width: calc(clamp(260px,30vw,420px) + 50px);
      height: calc(clamp(260px,30vw,420px) + 50px);
      border-radius: 50%;
      border: 1px dashed rgba(229,21,26,.2);
      animation: spin 40s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .history-text .section-title { color: #fff; margin-bottom: 1.5rem; }
    .history-text p { color: rgba(255,255,255,.55); line-height: 1.8; font-size: .95rem; margin-bottom: 1rem; }
    .history-stat {
      display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap;
    }
    .stat { }
    .stat-number {
      font-family: 'Hatten', 'Playfair Display', serif;
      font-size: 2.4rem; font-weight: normal; color: var(--gold);
    }
    .stat-label { font-size: .8rem; color: rgba(255,255,255,.4); letter-spacing: .5px; }

    /* ─── REVIEWS ─── */
    .reviews-section {
      background-color: #3D2B1F;
      background-image:
        linear-gradient(135deg, #3D2B1F 0%, #5C3D2A 45%, #F4A228 100%);
      position: relative;
      overflow: hidden;
    }
    .reviews-section .section-label { color: rgba(244,162,40,.8); }
    .reviews-section .section-title { color: #fff; }
    .reviews-section .section-title em { color: var(--yellow); }

    /* Formes géométriques décoratives */
    .reviews-section::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      border: 60px solid rgba(244,162,40,.08);
      top: -180px; right: -120px;
      pointer-events: none;
    }
    .reviews-section::after {
      content: '';
      position: absolute;
      width: 320px; height: 320px;
      background: rgba(244,162,40,.06);
      transform: rotate(45deg);
      bottom: -100px; left: -80px;
      pointer-events: none;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem; margin-top: 3rem;
    }
    .review-card {
      background: rgba(255,255,255,.07);
      backdrop-filter: blur(10px);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: 0 4px 24px rgba(0,0,0,.2);
      border: 1px solid rgba(244,162,40,.2);
      border-left: 3px solid var(--yellow);
    }
    .stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
    .review-text {
      font-size: .92rem; line-height: 1.7; color: rgba(255,255,255,.85);
      font-style: italic; margin-bottom: 1.2rem;
    }
    .reviewer { font-weight: 600; font-size: .82rem; color: rgba(244,162,40,.7); }

    /* ─── PROMOS ─── */
    .promos-section {
      background: var(--red);
      text-align: center;
    }
    .promos-section .section-title { color: #fff; }
    .promos-section .section-label { color: rgba(255,255,255,.7); }
    .promos-strip {
      display: flex; gap: 1.5rem; margin-top: 2.5rem;
      overflow-x: auto; padding-bottom: 1rem;
      scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.3) transparent;
    }
    .promo-card {
      flex: 0 0 220px; background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
      padding: 1.8rem 1.4rem; text-align: center; color: #fff;
      transition: background .2s, transform .2s;
    }
    .promo-card:hover { background: rgba(255,255,255,.2); transform: translateY(-4px); }
    .promo-day { font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; opacity: .65; margin-bottom: .5rem; }
    .promo-title { font-family: 'Hatten', 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; margin-bottom: .4rem; }
    .promo-desc { font-size: .8rem; opacity: .75; line-height: 1.5; }
    .promo-badge { display: inline-block; background: var(--gold); color: var(--dark); padding: .2rem .7rem; border-radius: 50px; font-size: .7rem; font-weight: 700; margin-top: .75rem; }

    /* ─── FRANCHISE ─── */
    .franchise-section { overflow: hidden;
      background: var(--dark);
      display: grid; grid-template-columns: 1fr 1fr; gap: 6vw; align-items: center;
    }
    .franchise-text .section-title { color: #fff; margin-bottom: 1.2rem; }
    .franchise-text p { color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 1.5rem; }
    .franchise-bullets { list-style: none; margin-bottom: 2rem; }
    .franchise-bullets li {
      color: rgba(255,255,255,.7); padding: .6rem 0;
      font-size: .9rem; display: flex; align-items: flex-start; gap: .85rem;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .franchise-bullets li span { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: .1rem; }
    .franchise-bullets li strong { color: #fff; display: block; margin-bottom: .15rem; }
    .franchise-bullets li small { color: rgba(255,255,255,.5); font-size: .8rem; line-height: 1.5; }
    .franchise-contact {
      margin: 1.5rem 0;
      padding: 1rem 1.25rem;
      background: rgba(255,255,255,.05);
      border-left: 3px solid var(--gold);
      border-radius: 8px;
      font-size: .85rem;
      color: rgba(255,255,255,.6);
      line-height: 1.7;
    }
    .franchise-contact strong { color: #fff; }
    .franchise-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
      align-content: start;
    }
    .fstat {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px;
      padding: 1.75rem 1.5rem;
      text-align: center;
      transition: background .25s, transform .25s;
      position: relative;
      overflow: hidden;
    }
    .fstat::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(244,162,40,.08) 0%, transparent 60%);
      pointer-events: none;
    }
    .fstat:hover { background: rgba(244,162,40,.1); transform: translateY(-3px); }
    .fstat-number {
      font-family: 'Hatten', 'Playfair Display', serif;
      font-size: 3rem; font-weight: normal;
      color: var(--gold); line-height: 1;
    }
    .fstat-unit {
      font-size: .85rem; font-weight: 600;
      color: rgba(244,162,40,.7);
      text-transform: uppercase; letter-spacing: 1px;
      margin-bottom: .5rem; min-height: 1.2em;
    }
    .fstat-label {
      font-size: .78rem; color: rgba(255,255,255,.5);
      line-height: 1.4;
    }

    /* ─── NEWSLETTER ─── */
    .newsletter-section {
      max-width: 100%; background: var(--cream); text-align: center; }
    .newsletter-box {
      max-width: 560px; margin: 0 auto;
    }
    .newsletter-box .section-title { margin-bottom: 1rem; }
    .newsletter-box p { color: var(--muted); margin-bottom: 2rem; }
    .nl-form { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
    .nl-form input {
      flex: 1; min-width: 220px;
      padding: .85rem 1.3rem; border-radius: 50px;
      border: 1.5px solid rgba(0,0,0,.12);
      font-family: inherit; font-size: .9rem; outline: none;
      transition: border-color .2s;
    }
    .nl-form input:focus { border-color: var(--red); }
    .nl-form button {
      background: var(--red); color: #fff; border: none;
      padding: .85rem 2rem; border-radius: 50px;
      font-family: inherit; font-weight: 600; font-size: .9rem;
      cursor: pointer; transition: background .2s;
    }
    .nl-form button:hover { background: var(--red-dk); }

    /* ─── CAKEMAIL NEWSLETTER ─── */
    .cakemail-wrapper { margin-top: 1.5rem; }
    .cakemail-wrapper input[type="email"],
    .cakemail-wrapper input[type="text"] {
      padding: .85rem 1.3rem; border-radius: 50px;
      border: 1.5px solid rgba(0,0,0,.12);
      background: #F2F0ED !important;
      font-family: inherit; font-size: .9rem; outline: none;
      transition: border-color .2s, background .2s;
      min-width: 220px;
    }
    .cakemail-wrapper input:focus { border-color: var(--red); background: #fff !important; }
    .cakemail-wrapper button,
    .cakemail-wrapper input[type="submit"] {
      background: var(--warm) !important; color: #fff !important; border: none !important;
      padding: .85rem 2rem; border-radius: 50px;
      font-family: inherit; font-weight: 600; font-size: .9rem;
      cursor: pointer; transition: background .2s;
    }
    .cakemail-wrapper button:hover,
    .cakemail-wrapper input[type="submit"]:hover { background: var(--dark) !important; }
    .cakemail-wrapper form {
      display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center;
    }
    .cakemail-wrapper label { display: none; }

    /* ─── 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 .nav-logo { margin-bottom: 1rem; font-size: 1.1rem; }
    .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: .9rem; transition: background .2s;
    }
    .social-btn:hover { background: var(--yellow); }
    .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; }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .history-section, .franchise-section { grid-template-columns: 1fr; }
      .history-section { overflow: visible; }
      .history-visual { margin-bottom: 2rem; padding-top: 6rem; overflow: visible; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .hero-pizza { display: none; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-title { font-size: 2.6rem; }

      /* Slider → grille vignettes sur mobile */
      .pizza-slider-wrap { display: none; }
      .carousel-dots { display: none; }
      .pizza-mobile-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1rem 0;
      }
      .pizza-mobile-grid .pizza-card .pizza-img { height: 130px; }
      .pizza-mobile-grid .pizza-card .pizza-info { padding: .9rem 1rem 1.1rem; }
      .pizza-mobile-grid .pizza-card .pizza-info h3 { font-size: .95rem; }
      .pizza-mobile-grid .pizza-card .pizza-info p { font-size: .75rem; }
    }
    @media (min-width: 601px) {
      .pizza-mobile-grid { display: none; }
    }

    /* ─── DISABLE PARALLAX ON MOBILE (iOS/Android bug) ─── */
    .pizzas-section,
    .stores-section {
      max-width: 100%;
      background-attachment: scroll;
    }
    @media (hover: hover) and (min-width: 1025px) {
      .pizzas-section,
      .stores-section {
      max-width: 100%;
        background-attachment: fixed;
      }
    }
/* ─── FORM (popup contact franchise) ─── */
.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: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.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-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: 180px;
}
.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; }
.form-success {
  display: none;
  flex-direction: column; align-items: center;
  text-align: center; padding: 2.5rem 1rem 1rem;
  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); }
.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) {
  .form-row { grid-template-columns: 1fr; }
  .form-footer { flex-direction: column; align-items: stretch; }
  .btn-submit { justify-content: center; }
}

/* ─── Popup contact franchise ─── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(26,16,8,.75);
  z-index: 300;
  align-items: center; justify-content: center;
  padding: 2rem 1.25rem;
  overflow-y: auto;
}
.modal-overlay.active { display: flex; }
body.modal-open { overflow: hidden; }
.modal-box {
  background: #fff;
  border-radius: var(--radius);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.25rem 2rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  animation: modalIn .25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 1.1rem; right: 1.1rem;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  border: none; border-radius: 50%;
  font-size: 1.2rem; line-height: 1; color: var(--dark);
  cursor: pointer; transition: background .2s;
}
.modal-close:hover { background: var(--border); }
.modal-title {
  font-family: 'Hatten', 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: normal;
  color: var(--dark); margin-bottom: .4rem;
  padding-right: 2rem;
}
.modal-title em { color: var(--red); font-style: italic; }
.modal-sub { color: var(--muted); font-size: .88rem; margin-bottom: 1.75rem; }
@media (max-width: 600px) {
  .modal-box { padding: 1.5rem 1.25rem; }
}
