/* =================================================================
   MISS CONTRECOEUR — feuille de style
   Palette : bordeaux / rouge tomate / or / vert basilic / crème
   ================================================================= */

.menu-chargement, .menu-erreur {
  text-align: center; padding: 60px 20px; font-size: 1rem;
  color: #8b7560;
}
.menu-erreur { color: #c2231c; }

:root {
  --rouge:        #c2231c;
  --rouge-vif:    #e23a2e;
  --bordeaux:     #6b1812;
  --bordeaux-2:   #4a0f0b;
  --vert:         #2c7a3f;
  --vert-fonce:   #1e5c2e;
  --or:           #e9b44c;
  --or-clair:     #f6d585;
  --creme:        #f8efd8;
  --creme-2:      #fdf8ec;
  --ink:          #2a1712;
  --ink-doux:     #5a4438;
  --blanc:        #fffcf6;

  --font-titre:   "Fraunces", Georgia, serif;
  --font-script:  "Dancing Script", cursive;
  --font-cond:    "Oswald", "Arial Narrow", sans-serif;
  --font-corps:   "Poppins", "Segoe UI", system-ui, sans-serif;

  --ombre-douce:  0 18px 40px -18px rgba(74,15,11,.45);
  --ombre-carte:  0 24px 60px -24px rgba(74,15,11,.55);
  --rayon:        18px;
  --max:          1180px;
}

/* ----------------------------- Base ----------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

:focus-visible { outline: 3px solid var(--or); outline-offset: 3px; border-radius: 4px; }

body {
  font-family: var(--font-corps);
  color: var(--ink);
  background: var(--creme);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 24px; }

h1, h2, h3, h4 { font-family: var(--font-titre); line-height: 1.1; font-weight: 800; font-optical-sizing: auto; }

::selection { background: var(--or); color: var(--bordeaux-2); }

/* Accent script (mots manuscrits) */
.script, .script-accent { font-family: var(--font-script); font-weight: 700; }
.script-accent { color: var(--rouge); }

.eyebrow {
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--rouge);
  display: inline-block;
  margin-bottom: .6rem;
}
.eyebrow.gold { color: var(--or); }

/* ----------------------------- Boutons -------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-cond);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  font-size: .95rem;
  padding: .85em 1.6em;
  border-radius: 999px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  will-change: transform;
}
.btn .ic { width: 1.2em; height: 1.2em; }
.btn-or {
  background: linear-gradient(135deg, var(--or-clair), var(--or));
  color: var(--bordeaux-2);
  box-shadow: 0 12px 26px -10px rgba(233,180,76,.7);
}
.btn-or:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -10px rgba(233,180,76,.85); }
.btn-ghost {
  background: transparent; color: var(--creme);
  border-color: rgba(248,239,216,.55);
}
.btn-ghost:hover { background: rgba(248,239,216,.12); border-color: var(--creme); transform: translateY(-3px); }
.btn-lg { font-size: 1.05rem; padding: 1em 2em; }

/* ----------------------- En-tête / Navigation ------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(74,15,11,.0);
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 14px 0;
}
.site-header.scrolled {
  background: rgba(74,15,11,.96);
  box-shadow: 0 10px 30px -16px rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-logo { width: 46px; height: 46px; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,.35)); }
.brand-name {
  font-family: var(--font-titre); font-weight: 800; font-size: 1.25rem;
  color: var(--creme); letter-spacing: .01em;
}
.brand-name em { color: var(--or); font-style: normal; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav > a {
  font-family: var(--font-cond);
  text-transform: uppercase; letter-spacing: .12em; font-size: .85rem; font-weight: 500;
  color: var(--creme); position: relative; padding: .3em 0;
  transition: color .2s ease;
}
.nav > a:not(.nav-tel)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--or); transition: width .28s ease;
}
.nav > a:not(.nav-tel):hover { color: var(--or); }
.nav > a:not(.nav-tel):hover::after { width: 100%; }
.nav-tel {
  display: inline-flex; align-items: center; gap: .5em;
  background: linear-gradient(135deg, var(--or-clair), var(--or));
  color: var(--bordeaux-2) !important;
  padding: .55em 1.1em; border-radius: 999px; letter-spacing: .04em;
  box-shadow: 0 10px 22px -12px rgba(233,180,76,.8);
}
.nav-tel:hover { transform: translateY(-2px); }
.nav-tel .ic { width: 1.05em; height: 1.05em; }

.burger { display: none; background: none; border: 0; cursor: pointer; width: 42px; height: 42px; padding: 8px; }
.burger span { display: block; height: 2.5px; background: var(--creme); border-radius: 2px; margin: 5px 0; transition: .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Voile derrière le menu mobile */
.nav-backdrop {
  position: fixed; inset: 0; background: rgba(20,4,2,.58);
  opacity: 0; pointer-events: none; transition: opacity .35s ease; z-index: 80;
  backdrop-filter: blur(2px);
}
body.menu-ouvert { overflow: hidden; }

/* ----------------------------- HERO ----------------------------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 90px; overflow: hidden;
  margin-top: -74px; /* le header transparent chevauche le hero */
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 78% 18%, #8a2218 0%, var(--bordeaux) 42%, var(--bordeaux-2) 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.05) 1px, transparent 1.4px);
  background-size: 22px 22px;
  mix-blend-mode: overlay; opacity: .5;
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 2.5rem;
  position: relative; z-index: 2;
}
.hero-copy { color: var(--creme); }
.kicker {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .22em;
  font-size: .92rem; font-weight: 600; color: var(--or);
  border: 1px solid rgba(233,180,76,.45); border-radius: 999px;
  padding: .5em 1.2em; margin-bottom: 1.4rem;
  background: rgba(233,180,76,.08);
}
.kicker .star { color: var(--or); }
.hero-title { margin-bottom: .6rem; }
.hero-title .script {
  display: block; font-family: var(--font-script); font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.4rem); color: var(--or-clair); line-height: .9;
  text-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.hero-title .big {
  display: block; font-family: var(--font-cond); font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(2.4rem, 7vw, 5.2rem); color: var(--creme); line-height: .95;
}
.hero-tagline { font-size: clamp(1.1rem, 2vw, 1.4rem); margin-bottom: .5rem; font-weight: 400; }
.hero-tagline em { font-family: var(--font-script); font-style: normal; color: var(--or-clair); font-size: 1.25em; }
.hero-sub { color: rgba(248,239,216,.85); margin-bottom: 1.8rem; max-width: 34ch; }

.statut-ouvert {
  display: inline-flex; align-items: center; gap: .65rem; max-width: 100%;
  background: rgba(44,122,63,.18); border: 1px solid rgba(70,200,115,.55);
  color: var(--creme); border-radius: 999px; padding: .7rem 1.3rem;
  font-size: 1rem; line-height: 1.35; margin-bottom: 2rem; backdrop-filter: blur(3px);
}
.statut-txt { min-width: 0; }
.statut-ouvert strong { color: #8ef0a6; font-weight: 600; white-space: nowrap; }
.point-ouvert {
  width: 12px; height: 12px; border-radius: 50%; background: #4ad978; flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(74,217,120,.7); animation: pulse-ouvert 2s infinite;
}
@keyframes pulse-ouvert {
  0%   { box-shadow: 0 0 0 0 rgba(74,217,120,.6); }
  70%  { box-shadow: 0 0 0 13px rgba(74,217,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,217,120,0); }
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Emblème (logo détouré) */
.hero-emblem { position: relative; display: grid; place-items: center; }
.emblem-glow {
  position: absolute; inset: -6%; border-radius: 50%;
  background: radial-gradient(circle, rgba(233,180,76,.42) 0%, rgba(233,180,76,0) 62%);
  filter: blur(8px);
}
.emblem-img {
  position: relative; width: 100%; max-width: 480px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,.5));
  animation: flotte 6s ease-in-out infinite;
}
@keyframes flotte { 0%,100% { transform: translateY(0) rotate(-.5deg); } 50% { transform: translateY(-16px) rotate(.5deg); } }

/* garnitures flottantes */
.garnish { position: absolute; z-index: 1; opacity: .8; filter: drop-shadow(0 8px 12px rgba(0,0,0,.3)); }
.garnish.g1 { width: 70px; top: 16%; left: 6%; animation: flotte 7s ease-in-out infinite; }
.garnish.g2 { width: 58px; bottom: 14%; left: 12%; animation: flotte 9s ease-in-out infinite reverse; }
.garnish.g3 { width: 50px; top: 22%; right: 8%; animation: flotte 8s ease-in-out infinite; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .3rem;
  color: rgba(248,239,216,.75); font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .2em; font-size: .72rem; z-index: 3;
}
.scroll-cue svg { width: 22px; height: 22px; animation: bond 1.8s ease-in-out infinite; }
@keyframes bond { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------------------- Ornement (séparateur) ------------------- */
.ornement { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 0 auto 2.6rem; color: var(--rouge); }
.ornement span { height: 2px; width: clamp(40px, 14vw, 130px); background: linear-gradient(90deg, transparent, var(--rouge)); }
.ornement span:last-child { background: linear-gradient(90deg, var(--rouge), transparent); }
.ornement svg { width: 26px; height: 26px; }
.ornement.mini { margin: 1.6rem auto; }
.ornement.mini span { width: 60px; background: linear-gradient(90deg, transparent, var(--or)); }
.ornement.mini span:last-child { background: linear-gradient(90deg, var(--or), transparent); }
.ornement.mini svg { color: var(--or); width: 20px; height: 20px; }

/* ----------------------- Bandeau 3 promesses -------------------- */
.promesses { background: var(--creme); padding: 84px 0; position: relative; }
.promesses-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.promesse {
  background: var(--blanc); border-radius: var(--rayon); padding: 2.4rem 1.8rem; text-align: center;
  box-shadow: var(--ombre-douce); border: 1px solid rgba(194,35,28,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.promesse:hover { transform: translateY(-8px); box-shadow: var(--ombre-carte); }
.p-ic {
  width: 78px; height: 78px; margin: 0 auto 1.2rem; display: grid; place-items: center;
  border-radius: 50%; color: var(--rouge);
  background: radial-gradient(circle at 30% 25%, #fff, #fbe9e7);
  border: 2px solid rgba(194,35,28,.18);
}
.p-ic svg { width: 42px; height: 42px; }
.promesse:nth-child(2) .p-ic { color: var(--vert); background: radial-gradient(circle at 30% 25%, #fff, #e6f3e9); border-color: rgba(44,122,63,.2); }
.promesse:nth-child(3) .p-ic { color: var(--rouge-vif); }
.promesse h3 { font-size: 1.4rem; color: var(--bordeaux); margin-bottom: .6rem; }
.promesse p { color: var(--ink-doux); font-size: .98rem; }

/* --------------------- Le mot de Carolyne ----------------------- */
.histoire {
  padding: 96px 0; position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, #7a1c14 0%, var(--bordeaux) 55%, var(--bordeaux-2) 100%);
  color: var(--creme);
}
.histoire::before, .histoire::after {
  content: ""; position: absolute; left: 0; right: 0; height: 40px; pointer-events: none;
}
.histoire-head { text-align: center; margin-bottom: 2.4rem; }
.histoire-head .eyebrow { color: var(--or); }
.histoire-head h2 { font-family: var(--font-script); font-weight: 700; font-size: clamp(2.6rem, 6vw, 4rem); color: var(--or-clair); }

.lettre {
  position: relative; max-width: 760px; margin-inline: auto;
  background: linear-gradient(180deg, #fdf6e3, #f6e8c8);
  color: #41281c; border-radius: 8px; padding: 3.4rem clamp(1.6rem, 5vw, 3.6rem) 2.8rem;
  box-shadow: var(--ombre-carte);
  border: 1px solid rgba(120,80,40,.18);
}
.lettre::before {
  content: ""; position: absolute; inset: 10px; border: 1.5px solid rgba(160,110,60,.28);
  border-radius: 4px; pointer-events: none;
}
.lettre .crown { width: 56px; height: 36px; color: var(--or); margin: 0 auto 1.2rem; display: block; filter: drop-shadow(0 2px 2px rgba(0,0,0,.15)); }
.lettre p { font-size: 1.06rem; line-height: 1.85; margin-bottom: 1.2rem; }
.lettre strong { font-weight: 600; }
.lettre strong.rouge { color: var(--rouge); font-family: var(--font-titre); font-weight: 800; }
.lettre em { font-style: italic; color: var(--rouge); font-weight: 500; }
.lettre .script-accent { font-size: 1.5em; color: var(--rouge); }
.signature-line { font-family: var(--font-script); font-size: 1.6rem !important; text-align: center; color: var(--vert-fonce); margin-top: .6rem; }
.signature { text-align: center; font-size: 2.4rem; color: var(--rouge); margin-top: .2rem; }

/* ----------------------------- Menu ----------------------------- */
.menu { padding: 96px 0; background: var(--creme); position: relative; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3.2rem); color: var(--bordeaux); }
.section-head .lede { color: var(--ink-doux); margin-top: .8rem; font-size: 1.05rem; }

/* --- Spéciaux --- */
.menu-speciaux { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 1.6rem; }
.special-card {
  position: relative; background: var(--blanc); border-radius: var(--rayon);
  padding: 1.8rem 1.6rem; border: 1px solid rgba(194,35,28,.12);
  box-shadow: var(--ombre-douce); text-align: center;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.special-card:hover { transform: translateY(-6px); box-shadow: var(--ombre-carte); }
.sp-tag {
  display: inline-block; font-family: var(--font-cond); text-transform: uppercase;
  letter-spacing: .12em; font-size: .74rem; font-weight: 600; color: var(--rouge); margin-bottom: .6rem;
}
.special-card h3 { font-size: 1.45rem; color: var(--bordeaux); margin-bottom: .5rem; }
.special-card p { color: var(--ink-doux); font-size: .92rem; flex: 1; }
.sp-prix { margin-top: .9rem; font-family: var(--font-titre); font-weight: 900; font-size: 2.7rem; color: var(--rouge); line-height: 1; }
.sp-prix .cents { font-size: 1.05rem; font-weight: 700; vertical-align: super; margin-left: .08em; }
.special-card.vedette {
  background: linear-gradient(160deg, #7a1c14, var(--bordeaux)); color: var(--creme);
  border: 1px solid var(--or); box-shadow: 0 30px 60px -26px rgba(74,15,11,.7); transform: scale(1.03);
}
.special-card.vedette:hover { transform: scale(1.03) translateY(-6px); }
.special-card.vedette .sp-tag,
.special-card.vedette h3,
.special-card.vedette .sp-prix { color: var(--or-clair); }
.special-card.vedette p { color: rgba(248,239,216,.9); }

/* --- Catégories --- */
.menu-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin-bottom: 1.4rem; }
.cat-card {
  background: var(--blanc); border-radius: var(--rayon); padding: 1.8rem;
  border: 1px solid rgba(194,35,28,.1); box-shadow: var(--ombre-douce);
}
.cat-card.cat-large { grid-column: 1 / -1; }
.cat-card h3 {
  font-size: 1.45rem; color: var(--rouge); margin-bottom: .9rem; padding-bottom: .6rem;
  border-bottom: 2px solid var(--or);
  display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; flex-wrap: wrap;
}
.h-note { font-family: var(--font-corps); font-weight: 400; font-size: .78rem; color: var(--ink-doux); }
.m-list { list-style: none; }
.m-list.two-col { columns: 2; column-gap: 2.6rem; }
.m-item {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .5rem 0; border-bottom: 1px dotted rgba(120,80,40,.28); break-inside: avoid;
}
.m-item:last-child { border-bottom: none; }
.m-nom { font-weight: 500; color: var(--ink); }
.m-nom small { display: block; font-weight: 300; font-size: .8rem; color: var(--ink-doux); }
.m-prix { font-family: var(--font-cond); font-weight: 600; color: var(--rouge); white-space: nowrap; }

/* --- Blocs : combos, festins, midi --- */
.menu-bloc {
  background: var(--blanc); border-radius: var(--rayon); padding: 2rem;
  box-shadow: var(--ombre-douce); border: 1px solid rgba(194,35,28,.1); margin-bottom: 1.4rem;
}
.bloc-head { text-align: center; margin-bottom: 1.5rem; }
.bloc-head h3 { font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--bordeaux); }
.bloc-note { display: block; margin-top: .45rem; color: var(--ink-doux); font-size: .92rem; }

.combos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.combo-card {
  display: flex; gap: 1rem; align-items: center;
  background: var(--creme); border-radius: 14px; padding: 1.1rem 1.3rem; border: 1px solid rgba(194,35,28,.1);
}
.combo-prix {
  flex: 0 0 auto; font-family: var(--font-cond); font-weight: 700; font-size: 1.1rem; color: var(--bordeaux-2);
  background: linear-gradient(135deg, var(--or-clair), var(--or));
  padding: .55em .8em; border-radius: 12px; white-space: nowrap;
}
.combo-card p { color: var(--ink-doux); font-size: .9rem; line-height: 1.5; }
.combo-card p strong { color: var(--bordeaux); font-weight: 600; }

.festins.menu-bloc { background: linear-gradient(160deg, #7a1c14, var(--bordeaux)); color: var(--creme); border-color: var(--or); }
.festins .bloc-head h3 { color: var(--or-clair); }
.festins .bloc-note { color: rgba(248,239,216,.85); }
.festins-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.festin { text-align: center; background: rgba(255,255,255,.07); border: 1px solid rgba(233,180,76,.4); border-radius: 14px; padding: 1.2rem .8rem; }
.f-taille { display: block; font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .05em; font-size: .9rem; color: var(--creme); margin-bottom: .35rem; }
.f-prix { display: block; font-family: var(--font-titre); font-weight: 900; font-size: 1.7rem; color: var(--or-clair); }

.midi-liste { columns: 3; column-gap: 2.2rem; list-style: none; counter-reset: midi; max-width: 920px; margin: 0 auto; }
.midi-liste li { break-inside: avoid; position: relative; padding: .4rem 0 .4rem 2.1rem; color: var(--ink); font-size: .94rem; counter-increment: midi; }
.midi-liste li::before {
  content: counter(midi); position: absolute; left: 0; top: .35rem;
  width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--rouge); color: #fff;
  font-family: var(--font-cond); font-weight: 600; font-size: .78rem; display: grid; place-items: center;
}
.menu-conditions { text-align: center; margin-top: 1.6rem; color: var(--ink-doux); font-size: .85rem; font-style: italic; }

@media (max-width: 880px) {
  .menu-speciaux, .menu-cats, .combos-grid { grid-template-columns: 1fr; }
  .festins-grid { grid-template-columns: 1fr 1fr; }
  .midi-liste { columns: 2; }
  .m-list.two-col { columns: 1; }
  .special-card.vedette, .special-card.vedette:hover { transform: none; }
}
@media (max-width: 520px) {
  .festins-grid { grid-template-columns: 1fr; }
  .midi-liste { columns: 1; }
  .menu-bloc { padding: 1.4rem; }
}

/* ------------------------- Bandeau CTA -------------------------- */
.cta-band {
  padding: 84px 0; text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--rouge), #9a1a14);
  color: var(--creme);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.4px);
  background-size: 20px 20px;
}
.cta-inner { position: relative; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: .6rem; }
.cta-band .script-accent { color: var(--or-clair); }
.cta-band p { max-width: 48ch; margin: 0 auto 1.8rem; color: rgba(248,239,216,.92); font-size: 1.1rem; }

/* ---------------------------- Contact --------------------------- */
.contact { padding: 96px 0; background: var(--creme); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 2rem; align-items: stretch; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-content: start; }
.info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--blanc); border-radius: var(--rayon); padding: 1.5rem;
  box-shadow: var(--ombre-douce); border: 1px solid rgba(194,35,28,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-card:hover { transform: translateY(-5px); box-shadow: var(--ombre-carte); }
.info-ic {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: radial-gradient(circle at 30% 25%, #fff, #fbe9e7); color: var(--rouge);
  border: 1px solid rgba(194,35,28,.15);
}
.info-ic svg { width: 26px; height: 26px; }
.info-body { display: flex; flex-direction: column; font-size: .98rem; color: var(--ink-doux); }
.info-body strong { font-family: var(--font-titre); font-size: 1.1rem; color: var(--bordeaux); margin-bottom: .25rem; }
.info-sous { color: var(--vert-fonce); font-size: .82rem; font-weight: 500; margin-top: .3rem; }
.map-wrap { position: relative; border-radius: var(--rayon); overflow: hidden; box-shadow: var(--ombre-carte); border: 3px solid var(--blanc); min-height: 360px; background: #e8e0cf; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.map-cta {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: .5em;
  background: linear-gradient(135deg, var(--or-clair), var(--or)); color: var(--bordeaux-2);
  font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
  font-size: .9rem; padding: .7em 1.3em; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 10px 24px -8px rgba(0,0,0,.5); transition: transform .25s ease, box-shadow .25s ease;
}
.map-cta:hover { transform: translateX(-50%) translateY(-3px); box-shadow: 0 16px 30px -8px rgba(0,0,0,.6); }
.map-cta .ic { width: 1.1em; height: 1.1em; }

/* ---------------------------- Footer ---------------------------- */
.site-footer { background: var(--bordeaux-2); color: var(--creme); padding-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 40px; }
.footer-brand img { width: 96px; margin-bottom: 1rem; filter: drop-shadow(0 6px 12px rgba(0,0,0,.4)); }
.footer-tag { color: rgba(248,239,216,.78); max-width: 30ch; }
.footer-col h4 { font-family: var(--font-cond); text-transform: uppercase; letter-spacing: .14em; color: var(--or); font-weight: 600; margin-bottom: .9rem; font-size: .95rem; }
.footer-col p { color: rgba(248,239,216,.82); margin-bottom: .5rem; }
.footer-col a:hover { color: var(--or); }
.footer-fb { display: inline-flex; align-items: center; gap: .5em; color: var(--creme); }
.footer-fb .ic { width: 1.3em; height: 1.3em; }
.footer-fb:hover { color: var(--or); }
.footer-bar { border-top: 1px solid rgba(248,239,216,.14); padding: 18px 0; text-align: center; }
.footer-bar p { color: rgba(248,239,216,.6); font-size: .85rem; }

/* ----------------------- Animations (reveal) -------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--d, 0s); }
.reveal.vu { opacity: 1; transform: none; }

/* --------------------------- Responsive ------------------------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .hero-copy { order: 2; }
  .hero-emblem { order: 1; }
  .emblem-img { max-width: 340px; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .kicker { margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-wrap { min-height: 320px; }
}

@media (max-width: 820px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: linear-gradient(160deg, #7a1c14, var(--bordeaux-2));
    padding: 2rem 2.2rem; transform: translateX(105%); transition: transform .35s ease;
    box-shadow: -20px 0 50px -20px rgba(0,0,0,.6); z-index: 90;
  }
  .nav.ouvert { transform: translateX(0); }
  .nav-backdrop.actif { opacity: 1; pointer-events: auto; }
  .nav > a { font-size: 1.05rem; }
  .nav-tel { margin-top: .4rem; }
  .promesses-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .menu-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .menu-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding-top: 100px; }
}

/* Respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
