/* ============================================================
   LE CARRÉ DAKAR — Feuille de style principale — REDESIGN 2026
   ============================================================ */

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

/* ---- 2. VARIABLES — LIGHT MODE ---- */
:root {
  --bg:          #FFFFFF;
  --bg-2:        #F0F8FF;
  --bg-3:        #E1F3FF;
  --bg-card:     #FFFFFF;
  --blue:        #87CEFF;
  --blue-deep:   #1B7BC4;
  --blue-dim:    rgba(135,206,255,0.18);
  --gold:        #C09860;
  --gold-dim:    rgba(192,152,96,0.15);
  --terracotta:  #C4714A;
  --text:        #111111;
  --text-dim:    #404040;
  --text-muted:  #777777;
  --line:        rgba(0,0,0,0.10);
  --line-blue:   rgba(135,206,255,0.5);
  --whatsapp:    #25D366;
  --nav-height:  76px;
  --transition:  0.3s ease;
}

/* ---- 3. RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--text-dim);
  background: var(--bg);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ---- LOGO IMAGE ---- */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}


img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
section { position: relative; }

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--text);
  line-height: 1.1;
}
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--text);
  line-height: 1.15;
}
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--text);
  line-height: 1.3;
}

p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.8;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- 4. LABELS / ÉTIQUETTES ---- */
.label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 14px;
}
.label-white { color: var(--text); }

/* ---- 5. BOUTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 13px 28px;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--terracotta);
  color: #fff;
}
.btn-primary:hover {
  background: #b35f3a;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.link-arrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  transition: gap var(--transition), opacity var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-arrow:hover { opacity: 0.75; gap: 10px; }

/* ---- 6. NAVIGATION ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  padding: 0 40px;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--line-blue);
  box-shadow: 0 2px 20px rgba(135,206,255,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
/* Logo now handled by .nav-logo-img above */
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--blue);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--blue); }
.nav-links a.active::after { width: 100%; }

.btn-reserve-nav {
  border: 1px solid var(--terracotta) !important;
  color: var(--terracotta) !important;
  background: transparent !important;
  border-radius: 3px !important;
  padding: 9px 22px !important;
  font-weight: 500 !important;
  transition: background var(--transition), color var(--transition) !important;
}
.btn-reserve-nav::after { display: none !important; }
.btn-reserve-nav:hover {
  background: var(--terracotta) !important;
  color: #fff !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--blue); }

/* ---- 7. HERO (index) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,23,32,0.92) 0%, rgba(11,23,32,0.65) 50%, rgba(11,23,32,0.2) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(32px, 8vw, 120px);
  max-width: 780px;
}
.hero-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  border: 1px solid var(--line-blue);
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(242,237,228,0.72);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- 8. SECTION HEADERS ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 520px;
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---- 9. SECTION SIGNATURES ---- */
.section-signatures {
  background: var(--bg-2);
  padding: 100px 0;
}
.cards-asymmetric {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 24px;
  align-items: end;
}
.plat-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.plat-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
}
.plat-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.plat-card.featured img {
  height: 290px;
}
.plat-card-body {
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.plat-card-body h3 {
  font-size: 1.1rem;
}
.plat-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.plat-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--blue-deep);
  text-align: right;
  display: block;
  margin-top: 8px;
}

/* ---- 10. SECTION EXPÉRIENCE ---- */
.section-experience {
  background: var(--bg);
  padding: 100px 0;
}
.experience-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 72px;
  align-items: center;
}
.experience-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(135,206,255,0.25);
}
.experience-content h2 { margin-bottom: 20px; }
.experience-content > p { margin-bottom: 40px; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.feature-item {}
.feature-dash {
  display: inline-block;
  color: var(--blue);
  font-weight: 400;
  margin-right: 8px;
}
.feature-item h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}
.feature-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 20px;
}

/* ---- 11. SECTION BRUNCH PREVIEW ---- */
.section-brunch-preview {
  background: var(--bg-3);
  padding: 100px 0;
}
.brunch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.brunch-content h2 { margin-bottom: 20px; }
.brunch-content > p { margin-bottom: 24px; }
.price-badge {
  display: inline-block;
  border: 1px solid var(--blue);
  color: var(--blue-deep);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 10px 20px;
  margin-bottom: 28px;
  border-radius: 2px;
}
.brunch-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
}

/* ---- 12. TÉMOIGNAGES ---- */
.section-testimonials {
  background: var(--bg-2);
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 2px solid var(--blue);
  border-radius: 0 0 8px 8px;
  padding: 28px;
}
.testimonial-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--blue);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
  border: none;
  padding: 0;
}
.testimonial-author {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---- 13. HERO MINI (pages internes) ---- */
.hero-mini {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
}
.hero-mini-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-mini-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,23,32,0.92) 0%, rgba(11,23,32,0.5) 60%, rgba(11,23,32,0.25) 100%);
  z-index: 1;
}
.hero-mini-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(32px, 6vw, 120px);
}
.hero-mini-content h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: #fff;
}

/* ---- 14. MENU TABS — LIGHT STYLE ---- */
.menu-tabs-section {
  background: #FFFFFF;
  padding: 72px 0 100px;
}

/* Tabs nav */
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(135,206,255,0.4);
  margin-bottom: 64px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 clamp(20px, 4vw, 80px);
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 14px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(26,26,46,0.35);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  margin-bottom: -1px;
}
.tab-btn:hover { color: rgba(26,26,46,0.75); }
.tab-btn.active {
  color: var(--blue-deep);
  border-bottom-color: var(--blue);
}

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

.tab-panel-header {
  text-align: center;
  margin-bottom: 56px;
}
.tab-panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  margin-bottom: 0;
}
.tab-panel-subtitle {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  margin-top: 8px;
}

/* 2-column menu grid with center divider */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}
.menu-grid::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(135,206,255,0.35);
}

/* Individual item */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 48px 28px 0;
  border-bottom: none;
  gap: 24px;
}
.menu-item:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
}
.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.3;
}
.menu-item-desc {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: normal;
  line-height: 1.5;
}
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--blue-deep);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

/* Accompaniments */
.menu-accompaniment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.menu-accomp-item {
  display: flex;
  align-items: center;
  padding: 20px 32px 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  gap: 12px;
}
.menu-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 32px;
  padding: 16px 20px;
  border: 1px solid rgba(135,206,255,0.3);
  border-radius: 2px;
}

/* ---- 15. BOISSONS ---- */
.drinks-section {
  background: var(--bg-2);
  padding: 80px 0 100px;
}
.drinks-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--blue-deep);
  text-transform: uppercase;
  letter-spacing: 0.35em;
  text-align: center;
  margin-bottom: 0;
}
.drinks-section-sub {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 64px;
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 8px;
}
.drinks-block { margin-bottom: 52px; }
.drinks-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--blue-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(135,206,255,0.4);
}
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  gap: 0;
}
.drinks-grid::after {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: rgba(135,206,255,0.3);
}
.drink-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 40px 20px 0;
  border-bottom: none;
  gap: 16px;
}
.drink-item:nth-child(even) {
  padding-left: 40px;
  padding-right: 0;
}
.drink-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--text);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.drink-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: block;
  margin-top: 3px;
}
.drink-price {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--blue-deep);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---- 16. HISTOIRE PAGE ---- */
.histoire-main {
  background: var(--bg);
  padding: 80px 0 100px;
}
.histoire-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  color: var(--text);
  text-align: center;
  border: none;
  padding: 0 0 56px;
  max-width: 700px;
  margin: 0 auto;
}
.histoire-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}
.histoire-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}
.histoire-feature {
  border: 1px solid var(--line);
  border-top: 2px solid var(--blue);
  border-radius: 0 0 6px 6px;
  padding: 28px 24px;
  background: var(--bg-card);
  transition: border-top-color var(--transition);
}
.histoire-feature:hover { border-top-color: var(--blue); }
.histoire-feature-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 12px;
}
.histoire-feature h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.histoire-feature p { font-size: 0.85rem; color: var(--text-muted); }
.histoire-fullbleed {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
}
.histoire-fullbleed img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Galerie */
.section-galerie {
  background: var(--bg-2);
  padding: 80px 0 100px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 3px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }

/* Stats */
.section-stats {
  background: var(--bg-3);
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--blue);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Histoire CTA */
.histoire-cta {
  background: var(--bg-2);
  padding: 80px 0;
  text-align: center;
}
.histoire-cta h2 { margin-bottom: 20px; }
.histoire-cta p { max-width: 520px; margin: 0 auto 36px; }
.histoire-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- 17. BRUNCH PAGE ---- */
.brunch-main {
  background: var(--bg);
  padding: 80px 0 100px;
}
.brunch-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.brunch-img-col img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 8px;
}
.brunch-text h2 { margin-bottom: 20px; }
.brunch-text > p { margin-bottom: 20px; }
.brunch-price-big {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--blue-deep);
  border: 1px solid var(--blue);
  display: inline-block;
  padding: 12px 24px;
  margin: 12px 0 24px;
  border-radius: 2px;
}
.brunch-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.buffet-section {
  background: var(--bg-2);
  padding: 80px 0 100px;
}
.buffet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.buffet-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.buffet-item:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}
.buffet-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 14px;
}
.buffet-item h3 { margin-bottom: 8px; font-size: 1.05rem; }
.buffet-item p { font-size: 0.83rem; color: var(--text-muted); }

.brunch-cta-section {
  background: var(--bg-3);
  padding: 80px 0;
  text-align: center;
}
.brunch-cta-section h2 {
  font-style: italic;
  margin-bottom: 28px;
}

/* ---- 18. CONTACT PAGE ---- */
.contact-main {
  background: var(--bg);
  padding: 80px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-grid h2 { margin-bottom: 40px; }
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-info-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-text h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 4px;
}
.contact-info-text p,
.contact-info-text a {
  font-size: 0.92rem;
  color: var(--text-dim);
  transition: color var(--transition);
}
.contact-info-text a:hover { color: var(--blue); }
.contact-hours-table { width: 100%; }
.contact-hours-table td {
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text-dim);
}
.contact-hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}
.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-container iframe {
  width: 100%;
  height: 480px;
  display: block;
  filter: grayscale(30%) brightness(0.85);
}

/* Reservation section */
.reservation-section {
  background: var(--bg-2);
  padding: 80px 0;
  text-align: center;
}
.reservation-section h2 { margin-bottom: 16px; }
.reservation-section > p { max-width: 480px; margin: 0 auto 32px; }
.reservation-sub {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.reservation-sub a {
  color: var(--blue);
  transition: opacity var(--transition);
}
.reservation-sub a:hover { opacity: 0.7; }

/* ---- 19. FAQ ---- */
.faq-section {
  background: var(--bg);
  padding: 80px 0 100px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--text);
  text-align: left;
  gap: 16px;
}
.faq-icon {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform var(--transition);
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.92rem;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- 20. FOOTER ---- */
.footer {
  background: #070B0F;
  padding: 72px 0 0;
  border-top: 1px solid rgba(135,206,255,0.3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.50);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-hours li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 8px;
}
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.footer-contact-item span:first-child { font-size: 0.85rem; }
.footer-contact-item span,
.footer-contact-item a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  transition: color var(--transition);
}
.footer-contact-item a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* ---- 21. WHATSAPP FLOATING ---- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

/* ---- 22. SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---- 24. ÉVÉNEMENTS — BANNIÈRE ACCUEIL ---- */
.events-banner-section {
  background: var(--bg-2);
  padding: 72px 0;
  border-top: 1px solid var(--line-blue);
  border-bottom: 1px solid var(--line-blue);
}
.ev-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.ev-banner-img-col img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.ev-banner-content { display: flex; flex-direction: column; gap: 0; }
.ev-banner-content h2 { margin: 8px 0 16px; }
.ev-banner-desc { font-size: .95rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 12px; }
.ev-banner-date { font-size: .85rem; font-weight: 500; color: var(--blue-deep); margin-bottom: 8px; }
.ev-banner-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 24px;
}
.ev-banner-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

/* ---- 25. ÉVÉNEMENTS — PAGE ÉVÉNEMENTS ---- */
.events-page-section {
  background: var(--bg);
  padding: 80px 0 64px;
}
.events-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.ev-card {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--bg-2);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ev-card:nth-child(even) { direction: rtl; }
.ev-card:nth-child(even) > * { direction: ltr; }
.ev-card-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.ev-card-body {
  padding: 40px 40px 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ev-card:nth-child(even) .ev-card-body { padding: 40px 16px 40px 40px; }
.ev-card-badge {
  display: inline-block;
  background: #d4f5e2;
  color: #1a7a46;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 4px 12px;
  border-radius: 20px;
  width: fit-content;
}
.ev-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--text);
  margin: 0;
}
.ev-card-dates {
  font-size: .85rem;
  color: var(--blue-deep);
  font-weight: 500;
  line-height: 1.6;
}
.ev-card-desc { font-size: .92rem; color: var(--text-dim); line-height: 1.7; }
.ev-card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue-deep);
}
.events-empty {
  text-align: center;
  padding: 64px 0;
  color: var(--text-muted);
  font-size: .95rem;
}

/* Événements passés */
.events-past-section {
  background: var(--bg-2);
  padding: 72px 0 80px;
  border-top: 1px solid var(--line);
}
.events-past-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.ev-past-card {
  background: var(--bg);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.ev-past-card img {
  width: 100%; height: 160px; object-fit: cover; display: block;
  filter: grayscale(40%) brightness(0.9);
}
.ev-past-body { padding: 16px 20px; }
.ev-past-badge {
  display: inline-block;
  background: #f0f0f0;
  color: #888;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.ev-past-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}
.ev-past-date { font-size: .78rem; color: var(--text-muted); }

/* ---- 26. MODAL RÉSERVATION ---- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 800; padding: 16px;
}
.modal-box {
  background: #fff;
  border-radius: 14px;
  padding: 36px;
  width: 100%;
  max-width: 480px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none;
  font-size: 1.1rem; cursor: pointer; color: #888;
  padding: 4px 8px; border-radius: 4px;
}
.modal-close:hover { background: #f0f0f0; }
.modal-header { margin-bottom: 24px; }
.modal-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 6px 0 4px;
}
.modal-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--blue-deep);
  font-weight: 600;
}
.modal-field { margin-bottom: 16px; }
.modal-field label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #555;
  margin-bottom: 6px;
}
.modal-field input,
.modal-field textarea,
.modal-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: .9rem;
  font-family: inherit;
  background: #fafafa;
  transition: border-color .2s;
}
.modal-field input:focus,
.modal-field textarea:focus { outline: none; border-color: var(--blue); }
.modal-field textarea { resize: vertical; min-height: 70px; }

/* ---- 23. RESPONSIVE : TABLET (768–1199px) ---- */
@media (max-width: 1199px) {
  .container { padding: 0 24px; }
  .nav { padding: 0 24px; }
  .experience-grid { grid-template-columns: 1fr; gap: 40px; }
  .experience-img img { height: 360px; }
  .cards-asymmetric { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cards-asymmetric .plat-card:last-child { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .histoire-features { grid-template-columns: repeat(2, 1fr); }
  .history-cols { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 2; }
  .brunch-layout { grid-template-columns: 1fr; gap: 40px; }
  .brunch-img-col img { height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ---- 24. RESPONSIVE : MOBILE (< 768px) ---- */
@media (max-width: 767px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 20px; max-width: 100%; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .section-signatures { padding: 72px 0; }
  .cards-asymmetric { grid-template-columns: 1fr; }
  .cards-asymmetric .plat-card:last-child { grid-column: auto; }
  .section-experience, .section-brunch-preview { padding: 72px 0; }
  .brunch-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:last-child { border-bottom: none; }
  .drinks-grid { grid-template-columns: 1fr; }
  .menu-accompaniment-grid { grid-template-columns: 1fr; }
  .tabs-nav { gap: 0; }
  .histoire-cols { grid-template-columns: 1fr; gap: 28px; }
  .histoire-features { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .buffet-grid { grid-template-columns: 1fr; }
  .brunch-layout { grid-template-columns: 1fr; }
  .brunch-img-col img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-mini { height: 280px; padding-bottom: 40px; }
  .hero-mini-content { padding: 0 20px; }
  .map-container iframe { height: 300px; }
  .features-grid { grid-template-columns: 1fr; }
  .experience-img img { height: 280px; }
  .container { padding: 0 20px; }
  .section-stats { padding: 60px 0; }
  .histoire-fullbleed img { height: 280px; }
}
