:root {
  --red: #c0392b;
  --red2: #e74c3c;
  --gold: #d4a017;
  --dark: #1a1a1a;
  --cream: #fdf8f2;
  --warm: #f5ede0;
  --text: #3d3d3d;
  --light: #7f8c8d;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  color: #2c2c2c;
  background: #fdf8f2;
  line-height: 1.7;
}

body a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-alt {
  background: var(--warm);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--light);
  font-size: 1.05rem;
  margin-bottom: 60px;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 16px auto 0;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

form {
  display: grid;
  gap: 16px;
}

label {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  color: #2c2c2c;
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font: inherit;
  margin-top: 8px;
  background: #fff;
}

button,
input[type='submit'] {
  cursor: pointer;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-offset {
  padding-top: 90px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26,26,26,.95);
  backdrop-filter: blur(8px);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: .5px;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  color: var(--gold);
  font-weight: 700;
  font-size: .85rem;
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s, opacity .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);
}

footer {
  padding: 36px 0;
  background: #1a1a1a;
  color: #f0ebe3;
}

footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .9rem;
}

#menuList li {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
  gap: 16px;
  align-items: center;
}

#menuList li button {
  border: 1px solid #ddd;
  background: #f8f8f8;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: .85rem;
}

.info-strip-inner,
.about-grid,
.formules-grid,
.restaurants-grid,
.events-grid,
.footer-grid {
  display: grid;
  gap: 30px;
}

.info-strip-inner {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: center;
}

.formules-grid,
.restaurants-grid,
.events-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.footer-grid {
  grid-template-columns: repeat(2, minmax(220px, 1fr));
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card,
.event-card,
.resto-card,
.formule-card {
  border-radius: 18px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.resto-card-img,
.formule-img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.resto-card-body {
  padding: 24px;
}

.event-card,
.service-card {
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0,0,0,.05);
}

.formule-card {
  background: #fff;
  box-shadow: 0 18px 36px rgba(0,0,0,.06);
}

.status-box {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border-radius: 10px;
  font-weight: 700;
}

.status-success {
  background: #e7f5ea;
  color: #1f6f3f;
}

.status-error {
  background: #fbeaea;
  color: #a62020;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all .8s cubic-bezier(.13,.75,.31,1.04);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(26,26,26,.98);
    flex-direction: column;
    padding: 16px 24px;
    gap: 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .container {
    padding: 0 18px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2.6rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .card,
  .event-card,
  .service-card,
  .formule-card {
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 54px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .info-strip-inner,
  .footer-grid {
    gap: 18px;
  }

  #menuList li {
    flex-direction: column;
    align-items: stretch;
  }

  #menuList li button {
    width: 100%;
    margin-top: 8px;
  }

  form {
    gap: 14px;
  }
}

/* Inline HTML styles migrated from page files */
/* ── Reset & base ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Lato', sans-serif;
      color: #2c2c2c;
      background: #fdf8f2;
      line-height: 1.7;
    }

    /* ── Variables ── */
    :root {
      --red:    #c0392b;
      --red2:   #e74c3c;
      --gold:   #d4a017;
      --dark:   #1a1a1a;
      --cream:  #fdf8f2;
      --warm:   #f5ede0;
      --text:   #3d3d3d;
      --light:  #7f8c8d;
    }

    /* ── Utility ── */
    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 90px 0; }
    .section-alt { background: var(--warm); }
    .section-dark { background: var(--dark); color: #f0ebe3; }

    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      text-align: center;
      margin-bottom: 12px;
    }
    .section-subtitle {
      text-align: center;
      color: var(--light);
      font-size: 1.05rem;
      margin-bottom: 60px;
    }
    .divider {
      width: 60px; height: 3px;
      background: var(--red);
      margin: 16px auto 0;
      border-radius: 2px;
    }

    .btn {
      display: inline-block;
      padding: 14px 36px;
      border-radius: 4px;
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all .25s;
      cursor: pointer;
      border: none;
    }
    .btn-primary { background: var(--red); color: #fff; }
    .btn-primary:hover { background: var(--red2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(192,57,43,.35); }
    .btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
    .btn-outline:hover { background: #fff; color: var(--red); }
    .btn-gold { background: var(--gold); color: #fff; }
    .btn-gold:hover { background: #b8860b; transform: translateY(-2px); }

    /* ── NAVBAR ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(26,26,26,.95);
      backdrop-filter: blur(8px);
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      transition: box-shadow .3s;
    }
    nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.4); }

    .nav-logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      color: #fff;
      text-decoration: none;
      letter-spacing: .5px;
    }
    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 32px;
    }
    .nav-links a {
      color: #ccc;
      text-decoration: none;
      font-size: 0.85rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-weight: 700;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta { display: flex; align-items: center; gap: 16px; }
    .nav-phone { color: var(--gold); font-weight: 700; font-size: 0.85rem; text-decoration: none; }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      background:
        linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
        url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?w=1600&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding-top: 70px;
    }
    .hero-inner { max-width: 760px; }
    .hero-badge {
      display: inline-block;
      background: var(--gold);
      color: #fff;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 18px;
      border-radius: 40px;
      margin-bottom: 24px;
    }
    .hero-title {
      font-size: clamp(2.8rem, 7vw, 5rem);
      font-weight: 700;
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .hero-title em { color: var(--gold); font-style: italic; }
    .hero-sub {
      font-size: 1.2rem;
      font-weight: 300;
      opacity: .9;
      margin-bottom: 12px;
    }
    .hero-tagline {
      font-family: 'Playfair Display', serif;
      font-style: italic;
      font-size: 1.05rem;
      opacity: .75;
      margin-bottom: 40px;
    }
    .hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    /* Scroll indicator */
    .scroll-down {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      animation: bounce 2s infinite;
      color: rgba(255,255,255,.6);
      font-size: 1.6rem;
      text-decoration: none;
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(10px); }
    }

    /* ── BANDEAUX INFO ── */
    .info-strip {
      background: var(--red);
      color: #fff;
      padding: 16px 0;
    }
    .info-strip-inner {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .info-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: .5px;
    }
    .info-item .icon { font-size: 1.2rem; }

    /* ── ABOUT ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .about-img-wrap { position: relative; }
    .about-img-wrap img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
      height: 460px;
    }
    .about-badge-img {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 130px;
      height: 130px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
      box-shadow: 0 6px 24px rgba(192,57,43,.4);
    }
    .about-badge-img .year { font-size: 1.9rem; font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1; }
    .about-badge-img small { font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; opacity: .9; margin-top: 4px; }
    .about-text .eyebrow {
      color: var(--red);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .about-text h2 { font-size: 2.4rem; margin-bottom: 20px; }
    .about-text p { color: var(--text); margin-bottom: 18px; font-size: 1.02rem; }
    .feature-list { list-style: none; margin: 24px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .feature-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.9rem; font-weight: 700; color: var(--text);
    }
    .feature-list li::before { content: '✓'; color: var(--red); font-weight: 900; font-size: 1rem; }

    /* ── FORMULES ── */
    .formules-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .formule-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,.08);
      transition: transform .25s, box-shadow .25s;
      position: relative;
    }
    .formule-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,.13); }
    .formule-card.featured::before {
      content: 'Populaire';
      position: absolute;
      top: 16px; right: -30px;
      background: var(--gold);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 40px;
      transform: rotate(45deg);
    }
    .formule-img { width: 100%; height: 200px; object-fit: cover; }
    .formule-body { padding: 28px; }
    .formule-body .tag {
      display: inline-block;
      background: #fef3f2;
      color: var(--red);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 40px;
      margin-bottom: 12px;
    }
    .formule-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
    .formule-body p { color: var(--light); font-size: 0.92rem; margin-bottom: 20px; }
    .formule-price {
      display: flex;
      align-items: baseline;
      gap: 4px;
    }
    .formule-price .amount { font-size: 2.2rem; font-weight: 700; color: var(--red); font-family: 'Playfair Display', serif; }
    .formule-price .cents { font-size: 1.2rem; font-weight: 700; color: var(--red); }
    .formule-price .per { font-size: 0.82rem; color: var(--light); margin-left: 4px; }
    .formule-includes { margin-top: 16px; list-style: none; }
    .formule-includes li {
      padding: 6px 0;
      border-bottom: 1px solid #f0ede8;
      font-size: 0.88rem;
      color: var(--text);
      display: flex; align-items: center; gap: 8px;
    }
    .formule-includes li:last-child { border-bottom: none; }
    .formule-includes li::before { content: '🍕'; font-size: .9rem; }

    /* ── RESTAURANTS ── */
    .restaurants-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .resto-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,.07);
      transition: transform .25s, box-shadow .25s;
    }
    .resto-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
    .resto-card-img { width: 100%; height: 200px; object-fit: cover; }
    .resto-card-body { padding: 28px; }
    .resto-card-body .city {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }
    .resto-card-body h3 { font-size: 1.6rem; margin-bottom: 16px; }
    .resto-info-list { list-style: none; }
    .resto-info-list li {
      display: flex;
      gap: 12px;
      padding: 8px 0;
      border-bottom: 1px solid #f3ede6;
      font-size: 0.9rem;
      color: var(--text);
    }
    .resto-info-list li:last-child { border-bottom: none; }
    .resto-info-list .lbl { font-weight: 700; min-width: 80px; color: #444; }
    .resto-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }
    .badge {
      background: #f5ede0;
      color: var(--text);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 40px;
      letter-spacing: .5px;
    }
    .resto-card-footer {
      padding: 16px 28px 24px;
      display: flex;
      gap: 10px;
    }
    .btn-sm {
      padding: 9px 18px;
      font-size: 0.78rem;
      letter-spacing: 1px;
      flex: 1;
      text-align: center;
    }
    .btn-border { background: transparent; color: var(--red); border: 2px solid var(--red); }
    .btn-border:hover { background: var(--red); color: #fff; }

    /* ── SERVICES ── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .service-card {
      text-align: center;
      padding: 44px 28px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,.06);
      transition: transform .25s;
    }
    .service-card:hover { transform: translateY(-5px); }
    .service-icon {
      width: 72px; height: 72px;
      background: var(--warm);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 20px;
    }
    .service-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
    .service-card p { color: var(--light); font-size: 0.92rem; line-height: 1.65; }

    /* ── STATS ── */
    .stats-strip {
      background:
        linear-gradient(rgba(192,57,43,.92), rgba(192,57,43,.92)),
        url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1200&q=60') center/cover;
      padding: 70px 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      text-align: center;
    }
    .stat-item { color: #fff; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-label { font-size: 0.85rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: .85; }

    /* ── EVENTS ── */
    .events-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    .event-card {
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      display: flex;
      box-shadow: 0 3px 16px rgba(0,0,0,.07);
      transition: transform .25s;
    }
    .event-card:hover { transform: translateY(-3px); }
    .event-date {
      min-width: 80px;
      background: var(--red);
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 16px;
      text-align: center;
    }
    .event-date .day { font-size: 2rem; font-weight: 700; font-family: 'Playfair Display', serif; line-height: 1; }
    .event-date .month { font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; opacity: .9; margin-top: 2px; }
    .event-body { padding: 20px 24px; }
    .event-body .loc { font-size: 0.75rem; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
    .event-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
    .event-body p { color: var(--light); font-size: 0.87rem; }

    /* ── FIDÉLITÉ ── */
    .fidelite-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .fidelite-text .eyebrow {
      color: var(--gold);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .fidelite-text h2 { font-size: 2.4rem; color: #f0ebe3; margin-bottom: 20px; }
    .fidelite-text p { color: #b0a898; font-size: 1rem; margin-bottom: 32px; }
    .fidelite-steps { list-style: none; margin-bottom: 36px; }
    .fidelite-steps li {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 20px;
    }
    .step-num {
      min-width: 40px; height: 40px;
      border-radius: 50%;
      background: var(--gold);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
    }
    .step-text h4 { color: #f0ebe3; font-size: 1rem; margin-bottom: 4px; }
    .step-text p { color: #908880; font-size: 0.87rem; margin: 0; }
    .fidelite-card {
      background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
      border: 1px solid #333;
      border-radius: 16px;
      padding: 40px;
      text-align: center;
      box-shadow: 0 10px 40px rgba(0,0,0,.4);
    }
    .card-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 8px; }
    .card-sub { color: #888; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px; }
    .card-points { font-size: 4rem; font-weight: 700; color: var(--gold); line-height: 1; font-family: 'Playfair Display', serif; }
    .card-pts-label { color: #888; font-size: 0.82rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 28px; }
    .card-bar { height: 6px; background: #333; border-radius: 3px; overflow: hidden; margin-bottom: 12px; }
    .card-bar-fill { height: 100%; width: 68%; background: linear-gradient(90deg, var(--gold), #f5c842); border-radius: 3px; }
    .card-bar-label { color: #666; font-size: 0.78rem; text-align: right; }
    .card-divider { height: 1px; background: #333; margin: 28px 0; }
    .card-perks { list-style: none; text-align: left; }
    .card-perks li { color: #aaa; font-size: 0.87rem; padding: 6px 0; display: flex; gap: 10px; }
    .card-perks li::before { content: '★'; color: var(--gold); }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
    }
    .contact-form-wrap h2 { font-size: 2.2rem; margin-bottom: 8px; }
    .contact-form-wrap .sub { color: var(--light); margin-bottom: 32px; }
    .account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
    .account-card, .login-card {
      background: #fff;
      border-radius: 14px;
      padding: 32px;
      box-shadow: 0 10px 28px rgba(0,0,0,.08);
    }
    .account-card h3, .login-card h3 { font-size: 1.6rem; margin-bottom: 18px; }
    .account-card p, .login-card p { color: var(--text); margin-bottom: 20px; font-size: 0.95rem; }
    .account-list { list-style: none; padding: 0; margin: 0; }
    .account-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      align-items: center;
      padding: 14px 0;
      border-bottom: 1px solid #f0ede8;
      font-size: 0.92rem;
    }
    .account-item:last-child { border-bottom: none; }
    .account-tag {
      min-width: 120px;
      font-weight: 700;
      color: var(--red);
      text-transform: uppercase;
      font-size: 0.82rem;
    }
    .login-card .form-group label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: .5px; margin-bottom: 6px; color: #444; }
    .status-box {
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 12px;
      font-weight: 700;
      font-size: 0.92rem;
    }
    .status-success { background: #f0fff4; border: 2px solid #27ae60; color: #216b3d; }
    .status-error { background: #ffe8e5; border: 2px solid #e74c3c; color: #992d22; }
    .contact-info h2 { font-size: 2rem; margin-bottom: 8px; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid #e8e0d6;
      border-radius: 6px;
      font-family: 'Lato', sans-serif;
      font-size: 0.95rem;
      background: #fff;
      color: var(--dark);
      transition: border-color .2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--red); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group textarea { min-height: 120px; resize: vertical; }

    .contact-info h2 { font-size: 2rem; margin-bottom: 8px; }
    .contact-info .sub { color: var(--light); margin-bottom: 32px; }
    .location-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid #e8e0d6; }
    .location-block:last-child { border-bottom: none; margin-bottom: 0; }
    .location-block h3 { font-size: 1.2rem; color: var(--red); margin-bottom: 10px; font-family: 'Playfair Display', serif; }
    .location-block p { font-size: 0.9rem; color: var(--text); margin-bottom: 4px; }
    .location-block a { color: var(--red); text-decoration: none; font-weight: 700; }
    .location-block a:hover { text-decoration: underline; }
    .hours-tag {
      display: inline-block;
      margin-top: 8px;
      background: #fef3f2;
      color: var(--red);
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 40px;
    }

    /* ── FOOTER ── */
    footer {
      background: #111;
      color: #888;
      padding: 56px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }
    .footer-brand .logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: #fff; margin-bottom: 12px; }
    .footer-brand .logo span { color: var(--gold); }
    .footer-brand p { font-size: 0.88rem; line-height: 1.7; }
    .footer-brand .socials { display: flex; gap: 12px; margin-top: 20px; }
    .footer-brand .socials a {
      width: 38px; height: 38px;
      border-radius: 50%;
      background: #222;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 1rem;
      transition: background .2s;
    }
    .footer-brand .socials a:hover { background: var(--red); }
    .footer-col h4 { font-family: 'Lato', sans-serif; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul a { color: #888; text-decoration: none; font-size: 0.88rem; transition: color .2s; }
    .footer-col ul a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid #222;
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.82rem;
    }
    .footer-bottom a { color: #666; text-decoration: none; }
    .footer-bottom a:hover { color: #999; }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: var(--dark);
        padding: 24px;
        gap: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,.3);
      }

      .about-grid,
      .fidelite-inner,
      .contact-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-img-wrap { display: none; }

      .formules-grid,
      .restaurants-grid,
      .services-grid { grid-template-columns: 1fr; }

      .stats-grid { grid-template-columns: 1fr 1fr; }
      .events-grid { grid-template-columns: 1fr; }

      .footer-grid { grid-template-columns: 1fr 1fr; }

      .feature-list { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }

    @media (max-width: 560px) {
      .footer-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .info-strip-inner { gap: 20px; flex-direction: column; align-items: flex-start; padding: 0 24px; }
    }

    /* ── CHATBOT ── */
    #chat-widget {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
    }
    #chat-toggle {
      width: 62px; height: 62px;
      border-radius: 50%;
      background: var(--red);
      border: 3px solid rgba(255,255,255,.25);
      cursor: pointer;
      font-size: 1.6rem;
      box-shadow: 0 4px 24px rgba(192,57,43,.55);
      transition: transform .2s, box-shadow .2s;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      position: relative;
    }
    #chat-toggle:hover { transform: scale(1.08); box-shadow: 0 8px 32px rgba(192,57,43,.65); }
    .chat-notif {
      position: absolute;
      top: -3px; right: -3px;
      width: 16px; height: 16px;
      background: var(--gold);
      border-radius: 50%;
      border: 2px solid #fff;
      animation: notifPulse 2s infinite;
    }
    @keyframes notifPulse {
      0%,100% { transform: scale(1); opacity:1; }
      50%      { transform: scale(1.3); opacity:.8; }
    }
    #chat-panel {
      position: absolute;
      bottom: 78px; right: 0;
      width: 340px;
      background: #fff;
      border-radius: 18px;
      box-shadow: 0 10px 48px rgba(0,0,0,.22);
      display: none;
      flex-direction: column;
      overflow: hidden;
      max-height: 530px;
    }
    #chat-panel.open { display: flex; animation: slideUp .25s ease; }
    @keyframes slideUp {
      from { opacity:0; transform: translateY(16px); }
      to   { opacity:1; transform: translateY(0); }
    }
    .chat-header {
      background: linear-gradient(135deg, var(--red), #a93226);
      color: #fff;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .chat-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }
    .chat-header-info h4 { font-family:'Playfair Display',serif; font-size:1rem; margin-bottom:2px; }
    .chat-header-info p  { font-size:0.74rem; opacity:.82; }
    .chat-status { width:9px; height:9px; background:#2ecc71; border-radius:50%; display:inline-block; margin-right:5px; }
    #chat-close {
      margin-left:auto;
      background:transparent; border:none;
      color:rgba(255,255,255,.8); font-size:1.3rem;
      cursor:pointer; padding:4px; line-height:1;
      transition:color .15s;
    }
    #chat-close:hover { color:#fff; }
    .chat-messages {
      flex:1;
      overflow-y:auto;
      padding:16px;
      display:flex;
      flex-direction:column;
      gap:10px;
      scroll-behavior: smooth;
    }
    .chat-messages::-webkit-scrollbar { width:4px; }
    .chat-messages::-webkit-scrollbar-thumb { background:#ddd; border-radius:2px; }
    .msg {
      max-width:85%;
      padding:10px 14px;
      border-radius:14px;
      font-size:0.87rem;
      line-height:1.55;
      word-break: break-word;
    }
    .msg-bot  { background:#f5ede0; color:var(--dark); align-self:flex-start; border-bottom-left-radius:4px; }
    .msg-user { background:var(--red); color:#fff; align-self:flex-end; border-bottom-right-radius:4px; }
    .msg-time { font-size:0.66rem; opacity:.45; margin-top:4px; display:block; }
    .typing-indicator {
      display:flex; align-items:center; gap:5px;
      padding:10px 14px;
      background:#f5ede0;
      border-radius:14px; border-bottom-left-radius:4px;
      width:fit-content;
      align-self:flex-start;
    }
    .typing-dot {
      width:7px; height:7px; border-radius:50%; background:#bbb;
      animation:typeBounce 1.2s infinite;
    }
    .typing-dot:nth-child(2) { animation-delay:.2s; }
    .typing-dot:nth-child(3) { animation-delay:.4s; }
    @keyframes typeBounce {
      0%,60%,100% { transform:translateY(0); }
      30%          { transform:translateY(-6px); }
    }
    .quick-replies {
      display:flex; flex-wrap:wrap; gap:6px;
      padding:10px 14px;
      border-top:1px solid #f0ede8;
    }
    .qr-btn {
      background:#fff;
      border:1.5px solid var(--red);
      color:var(--red);
      border-radius:40px;
      padding:5px 13px;
      font-size:0.76rem;
      font-weight:700;
      cursor:pointer;
      transition:all .15s;
      font-family:'Lato',sans-serif;
      white-space: nowrap;
    }
    .qr-btn:hover { background:var(--red); color:#fff; }
    .chat-input-wrap {
      display:flex; align-items:center; gap:8px;
      padding:12px 14px;
      border-top:1px solid #f0ede8;
    }
    #chat-input {
      flex:1;
      border:1.5px solid #e8e0d6;
      border-radius:24px;
      padding:9px 16px;
      font-family:'Lato',sans-serif;
      font-size:0.87rem;
      outline:none;
      transition:border-color .2s;
      background:#fafafa;
    }
    #chat-input:focus { border-color:var(--red); background:#fff; }
    #chat-send {
      width:38px; height:38px;
      border-radius:50%;
      background:var(--red);
      border:none; color:#fff;
      font-size:1rem;
      cursor:pointer;
      display:flex; align-items:center; justify-content:center;
      transition:background .2s;
      flex-shrink:0;
    }
    #chat-send:hover { background:var(--red2); }
    @media (max-width:420px) {
      #chat-panel { width: calc(100vw - 40px); }
    }

    /* ── SCROLL ANIMATION ── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
.service-list{display:grid;gap:18px}
/* (styles copied from index.html — truncated for brevity) */
    .formules-grid { display:grid; gap:24px; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
    .formule-card { background:#fff; border-radius:20px; overflow:hidden; box-shadow:0 12px 28px rgba(0,0,0,.08); }
    .formule-img { width:100%; height:260px; object-fit:cover; }
    .formule-body { padding:24px; }
    .tag { display:inline-block; background:var(--red); color:#fff; padding:8px 14px; border-radius:999px; margin-bottom:16px; font-size:.85rem; }
    .formule-price { display:flex; align-items:flex-end; gap:8px; margin:20px 0; }
    .amount { font-size:2rem; font-weight:700; }
    .cents { font-size:1.1rem; }
    .formule-includes { display:grid; gap:10px; margin-top:18px; padding-left:18px; }
.resto-card{background:#fff;border-radius:12px;padding:0;box-shadow:0 4px 20px rgba(0,0,0,.07)}
