

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');




  
/* ---------- Variables ---------- */
:root {
  --burgundy-dark:   #4A0E0E;
  --burgundy:        #951314;
  --burgundy-hover:  #5c1313;
  --hero-bg:         #1a0505;
  --histoire-bg:     #2a0808;
  --cream:           #F8F5F1;
  --dark:            #1a1a1a;
  --text-muted:      #777777;
  --text-soft:       #444444;
  --text-faint:      #999999;
  --gold:            #439778;
  --pink-label:      #e8a0a0;
  --it-green:        #008C45;
  --it-red:          #CD212A;

  --font-display: "Alumni Sans", sans-serif;
  --font-body: 'Montserrat', sans-serif;
}
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 30px;
    width: 100%;
}

.alert-success {
    background: #e8f7ed;
    color: #1f7a3d;
    border: 1px solid #b7e4c7;
}

.menuimg {
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 40px 80px !important;
    align-content: center;
}

.menuimg img{width:800px;max-width:100%;        border-radius: 18px;}

.alert-error {
    background: #fdecec;
    color: #b42318;
    border: 1px solid #f5c2c7;
}
/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
input { font-family: inherit; }

.container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide  { max-width: 1300px; }
.container--mid   {    max-width: 100%;
    padding: 0 80px; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all .3s ease;
    background: transparent;
    border-bottom: 1px solid #86868652;
}
.navbar.is-scrolled {
    background: rgb(117 6 6 / 90%);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}
.navbar__inner {
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 10px;
  height: 64px;
}
.navbar__logo { justify-self: center; }
.navbar__logo img { height: 32px; width: auto; }

.navbar__links {
  display: none;
  align-items: center;
  gap: 28px;
}
.navbar__links a {
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: white;
  transition: color .2s;font-family: var(--font-display);
}
.navbar__links a:hover { color: #fff; }

.navbar__cta {
  display: none;
  align-items: center;
  gap: 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 0px solid rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
  transition: all .25s;    background: rgb(46 102 81);
    color: #fff;
    padding: 18px 38px;
    clip-path: url(#brushClip);
}

.navbar .navbar__cta:hover { background: var(--burgundy-hover); }

.navbar__toggle {
  justify-self: start;
  display: flex;
  padding: 8px;
  color: #fff;width:66px
}
.navbar__toggle svg { width: 24px; height: 24px; }

/* Bouton "panier / commander" mobile, à droite de la navbar */
.navbar__cart {
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 2px;
    color: #fff;
    background: var(--burgundy-hover);
    color: #fff;
    padding: 11px 11px;
    clip-path: url(#brushClip);
}
.navbar__cart svg {
width: 51px;
    height: 24px;
    stroke: currentColor;
}
.navbar__cart span {
  font-size: 6px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1;
  white-space: nowrap;position: relative;
    top: -5px;
}

.navbar__mobile {
  display: none;
  flex-direction: column;
  background: rgb(149 19 20);
  backdrop-filter: blur(8px);
  padding: 8px 24px 18px;
}
.navbar__mobile.is-open { display: flex; }
.navbar__mobile a {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);font-family: var(--font-display);
}

 .navbar__mobile a:last-child{
    border-bottom: 0px solid rgba(255, 255, 255, .08);
}

.navbar__mobile .navbar__cta {
  display: inline-flex;
  margin-top: 14px;
  background: var(--burgundy);
}

@media (min-width: 1024px) {
  .navbar__inner {
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    height: 70px;
  }
  .navbar__logo { justify-self: auto; }
  .navbar__logo img { height: 44px; }
  .navbar__links { display: flex; }
  .navbar__cta { display: flex; }
  .navbar__toggle { display: none; }
  .navbar__cart { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--hero-bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(to top, rgb(43 2 2) 0%, rgb(85 0 0 / 70%) 45%, rgba(26, 5, 5, .25) 100%);opacity:0.5
}
.hero__content {
  position: relative;
  z-index: 10;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  padding: 100px 24px 32px;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__main { flex: 1; display: flex; align-items: center; }
.hero__text { max-width: 820px; text-align: left; }
.hero__title {
  font-family: var(--font-display);
  color: #fff;
  font-size: 44px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: .88;
  letter-spacing: -.01em;
  animation: heroFadeUp .9s cubic-bezier(.23,1,.32,1) .2s both;    text-shadow: 0 2px 4px black;
}
.hero__subtitle {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-top: 24px;
  animation: heroFadeUp .9s cubic-bezier(.23,1,.32,1) .5s both;
}
.hero__flag {
  display: flex;
  margin-top: 12px;
  animation: heroFadeUp .9s cubic-bezier(.23,1,.32,1) .5s both;
}
.hero__flag span { width: 28px; height: 4px; }
.hero__flag span:nth-child(1) { background: var(--it-green); }
.hero__flag span:nth-child(2) { background: #fff; }
.hero__flag span:nth-child(3) { background: var(--it-red); }

.hero__ctas {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  animation: heroFadeUp .9s cubic-bezier(.23,1,.32,1) .8s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 15px 18px;
  border-radius: 28px;
  transition: all .2s;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.btn--primary {
  background: rgb(149 19 20 / 86%);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff;
}
.btn--primary:hover { background: var(--burgundy); }
.btn--ghost {
    background: rgb(255 255 255);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.25);
    color: #000;
}
.btn--ghost:hover { background: rgba(255,255,255,.2); }

@media (min-width: 640px) {
  .hero__title { font-size: 54px; }
  .hero__ctas { flex-direction: row; gap: 10px; }
}
@media (min-width: 1024px) {
  .hero__content { padding: 112px 40px 80px; min-height: 85vh; }
  .hero__title { font-size: 68px; }
  .hero__overlay { background: linear-gradient(to right, rgb(77 3 3 / 85%) 0%, rgb(71 3 3 / 55%) 45%, rgba(26, 5, 5, .25) 100%) }
  .hero__subtitle { font-size: 13px; margin-top: 28px; }
  .hero__flag span { width: 32px; height: 5px; }
  .btn {    font-size: 13px;
    padding: 16px 28px; }
}
@media (min-width: 1280px) {
  .hero__title { font-size: 76px;      width: 100%;}
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   SECTION TITLES (shared)
   ========================================================= */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  color: #1a1a1a;
  font-size: 33px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: .95;
}
@media (min-width: 640px)  { .section-title { font-size: 34px; } }
@media (min-width: 1024px) { .section-title { font-size: 44px; } .section-eyebrow { font-size: 11px; } }

/* =========================================================
   PRODUITS
   ========================================================= */
.section-produits {     background: url(../images/bg-grey.webp);
    padding: 40px 0 60px;
    background-size: 25%; }
@media (min-width: 1024px) { .section-produits { padding: 60px 0 65px; } }

.produits__header { text-align: center; margin-bottom: 16px; }
@media (min-width: 1024px) { .produits__header { margin-bottom: 24px; } }


.produits__grid {
    gap: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr ;display:none
}
@media (min-width: 1024px) {
.produits__grid {
    gap: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}}
.produits__scroll {
  display: flex;  
  gap: 20px;
  overflow-x: auto;
  padding: 0 24px;
  margin: 0 -24px;
  scrollbar-width: none;
}
.produits__scroll::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .produits__grid { display: grid;         padding: 30px 0 15px;}
  .produits__scroll {   display: none;   }
}
.produit-card {     text-align: center;
    background: white;
    box-shadow: 0 0 17px #0000001c;
    padding: 20px;
    border-radius: 25px; }
.produits__scroll .produit-card { width: 160px; flex-shrink: 0; }
.produit-card__img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin: 0 auto 12px;
}
@media (min-width: 1024px) { .produit-card__img {         width: 260px;
        height: auto;
        margin-bottom: 16px;aspect-ratio: 1; } }
.produit-card__title {
    font-weight: 400;  font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #1a1a1a;
    margin-bottom: 4px;        font-family: var(--font-display);    color: var(--burgundy);
}
.produit-card__desc {    font-size: 10px;
    color: #000000;
    line-height: 1.5;
    margin-top: 13px; }
@media (min-width: 1024px) {
  .produit-card__title { font-size: 22px; margin-bottom: 8px; }
  .produit-card__desc { font-size: 11px; }
}

.produits__cta { text-align: center; margin-top: 24px; }
@media (min-width: 1024px) { .produits__cta { margin-top: 32px; } }

.btn-outline {
     display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    padding: 15px 40px;
    font-size: 12px;
    font-weight: 700;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: 32px;
    transition: all .2s;
}
.btn-outline:hover { background: var(--burgundy); color: #fff; }
.btn-outline--white { border-color: #fff; color: #fff; }
.btn-outline--white:hover { background: #fff; color: var(--burgundy-dark); }
@media (min-width: 1024px) { .btn-outline { font-size: 17px; } }

/* Bouton "Voir le Menu" en version badge / coup de pinceau — uniquement dans la section Produits */
.section-produits .produits__cta .btn-outline, .section-avis .produits__cta .btn-outline, .section-emporter .btn-outline {
  border: none;
  border-radius: 0;
  background: var(--burgundy);
  color: #fff;
  padding: 18px 38px;
  clip-path: url(#brushClip);
}
.section-produits .produits__cta .btn-outline:hover, .section-avis .produits__cta .btn-outline:hover, .section-emporter .btn-outline:hover {
  background: var(--burgundy-hover);
  color: #fff;
}


.section-histoire .btn-outline {
  border: none;
  border-radius: 0;
  background: #fff;
  color: var(--burgundy);
  padding: 18px 38px;
  clip-path: url(#brushClip);
}


.section-emporter .produits__cta .btn-outline {
  border: none;
  border-radius: 0;
  background: var(--burgundy);
  color: #fff;
  padding: 18px 48px;
  clip-path: url(#brushClip);
}


.hero .btn--primary {
    background: rgb(149 19 20 / 86%);
    backdrop-filter: blur(6px);
    border: 0px solid rgba(255, 255, 255, .1);
    color: #fff;  padding: 24px 38px;
  clip-path: url(#brushClip);
}

.hero  .btn--ghost {
    background: rgb(255 255 255);
    backdrop-filter: blur(6px);
    border: 0px solid rgba(255, 255, 255, .25);
    color: #000;padding: 24px 38px;
  clip-path: url(#brushClip);
}


/* =========================================================
   AVIS CLIENTS
   ========================================================= */
.section-avis { background: #fff; padding:  60px 0 60px;    overflow: hidden;     background: var(--cream);}
.section-avis .container{ padding-right:  0 }
@media (min-width: 1024px) { .section-avis { padding: 48px 0 48px; } }
.avis__header { text-align: center; margin-bottom: 32px; }
@media (min-width: 1024px) { .avis__header { margin-bottom: 40px; } }

.avis__grid { display: none; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.avis__scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 0 24px;
  margin: 0 -24px;
  scrollbar-width: none;
}
.avis__scroll::-webkit-scrollbar { display: none; }
@media (min-width: 768px) {
  .avis__grid { display: grid; }
  .avis__scroll { display: none; }
}

.avis-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.avis__scroll .avis-card { width: 280px; flex-shrink: 0; padding: 20px; }
.avis-card__stars { display: flex; gap: 2px; margin-bottom: 12px; }
.avis-card__stars svg { width: 14px; height: 14px; fill: var(--gold); color: var(--gold); }
.avis-card__text { font-size: 12px; color: var(--text-soft); line-height: 1.7; flex: 1; }
.avis-card__footer { margin-top: 16px; padding-top: 12px; border-top: 1px solid #e5e5e5; }
.avis-card__name { font-weight: 700; font-size: 11px; color: #1a1a1a; }
.avis-card__date { font-size: 10px; color: var(--text-faint); margin-left: 8px; }
@media (min-width: 1024px) { .avis-card__text { font-size: 13px; } }

/* =========================================================
   HISTOIRE (UNIVERS)
   ========================================================= */
.section-histoire { position: relative; overflow: hidden; }
.histoire__banner {
  position: relative;
  width: 100%;
  min-height: 450px;
  display: flex;
  align-items: center;
}
.histoire__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.histoire__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42,8,8,.85), rgba(42,8,8,.6), transparent);opacity:0.2
}
.histoire__content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 56px 24px;
}
.histoire__text { max-width: 420px; }
.histoire__eyebrow {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--pink-label);
  margin-bottom: 4px;
}
.histoire__title {
  font-family: var(--font-display);
  color: #fff;
  font-size: 33px;
  font-weight: 400;  font-weight: 600;
  text-transform: uppercase;
  line-height: .92;
  margin-top: 4px;
}
.histoire__desc {
  color: #fff;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}
.histoire__cta { margin-top: 28px; }
@media (min-width: 640px)  { .histoire__title { font-size: 30px; } }
@media (min-width: 1024px) {
  .histoire__banner { min-height: 70vh; }
  .histoire__content {         padding: 80px 24px;
        max-width: 1300px; }
  .histoire__eyebrow { font-size: 10px; letter-spacing: .3em; }
  .histoire__title { font-size: 40px; margin-top: 8px; }
}
@media (min-width: 1280px) { .histoire__title { font-size: 48px; } }


/* =========================================================
   banniere (UNIVERS)
   ========================================================= */
.section-banniere { position: relative; overflow: hidden; }
.banniere__banner {
    position: relative;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    padding-top: 0px;
}
.banniere__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banniere__overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(to right, rgb(0 0 0 / 7%), rgb(0 0 0 / 28%), #00000033);
}

body#menu .banniere__overlay {
    background: linear-gradient(to right, rgb(0 0 0 / 7%), rgb(0 0 0 / 28%), #00000033);
}


.banniere__content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 56px 24px;
}
.banniere__text {     text-align: center; }
.banniere__eyebrow {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--pink-label);
  margin-bottom: 4px;
}
.banniere__title {
  font-family: var(--font-display);
  color: #fff;
  font-size: 33px;
  font-weight: 400;  font-weight: 600;
  text-transform: uppercase;
  line-height: .92;
  margin-top: 4px;text-shadow: 0 2px 4px black;
}
.banniere__desc {
  color: #fff;
  font-size: 12px;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}
.banniere__cta { margin-top: 28px; }
@media (min-width: 640px)  { .banniere__title { font-size: 30px; } }
@media (min-width: 1024px) {
  .banniere__banner { min-height: 420px; }
  .banniere__content { padding: 80px 40px; }
  .banniere__eyebrow { font-size: 10px; letter-spacing: .3em; }
  .banniere__title { font-size: 40px; margin-top: 8px; }
}
@media (min-width: 1280px) { .banniere__title { font-size: 48px; } }



/* =========================================================
   EMPORTER (Commander en ligne)
   ========================================================= */
.section-emporter { background: var(--cream); padding: 50px 0; }
@media (min-width: 1024px) { .section-emporter { padding: 60px 0; } }
.emporter__row {
  display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: column-reverse;

}
@media (min-width: 1024px) { .emporter__row { gap: 32px;         flex-direction: row;} }
.emporter__text { flex: 1;     text-align: center;}
.emporter__eyebrow {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #4ab58a;
  margin-bottom: 4px;
}
.emporter__title {
  font-family: var(--font-display);
  color: #1a1a1a;
  font-size: 33px;
  font-weight: 400;  font-weight: 600;
  text-transform: uppercase;
  line-height: .92;
  margin-top: 4px;
}
.emporter__cta { margin-top: 30px; }
.emporter__image { position: relative;        flex: 1; }
.emporter__image img { width: 240px; max-width:80%;    margin: 0 auto; }
@media (min-width: 640px)  { .emporter__image img { width: 180px; } .emporter__title { font-size: 30px; } }
@media (min-width: 768px)  { .emporter__image img { width: 240px; } }
@media (min-width: 1024px) { .emporter__image img { width: 450px; } .emporter__title { font-size: 40px; } .emporter__eyebrow { font-size: 10px; letter-spacing: .3em; }.emporter__text { flex: 1;     text-align: left;} }
@media (min-width: 1280px) { .emporter__title { font-size: 48px; } }

/* =========================================================
   CONTACT / NEWSLETTER BAR
   ========================================================= */
.section-contact { background: var(--burgundy-dark); padding: 32px 0;         display: none;}
@media (min-width: 1024px) { .section-contact { padding: 40px 0; } }
.contact__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 640px) {
  .contact__row { flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (max-width: 1024px) {
.contact__row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    justify-content: center;
    align-content: center;
}
}

.contact__title {
  color: #fff;
  font-size: 11px;
  font-weight: 700;  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 6px;
}
.contact__desc { color: rgba(255,255,255,.6); font-size: 10px; margin-bottom: 12px; line-height: 1.6; }
.contact__form { display: flex; max-width: 320px;    position: relative; }
.contact__form input {
    flex: 1;
    background: transparent;
    border: 1px solid rgb(255 255 255);
    color: #fff;
    padding: 15px 18px;
    font-size: 11px;
    border-radius: 29px;
}
.contact__form input::placeholder { color: rgba(255,255,255,.4); }
.contact__form input:focus { outline: none; border-color: rgba(255,255,255,.5); }
.contact__form button {
    background: #fff;
    color: var(--burgundy);
    padding: 8px 9px;
    flex-shrink: 0;
    transition: background .2s;
    position: absolute;
    right: 8px;
    border-radius: 50%;
    top: 6px;
}
.contact__form button:hover { background: rgba(255,255,255,.9); }
.contact__form button svg { width: 14px; height: 14px; }

.social__title {
  color: #fff;
  font-size: 11px;
  font-weight: 700;  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: 12px;
}
.social__links { display: flex; gap: 12px;     justify-content: center;}
.social__links a {
    width: 64px;
    height: 64px;
    background: rgb(46 102 81);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}
.social__links a:hover { background: rgb(26 69 53); }
.social__links svg { width: 28px; height: 28px; fill: #fff; }

/* =========================================================
   FOOTER
   ========================================================= */
   
   .footer__apps{
    display:flex;
    gap:15px;
    align-items:center;
    flex-wrap:wrap;
}

.footer__apps a{
    transition:.3s ease;
}

.footer__apps{
    display:flex;
    gap:15px;
    align-items:center;
    flex-wrap:wrap;
}

.footer__apps a{
    transition:.3s ease;
}

.footer__apps a:hover{
    transform:translateY(-3px);
}

.footer__apps img{
    height:62px;
    width:auto;
    display:block;border-radius:20px
}



.site-footer { background: var(--dark); color: #fff; }
.footer__main {margin: 0 auto;
    padding: 80px;}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (min-width: 1024px) { .footer__grid { grid-template-columns: repeat(4, 1fr); gap: 40px; } }

.footer__logo img { height: 36px; width: auto; margin-bottom: 12px; }
.footer__tagline { color: white; font-size: 15px; line-height: 1.6; }

.footer__heading {
    font-size: 21px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-family: var(--font-display);
}
.footer__list li { color: white; font-size: 14px; margin-bottom: 4px; }
.footer__list li.spacer { padding-top: 6px; }
.footer__list a { transition: color .2s; }
.footer__list a:hover { color: #fff; }

.footer__nav li { margin-bottom: 10px; }
.footer__nav a { color: white; font-size: 14px; transition: color .2s; }
.footer__nav a:hover { color: #fff; }

.footer__order li { margin-bottom: 8px; }
.footer__order a {
      display: inline-block;
    color: rgba(255,255,255,.6);
    font-size: 10px;
    transition: all .2s;
}
.footer__order a:hover { color: #fff; border-color: rgba(255,255,255,.6); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 32px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
@media (min-width: 640px) { .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; } }
.footer__copy { color: rgba(255,255,255,.3); font-size: 10px; }
.footer__legal { display: flex; gap: 12px; }
.footer__legal a { color: rgba(255,255,255,.3); font-size: 10px; transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.6); }
.footer__legal span { color: rgba(255,255,255,.2); font-size: 10px; }

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.23,1,.32,1), transform .7s cubic-bezier(.23,1,.32,1);
}
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal { opacity: 1; transform: none; transition: none; }
  .hero__title, .hero__subtitle, .hero__flag, .hero__ctas { animation: none; opacity: 1; transform: none; }
}


.contact-page{padding:30px 30px}
.contact-form-page{display:grid;gap:16px;max-width:700px;margin:30px auto}
.contact-form-page input,.contact-form-page textarea{padding:14px;border:1px solid #ddd;border-radius:8px;font-size:16px}
.contact-form-page textarea{min-height:180px;    font-family: var(--font-body);}




/* =========================================================
   NOS ATOUTS
   ========================================================= */
.section-atouts {
    background: white;
    padding: 48px 50px;
    position: relative;
    z-index: 2;
    border-top: 1px solid #efefef;    border-bottom: 1px solid #efefef;
}

.section-atouts .container--wide {
    max-width: 100%;
    padding: 0;
}

.atouts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 16px;
}
@media (min-width: 1024px) {
  .atouts__grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
}
.atout {
  position: relative;
  padding: 0 20px;
  text-align: center;
}
@media (min-width: 1024px) {
  .atout:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: rgb(239 239 239);
  }
}
.atout__icon {     width: 60px;
    height: 60px;
    margin: 0 auto 16px; }
.atout__icon svg { width: 100%; height: 100%; display: block; }
.atout__title {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0;  font-weight: 600;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 8px;
    font-family: var(--font-display);
}
.atout__desc {
  font-size: 10.5px;
  line-height: 1.5;
  color: black;
}

/* =========================================================
   RESEAUX SOCIAUX
   ========================================================= */
.section-social { padding: 64px 0 56px; overflow: hidden; }

.social__header { text-align: center; margin-bottom: 28px; padding: 0 24px; }
.social__header .social__links { margin-top: 18px; }

.social__carousel {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  cursor: grab;
}
.social__carousel::-webkit-scrollbar { display: none; height: 0; }
.social__carousel.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.social__track {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 4px 24px 4px 50px;
}
@media (min-width: 1024px) { .social__track { gap: 18px; padding: 4px 80px 4px 100px; } }

.social__item {
  position: relative;
  flex: 0 0 auto;
  width: 143px;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  scroll-snap-align: start;
}

.social__carousel,
.social__track,
.social__item,
.social__item img,
.social__item video {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

@media (min-width: 640px)  { .social__item { width: 200px; border-radius: 16px; } }
@media (min-width: 1024px) { .social__item { width: 340px; } }

.social__carousel { scroll-padding-left: 30px; }
@media (min-width: 1024px) { .social__carousel { scroll-padding-left: 60px; } }

.social__item img,
.social__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;    filter: contrast(1.1);

}

/* =========================================================
   MODAL COMMANDER
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.modal-overlay.is-open { display: flex; }

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--cream);
  border-radius: 16px;
  padding: 44px 32px 54px;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.modal-overlay.is-open .modal {
  transform: translateY(0);
  opacity: 1;
}

.modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  border-radius: 50%;
  color: var(--text-soft);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.modal__close svg { width: 18px; height: 18px; }
.modal__close:hover { background: rgba(0,0,0,.06); color: var(--burgundy); }

.modal__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000000;
  margin-bottom: 28px;
}

.modal__apps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.modal__apps a { display: block; transition: transform .3s ease; }
.modal__apps a:hover { transform: translateY(-3px); }
.modal__apps img {
  height: 64px;
  width: auto;
  display: block;
  border-radius: 16px;
}

body.modal-open { overflow: hidden; }

@media (max-width: 480px) {
  .modal { padding: 36px 22px 30px; }
  .modal__title { font-size: 24px; }
  .modal__apps img { height: 54px; }
}




	body {
    padding-top:70px;
}
	body#index {
    padding-top: 0px;
}

body .navbar{
    background: rgb(117 6 6 / 90%);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

body#mentions-legales .section-produits, body#politique-confidentialite .section-produits  { 
    padding: 60px 0 65px !important;
}
.uber{    filter: grayscale(1);    pointer-events: none;    cursor: not-allowed;}
.deliveroo{    filter: grayscale(1);    pointer-events: none;    cursor: not-allowed;}

@media (min-width: 1024px) {
.navbar__links a {
    margin-bottom: 6px;
}
}

@media (max-width: 1024px) {
	.produit-card__title {
    font-size: 25px;
    line-height: 1;
}
	body {
    padding-top: 64px;
}
	body#index {
    padding-top: 0px;
}

	.menu-page {
    padding: 2px 0px;
}

	.footer__main {
    margin: 0 auto;
    padding: 40px;
}
.footer__apps {
    align-items: center;
    justify-content: center;
}
.footer__grid {
    grid-template-columns: repeat(1, 1fr);text-align: center;gap: 35px;
}
.footer__logo img {
    height: 60px;
    width: auto;
    margin-bottom: 12px;
    margin: 0 auto 20px;
}

.footer__heading {
    letter-spacing: .5px;
}
	
.footer__list li {
    font-size: 12px;
}

body .menuimg img{
border-radius:8px
}

.contact-page .container--mid {
    max-width: 100%;
    padding: 0;
}
body .container--mid.menuimg{
           padding: 30px !important;
        gap: 12px;
}
.section-produits {     
    background-size: 50%; }
.section-produits .container{padding:0}

.produits__scroll .produit-card {
    width: 70vw;
    flex-shrink: 0;
    background: white;
    box-shadow: 0 0 17px #0000001c;
    padding: 20px;
    margin: 17px 0;
    border-radius: 20px;
}
.produits__scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 0 30px;
    margin: 0 -18px;
    scrollbar-width: none;
}
    .section-produits {
        overflow: hidden;
    }
	.section-atouts {
    padding: 48px 20px;

}
.atout__icon {
    margin: 0 auto 11px;width: 50px;
        height: 50px;
}
.atouts__grid {
    gap: 25px 16px;
}
.atout {
    position: relative;
    padding: 0 10px;
    text-align: center;
}
.atout__title {
    font-size: 18px;
}

#avis .produits__cta{
    padding-right: 20px;
}
body#mentions-legales .section-produits, body#politique-confidentialite .section-produits  { 
    overflow: hidden;
    padding: 30px 50px 60px !important;
}
}


.restaurant-info,.restaurant-gallery{background:#fff;padding:80px 0;text-align: center;    border-bottom: 1px solid #efefef;    border-top: 1px solid #efefef;}
.hours-cover{    background: url(../images/hero.jpg) center/cover no-repeat;
    padding: 100px 20px;}
.hours-card{    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 40px;
    text-align: center;
    border-radius: 30px;}
	
	.hours-card .section-title, .restaurant-gallery .section-title{margin-bottom:40px}
	
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.gallery-grid img,.gallery-scroll img{    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
    border-radius: 18px;}




.restaurant-info p{padding:10px 0;}
.restaurant-info p a{
    border: none;font-weight:600;
    border-radius: 0;
    background: rgb(46 102 81);
    color: #fff;
    padding: 18px 38px;
    clip-path: url(#brushClip);    display: inline-block;}


@media(max-width:768px){
	
	.gallery-grid {
    grid-template-columns: repeat(1, 1fr);
}

.restaurant-info, .restaurant-gallery {
    background: #fff;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #efefef;
    border-top: 1px solid #efefef;
}
.restaurant-info p a {
    font-size: 12px;
}

	}
	
	
	#menu .banniere__eyebrow {
    color: #ffffff;
}


/* =========================================================
   FRANCHISE — Devenir franchisé
   ========================================================= */
.section-franchise-intro { background: #fff; padding: 64px 0; text-align: center;    background: url(../images/bg-grey.webp);
    background-size: 25%; }
.franchise-intro__text { max-width: 760px; margin: 16px auto 0; color: var(--text-soft); font-size: 14px; line-height: 1.8; }
@media (min-width: 1024px) { .section-franchise-intro { padding: 80px 0; } .franchise-intro__text { font-size: 15px; } }

.section-profils { background: var(--cream); padding: 56px 0; }
@media (min-width: 1024px) { .section-profils { padding: 80px 0; } }
.profils__header { text-align: center; margin-bottom: 32px; }
@media (min-width: 1024px) { .profils__header { margin-bottom: 48px; } }

.profils__grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 1024px) { .profils__grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.profils__image img { width: 100%; border-radius: 20px; box-shadow: 0 12px 30px rgba(0,0,0,.12); }

.profil-item { margin-bottom: 28px; }
.profil-item:last-child { margin-bottom: 0; }
.profil-item__title {
  font-family: var(--font-display);
  color: var(--burgundy);
  font-size: 20px;
  font-weight: 400;  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.profil-item__desc { color: var(--text-soft); font-size: 13px; line-height: 1.75; }
@media (min-width: 1024px) { .profil-item__title { font-size: 23px; } .profil-item__desc { font-size: 14px; } }

/* ---- Le local idéal ---- */
.section-locaux { background: #fff; padding: 56px 0; }
@media (min-width: 1024px) { .section-locaux { padding: 80px 0; } }
.locaux__header { text-align: center; margin-bottom: 32px; }
@media (min-width: 1024px) { .locaux__header { margin-bottom: 48px; } }

.locaux__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .locaux__grid { grid-template-columns: 1fr; } }

.locaux-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
}
.locaux-card__icon { width: 56px; height: 56px; margin: 0 auto 18px; }
.locaux-card__icon img { width: 100%; height: 100%; object-fit: contain; }
.locaux-card__title {
  font-family: var(--font-display);
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 400;  font-weight: 600;
  text-transform: uppercase;
  line-height: .95;
  margin-bottom: 4px;
}
.locaux-card__surface {
  font-family: var(--font-display);
  color: var(--burgundy);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 14px;
}
.locaux-card__desc { color: var(--text-soft); font-size: 13px; line-height: 1.7; }

/* ---- Accompagnement (icon box, reuses .atout look) ---- */
.section-accompagnement { background: var(--cream); padding: 56px 0;background: url(../images/carte-tregusto.webp) center / cover no-repeat; position:relative}
.section-accompagnement:before {     content: '';
    position: absolute;
    left: 0;
    top: 0;
    background: #00000014;
    width: 100%;
    height: 100%; }

@media (min-width: 1024px) { .section-accompagnement { padding: 80px 0; } }
.accompagnement__header { text-align: center; margin-bottom: 32px; }
@media (min-width: 1024px) { .accompagnement__header { margin-bottom: 48px; } }

.accompagnement__grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .accompagnement__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.accomp-card { background: #fff; border-radius: 18px; padding: 36px 28px; box-shadow: 0 0 17px #0000001c; }
.accomp-card__icon { width: 48px; height: 48px; margin-bottom: 18px; color: var(--burgundy);     color: #2e6651;}
.accomp-card__icon svg { width: 100%; height: 100%; }
.accomp-card__title {
  font-family: var(--font-display);
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.accomp-card__desc { color: var(--text-soft); font-size: 13px; line-height: 1.75; }

/* ---- Investissement (price cards) ---- */
.section-investissement { background: #fff; padding: 56px 0 40px; }
@media (min-width: 1024px) { .section-investissement { padding: 80px 0 48px; } }
.investissement__header { text-align: center; margin-bottom: 32px; }
@media (min-width: 1024px) { .investissement__header { margin-bottom: 48px; } }

.prix__grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px)  { .prix__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .prix__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

.prix-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.prix-card__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--burgundy);
  margin-bottom: 12px;
}
.prix-card__value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 14px;
}
.prix-card__desc { font-size: 12px; color: var(--text-soft); line-height: 1.6; margin-top: auto; }

.investissement__note { text-align: center; max-width: 640px; margin: 28px auto 0; }
.investissement__note p { font-size: 13px; color: var(--text-soft); line-height: 1.7; margin-bottom: 6px; }
.investissement__note p.fine-print { font-size: 11px; color: var(--text-faint); }

/* ---- FAQ accordion ---- */
.section-faq { background: var(--cream); padding: 56px 0; }
@media (min-width: 1024px) { .section-faq { padding: 80px 0; } }
.faq__grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .faq__grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.faq__header { margin-bottom: 24px; }
 .faq__image img { border-radius: 20px; box-shadow: 0 12px 30px rgba(0,0,0,.12); } 
@media (min-width: 1024px) { .faq__image { display: block; } }

.faq-accordion { border-top: 1px solid rgba(0,0,0,.08); }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.08); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 4px;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}
.faq-item__q svg { width: 16px; height: 16px; flex-shrink: 0; stroke: var(--burgundy); transition: transform .25s ease; }
.faq-item.is-open .faq-item__q svg { transform: rotate(180deg); }
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item__a p { padding: 0 4px 18px; font-size: 13px; color: var(--text-soft); line-height: 1.75; }
.faq-item.is-open .faq-item__a { max-height: 320px; }

/* ---- Formulaire franchise ---- */
.section-franchise-form { background: var(--burgundy-dark); padding: 56px 0; }
@media (min-width: 1024px) { .section-franchise-form { padding: 80px 0; } }
.franchise-form__header { text-align: center; margin-bottom: 32px; }
.franchise-form__header .section-title { color: #fff; }
.franchise-form__header .section-eyebrow { color: var(--pink-label); }

.franchise-form { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 700px; margin: 0 auto; }
@media (min-width: 640px) { .franchise-form { grid-template-columns: 1fr 1fr; } }
.franchise-form .full { grid-column: 1 / -1; }
.franchise-form input,
.franchise-form select,
.franchise-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.06);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-family: var(--font-body);
}
.franchise-form select option { color: #000; }
.franchise-form input::placeholder,
.franchise-form textarea::placeholder { color: rgba(255,255,255,.45); }
.franchise-form input:focus,
.franchise-form select:focus,
.franchise-form textarea:focus { outline: none; border-color: rgba(255,255,255,.6); }
.franchise-form textarea { min-height: 140px; resize: vertical; }
.franchise-form .franchise-form__submit { text-align: center; }
.franchise-form .btn--primary {
    border: none;
    border-radius: 0;
    background: rgb(255 255 255);
    color: #000000;
    padding: 16px 42px;
    clip-path: url(#brushClip);
    font-size: 12px;
    width: 100%;
}
.franchise-form .btn--primary:hover { background: rgb(26 69 53); }

@media (max-width: 1024px) {
  .accomp-card { padding: 28px 22px; }
  .prix-card__value { font-size: 24px; }
  
  .section-franchise-intro {
    padding: 40px 0;
}
.section-franchise-intro .container--mid, .section-profils .container--mid, .section-locaux .container--mid, .section-accompagnement .container--mid, .section-investissement .container--mid, .section-faq .container--mid, .section-franchise-form .container--mid {
    padding: 0 30px;
}
.section-locaux, .section-accompagnement, .section-investissement {
    padding: 40px 0;
}
.section-faq {
    text-align: center;
}
.faq-item__a p {
    text-align: left;
}

.accomp-card__desc {
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.35;
}
.accomp-card__icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0;
    display: inline-block;
}
    .accomp-card {
        text-align: center;
    }
	
	.franchise-intro__text, .profil-item__desc, .locaux-card__desc, .faq-item__a p {
    font-size: 13px;
    line-height: 1.3;
}
.atouts__grid .atout:nth-child(3) {order:4}
.menu-page .section-title {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 20px;
    font-size: 21px;
}

}

.menu-page .section-title {
    text-align: center;
}



.pourcent{  font-family: var(--font-body);display:inline-block;font-size: 76%;
}

