/* ═══════════════════════════════════════════════════
   Le Comptoir des Halles — style.css
   Thème : Brasserie parisienne · Sombre & doré
   ═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

:root {
  --noir:      #0e0c09;
  --noir-2:    #161310;
  --noir-3:    #1e1a15;
  --or:        #c9a84c;
  --or-light:  #e2c47a;
  --or-pale:   rgba(201,168,76,0.12);
  --or-border: rgba(201,168,76,0.22);
  --creme:     #f5f0e8;
  --creme-2:   #ede5d4;
  --muted:     rgba(245,240,232,0.45);
  --text:      #f5f0e8;
  --radius:    4px;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--noir);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--noir); }
::-webkit-scrollbar-thumb { background: var(--or-border); border-radius: 2px; }

/* ══════════════════════
   NAV
══════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  transition: all 0.5s var(--ease);
}
nav.scrolled {
  background: rgba(14,12,9,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--or-border);
  padding: 1rem 4rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--creme); text-decoration: none;
  display: flex; flex-direction: column; line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.55rem; font-weight: 400; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--or); font-family: 'Jost', sans-serif;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color 0.3s ease; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--or);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { color: var(--creme); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-resa {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--or);
  border: 1px solid var(--or-border); padding: 0.6rem 1.4rem;
  border-radius: var(--radius); text-decoration: none;
  transition: all 0.3s var(--ease);
}
.nav-resa:hover { background: var(--or); color: var(--noir); }

/* ══════════════════════
   HERO
══════════════════════ */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(to bottom, rgba(14,12,9,0.3) 0%, rgba(14,12,9,0.55) 60%, rgba(14,12,9,1) 100%),
    linear-gradient(135deg, #1a1208 0%, #0e0c09 40%, #12100c 100%);
}
/* Placeholder image — remplacé par une vraie photo Unsplash */
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: 0.55; z-index: -1;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom { from{transform:scale(1.05)} to{transform:scale(1.12)} }

/* Grain texture */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5; pointer-events: none;
}

.hero-inner {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 0 2rem;
}
.hero-eyebrow {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--or);
  margin-bottom: 1.8rem; display: flex; align-items: center; justify-content: center; gap: 1rem;
  animation: fadeUp 1s var(--ease) 0.2s both;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 40px; height: 1px; background: var(--or-border);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300; line-height: 1.0; letter-spacing: -0.01em;
  color: var(--creme); margin-bottom: 0.4rem;
  animation: fadeUp 1s var(--ease) 0.35s both;
}
.hero-title em { font-style: italic; color: var(--or-light); }
.hero-title-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 300; letter-spacing: 0.18em;
  color: var(--muted); margin-bottom: 2.5rem;
  animation: fadeUp 1s var(--ease) 0.5s both;
}
.hero-divider {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s var(--ease) 0.65s both;
}
.hero-divider-line { width: 60px; height: 1px; background: var(--or-border); }
.hero-divider-ornament { color: var(--or); font-size: 0.8rem; }
.hero-sub {
  font-size: 1rem; color: var(--muted); max-width: 480px; margin: 0 auto 3rem;
  line-height: 1.8; font-weight: 300;
  animation: fadeUp 1s var(--ease) 0.75s both;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s var(--ease) 0.9s both;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} }

.btn-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--or); color: var(--noir);
  padding: 1rem 2.4rem; border-radius: var(--radius);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-gold:hover { background: var(--or-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.25); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: var(--creme);
  padding: 1rem 2.4rem; border-radius: var(--radius);
  font-size: 0.78rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(245,240,232,0.25); cursor: pointer;
  transition: all 0.3s var(--ease);
}
.btn-outline:hover { border-color: var(--creme); background: rgba(245,240,232,0.06); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  animation: fadeUp 1s var(--ease) 1.2s both;
}
.hero-scroll span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--or-border), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.6)} 50%{opacity:1;transform:scaleY(1)} }

/* ══════════════════════
   SECTION BASE
══════════════════════ */
section { padding: 7rem 4rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--or); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--or); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 300;
  line-height: 1.1; letter-spacing: 0.01em; color: var(--creme);
  margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--or-light); }
.section-sub { font-size: 0.95rem; color: var(--muted); line-height: 1.8; font-weight: 300; max-width: 480px; }

/* ── ORNEMENT SÉPARATEUR ── */
.ornament {
  display: flex; align-items: center; gap: 1.2rem;
  margin: 5rem auto; max-width: 300px; justify-content: center;
}
.ornament-line { flex: 1; height: 1px; background: var(--or-border); }
.ornament-diamond {
  width: 7px; height: 7px; border: 1px solid var(--or);
  transform: rotate(45deg); flex-shrink: 0;
}

/* ══════════════════════
   AMBIANCE
══════════════════════ */
#ambiance { background: var(--noir); padding-top: 6rem; }
.ambiance-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center;
}
.ambiance-text { padding-right: 2rem; }
.ambiance-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-style: italic; font-weight: 300;
  color: var(--or-light); line-height: 1.5; margin: 2rem 0;
  padding-left: 1.5rem; border-left: 1px solid var(--or-border);
}
.ambiance-photos {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 0.8rem; height: 480px;
}
.photo-block {
  border-radius: 2px; overflow: hidden; position: relative;
  background: var(--noir-3);
}
.photo-block:first-child { grid-row: span 2; }
.photo-block img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease); display: block;
}
.photo-block:hover img { transform: scale(1.06); }
/* Styles photo-placeholder supprimés — images Unsplash directes */
.photo-block-1 { background: linear-gradient(135deg, #1a1208, #2a1f0e); }
.photo-block-2 { background: linear-gradient(135deg, #120e08, #1e160a); }
.photo-block-3 { background: linear-gradient(135deg, #16120a, #22180c); }

/* ══════════════════════
   MENU — onglets CSS pur (radio inputs)
══════════════════════ */
#menu { background: var(--noir-2); }

/* Cache les radio inputs */
.menu-radio { display: none; }

/* Wrapper global */
.menu-tabs { position: relative; }

/* Barre des labels */
.menu-tabs-labels {
  display: flex; gap: 0; margin-bottom: 3.5rem;
  border-bottom: 1px solid var(--or-border);
}
.menu-tab {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
  padding: 0.8rem 2rem; cursor: pointer;
  transition: all 0.3s ease; position: relative;
  user-select: none;
}
.menu-tab::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 1px; background: var(--or);
  transform: scaleX(0); transition: transform 0.3s var(--ease);
}
.menu-tab:hover { color: var(--creme); }

/* Tous les panels cachés par défaut */
.menu-panel { display: none; }

/* CSS pur : affiche le bon panel selon le radio coché */
#tab-entrees:checked  ~ .menu-tabs-labels label[for="tab-entrees"],
#tab-plats:checked    ~ .menu-tabs-labels label[for="tab-plats"],
#tab-desserts:checked ~ .menu-tabs-labels label[for="tab-desserts"],
#tab-vins:checked     ~ .menu-tabs-labels label[for="tab-vins"] {
  color: var(--or);
}
#tab-entrees:checked  ~ .menu-tabs-labels label[for="tab-entrees"]::after,
#tab-plats:checked    ~ .menu-tabs-labels label[for="tab-plats"]::after,
#tab-desserts:checked ~ .menu-tabs-labels label[for="tab-desserts"]::after,
#tab-vins:checked     ~ .menu-tabs-labels label[for="tab-vins"]::after {
  transform: scaleX(1);
}
#tab-entrees:checked  ~ #entrees,
#tab-plats:checked    ~ #plats,
#tab-desserts:checked ~ #desserts,
#tab-vins:checked     ~ #vins {
  display: grid;
}

/* Layout interne des panels */
.menu-panel { grid-template-columns: 1fr 1fr; gap: 0; }
.menu-category { padding: 2rem 3rem 2rem 0; }
.menu-category:nth-child(even) { padding: 2rem 0 2rem 3rem; border-left: 1px solid var(--or-border); }
.menu-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; font-style: italic; font-weight: 400;
  color: var(--or-light); margin-bottom: 1.8rem; letter-spacing: 0.04em;
}
.menu-item { padding: 1rem 0; border-bottom: 1px solid rgba(201,168,76,0.08); }
.menu-item:last-child { border-bottom: none; }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.3rem; }
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--creme); letter-spacing: 0.02em;
}
.menu-item-price {
  font-size: 0.88rem; font-weight: 400; color: var(--or); letter-spacing: 0.04em;
}
.menu-item-desc { font-size: 0.8rem; color: var(--muted); font-weight: 300; line-height: 1.5; }
.menu-note {
  margin-top: 3rem; padding: 1.4rem 2rem;
  border: 1px solid var(--or-border); border-radius: var(--radius);
  background: var(--or-pale); text-align: center;
}
.menu-note p { font-size: 0.82rem; color: var(--muted); font-weight: 300; line-height: 1.7; }
.menu-note strong { color: var(--or-light); }

/* ══════════════════════
   GALERIE
══════════════════════ */
#galerie { background: var(--noir); padding-bottom: 5rem; }
.galerie-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; }
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 0.6rem;
}
.galerie-item {
  overflow: hidden; border-radius: 2px;
  background: var(--noir-3); position: relative; cursor: pointer;
}
.galerie-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galerie-item:nth-child(4) { grid-column: span 2; }
.galerie-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); display: block; }
.galerie-item:hover img { transform: scale(1.08); }
.galerie-item-overlay {
  position: absolute; inset: 0; background: rgba(14,12,9,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease;
}
.galerie-item:hover .galerie-item-overlay { opacity: 1; }
.galerie-item-overlay span {
  font-size: 1.5rem; color: var(--or);
}
/* Placeholders galerie supprimés — images Unsplash directes */

/* ══════════════════════
   INFOS PRATIQUES
══════════════════════ */
#infos { background: var(--noir-2); }
.infos-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4rem; }
.info-block { }
.info-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 400; font-style: italic;
  color: var(--or-light); margin-bottom: 1.5rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--or-border);
}
.info-row { display: flex; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid rgba(245,240,232,0.05); }
.info-row:last-child { border-bottom: none; }
.info-day { font-size: 0.82rem; color: var(--muted); font-weight: 300; }
.info-hours { font-size: 0.82rem; color: var(--creme); font-weight: 400; }
.info-closed { font-size: 0.82rem; color: rgba(245,240,232,0.2); font-weight: 300; font-style: italic; }

.info-address { font-size: 0.88rem; color: var(--creme); line-height: 1.9; font-weight: 300; }
.info-address a { color: var(--or); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.06em; }
.info-address a:hover { color: var(--or-light); }

.info-contact-item { display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(245,240,232,0.05); }
.info-contact-item:last-child { border-bottom: none; }
.info-contact-icon { font-size: 0.85rem; width: 20px; text-align: center; flex-shrink: 0; }
.info-contact-text { font-size: 0.85rem; color: var(--creme); font-weight: 300; }
.info-contact-text a { color: var(--creme); text-decoration: none; }
.info-contact-text a:hover { color: var(--or); }

/* MAP PLACEHOLDER */
.map-placeholder {
  margin-top: 4rem; height: 280px; border-radius: var(--radius);
  background: var(--noir-3); border: 1px solid var(--or-border);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 0.8rem; color: var(--or-border);
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  position: relative; overflow: hidden;
}
.map-placeholder::before {
  content: '';  position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(201,168,76,0.03) 30px, rgba(201,168,76,0.03) 31px),
              repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(201,168,76,0.03) 30px, rgba(201,168,76,0.03) 31px);
}
.map-pin { font-size: 1.5rem; position: relative; z-index: 1; }

/* ══════════════════════
   AVIS
══════════════════════ */
#avis { background: var(--noir); }
.avis-header { text-align: center; margin-bottom: 4rem; }
.avis-header .section-label { justify-content: center; }
.avis-header .section-label::before { display: none; }
.avis-stars { display: flex; justify-content: center; gap: 0.3rem; margin: 0.8rem 0; }
.avis-stars span { color: var(--or); font-size: 1rem; }
.avis-global { font-size: 0.8rem; color: var(--muted); }
.avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.avis-card {
  background: var(--noir-2); border: 1px solid var(--or-border);
  border-radius: var(--radius); padding: 2rem;
  transition: all 0.4s var(--ease);
}
.avis-card:hover { background: var(--noir-3); border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.avis-card-stars { display: flex; gap: 0.2rem; margin-bottom: 1rem; }
.avis-card-stars span { color: var(--or); font-size: 0.85rem; }
.avis-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic; font-weight: 300;
  color: var(--creme); line-height: 1.6; margin-bottom: 1.5rem;
}
.avis-card-author { display: flex; align-items: center; gap: 0.8rem; }
.avis-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--or-pale); border: 1px solid var(--or-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 500; color: var(--or); flex-shrink: 0;
}
.avis-name { font-size: 0.82rem; font-weight: 500; color: var(--creme); }
.avis-date { font-size: 0.72rem; color: var(--muted); }

/* ══════════════════════
   RÉSERVATION
══════════════════════ */
#reservation {
  background: var(--noir-2);
  position: relative; overflow: hidden;
}
#reservation::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05), transparent 70%);
  pointer-events: none;
}
.resa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.resa-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.form-field input, .form-field select, .form-field textarea {
  background: rgba(245,240,232,0.04); border: 1px solid var(--or-border);
  color: var(--creme); border-radius: var(--radius);
  padding: 0.9rem 1.1rem; font-family: 'Jost', sans-serif; font-size: 0.9rem; font-weight: 300;
  transition: all 0.3s ease; appearance: none; -webkit-appearance: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(245,240,232,0.2); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--or); background: rgba(201,168,76,0.05);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(201,168,76,0.5)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-field select option { background: var(--noir-2); color: var(--creme); }
.form-field textarea { resize: vertical; min-height: 100px; }
.resa-submit { margin-top: 0.5rem; }
.resa-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 0.8rem; font-weight: 300; }

/* ══════════════════════
   FOOTER
══════════════════════ */
footer {
  background: #080604;
  border-top: 1px solid var(--or-border);
  padding: 4rem 4rem 2rem;
}
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.footer-brand { }
.footer-logo-full {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600; color: var(--creme);
  letter-spacing: 0.04em; display: block; margin-bottom: 0.3rem;
}
.footer-logo-tagline {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--or); display: block; margin-bottom: 1.2rem;
}
.footer-brand-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

.footer-col-title {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--or); margin-bottom: 1.2rem; font-weight: 400;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul a {
  font-size: 0.82rem; color: var(--muted); text-decoration: none;
  transition: color 0.2s; font-weight: 300;
}
.footer-col ul a:hover { color: var(--creme); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 2rem; font-size: 0.75rem; color: rgba(245,240,232,0.2);
}
.footer-bottom a { color: rgba(245,240,232,0.2); text-decoration: none; }
.footer-bottom a:hover { color: var(--or); }
.footer-credit { font-size: 0.7rem; }
.footer-credit a { color: var(--or); }

/* ══════════════════════
   REVEAL ANIMATIONS
   Les éléments sont visibles par défaut.
   La classe .js-loaded (ajoutée par le JS) active les animations.
══════════════════════ */
.js-loaded .reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.22s; }
.reveal-d3 { transition-delay: 0.34s; }
.reveal-d4 { transition-delay: 0.46s; }
.js-loaded .reveal-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js-loaded .reveal-left.visible { opacity: 1; transform: translateX(0); }
.js-loaded .reveal-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.js-loaded .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ══════════════════════
   RESPONSIVE
══════════════════════ */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .ambiance-grid { grid-template-columns: 1fr; }
  .ambiance-photos { height: 320px; }
  .menu-panel { grid-template-columns: 1fr; }
  .menu-category:nth-child(even) { padding: 2rem 0; border-left: none; border-top: 1px solid var(--or-border); }
  .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(4, 180px); }
  .galerie-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .galerie-item:nth-child(4) { grid-column: span 1; }
  .infos-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .avis-grid { grid-template-columns: 1fr; }
  .resa-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
}
