*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Noir très faiblement teinté — presque neutre */
  --black:    #0d0d0d;
  --white:    #f3f3f1;
  --s1:       #141414;
  --s2:       #1e1e1d;
  --s3:       #2c2c2b;
  /* Gris clairs quasi neutres */
  --s4:       #dfdedb;
  --s5:       #ebeae7;
  /* Gris consolidés */
  --gray:       #a4a4a1;
  --gray-mid:   #71706d;
  --gray-light: #545452;
  --gray-line:       #272726;
  --gray-line-light: #c1c0bd;
  /* Fontes */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:    'Oswald', 'Helvetica Neue', Arial, system-ui, sans-serif;

  /* Letter-spacing standardisés */
  --ls-nav:    0.18em;
  --ls-btn:    0.22em;
  --ls-micro:  0.26em;
}

html { scroll-behavior: smooth; scroll-padding-top: 58px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.pending { transition: none; opacity: 1; transform: none; }
}

/* ── CORPS DE PAGE ── */
body {
  background: var(--s1);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.scroll-locked,
body.nav-locked {
  overflow: hidden;
  touch-action: none;
}

/* ── FOCUS VISIBLE (a11y) ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gray);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  background: var(--black);
  border-bottom: 1px solid var(--s3);
}

/* Oswald — identité du bar, max tracking */
.nav-logo {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: var(--ls-micro);
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

/* Oswald — liens de navigation, micro uppercase */
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a, .nav-mobile a, .nav-back {
  color: var(--gray);
  text-decoration: none;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  transition: color 0.25s ease;
  position: relative;
}
/* Underline animé sous les liens nav */
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.25,1,0.4,1);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover, .nav-mobile a:hover, .nav-back:hover { color: var(--white); }

/* ── HAMBURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 5rem 2rem 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-mobile a {
  padding: 1rem 2rem;
  font-size: 1rem;
  letter-spacing: var(--ls-micro);
  font-weight: 500;
  border-bottom: none;
}
.nav-mobile.open { display: flex; opacity: 1; }

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  background: linear-gradient(170deg, var(--black) 0%, var(--s2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fade-up 1.3s 0.3s forwards;
}
.hero-logo { width: 280px; height: auto; display: block; }

/* Playfair italic — signature du renard, poétique */
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  letter-spacing: 0.03em;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fade-up 1.3s 0.6s forwards;
}
#hero .divider-vintage {
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fade-up 1.3s 0.8s forwards;
}

/* Oswald — appel à l'action, architectural */
.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: var(--ls-btn);
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  opacity: 0;
  animation: fade-up 1.3s 1s forwards;
}
.hero-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  margin: 0 auto;
  width: fit-content;
  opacity: 0;
  animation: fade-up 1.3s 1.4s forwards;
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.scroll-indicator.hidden {
  opacity: 0 !important;
  transform: translateY(12px);
  animation: none;
}
.scroll-chevron {
  width: 30px;
  animation: bounce-down 2s ease-in-out infinite;
}
.scroll-chevron path { stroke: var(--gray); }
@keyframes bounce-down {
  0%, 100% { transform: translateY(0);    opacity: 0.4; }
  50%       { transform: translateY(7px); opacity: 1;   }
}

/* ── SECTION BASE ── */
section { padding: 9rem 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 4rem; }

/* Playfair — grands titres de section, expressifs */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: 0.01em;
}
/* em = l'accent italique renard à l'intérieur du titre hibou */
.section-title em { font-style: italic; color: var(--gray); }
#concept .section-title,
#concept .section-title em,
#carte .section-title em,
#reservation .section-title em,
#social .section-title em { color: var(--gray-light); }

.divider-vintage-line,
.divider-vintage-ornament { background: var(--gray); }
.divider-vintage--dark .divider-vintage-line,
.divider-vintage--dark .divider-vintage-ornament { background: var(--gray-light); }

.divider-vintage {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 3rem;
  width: fit-content;
}
.divider-vintage-line { height: 1px; width: 80px; }
.divider-vintage-ornament {
  display: block;
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── ÉVÉNEMENT dans le hero ── */
.hero--event { background: linear-gradient(170deg, #080808 0%, var(--s2) 100%); }

.event-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
  margin-right: 0.7rem;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.8); }
}
.hero--event .hero-badge { margin-bottom: 1.8rem; }
.hero--event .hero-logo  { width: 200px; }

/* Oswald — méta de l'événement, précision de la date */
.event-meta-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: fade-up 1.3s 0.6s forwards;
}

/* Playfair italic — titre d'événement, éloquent */
.event-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 0.8rem;
  opacity: 0;
  animation: fade-up 1.3s 0.8s forwards;
}
.hero--event .hero-tagline {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 0;
  opacity: 0;
  animation: fade-up 1.3s 0.9s forwards;
}
.hero-event-ctas {
  display: flex;
  gap: 1.4rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.4rem;
  opacity: 0;
  animation: fade-up 1.3s 1s forwards;
}
button.hero-cta { background: transparent; cursor: pointer; font-family: var(--font-sans); }
.hero-cta--ghost { border-color: var(--white); color: var(--white); }
.hero-event-ctas .hero-cta { min-width: 240px; text-align: center; }

/* ── CONCEPT ── */
#concept { background: var(--s4); }
#concept .photo-strip-wrap { margin-top: 3.7rem; }
.concept-grid { display: flex; justify-content: center; }
.concept-text { max-width: 640px; }

/* strong dans le texte = accent renard gras italique */
.concept-text p strong, .social-desc strong { color: var(--black); font-weight: 700; font-style: italic; }

/* ── CARTE ── */
#carte { background: var(--s5); }
.carte-header { text-align: center; margin-bottom: 4rem; }
.carte-header .divider-vintage,
.menu-section-header .divider-vintage { margin: 2rem auto 3rem; }

/* Playfair italic — message d'erreur de carte, discret */
.menu-error {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gray);
  padding: 2rem 0;
}
.menu-list { max-width: 700px; margin: 0 auto; }
.menu-section-header { margin-top: 5rem; }
.menu-list > .menu-section-header:first-child { margin-top: 0; }

/* ── MENU ITEMS ── */
.menu-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 1rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-line-light);
  overflow: hidden;
  --title-bottom: 70px;
  --title-left: 25px;
}
.menu-section-header + .menu-item { border-top: 1px solid var(--gray-line-light); }

.menu-item.has-photo         { height: var(--closed-h); transition: height 750ms ease-in-out 70ms, opacity 1.4s cubic-bezier(0.25,1,0.4,1), transform 1.4s cubic-bezier(0.25,1,0.4,1); }
.menu-item.has-photo.open    { height: var(--photo-h); transition: height 750ms ease-in-out, opacity 1.4s cubic-bezier(0.25,1,0.4,1), transform 1.4s cubic-bezier(0.25,1,0.4,1); }

.menu-item-left {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 0.3rem;
  transform-origin: left top;
  will-change: transform;
  transition: transform 820ms ease-in-out;
}
.menu-item.has-photo.open .menu-item-left {
  transform: translate(var(--title-left), calc(var(--photo-h) - var(--title-bottom))) scale(1.2);
}

.menu-item-price,
.menu-item-ingredients         { transition: opacity 400ms ease-in-out 420ms; }
.menu-item.open .menu-item-price,
.menu-item.open .menu-item-ingredients { opacity: 0; transition: opacity 400ms ease-in-out; }

/* Playfair bold — prix, le poids du premium */
.menu-item-price {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--black);
  white-space: nowrap;
}

/* Playfair italic — ingrédients, poésie gastronomique */
.menu-item-ingredients {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  color: #3a3936;
  line-height: 1.65;
}

/* Oswald — nom du cocktail, structure nette */
.menu-item-name {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--black);
  display: inline-block;
  transition: letter-spacing 820ms ease-in-out, color 820ms ease-in-out;
}
.menu-item.open .menu-item-name { letter-spacing: 0.3em; color: var(--white); }

.menu-item.has-photo { cursor: pointer; }
.menu-item.has-photo:not(.open):hover .menu-item-name {
  color: var(--gray-light);
  transition: color 0.25s ease;
}
.menu-item.has-photo:not(.open):hover .menu-item-dot {
  color: var(--black);
  transition: color 0.25s ease;
}
.menu-item-dot {
  display: inline-block; width: 13px; height: 13px;
  margin-left: 0.4rem; vertical-align: -0.5px; color: #707070;
  opacity: 1; transition: opacity 400ms ease-in-out 420ms;
}
.menu-item.has-photo.open .menu-item-dot { opacity: 0; transition: opacity 400ms ease-in-out; }

.menu-item-photo-wrap {
  position: absolute; top: 0; left: 0; right: 0;
  height: var(--photo-h, 0px);
  z-index: 0; opacity: 0;
  transition: opacity 600ms ease-in-out 120ms;
}
.menu-item.open .menu-item-photo-wrap { opacity: 1; transition: opacity 600ms ease-in-out 100ms; }
.menu-item-photo-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 50%, transparent 100%);
}
.menu-item-photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── AMBIANCE ── */
#ambiance { background: var(--s2); }
.ambiance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: center; }
.ambiance-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.ambiance-block {
  background: var(--s1);
  padding: 2.6rem 2.2rem;
  border: 1px solid var(--s3);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.ambiance-block:hover {
  border-color: var(--gray-mid);
  transform: translateY(-2px);
}
.ambiance-block svg { width: 40px; height: 40px; margin-bottom: 1.4rem; stroke: var(--gray) !important; }

/* Oswald — titres de bloc d'ambiance, catégories précises */
.ambiance-block h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.8rem;
}

/* Playfair — description d'ambiance, chaleur narrative */
.ambiance-block p {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--gray);
  line-height: 1.7;
}

/* ── TEXTES DE CORPS PARTAGÉS ── */
/* Playfair — prose principale, fluide et lisible */
.concept-text p, .ambiance-text p, .reservation-inner p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.01em;
}
.concept-text p { color: var(--gray-light); margin-bottom: 1.2rem; }
.concept-text p:last-child { margin-bottom: 0; }
.ambiance-text p { color: var(--gray); margin-bottom: 1.2rem; }
.ambiance-text p:last-child { margin-bottom: 0; }
.reservation-inner p { color: var(--gray-light); font-style: italic; font-size: 1.15rem; margin-bottom: 2.4rem; }

/* ── RESERVATION ── */
#reservation { background: var(--s5); }
.reservation-ctas { display: flex; flex-direction: column; align-items: center; gap: 1.8rem; }

/* Playfair — numéro de téléphone, grand et accessible */
.reservation-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.reservation-phone:hover { color: var(--gray-light); }
.concept-text,
.infos-header,
.reservation-inner,
.social-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.reservation-inner {
  max-width: 600px;
  margin: 0 auto;
}

/* Oswald — bouton principal, clair et directionnel */
.btn-border {
  display: inline-block;
  text-decoration: none;
  padding: 1.1rem 3.5rem;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: var(--ls-btn);
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-border:hover {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

/* ── MAP ── */
#map {
  height: clamp(280px, 42vh, 440px);
  background: var(--s1);
  border-top: 1px solid var(--s3);
  margin-top: 5rem;
}
.maplibregl-ctrl-group { border: 1px solid var(--gray-line-light) !important; box-shadow: none !important; }
.maplibregl-ctrl-zoom-in, .maplibregl-ctrl-zoom-out {
  background: var(--black) !important;
  color: var(--white) !important;
  width: 30px !important;
  height: 30px !important;
}
.maplibregl-ctrl-zoom-in:hover, .maplibregl-ctrl-zoom-out:hover { background: var(--gray-light) !important; }
.maplibregl-ctrl-zoom-in span, .maplibregl-ctrl-zoom-out span { filter: brightness(0) invert(1); }
.maplibregl-ctrl-attrib { background: rgba(245,245,245,0.7) !important; }
.map-marker {
  width: 16px; height: 16px;
  background: var(--black);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 4px rgba(13,13,13,0.15);
  position: relative;
}
.map-marker::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--black);
  opacity: 0.45;
  animation: map-pulse 2.4s ease-out infinite;
}
@keyframes map-pulse {
  0%   { transform: scale(0.6); opacity: 0.55; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ── INFOS ── */
#infos { background: var(--s1); padding-bottom: 0; }
.infos-header { margin-bottom: 4rem; }
.infos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; text-align: center; }

/* Oswald — étiquette de rubrique, catégorie visuelle */
.info-block h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* Playfair — données pratiques, confortables à lire */
.info-block p, .info-block address {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height: 2;
  font-style: normal;
}
.info-block a { color: var(--white); text-decoration: none; transition: color 0.25s ease; }
.info-block a:hover { color: var(--gray); }
/* spécificité 0,2,0 > .info-block p 0,1,1 — override ciblé */
.info-block .horaires-inline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.95;
}

/* ── PHOTO STRIP ── */
.photo-strip-wrap {
  overflow: hidden;
  background: var(--s4);
  height: 540px;
}
.photo-strip { display: flex; gap: 20px; width: max-content; will-change: transform; }
.photo-cell {
  width: 340px;
  height: 540px;
  overflow: hidden;
  flex-shrink: 0;
  cursor: zoom-in;
  position: relative;
}
.photo-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,12,10,0);
  transition: background 0.35s ease;
  pointer-events: none;
}
.photo-cell:hover::after { background: rgba(14,12,10,0.18); }
.photo-cell img {
  height: 100%;
  width: 640px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
  transition: filter 0.35s ease;
}
.photo-cell:hover img { filter: brightness(1.05) contrast(1.03); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  padding: 3rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(90vw, 1200px);
  max-height: 86vh;
  object-fit: contain;
  display: block;
  cursor: default;
  opacity: 0;
  transform: scale(0.96);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.25,1,0.4,1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.lightbox img.ready { opacity: 1; transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
}
.lightbox-close:hover { background: rgba(245,245,245,0.15); transform: rotate(90deg); }
.lightbox-close svg { width: 20px; height: 20px; display: block; }
.lightbox-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.lightbox-loader.visible { opacity: 1; }
.lightbox-loader span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(245,245,245,0.2);
  border-top-color: var(--white);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── SOCIAL ── */
#social { background: var(--s5); padding: 0; }
#social .container { display: flex; justify-content: center; }
#social .social-top   { padding-top: 6rem; padding-bottom: 3rem; }
#social .social-top .divider-vintage { margin-bottom: 0; }
#social .social-bottom { padding: 0 2rem 6rem; text-align: center; }
.social-inner { max-width: 640px; }
#concept .section-title, #carte .section-title,
#reservation .section-title, #social .section-title { color: var(--black); }

/* Playfair italic — description sociale, ton complice */
.social-desc {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--gray-light);
  line-height: 1.9;
  margin-top: 2rem;
}
.social-links { display: inline-flex; justify-content: center; align-items: flex-end; gap: 3.8rem; flex-wrap: wrap; }
.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  width: 96px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
/* wrapper isolé du hover — la zone de clic reste fixe */
.social-icon-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  transition: transform 0.3s ease;
}
.social-icon:hover .social-icon-img { transform: translateY(-6px); }
.social-icon svg { width: 48px; height: 48px; display: block; fill: var(--black); transition: fill 0.25s; }
.social-icon:hover svg { fill: var(--gray-light); }
.social-label { transition: color 0.25s ease; }
.social-icon:hover .social-label { color: var(--black); }

/* Oswald — label réseau social, concis et clair */
.social-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--gray-light);
}

/* ── BOOKING PAGE ── */
.booking-page {
  background: var(--s4);
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 7rem 1.5rem 4rem;
}
.booking-modal {
  padding: 3.5rem;
  width: 100%;
  max-width: 680px;
  background: var(--s5);
  border: 1px solid var(--gray-line-light);
}

/* Playfair — titre du formulaire de réservation, display principal */
.booking-modal-title,
.booking-success h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--black);
}
.booking-modal-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-align: center;
}
.booking-modal-title em { font-style: italic; color: var(--gray-light); }

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  min-width: 0;
}
.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 2rem;
  min-width: 0;
}

/* Oswald — label de champ, catégorie précise */
.booking-field label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: var(--ls-nav);
  text-transform: uppercase;
  color: var(--gray-light);
  font-weight: 500;
}

/* Playfair — saisie utilisateur, naturelle et lisible */
.booking-field input,
.booking-field select,
.booking-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-line-light);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0.55rem 0;
  outline: none;
  transition: border-bottom-color 0.2s;
  width: 100%;
  border-radius: 0;
}
.booking-field input[type="date"],
.booking-field input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  min-width: 0;
  line-height: 1;
  height: 2.4rem;
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus { border-bottom-color: var(--black); }
.booking-field textarea { resize: vertical; min-height: 80px; }
.booking-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.1rem center;
  padding-right: 1.4rem;
}
.booking-field select option { background: var(--white); color: var(--black); }
.booking-field input::placeholder,
.booking-field textarea::placeholder { color: var(--gray); }

/* Playfair italic — note de bas de formulaire, discrète */
.booking-note {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--black);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.booking-error {
  background: #3a1a1a;
  border: 1px solid #6b2b2b;
  color: #f5a0a0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.booking-submit {
  display: block;
  width: fit-content;
  margin: 0 auto;
  cursor: pointer;
}
.booking-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.booking-success {
  text-align: center;
  padding: 2rem 0;
}
.booking-success .btn-border {
  display: inline-block;
  margin-top: 2rem;
}
.booking-success svg {
  width: 56px;
  height: 56px;
  stroke: var(--gray-light);
  margin-bottom: 1.5rem;
}
/* Playfair — titre de confirmation, sobre et sincère */
.booking-success h3 {
  font-size: 1.9rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
}
/* Playfair — message de confirmation, chaleureux */
.booking-success p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--black);
  line-height: 1.9;
}

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.4, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.4, 1);
}
.reveal.pending { opacity: 0; transform: translateY(32px); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0.9rem 1.5rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .container { padding: 0 1.5rem; }
  section { padding: 5rem 0; }

  .hero-logo { width: 200px; }
  .hero-cta { padding: 0.85rem 2rem; }
  .hero-event-ctas .hero-cta { min-width: 0; width: 100%; max-width: 280px; }
  .hero-event-ctas { width: 100%; flex-direction: column; align-items: center; gap: 0.9rem; }

  /* Ligne date/heure événement : autorise le retour à la ligne sur petits écrans
     et réduit le tracking pour éviter le débordement horizontal */
  .event-meta-line {
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
    row-gap: 0.2rem;
    justify-content: center;
  }

  .menu-item { padding: 1.4rem 0; }

  .photo-strip-wrap { height: 410px; }
  .photo-cell { width: 270px; height: 410px; }
  .photo-cell img { width: 500px; }

  .ambiance-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ambiance-text { text-align: center; }
  .ambiance-text .divider-vintage { margin: 2rem auto 3rem; }
  .ambiance-blocks { grid-template-columns: 1fr; }
  .ambiance-block { text-align: center; }

  .btn-border { display: block; text-align: center; margin: 0.6rem 0; }
  .reservation-ctas .btn-border { margin: 0; }
  .booking-submit { margin: 0 auto; }
  .booking-page { background: var(--s5); padding: 58px 0 0; align-items: stretch; }
  .booking-modal { padding: 2.5rem 1.5rem; border: none; min-height: 100vh; }
  .booking-row { grid-template-columns: 1fr; gap: 0; }

  /* Labels de formulaire : 12px minimum confort tactile */
  .booking-field label {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }

  .reveal.pending { transform: translateY(28px); }
  .infos-header { margin-bottom: 2.5rem; }
  .infos-grid { grid-template-columns: 1fr; gap: 2.5rem; }
.social-links { gap: 2.9rem; }
  .social-icon { width: 72px; }
}

/* ── CRÉDIT DÉVELOPPEUR ── */
/* Oswald micro — signature discrète en bas de page */
.dev-credit {
  text-align: center;
  padding: 1.4rem 1.2rem;
  background: var(--s5);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gray-light);
  text-transform: uppercase;
}
.dev-credit a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.25s ease;
}
.dev-credit a:hover { color: var(--black); }
