/* ═══════════════════════════════════════════════════════
   MON BAR À TAPAS — Main Stylesheet
   Brand: Deep Navy #1C1B4E · Electric Blue #3B35C8
          Almost Black #0A0A1A · Gold #C9A55A · White
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1C1B4E;
  --navy-d: #0F0E2E;
  --blue:   #3B35C8;
  --blue-l: #5B55E8;
  --black:  #0A0A1A;
  --gold:   #C9A55A;
  --gold-l: #E5C07B;
  --white:  #FFFFFF;
  --cream:  #F5F0E8;
  --grey:   #888898;
  --border: rgba(255,255,255,0.08);

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-hand:  'Dancing Script', cursive;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius:    16px;
  --radius-lg: 24px;

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --shadow:     0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.6);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ──────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── Utilities ──────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold-l); }

.section-sub {
  margin-top: 16px;
  color: var(--grey);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-l) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(59,53,200,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,53,200,0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Reveal Animation ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.reveal-right {
  transform: translateX(40px);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════ NAVBAR ═══════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 26, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px;
  transition: padding var(--transition);
}

#navbar.scrolled .nav-container { padding: 12px 24px; }

.nav-logo {
  height: 56px;
  width: 56px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--blue);
  box-shadow: 0 0 16px rgba(59,53,200,0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links li a {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links li a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-l)) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 16px rgba(59,53,200,0.4);
}
.nav-cta:hover { box-shadow: 0 6px 24px rgba(59,53,200,0.6) !important; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
  filter: brightness(0.65) saturate(1.1);
}

.hero:hover .hero-bg { transform: scale(1.0); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,10,26,0.3) 0%,
      rgba(10,10,26,0.15) 40%,
      rgba(10,10,26,0.55) 75%,
      rgba(10,10,26,0.9) 100%),
    linear-gradient(90deg,
      rgba(28,27,78,0.45) 0%,
      transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 820px;
  animation: heroFadeIn 1.2s ease forwards;
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-title-main {
  display: block;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.hero-title-accent {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-l) 20%, var(--gold) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0.6;
  animation: fadeIn 2s 1s forwards;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--white), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

.hero-cats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.cat-sparkle {
  position: absolute;
  color: var(--gold);
  font-size: 1.2rem;
  opacity: 0;
  animation: sparkle 4s infinite;
}
.cat-sparkle:nth-child(1) { animation-delay: 0s; }
.cat-sparkle:nth-child(2) { animation-delay: 1s; }
.cat-sparkle:nth-child(3) { animation-delay: 2s; }
.cat-sparkle:nth-child(4) { animation-delay: 3s; }

@keyframes sparkle {
  0%,100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
  50% { opacity: 0.8; transform: scale(1.2) rotate(45deg); }
}

/* ═══════════════════════ MARQUEE ═══════════════════════ */
.marquee-strip {
  overflow: hidden;
  background: linear-gradient(90deg, var(--navy-d) 0%, var(--navy) 50%, var(--navy-d) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 28px;
}
.marquee-track .sep { color: var(--gold); padding: 0 4px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════ ABOUT ═══════════════════════ */
.about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {}

.about-body {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-top: 20px;
  line-height: 1.8;
}
.about-body + .about-body { margin-top: 14px; }
.about-body strong { color: var(--gold-l); font-weight: 600; }

.about-badges {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(59,53,200,0.12);
  border: 1px solid rgba(59,53,200,0.25);
  border-radius: 50px;
}
.badge-icon { font-size: 1.1rem; }
.badge-text { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.02em; }

.about-img-stack {
  position: relative;
  height: 480px;
}

.img-card {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.img-card:hover img { transform: scale(1.04); }

.img-card--top {
  top: 0; left: 0;
  width: 70%;
  height: 68%;
  z-index: 2;
}
.img-card--bot {
  bottom: 0; right: 0;
  width: 65%;
  height: 58%;
  z-index: 1;
  border: 3px solid var(--navy);
}

.floating-tag {
  position: absolute;
  bottom: 25%;
  left: -12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 6px 20px rgba(59,53,200,0.5);
  z-index: 3;
  white-space: nowrap;
}

/* ═══════════════════════ FEATURES ═══════════════════════ */
.features {
  background: linear-gradient(180deg, var(--black) 0%, var(--navy-d) 100%);
  padding-top: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,53,200,0.08), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); border-color: rgba(59,53,200,0.4); }
.feature-card:hover::before { opacity: 1; }

.feature-icon { font-size: 2.4rem; margin-bottom: 18px; }

.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ═══════════════════════ MENU ═══════════════════════ */
.menu { background: var(--navy-d); }

/* Tabs */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.tab-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(59,53,200,0.4);
}

/* Tab panels */
.tab-content { display: none; }
.tab-content.active { display: block; }

/* Menu grid */
.menu-content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.menu-category-title {
  font-family: var(--font-hand);
  font-size: 2.4rem;
  color: var(--gold-l);
  margin-bottom: 8px;
}

.menu-note {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 24px;
  font-style: italic;
}

.menu-item-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.menu-item:hover { padding-left: 6px; border-color: rgba(59,53,200,0.3); }
.menu-item.highlight { background: rgba(201,165,90,0.06); border-radius: 8px; padding: 14px 12px; margin: 4px -12px; }

.menu-item-info { flex: 1; min-width: 0; }

.menu-item-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.4;
}
.menu-item-name em { font-size: 0.82rem; color: var(--grey); font-style: italic; display: block; margin-top: 2px; }

.menu-item-price {
  flex-shrink: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-serif);
  white-space: nowrap;
}

.menu-image-side {
  position: sticky;
  top: 90px;
}
.menu-image-side img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.menu-img-badge {
  display: inline-block;
  margin-top: 14px;
  background: rgba(59,53,200,0.2);
  border: 1px solid rgba(59,53,200,0.4);
  color: var(--blue-l);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Découverte */
.decouverte-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.decouverte-card {
  background: linear-gradient(135deg, rgba(59,53,200,0.15), rgba(28,27,78,0.3));
  border: 1px solid rgba(59,53,200,0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.decouverte-header {
  padding: 40px 40px 28px;
  text-align: center;
  background: linear-gradient(135deg, rgba(59,53,200,0.25), rgba(28,27,78,0.2));
  border-bottom: 1px solid var(--border);
}

.decouverte-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.decouverte-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.decouverte-price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.decouverte-price span {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--grey);
  vertical-align: middle;
}

.decouverte-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  padding: 32px 40px;
}

.decouverte-col h4 {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  color: var(--gold-l);
  margin-bottom: 14px;
}

.decouverte-col ul { display: flex; flex-direction: column; gap: 10px; }
.decouverte-col li { font-size: 0.95rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px; }
.decouverte-col li em { font-size: 0.82rem; color: var(--grey); }
.qty { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }

.decouverte-divider {
  width: 1px;
  background: var(--border);
  margin: 0 40px;
}

.decouverte-footer {
  padding: 20px 40px 28px;
  text-align: center;
  border-top: 1px solid var(--border);
}
.decouverte-footer p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.decouverte-footer strong { color: var(--gold-l); }

.decouverte-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
}

/* Suggestions */
.suggestions-wrap {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.suggestion-board {
  background: rgba(10,10,26,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.board-header {
  font-family: var(--font-hand);
  font-size: 2.2rem;
  color: var(--white);
  padding: 28px 36px 20px;
  background: linear-gradient(90deg, rgba(59,53,200,0.2), transparent);
  border-bottom: 1px solid var(--border);
}

.board-items { padding: 8px 0; }

.board-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.board-item:hover { background: rgba(255,255,255,0.03); padding-left: 44px; }

.board-item-name { font-size: 0.97rem; color: rgba(255,255,255,0.88); }
.board-item-price { font-weight: 700; color: var(--gold); font-family: var(--font-serif); font-size: 1rem; }

.board-note {
  padding: 20px 36px;
  font-size: 0.82rem;
  color: var(--grey);
  font-style: italic;
  border-top: 1px solid var(--border);
}

.suggestion-img img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: sticky;
  top: 90px;
}

/* ═══════════════════════ GALLERY ═══════════════════════ */
.gallery {
  background: var(--black);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.85) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1.2);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(10,10,26,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  transform: translateY(8px);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-overlay span { transform: none; }

/* ═══════════════════════ AMBIANCE STRIP ═══════════════════════ */
.ambiance-strip {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ambiance-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: center;
}

.ambiance-logo img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 40px rgba(59,53,200,0.4);
}

.ambiance-text blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-style: italic;
  color: var(--gold-l);
  line-height: 1.4;
  margin-bottom: 18px;
}

.ambiance-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 28px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-card:hover { border-color: rgba(59,53,200,0.4); background: rgba(59,53,200,0.07); }

.contact-icon { font-size: 1.8rem; margin-bottom: 12px; }

.contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 0;
}
.contact-card .btn { margin-top: 16px; }

/* Form */
.contact-form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 0.95rem;
  color: var(--white);
  font-family: var(--font-sans);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-l);
  background: rgba(59,53,200,0.1);
  box-shadow: 0 0 0 3px rgba(59,53,200,0.15);
}
.form-group select option { background: var(--navy-d); color: var(--white); }

/* ═══════════════════════ FOOTER ═══════════════════════ */
.footer {
  background: var(--navy-d);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 0 48px;
}

.footer-brand {}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 260px;
}

.footer-links h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--white); padding-left: 4px; }

.footer-social h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.social-links { display: flex; gap: 12px; margin-bottom: 20px; }

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-cats {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ═══════════════════════ LIGHTBOX ═══════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}
.lightbox.open { opacity: 1; pointer-events: all; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.open .lightbox-img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
  background: none;
  border: none;
}
.lightbox-close:hover { color: var(--white); transform: rotate(90deg); }

/* ═══════════════════════ TOAST ═══════════════════════ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 3000;
  padding: 16px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-l));
  box-shadow: var(--shadow-lg);
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.toast.show { transform: none; opacity: 1; }

/* ═══════════════════════ RESPONSIVE ═══════════════════════ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .menu-content-grid { grid-template-columns: 1fr 300px; }
  .decouverte-wrap, .suggestions-wrap { grid-template-columns: 1fr 300px; }
}

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-stack { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .ambiance-inner { grid-template-columns: 1fr; text-align: center; }
  .ambiance-logo img { margin: 0 auto; }
  .decouverte-body { grid-template-columns: 1fr; }
  .decouverte-divider { width: 100%; height: 1px; margin: 24px 0; }
  .menu-content-grid,
  .decouverte-wrap,
  .suggestions-wrap { grid-template-columns: 1fr; }
  .menu-image-side,
  .decouverte-img,
  .suggestion-img { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section-pad { padding: 64px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item--wide, .gallery-item--tall { grid-column: span 1; grid-row: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,10,26,0.97); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-title { font-size: clamp(2.8rem, 14vw, 5rem); }
  .nav-cta { display: none !important; }
  .decouverte-header { padding: 28px 24px 20px; }
  .decouverte-body { padding: 24px; }
  .decouverte-footer { padding: 16px 24px 20px; }
  .board-header { padding: 20px 24px 16px; }
  .board-item { padding: 14px 24px; }
  .board-item:hover { padding-left: 28px; }
  .board-note { padding: 14px 24px; }
}

/* ── Utility animation ──────────────────────────────── */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
