/* ═══════════════════════════════════════════════════════
   AU BOIS D'ÉBÈNE — Design System v3.0
   Mobile-first · Responsive · Moderne
   123 Boulevard du Midi, 1000 Bruxelles
   auboisdebene.com | info@auboisdebene.com
═══════════════════════════════════════════════════════ */

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-b); color: var(--ebene); background: var(--blanc); overflow-x: hidden; line-height: 1.6; }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }

/* ── VARIABLES ──────────────────────────────────── */
:root {
  --ebene:   #2C1810;
  --ebene2:  #3d2418;
  --or:      #D4A017;
  --or2:     #b8880f;
  --terre:   #8B4513;
  --rouge:   #C0392B;
  --creme:   #FDF6EC;
  --creme2:  #f5ead8;
  --gris:    #6C757D;
  --gris-l:  #f0ece6;
  --blanc:   #FFFFFF;
  --font-h:  'Playfair Display', Georgia, serif;
  --font-b:  'Inter', system-ui, -apple-system, sans-serif;
  --shadow:  0 4px 24px rgba(44,24,16,.12);
  --shadow-lg: 0 12px 40px rgba(44,24,16,.18);
  --radius:  12px;
  --r-sm:    8px;
  --trans:   .25s ease;
  --header-h: 68px;
}

/* ── UTILITAIRES ─────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── BOUTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem; border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  cursor: pointer; border: none; transition: all var(--trans);
  white-space: nowrap; min-height: 44px;
  text-align: center; justify-content: center;
}
.btn-primary  { background: var(--or); color: var(--ebene); }
.btn-primary:hover  { background: var(--or2); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(212,160,23,.35); }
.btn-outline  { border: 2px solid var(--or); color: var(--or); background: transparent; }
.btn-outline:hover  { background: var(--or); color: var(--ebene); transform: translateY(-2px); }
.btn-dark     { background: var(--ebene); color: var(--blanc); }
.btn-dark:hover     { background: var(--ebene2); transform: translateY(-2px); }
.btn-white    { background: var(--blanc); color: var(--ebene); }
.btn-white:hover    { background: var(--creme); transform: translateY(-2px); }
.btn-rouge    { background: var(--rouge); color: var(--blanc); }
.btn-rouge:hover    { background: #a93226; transform: translateY(-2px); }
.btn-lg  { padding: .95rem 2.2rem; font-size: 1rem; }
.btn-sm  { padding: .48rem 1.1rem; font-size: .82rem; min-height: 38px; }

/* ── HEADER ──────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(44,24,16,.97);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  height: var(--header-h);
  box-shadow: 0 2px 16px rgba(0,0,0,.3);
  transition: background var(--trans);
}
.nav-inner {
  height: var(--header-h); display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.logo {
  display: flex; align-items: center; flex-shrink: 0;
  font-family: var(--font-h); font-size: 1.35rem;
  color: var(--blanc); letter-spacing: .3px;
}
.logo span { color: var(--or); }
.logo img { height: 42px; width: auto; filter: brightness(0) invert(1); }

/* Desktop nav — hidden on mobile */
.nav-links { display: none; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,.75); font-size: .87rem; font-weight: 500;
  transition: color var(--trans); padding: .3rem 0;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--or); border-bottom-color: var(--or); }
.nav-cta   { display: none; align-items: center; gap: .8rem; }
.nav-phone { color: rgba(255,255,255,.65); font-size: .82rem; white-space: nowrap; }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: .6rem;
  min-width: 44px; min-height: 44px; justify-content: center; align-items: center;
  border-radius: 6px; transition: background var(--trans);
}
.hamburger:hover { background: rgba(255,255,255,.1); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--blanc); border-radius: 2px; transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: rgba(44,24,16,.98);
  z-index: 999; flex-direction: column;
  padding: 1.5rem; gap: 0; overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.85); font-size: 1.15rem; font-weight: 500;
  padding: .9rem .5rem; border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--trans); display: flex; align-items: center; gap: .6rem;
}
.mobile-menu a:hover { color: var(--or); }
.mobile-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .8rem; }
.mobile-cta .btn { justify-content: center; }
.mobile-info {
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .88rem; color: rgba(255,255,255,.5);
  display: flex; flex-direction: column; gap: .5rem;
}
.mobile-info a { font-size: .88rem; color: rgba(255,255,255,.65); border: none !important; padding: 0 !important; }

/* ── HERO PAGE INTÉRIEURE ─────────────────────────── */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 1.25rem 3.5rem;
  background:
    linear-gradient(160deg, rgba(44,24,16,.92) 0%, rgba(139,69,19,.65) 60%, rgba(44,24,16,.85) 100%),
    url('https://images.unsplash.com/photo-1547592180-85f173990554?w=1400&q=80') center/cover no-repeat;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(to top, var(--blanc), transparent);
  pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero h1 {
  font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--blanc); margin-bottom: .7rem; line-height: 1.2;
}
.page-hero p {
  color: rgba(255,255,255,.8); font-size: 1rem; max-width: 540px;
  margin: 0 auto; line-height: 1.75;
}
.page-hero .section-tag { color: var(--or); margin-bottom: .6rem; }

/* ── SECTIONS ─────────────────────────────────────── */
section, .section { padding: 4rem 0; }
section.bg-creme, .bg-creme { background: var(--creme); }
.section-header { margin-bottom: 2.5rem; }
.section-header.center { text-align: center; }
.section-tag {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--terre);
  margin-bottom: .55rem; background: rgba(139,69,19,.1);
  padding: .28rem .9rem; border-radius: 50px;
}
.section-title {
  font-family: var(--font-h); font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  color: var(--ebene); line-height: 1.2; margin-bottom: .7rem;
}
.section-subtitle {
  font-size: .97rem; color: var(--gris); line-height: 1.75; max-width: 600px;
}
.section-header.center .section-subtitle { margin: 0 auto; }
.divider {
  width: 52px; height: 4px; background: var(--or);
  border-radius: 2px; margin: .8rem 0 1.2rem;
}
.section-header.center .divider { margin-left: auto; margin-right: auto; }

/* ── INFOS BAR ───────────────────────────────────── */
.infos-bar {
  background: var(--ebene); padding: .9rem 1.25rem;
  display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap;
}
.info-item {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.8); font-size: .82rem; white-space: nowrap;
}

/* ── CARTES PLATS ────────────────────────────────── */
.plats-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.4rem;
}
.plat-card {
  background: var(--blanc); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans);
  display: flex; flex-direction: column;
}
.plat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plat-img {
  height: 200px; background-size: cover; background-position: center;
  position: relative; flex-shrink: 0;
}
.plat-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: .68rem; font-weight: 700; padding: .28rem .8rem; border-radius: 50px;
}
.badge-rouge { background: var(--rouge); color: #fff; }
.badge-or    { background: var(--or); color: var(--ebene); }
.badge-vert  { background: #27ae60; color: #fff; }
.plat-body { padding: 1.2rem; flex: 1; display: flex; flex-direction: column; }
.plat-origine { font-size: .68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gris); margin-bottom: .25rem; }
.plat-name   { font-family: var(--font-h); font-size: 1.15rem; margin-bottom: .35rem; }
.plat-desc   { font-size: .87rem; color: var(--gris); line-height: 1.6; margin-bottom: .9rem; flex: 1; }
.plat-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; gap: .5rem; }
.plat-price  { font-size: 1.2rem; font-weight: 700; color: var(--terre); }
.allergenes  { font-size: .7rem; color: var(--gris); margin-top: .35rem; }

/* Allergen tags */
.allergen-tag {
  display: inline-block; background: #f5f5f5; border: 1px solid #ddd;
  border-radius: 4px; font-size: .65rem; padding: .12rem .42rem; margin: .1rem; color: var(--gris);
}

/* ── TABS / FILTRES ──────────────────────────────── */
.filter-bar {
  background: var(--ebene); padding: 1rem 1.25rem;
  display: flex; gap: .5rem; flex-wrap: wrap;
  position: sticky; top: var(--header-h); z-index: 99;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: .45rem 1rem; border-radius: 50px;
  border: 2px solid rgba(212,160,23,.5); background: transparent;
  color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 600;
  cursor: pointer; transition: all var(--trans); white-space: nowrap; min-height: 38px;
}
.filter-btn:hover, .filter-btn.active { background: var(--or); color: var(--ebene); border-color: var(--or); }

/* ── FORMULAIRES ─────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; color: var(--ebene); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem; min-height: 44px;
  border: 2px solid #e0d5cc; border-radius: var(--r-sm);
  font-size: .95rem; transition: border-color var(--trans); background: var(--blanc);
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--or); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.form-box {
  background: var(--blanc); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow);
}
.form-box h2 { font-family: var(--font-h); font-size: 1.4rem; margin-bottom: .4rem; }
.form-box p  { font-size: .9rem; color: var(--gris); margin-bottom: 1.5rem; }

/* ── MENU SECTIONS ───────────────────────────────── */
.menu-section { margin-bottom: 3.5rem; }
.cat-title {
  font-family: var(--font-h); font-size: 1.5rem; color: var(--ebene);
  padding-bottom: .5rem; border-bottom: 3px solid var(--or);
  display: inline-block; margin-bottom: .4rem;
}
.cat-sub { font-size: .88rem; color: var(--gris); margin-bottom: 1.5rem; margin-top: .4rem; }
.subcat-title {
  font-family: var(--font-h); font-size: 1.1rem; color: var(--or);
  border-left: 4px solid var(--or); padding-left: .75rem;
  margin-bottom: 1.2rem; margin-top: 1rem;
  text-transform: uppercase; letter-spacing: .04em;
}
.menu-note {
  background: #fff8e8; border: 1px solid rgba(212,160,23,.4);
  border-radius: var(--r-sm); padding: 1rem 1.2rem; margin-bottom: 2rem;
  font-size: .88rem; color: var(--ebene); line-height: 1.6;
}

/* ── MODE SELECTOR (Commander) ───────────────────── */
.mode-selector { background: var(--ebene); padding: 1.5rem 0; }
.mode-selector .container { display: flex; gap: .8rem; align-items: center; flex-wrap: wrap; }
.mode-label { color: var(--or); font-family: var(--font-h); font-size: 1rem; white-space: nowrap; }
.mode-btn {
  display: flex; align-items: center; gap: .6rem; padding: .75rem 1.4rem;
  border-radius: var(--r-sm); border: 2px solid rgba(255,255,255,.2);
  cursor: pointer; font-size: .9rem; font-weight: 600;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  transition: all var(--trans); min-height: 44px;
}
.mode-btn:hover, .mode-btn.active { border-color: var(--or); background: var(--or); color: var(--ebene); }

/* ── CONTACT CARDS ───────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.contact-card {
  background: var(--blanc); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow);
  display: flex; gap: 1rem; align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: var(--r-sm);
  background: var(--creme); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem;
}
.contact-card h3 { font-family: var(--font-h); font-size: 1rem; margin-bottom: .35rem; }
.contact-card p, .contact-card a { font-size: .88rem; color: var(--gris); line-height: 1.6; }
.contact-card a:hover { color: var(--or); }

/* ── TÉMOIGNAGES ─────────────────────────────────── */
.temoignages-grid { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
.temoignage {
  background: var(--blanc); border-radius: var(--radius); padding: 1.7rem;
  box-shadow: var(--shadow); border-left: 4px solid var(--or); position: relative;
}
.temoignage::before {
  content: '"'; position: absolute; top: .8rem; right: 1.2rem;
  font-family: var(--font-h); font-size: 3.5rem; color: var(--or);
  opacity: .12; line-height: 1; pointer-events: none;
}
.stars { color: var(--or); font-size: .95rem; margin-bottom: .7rem; letter-spacing: 2px; }
.temoignage-text { font-size: .9rem; color: var(--gris); line-height: 1.7; font-style: italic; margin-bottom: 1.1rem; }
.temoignage-author { display: flex; align-items: center; gap: .7rem; }
.author-avatar {
  width: 42px; height: 42px; min-width: 42px; border-radius: 50%;
  background: var(--terre); color: var(--blanc);
  font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.author-info strong { display: block; font-size: .88rem; }
.author-info span   { font-size: .77rem; color: var(--gris); }

/* ── GALERIE ─────────────────────────────────────── */
.galerie-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
}
.galerie-item {
  border-radius: var(--r-sm); overflow: hidden;
  background-size: cover; background-position: center;
  transition: transform .3s, filter .3s; cursor: pointer; aspect-ratio: 1/1;
}
.galerie-item:hover { transform: scale(1.02); filter: brightness(1.08); }
.galerie-item.tall  { aspect-ratio: 1/1.6; }

/* ── RÉSERVATION BANNER ──────────────────────────── */
.resa-banner {
  background: linear-gradient(135deg, var(--ebene) 0%, #4A2010 100%);
  text-align: center; padding: 5rem 1.25rem; position: relative; overflow: hidden;
}
.resa-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1200&q=40') center/cover;
  opacity: .06; pointer-events: none;
}
.resa-banner > .container { position: relative; }
.resa-banner h2 { font-family: var(--font-h); font-size: clamp(1.7rem, 4vw, 2.8rem); color: var(--blanc); margin-bottom: 1rem; }
.resa-banner p  { color: rgba(255,255,255,.8); font-size: 1rem; margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.resa-btns { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }

/* ── ZONES LIVRAISON ─────────────────────────────── */
.livraison-box {
  background: var(--creme); border-radius: var(--radius);
  padding: 1.7rem; margin-top: 2.5rem;
  border: 1px solid var(--creme2);
}
.livraison-box h3 { font-family: var(--font-h); font-size: 1.15rem; margin-bottom: 1.1rem; }
.zones-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.1rem; }
.zone-card {
  background: var(--blanc); border-radius: var(--r-sm); padding: 1.2rem;
  text-align: center; box-shadow: var(--shadow); border-top: 3px solid var(--or);
}
.zone-card .price { font-size: 1.5rem; font-weight: 700; color: var(--or); display: block; }
.zone-card p { font-size: .82rem; color: var(--gris); margin-top: .35rem; line-height: 1.5; }
.livraison-note { font-size: .84rem; color: var(--gris); line-height: 1.6; }
.livraison-note strong { color: var(--ebene); }

/* ── STEPS ───────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  background: var(--blanc); padding: 1.4rem; border-radius: var(--radius);
  box-shadow: var(--shadow); border-left: 4px solid var(--or);
}
.step-num {
  width: 50px; height: 50px; min-width: 50px; border-radius: 50%;
  background: var(--or); color: var(--ebene);
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-body h3 { font-family: var(--font-h); font-size: 1.05rem; margin-bottom: .35rem; }
.step-body p  { font-size: .87rem; color: var(--gris); line-height: 1.6; }

/* ── FOOTER ──────────────────────────────────────── */
footer { background: var(--ebene); color: rgba(255,255,255,.75); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.2rem; margin-bottom: 2.2rem; }
.footer-logo { font-family: var(--font-h); font-size: 1.35rem; color: var(--blanc); margin-bottom: .7rem; }
.footer-logo span { color: var(--or); }
.footer-logo img { height: 38px; width: auto; filter: brightness(0) invert(1); margin-bottom: .5rem; }
.footer-tagline { font-size: .84rem; line-height: 1.75; margin-bottom: 1.2rem; max-width: 300px; }
.social-row { display: flex; gap: .6rem; }
.social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,.1);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; font-size: .82rem; font-weight: 700;
  transition: background var(--trans), color var(--trans); color: var(--blanc);
}
.social-btn:hover { background: var(--or); color: var(--ebene); }
.footer-col h4 {
  color: var(--blanc); font-size: .88rem; font-weight: 700;
  margin-bottom: .9rem; padding-bottom: .35rem;
  border-bottom: 2px solid var(--or); display: inline-block; letter-spacing: .5px;
}
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col ul li { font-size: .84rem; }
.footer-col ul li a { color: rgba(255,255,255,.55); transition: color var(--trans); }
.footer-col ul li a:hover { color: var(--or); }
.footer-col ul li.hl { color: var(--or); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .7rem; font-size: .78rem; color: rgba(255,255,255,.3);
}
.footer-legal { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,.3); transition: color var(--trans); }
.footer-legal a:hover { color: var(--blanc); }

/* ── WHATSAPP BUTTON ─────────────────────────────── */
.wa-float {
  position: fixed; bottom: 1.4rem; right: 1.4rem; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--blanc);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--trans), box-shadow var(--trans);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }
.wa-float svg { width: 30px; height: 30px; fill: var(--blanc); }
.wa-tooltip {
  position: absolute; right: 64px; top: 50%; transform: translateY(-50%);
  background: var(--ebene); color: var(--blanc); font-size: .78rem;
  padding: .38rem .75rem; border-radius: 6px; white-space: nowrap;
  pointer-events: none; opacity: 0; transition: opacity var(--trans);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── COOKIE BANNER ───────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: var(--ebene); color: rgba(255,255,255,.85);
  padding: 1rem 1.25rem; display: none;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-banner.show { display: flex; }
.cookie-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.cookie-inner p { font-size: .82rem; flex: 1; min-width: 200px; line-height: 1.6; }
.cookie-inner p a { color: var(--or); }
.cookie-btns { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-accept { background: var(--or); color: var(--ebene); border: none; border-radius: 6px; padding: .5rem 1.1rem; font-weight: 600; font-size: .84rem; cursor: pointer; min-height: 38px; }
.cookie-refuse { background: transparent; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.2); border-radius: 6px; padding: .5rem 1.1rem; font-size: .84rem; cursor: pointer; min-height: 38px; }

/* ── SCROLL ANIMATION ────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════
   TABLETTE (≥600px)
══════════════════════════════════════════════════ */
@media (min-width: 600px) {
  .plats-grid  { grid-template-columns: repeat(2, 1fr); }
  .temoignages-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .galerie-grid { grid-template-columns: repeat(3, 1fr); }
  .galerie-item.tall { aspect-ratio: unset; grid-row: span 2; min-height: 300px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row    { grid-template-columns: 1fr 1fr; }
  .resa-btns   { flex-direction: row; }
}

/* ══════════════════════════════════════════════════
   DESKTOP (≥900px)
══════════════════════════════════════════════════ */
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta   { display: flex; }
  .hamburger { display: none; }

  .plats-grid { grid-template-columns: repeat(3, 1fr); }
  .temoignages-grid { grid-template-columns: repeat(3, 1fr); }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .step {
    flex-direction: column; align-items: center;
    text-align: center; border-left: none; border-top: 4px solid var(--or);
  }
  .step-body { text-align: center; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: calc(var(--header-h) + 4rem) 1.25rem 4rem; }
}

@media (min-width: 1200px) {
  .container { padding: 0 2rem; }
}

/* ══════════════════════════════════════════════════
   PETITS TÉLÉPHONES (<400px)
══════════════════════════════════════════════════ */
@media (max-width: 399px) {
  .zones-grid  { grid-template-columns: 1fr; }
  .hero-cta    { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .resa-btns   { flex-direction: column; }
  .resa-btns .btn { justify-content: center; }
  section, .section { padding: 3rem 0; }
  .btn-lg { padding: .85rem 1.6rem; font-size: .95rem; }
}

/* ── Shared JS helpers (injected via data-attr) ── */
[data-hidden] { display: none !important; }
