/* ═══════════════════════════════════════════════════════════════
   LE MÉRIDIEN HORNU — Stylesheet
   Charte graphique : rouge bordeaux #8B1A1A + or #C9A84C + crème
═══════════════════════════════════════════════════════════════ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --red:        #8B1A1A;
  --red-hover:  #761515;
  --red-light:  #B52020;
  --gold:       #C9A84C;
  --gold-light: #E5C97C;
  --dark:       #1A1A1A;
  --charcoal:   #2C2C2C;
  --grey:       #5C5C5C;
  --mid:        #8C8C8C;
  --cream:      #F8F3EE;
  --warm:       #FDF9F5;
  --white:      #FFFFFF;

  --f-serif:   'Playfair Display', Georgia, serif;
  --f-elegant: 'Cormorant Garamond', Georgia, serif;
  --f-sans:    'Lato', system-ui, sans-serif;

  --nav-h:    78px;
  --r:        6px;
  --shadow:   0 4px 28px rgba(0,0,0,.10);
  --shadow-l: 0 16px 56px rgba(0,0,0,.22);
  --ease:     cubic-bezier(.4,0,.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-sans);
  background: var(--warm);
  color: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
em   { font-style: italic; color: var(--red); }

/* ── Layout helpers ────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
}
.section { padding: clamp(4rem, 9vw, 9rem) 0; position: relative; }

.section-label {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .9rem;
}
.section-label.light { color: var(--gold); }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-title {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4.2vw, 3rem);
  color: var(--dark);
  line-height: 1.2;
}
.section-title.light { color: var(--white); }

.body-text {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--f-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease),
              color .25s var(--ease), transform .25s var(--ease),
              box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  box-shadow: 0 8px 24px rgba(139,26,26,.4);
}

.btn-cream {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}
.btn-cream:hover {
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--cream);
  border-color: var(--cream);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.btn-sm { padding: 9px 20px; font-size: .75rem; }

/* ── Scroll-reveal animations ──────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal-up    { transform: translateY(36px); }
.reveal-left  { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }

.reveal-up.in,
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: none;
}
.reveal-up { transition-delay: var(--delay, 0s); }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.navbar.scrolled {
  background: rgba(20,10,10,.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  object-fit: cover;
}
.nav-brand-text {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.25;
  display: none;
}
.nav-brand-text em { color: var(--gold); }

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav-link {
  color: rgba(255,255,255,.78);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  position: relative;
  transition: color .25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px; left: 0;
  width: 0; height: 2px;
  background: var(--red);
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--white); }
.nav-link.active::after { width: 100%; }

/* Right side */
.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 42px;
  height: 42px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), 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); }

/* Mobile menu */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(18,8,8,.97);
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s var(--ease);
}
.mobile-menu.open { max-height: 520px; }

.mob-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 24px;
  color: rgba(255,255,255,.75);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, background .2s;
}
.mob-link:hover { color: var(--white); background: rgba(139,26,26,.18); }

.mob-cta {
  margin: 16px;
  padding: 13px 30px;
  background: var(--red);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -15% 0;
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(8,4,4,.72) 0%,
    rgba(8,4,4,.48) 45%,
    rgba(8,4,4,.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
  border: 1px solid rgba(255,255,255,.28);
  padding: 8px 22px 10px;
  margin-bottom: 2rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: fadeDown .8s var(--ease) both;
}
.hero-badge span {
  font-size: .62rem;
  color: rgba(255,255,255,.6);
}
.hero-badge strong {
  font-family: var(--f-serif);
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: .1em;
}

/* Title */
.hero-title {
  font-family: var(--f-serif);
  font-size: clamp(4.5rem, 12vw, 10.5rem);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: .15em;
  animation: fadeDown .9s .15s var(--ease) both;
}
.hero-title em { font-style: italic; color: var(--white); }

.hero-subtitle {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.8vw, 2rem);
  color: var(--gold);
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  animation: fadeDown 1s .25s var(--ease) both;
}

.hero-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 1.6rem;
  animation: scaleIn 1s .35s var(--ease) both;
}

.hero-tagline {
  font-size: clamp(.88rem, 1.6vw, 1.1rem);
  font-weight: 300;
  letter-spacing: .07em;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.4rem;
  animation: fadeUp .9s .42s var(--ease) both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .9s .5s var(--ease) both;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.45);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

@keyframes fadeDown  { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp    { from { opacity: 0; transform: translateY(20px);  } to { opacity: 1; transform: none; } }
@keyframes scaleIn   { from { opacity: 0; transform: scaleX(0); }          to { opacity: 1; transform: scaleX(1); } }
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════════════════
   TICKER
══════════════════════════════════════════════════════════════ */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
  border-top: 2px solid rgba(255,255,255,.1);
  border-bottom: 2px solid rgba(255,255,255,.1);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 38s linear infinite;
}
.ticker-item {
  padding: 0 2.2rem;
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-dot {
  color: rgba(255,255,255,.35);
  font-size: .65rem;
  padding: 0 4px;
  align-self: center;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   NOTRE HISTOIRE
══════════════════════════════════════════════════════════════ */
.histoire { background: var(--warm); }

.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.histoire-text { position: relative; }

.stats-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139,26,26,.15);
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--f-serif);
  font-size: 2.6rem;
  color: var(--red);
  line-height: 1;
}
.stat span {
  font-size: .72rem;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: .1em;
}
.stat-rule {
  width: 1px;
  height: 58px;
  background: rgba(139,26,26,.2);
}

/* Visuals */
.histoire-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 300px 200px;
  gap: 12px;
}
.vis-main {
  grid-column: 1 / -1;
  border-radius: var(--r);
  overflow: hidden;
}
.vis-secondary {
  grid-column: 1 / -1;
  border-radius: var(--r);
  overflow: hidden;
}
.vis-main img,
.vis-secondary img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.vis-main:hover img,
.vis-secondary:hover img { transform: scale(1.05); }

/* ══════════════════════════════════════════════════════════════
   LES 3 PILIERS
══════════════════════════════════════════════════════════════ */
.piliers { background: var(--cream); }

.piliers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pilier {
  background: var(--white);
  border-radius: var(--r);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pilier::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .35s var(--ease);
}
.pilier:hover { transform: translateY(-8px); box-shadow: var(--shadow-l); }
.pilier:hover::after { transform: scaleX(1); }

.pilier-icon {
  font-size: 3rem;
  margin-bottom: 1.4rem;
  line-height: 1;
}
.pilier h3 {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: .9rem;
}
.pilier p {
  color: var(--grey);
  font-size: .95rem;
  line-height: 1.75;
}

/* ══════════════════════════════════════════════════════════════
   LA CARTE / MENU
══════════════════════════════════════════════════════════════ */
.carte { background: var(--charcoal); color: var(--white); }

.carte-ambiance {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 60%, rgba(139,26,26,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 40%, rgba(139,26,26,.12) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Tabs ── */
.tabs {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.tab {
  padding: 10px 26px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px;
  color: rgba(255,255,255,.55);
  font-family: var(--f-sans);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s;
}
.tab:hover { background: rgba(255,255,255,.12); color: var(--white); }
.tab.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Menu grid ── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r);
  overflow: hidden;
}
.menu-item {
  padding: 1.15rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.menu-item:hover { background: rgba(255,255,255,.04); }
.menu-item:nth-child(even) { border-right: none; }
.menu-item:last-child,
.menu-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

.mi-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.mi-name {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1.03rem;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}
.mi-dots {
  flex: 1;
  min-width: 12px;
  border-bottom: 1px dotted rgba(255,255,255,.18);
  margin-bottom: 4px;
}
.mi-price {
  font-family: var(--f-sans);
  font-size: .88rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.mi-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.38);
  margin-top: 3px;
  line-height: 1.45;
}

.menu-note {
  text-align: center;
  margin-top: 2.5rem;
  color: rgba(255,255,255,.35);
  font-style: italic;
  font-size: .85rem;
  letter-spacing: .05em;
}

/* ── Desserts ── */
.desserts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.dessert-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  overflow: hidden;
}
.dessert-img { height: 200px; overflow: hidden; }
.dessert-img img { width: 100%; height: 100%; object-fit: cover; }
.dessert-body { padding: 1.2rem 1.3rem; }

/* ── Boissons ── */
.boissons-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: start;
}
.aperitif-showcase { flex-shrink: 0; }
.aperitif-heading {
  font-family: var(--f-elegant);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 1.2rem;
}
.aperitif-img-wrap {
  width: 340px;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}
.aperitif-img-wrap img { width: 100%; height: auto; }

/* ══════════════════════════════════════════════════════════════
   GALERIE
══════════════════════════════════════════════════════════════ */
.galerie { background: var(--warm); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 10px;
}

.g-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.g-item:hover img { transform: scale(1.09); }

.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(139,26,26,.85) 0%, transparent 55%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.4rem;
  transition: opacity .3s;
}
.g-item:hover .g-overlay { opacity: 1; }
.g-overlay p {
  color: var(--white);
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════════════════════
   NOS TARIFS
══════════════════════════════════════════════════════════════ */
.tarifs { background: var(--cream); }

.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
}
.tarif-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.tarif-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); }
.tarif-img img { width: 100%; height: auto; display: block; }
.tarif-label {
  padding: 1rem 1.3rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--dark);
  border-top: 3px solid var(--red);
  background: var(--white);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   LIVRAISON
══════════════════════════════════════════════════════════════ */
.livraison { background: var(--dark); }

.livraison-texture {
  position: absolute;
  inset: 0;
  background: url('../Brand_Assets/Image/474583848_629883006220329_6592662241826889972_n.jpg') center/cover;
  opacity: .05;
  pointer-events: none;
}

.livraison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.livraison-body {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 2rem;
}

.zones-block { margin-bottom: 2.5rem; }
.zones-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-family: var(--f-sans);
}
.zones-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.chip:hover { background: rgba(139,26,26,.4); color: var(--white); }

/* Livraison info card */
.livraison-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-l);
}
.lc-row {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.8rem 2rem;
}
.lc-icon { font-size: 1.7rem; flex-shrink: 0; line-height: 1; }
.lc-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lc-info strong {
  font-family: var(--f-sans);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2px;
}
.lc-info span {
  font-size: .95rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.lc-info a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .04em;
}
.lc-closed {
  color: var(--red) !important;
  font-weight: 700;
  font-size: .85rem !important;
}
.lc-sep {
  height: 1px;
  background: var(--cream);
  margin: 0 2rem;
}

/* ══════════════════════════════════════════════════════════════
   BANQUETS CTA
══════════════════════════════════════════════════════════════ */
.banquets {
  background: var(--red);
  position: relative;
  overflow: hidden;
}
.banquets::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(0,0,0,.25) 0%, transparent 70%);
  pointer-events: none;
}
.banquets-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 5vw, 2.5rem);
  max-width: 760px;
  margin: 0 auto;
}
.banquets-inner .section-label { color: rgba(255,255,255,.55); margin-bottom: 1rem; }
.banquets-inner h2 {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.4rem;
}
.banquets-inner h2 em { color: var(--gold-light); }
.banquets-inner p {
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.banquets-contact {
  font-size: 1.1rem !important;
  margin-bottom: 2.2rem !important;
}
.banquets-contact strong { color: var(--white); font-size: 1.2rem; }

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact { background: var(--warm); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.cd-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.cd-item strong {
  display: block;
  font-family: var(--f-sans);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.cd-item p {
  color: var(--grey);
  font-size: .95rem;
  line-height: 1.65;
}
.cd-link {
  display: inline-block;
  margin-top: 8px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: .05em;
  transition: color .2s;
}
.cd-link:hover { color: var(--red-hover); }
.cd-phone {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
}
.cd-closed {
  display: inline-block;
  margin-top: 4px;
  color: var(--red);
  font-size: .85rem;
  font-weight: 700;
}

/* Map placeholder */
.contact-map-wrap { }
.map-placeholder {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  height: 420px;
  box-shadow: var(--shadow-l);
}
.map-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.45) saturate(.6);
}
.map-overlay-card {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: var(--white);
}
.map-logo {
  width: 80px; height: 80px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
  margin-bottom: 4px;
}
.map-overlay-card p {
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  line-height: 1.55;
}
.map-overlay-card p:first-of-type {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: -4px;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer { background: var(--dark); }

.footer-top { padding: 5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
}

.footer-logo {
  width: 78px; height: 78px;
  border-radius: 4px;
  object-fit: cover;
  margin-bottom: 1.3rem;
}
.footer-brand p {
  color: rgba(255,255,255,.38);
  font-size: .9rem;
  line-height: 1.75;
  margin-top: .5rem;
}

.footer-nav,
.footer-infos {
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.footer-nav h4,
.footer-infos h4 {
  font-family: var(--f-sans);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer-nav a {
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-infos a,
.footer-infos p {
  color: rgba(255,255,255,.4);
  font-size: .9rem;
  line-height: 1.65;
}
.footer-infos a { transition: color .2s; }
.footer-infos a:hover { color: var(--white); }
.footer-closed { color: var(--red) !important; font-weight: 700; font-size: .85rem !important; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.4rem 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,.22);
  font-size: .78rem;
  letter-spacing: .05em;
}

/* ══════════════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(139,26,26,.5);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s, background .2s;
  z-index: 900;
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--red-hover); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (min-width: 900px) {
  .nav-brand-text { display: block; }
}

@media (max-width: 1024px) {
  .histoire-grid   { gap: 3.5rem; }
  .livraison-grid  { gap: 3rem; }
  .contact-grid    { gap: 3rem; }
  .gallery-grid    { grid-template-columns: repeat(3, 1fr); }
  .g-tall          { grid-row: span 2; }
  .g-wide          { grid-column: span 2; }
  .boissons-layout { grid-template-columns: 1fr; }
  .aperitif-img-wrap { width: 100%; max-width: 380px; margin: 0 auto; }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand    { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }

  .histoire-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .histoire-visuals { grid-template-rows: 240px 180px; }

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

  .menu-grid      { grid-template-columns: 1fr; }
  .menu-item:nth-child(even) { border-right: none; }
  .desserts-grid  { grid-template-columns: 1fr; gap: 1.2rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .g-tall  { grid-row: span 1; }
  .g-wide  { grid-column: span 1; }

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

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

  .contact-grid   { grid-template-columns: 1fr; }
  .map-placeholder { height: 320px; }

  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand   { grid-column: auto; }
}

@media (max-width: 520px) {
  .hero-title { font-size: clamp(3.5rem, 18vw, 6rem); }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .stats-row { flex-direction: column; gap: 1.5rem; }
  .stat-rule { width: 48px; height: 1px; }
  .tabs { gap: 6px; }
  .tab { padding: 8px 16px; font-size: .72rem; }
}
