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

:root {
  --black:    #0d0d0d;
  --white:    #f5f5f5;
  --s1:       #141414;
  --s2:       #1e1e1e;
  --s3:       #2e2e2e;
  --s4:       #e0e0e0;
  --s5:       #ececec;
  --gray:     #aaaaaa;
  --gray-light: #555555;
  --gray-dim: #444444;
  --gray-line:#2a2a2a;
  --gray-line-light: #c0c0c0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--s1);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 4rem;
  background: var(--black);
  border-bottom: 1px solid var(--s3);
  transition: padding 0.3s;
}
nav.scrolled { padding: 1rem 4rem; }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white);
  text-decoration: none;
}
.nav-links { display: flex; gap: 3rem; list-style: none; }
.nav-links a, .nav-mobile a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-mobile a:hover { color: var(--white); }

/* ── HAMBURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.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: 52px;
  left: 0; right: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  border-top: 1px solid var(--gray-line);
}
.nav-mobile a { padding: 1.2rem 2rem; border-bottom: 1px solid var(--gray-line); }
.nav-mobile.open { display: flex; }

/* ── 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 0.9s 0.3s forwards;
}
.hero-logo { width: 280px; height: auto; display: block; }
.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--gray);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fade-up 0.9s 0.6s forwards;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 0 auto 3rem;
  width: 200px;
  opacity: 0;
  animation: fade-up 0.9s 0.8s forwards;
}
.hero-divider-line { flex: 1; height: 1px; background: var(--gray); }
.hero-divider-diamond { width: 5px; height: 5px; background: var(--gray); transform: rotate(45deg); }
.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid var(--white);
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background 0.25s, color 0.25s;
  opacity: 0;
  animation: fade-up 0.9s 1s forwards;
}
.hero-cta:hover { background: var(--white); color: var(--black); }
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 0; right: 0;
  margin: 0 auto;
  width: fit-content;
  opacity: 0;
  animation: fade-up 0.9s 1.4s forwards;
}
.scroll-chevron {
  width: 30px;
  animation: bounce-down 2s ease-in-out infinite;
}
.scroll-chevron path { stroke: var(--gray) !important; }
@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; }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.02em;
}
.section-title em { font-style: italic; color: var(--gray); }
#concept .section-title em,
#cocktails .section-title em,
#reservation .section-title em,
#social .section-title em { color: var(--gray-light); }

/* divider colors via custom property */
.divider-vintage-line,
.divider-vintage-ornament { background: var(--dv-color, var(--gray-line)); }
#concept, #cocktails, #reservation, #social { --dv-color: var(--gray-light); }
#ambiance, #infos { --dv-color: var(--gray); }

.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;
}

/* ── CONCEPT ── */
#concept { background: var(--s5); }
.concept-grid { display: flex; justify-content: center; }
.concept-text {
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.concept-text p strong { color: var(--black); font-weight: 700; font-style: italic; }

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

.menu-error { text-align: center; color: var(--gray); font-style: italic; padding: 2rem 0; }
.menu-error a { color: var(--gray); }
.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-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-line-light);
}
.menu-section-header + .menu-item { border-top: 1px solid var(--gray-line-light); }
.menu-item-left { display: flex; flex-direction: column; gap: 0.3rem; }
.menu-item-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}
.menu-item-ingredients { font-size: 0.82rem; letter-spacing: 0.03em; color: #777; font-weight: 400; }
.menu-item-price { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--black); white-space: nowrap; }

/* ── 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: 1px; background: var(--s3); }
.ambiance-block {
  background: var(--s2);
  padding: 3rem 2.5rem;
}

.ambiance-block svg { width: 40px; height: 40px; margin-bottom: 1.4rem; stroke: var(--gray) !important; }
.ambiance-block h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.ambiance-block p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }

/* shared Playfair body text */
.concept-text p, .ambiance-text p, .reservation-inner p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.9;
}
.concept-text p { color: var(--gray-light); margin-bottom: 1.2rem; }
.ambiance-text p { color: var(--gray); margin-bottom: 1.2rem; }
.reservation-inner p { color: var(--gray-light); font-style: italic; margin-bottom: 3rem; }

/* ── RESERVATION ── */
#reservation { background: var(--s5); }
.reservation-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.btn-ink, .btn-border {
  display: inline-block;
  padding: 1.1rem 3.5rem;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s;
}
.btn-ink { font-weight: 500; }
.btn-ink:hover { background: var(--gray-dim); }
.btn-border { border: 1px solid var(--black); font-weight: 400; margin-left: 1rem; }
.btn-border:hover { background: transparent; color: var(--black); }

/* ── INFOS ── */
#infos { background: var(--s1); }
.infos-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4rem;
}
.infos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4rem; text-align: center; }
.info-block h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.info-block p, .info-block address {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 2;
  font-style: normal;
}
.info-block a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.info-block a:hover { color: var(--white); }
.horaires-inline { font-size: 1rem; line-height: 1.9; }

/* ── PHOTO STRIP ── */
.photo-strip-wrap { overflow: hidden; background: var(--s5); border-top: 1px solid var(--s4); border-bottom: 1px solid var(--s4); }
.photo-strip { display: flex; gap: 4px; width: max-content; will-change: transform; }
.photo-strip img {
  height: 280px;
  width: 280px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s;
  cursor: pointer;
}
.photo-strip img:hover { filter: grayscale(0%); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox.open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 201;
}
.lightbox-close:hover { opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; display: block; }

/* ── SOCIAL ── */
#social { background: var(--s5); padding: 0; }
#social .container { display: flex; justify-content: center; }
#social .social-top   { padding-top: 6rem;  padding-bottom: 4rem; }
#social .social-top .divider-vintage { margin-bottom: 0; }
#social .social-bottom { padding-top: 4rem; padding-bottom: 6rem; }
.social-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }
#concept .section-title, #cocktails .section-title,
#reservation .section-title, #social .section-title { color: var(--black); }
.social-links { display: flex; justify-content: center; gap: 4rem; flex-wrap: wrap; }
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.social-link:hover { background: var(--gray-dim); transform: translateY(-3px); }
.social-link svg { width: 34px; height: 34px; fill: currentColor; }

/* ── ANIMATIONS ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { transition: opacity 0.7s, transform 0.7s; }
.reveal.pending { opacity: 0; transform: translateY(24px); }
.reveal.visible { opacity: 1; transform: translateY(0); }

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

  .hero-logo { width: 200px; }
  .hero-tagline { font-size: 0.9rem; }
  .hero-cta { padding: 0.85rem 2rem; }

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

  .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; align-items: center; }

  .btn-ink, .btn-border { display: block; text-align: center; margin: 0.6rem 0; }

  .infos-header { margin-bottom: 2.5rem; }
  .infos-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .social-links { gap: 1.5rem; }
  .social-link { width: 66px; height: 66px; }
  .social-link svg { width: 26px; height: 26px; }
}
