/* ─── 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; }

    /* ─── 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: 'Playfair Display', serif;
      font-size: 1.35rem; font-weight: 900;
      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: 'Playfair Display', serif;
      font-weight: 700; 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; position: relative;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
  position: absolute;
  inset: 0;
  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('https://res.cloudinary.com/dytohqumq/image/upload/f_auto,q_auto/hero-pizza_rssv3r') 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: 'Playfair Display', serif;
      font-size: clamp(3rem, 8vw, 6.5rem);
      font-weight: 900; 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: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 900; 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: 'Playfair Display', serif;
      font-size: 1.15rem; font-weight: 700; 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; }

    /* ─── PIZZAS VEDETTES ─── */
    .pizzas-section {
      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;
    }
    .pizza-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .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: 200px;
      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;
    }
    .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-info { padding: 1.25rem 1.4rem 1.5rem; }
    .pizza-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem; font-weight: 700; 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 {
      background-color: #F5EDE4;
      background-image:
        linear-gradient(to bottom, rgba(245,237,228,0.85) 0%, rgba(245,237,228,0.80) 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; }
    .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: 'Playfair Display', serif;
      font-size: 1rem; font-weight: 700; 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 {
      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;
    }
    .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: 'Playfair Display', serif;
      font-size: 2.4rem; font-weight: 900; 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: '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 {
      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: 'Playfair Display', serif;
      font-size: 3rem; font-weight: 900;
      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 { 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);
      font-family: inherit; font-size: .9rem; outline: none;
      transition: border-color .2s;
      min-width: 220px;
    }
    .cakemail-wrapper input:focus { border-color: var(--red); }
    .cakemail-wrapper button,
    .cakemail-wrapper input[type="submit"] {
      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;
    }
    .cakemail-wrapper button:hover,
    .cakemail-wrapper input[type="submit"]:hover { background: var(--red-dk); }
    .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-visual { margin-bottom: 2rem; }
      .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; }
    }