:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dim: rgba(201,168,76,0.15);
  --bg-deep: #0a0a0a;
  --bg-card: #131313;
  --bg-card-hover: #1a1a1a;
  --text-primary: #f0ece4;
  --text-secondary: #8a8578;
  --text-dim: #8a8578;
  --accent-warm: #d4956a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── NOISE GRAIN OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ─── HEADER / HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../img/3.jpg') center/cover no-repeat;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* ─── NAV ─── */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 36px 48px; /* augmenté pour laisser de l'espace au logo */
} 

.nav__inner {
  width: 100%;
  position: relative; /* nav occupies full width so absolutes are viewport-aligned */
  display: block;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: absolute;
  left: 24px; /* flush to left area of the window */
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
}

/* Center nav links horizontally on desktop using a centered container */
.nav__center {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 48px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  position: static;
  transform: none;
  z-index: 12;
}

/* Actions (langs / toggle) anchored to the right of the window */
.nav__actions {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 15;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hidden by default (revealed inside mobile menu) */
.nav__lang-item { display: none; }

.nav__logo-mark {
  width: 42px;
  height: 42px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Logo image used in the nav */
.nav__logo-img {
  height: 100px; /* plus grande pour plus de présence */
  width: auto;
  display: block;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.04);
  margin-top: 8px; /* espace pour éviter que le blanc touche le haut */
}

@media (max-width: 640px) {
  .nav__logo-img {
    height: 72px; /* réduit sur écran mobile */
    margin-top: 6px;
  }
}

.nav__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.nav__logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px; /* un peu plus petit */
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 2px; /* espacement réduit */
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: width 0.3s;
}

.nav__links a:hover {
  color: #ffffff;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__reserve {
  border: 1px solid #ffffff;
  color: #ffffff !important;
  padding: 9px 22px;
  border-radius: 2px;
  letter-spacing: 2.5px !important;
  transition: background 0.3s, color 0.3s !important;
}

.nav__reserve:hover {
  background: #ffffff;
  color: var(--bg-deep) !important;
}

.nav__reserve::after {
  display: none !important;
}

/* Mobile nav toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  transition: 0.3s;
}

/* Lang selector in nav */
.nav__langs {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  background: transparent;
  color: rgba(255,255,255,1);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 6px 8px;
  font-size: 11px;
  cursor: pointer;
  border-radius: 2px;
  letter-spacing: 1px;
}

.lang-btn[aria-pressed="true"] {
  background: rgba(255,255,255,0.06);
  color: #fff;
}


/* ─── HERO CONTENT ─── */
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 48px;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__desc {
  margin-top: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

.hero__actions {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg-deep);
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-with-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px; /* espacement augmenté */
}

.btn-down {
  position: absolute;
  bottom: 36px; /* positionné en bas du header */
  left: 50%;
  transform: translate(-50%, 0);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--text-primary);
  font-size: 12px;
  transition: color 0.15s ease, transform 0.15s ease;
  z-index: 30; /* au-dessus de la nav */
  cursor: pointer;
}

.btn-down__arrow {
  font-size: 18px;
  line-height: 1;
  display: block;
  transition: transform 0.15s ease;
}

.btn-down__label {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: none;
  transition: color 0.15s ease;
}

.btn-down:hover {
  transform: translate(-50%, -6px);
  color: var(--gold);
}

.btn-down:hover .btn-down__arrow {
  transform: translateY(3px) scale(1.05);
}

/* Responsive: moins d'espace sur mobile */
@media (max-width: 600px) {
  .btn-down { bottom: 18px; }
  .btn-down__arrow { font-size: 16px; }
  .btn-down__label { font-size: 10px; }
}

.btn-ghost {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--text-dim);
  transition: color 0.3s, border-color 0.3s;
}

.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--text-secondary);
}

/* ─── SECTION SHARED ─── */
.section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 40%,
    rgba(0, 0, 0, 0.6) 70%,
    #0a0a0a
  );
  pointer-events: none;
}

/* ─── À PROPOS ─── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__text p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 28px;
  line-height: 1.9;
}

.about__divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-top: 32px;
}

.about__stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}

.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 400;
}

.stat__label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Rating (Google reviews) */
.rating { text-align: center; }
.rating .stat__number { font-size: 34px; }
.rating .stat__sub { font-size: 24px; color: var(--text-secondary); margin-left:6px; }
.rating .rating__stars { display:block; color: var(--gold); font-size: 14px; margin-bottom:4px; letter-spacing: 2px; }
.rating .rating__link { color: var(--text-secondary); text-decoration: none; font-size: 11px; display:inline-block; margin-top:2px; }
.rating .rating__link:hover { color: var(--text-primary); text-decoration: underline; }

/* ─── IMAGE WITH OFFSET FRAME + CLIPPED CORNER ─── */
.about__visual {
  position: relative;
  padding: 24px 24px 24px 24px;
}

.frame-offset {
  position: absolute;
  /* Décalé vers le bas-droite */
  top: 40px;
  left: 40px;
  right: -8px;
  bottom: -8px;
  border: 1px solid var(--gold);
  opacity: 0.35;
  border-radius: 2px;
  /* Le coin bas-droite est coupé via clip-path */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%);
}

.img-clipped {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  /* Coin bas-droite coupé en biais */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), calc(100% - 48px) 100%, 0 100%);
}

.img-clipped-left {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  /* Coin bas-gauche coupé en biais */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 48px 100%, 0 calc(100% - 48px));
}

.img-clipped img,
.img-clipped-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-clipped:hover img,
.img-clipped-left:hover img {
  transform: scale(1.04);
}

/* ─── HORAIRES ─── */
.horaires {
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.horaires__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 56px;
}

.horaires__col {
  padding: 40px 0;
}

.horaires__col:first-child {
  border-right: 1px solid rgba(201,168,76,0.12);
  padding-right: 48px;
}

.horaires__col:last-child {
  padding-left: 48px;
}

.horaires__col-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.horaires__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
}

.horaires__row:last-child {
  border-bottom: none;
}

.horaires__day {
  color: var(--text-secondary);
}

.horaires__time {
  color: var(--text-primary);
  font-weight: 400;
}

.horaires__time--closed {
  color: var(--text-dim);
  font-style: italic;
}

/* ─── COCKTAIL SURPRISE (avec offset frame) ─── */
.cocktail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.cocktail__visual {
  position: relative;
  padding: 24px;
}

/* Frame décalée vers le haut-gauche cette fois pour varier */
.cocktail .frame-offset {
  top: -8px;
  left: -8px;
  right: 40px;
  bottom: 40px;
  /* Coin bas-droite coupé aussi sur la frame */
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), calc(100% - 36px) 100%, 0 100%);
}

.cocktail__text .section-title {
  margin-top: 0;
}

.cocktail__text p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 24px;
  line-height: 1.9;
}

.cocktail__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 8px 16px;
  border: 1px solid var(--gold-dim);
  border-radius: 2px;
}

.cocktail__tag span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
}

.cocktail__tag-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ─── LOCALISATION ─── */
.localisation__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.localisation__header .section-label {
  justify-content: center;
}

.localisation__header .section-label::before {
  content: '';
}

.localisation__header p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-top: 20px;
}

.localisation__map-wrap {
  margin-top: 56px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.15);
}

.localisation__map-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  mix-blend-mode: luminosity;
  display: block;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-consent {
  width: 100%;
  height: 400px; /* same height as the iframe */
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical center */
  align-items: center; /* horizontal center */
  gap: 16px;
  color: var(--text-primary);
  background: #3b3b3b; /* grey square */
  text-align: center;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,0.04);
}

.map-consent p {
  margin: 0 0 12px 0;
}

.map-consent__actions {
  display: flex;
  gap: 12px;
  justify-content: center; /* center buttons horizontally */
  align-items: center;
}

@media (max-width: 640px) {
  .map-consent { height: 260px; padding: 0 16px; }
  .map-container iframe, .localisation__map-wrap iframe { height: 260px; }
}

.localisation__address {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.localisation__address span {
  color: var(--gold);
}

/* ─── CONTACT ─── */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.12);
  margin-top: 56px;
}

.contact__card {
  background: var(--bg-card);
  padding: 48px 32px;
  transition: background 0.3s;
}

.contact__card:hover {
  background: var(--bg-card-hover);
}

.contact__card-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.contact__card-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.contact__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.contact__card p,
.contact__card a {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.8;
  text-decoration: none;
}

.contact__card a:hover {
  color: var(--gold);
}

.contact__card a.phone {
  color: var(--gold);
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}

.contact__card a.phone:hover {
  color: var(--gold-light);
}

.contact__social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.contact__social-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.contact__social-links a svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-dim);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s;
}

.contact__social-links a:hover svg {
  stroke: var(--gold);
}

/* Happy Hour cards reuse Contact styles */
.happy-hour .contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.06);
  margin-top: 28px;
}
.happy-hour .contact__card {
  padding: 36px 28px;
  text-align: center;
}
.happy-hour .contact__card-icon {
  margin-bottom: 18px;
  border-color: var(--gold);
}
.happy-hour .contact__card-title {
  margin-bottom: 8px;
}
.happy-hour .contact__card p {
  color: var(--text-secondary);
  font-size: 13px;
}

.happy-hour__countdown {
  margin-top: 18px;
  padding: 18px;
  background: rgb(19, 19, 19);
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.happy-hour__countdown .countdown__status {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.happy-hour__countdown .countdown__timer {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 4vw, 40px);
  color: var(--text-primary);
  font-weight: 600;
}
.happy-hour__countdown .countdown__timer--now {
  color: var(--gold);
  animation: pulse 1s infinite;
}
.happy-hour__countdown .countdown__timer--closed {
  color: var(--text-dim);
  font-style: italic;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* Happy Shooter */
.happy-shooter__box {
  margin-top: 18px;
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: rgb(19, 19, 19); /* same tone as happy-hour countdown */
  border-radius: 6px;
  color: var(--text-primary);
} 
.happy-shooter__box .shooter__info,
.happy-shooter__box .shooter__offer {
  text-align: center;
}
.happy-shooter__box strong {
  display: block;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.happy-shooter__box p {
  color: var(--text-secondary);
  margin: 0;
  font-size: 14px;
}
@media (max-width: 700px) {
  .happy-shooter__box { flex-direction: column; gap: 12px; }
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

footer p {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
}

footer a {
  color: var(--gold);
  text-decoration: none;
}

footer a:hover {
  color: var(--gold-light);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── GALERIE ─── */
.galerie .gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.gallery__item {
  overflow: hidden;
  border-radius: 6px;
}
.gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
  cursor: pointer;
}
.gallery__item:hover img {
  transform: scale(1.03);
  filter: brightness(0.95);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90%; max-height: 85vh; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); }
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .galerie .gallery__grid { grid-template-columns: repeat(2,1fr); }
  .gallery__item img { height: 180px; }
}
@media (max-width: 520px) {
  .galerie .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item img { height: 280px; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1370px) {
  /* Navigation breakpoint moved to 1370px */
  nav {
    padding: 50px 24px; /* augmenté pour espace supérieur au logo */
  }

  .nav__links {
    /* mobile-style nav: keep in flow but hidden via transform for smooth slide-down */
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 16px 24px;
    align-items: center;
    background: transparent;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s;
    z-index: 20;
    pointer-events: none; /* non-interactive when hidden */
  }

  .nav__toggle {
    display: flex;
  }

  /* Mobile menu open state: slide down from top and full width */
  .nav__links.open {
    transform: translateY(0);
    background: rgba(10,10,10,0.98);
    padding-top: 18px;
    padding-bottom: 24px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    pointer-events: auto; /* make interactive */
  }
  .nav__links.open a {
    color: #fff;
    padding: 10px 8px;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  /* hide desktop inline language buttons on smaller screens and show the menu language item */
  .nav__langs { display: none; }
  .nav__lang-item { display: none; align-items: center; gap: 8px; }
  .nav__links.open .nav__lang-item { display: flex; width: 100%; justify-content: center; padding: 10px 8px; }
  .nav__links.open .nav__lang-item .lang-btn { padding: 10px 18px; background: transparent; border: 1px solid rgba(255,255,255,0.06); color: #fff; }

  .nav__toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav__toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav__toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Prevent body scroll when mobile menu open */
  .no-scroll {
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 36px 24px; /* augmenté pour espace supérieur au logo */
  }

  .nav__logo-img { margin-top: 12px; } /* plus d'espace en mobile */

  .nav__links {
    /* mobile: keep in flow but hidden via transform for smooth slide-down */
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 16px 24px;
    align-items: center;
    background: transparent;
    transform: translateY(-110%);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.25s;
    z-index: 20;
    pointer-events: none; /* non-interactive when hidden */
  }

  .nav__toggle {
    display: flex;
  }

  .hero__content {
    padding: 0 24px 60px;
  }

  .section {
    padding: 70px 24px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Keep text first on mobile (prevent image from coming before content) */
  .about__visual {
    order: 0;
  }

  .horaires__grid {
    grid-template-columns: 1fr;
  }

  .horaires__col:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding-right: 0;
    padding-bottom: 32px;
  }

  .horaires__col:last-child {
    padding-left: 0;
  }

  .cocktail {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* On mobile, show text before visual for the cocktail section */
  .cocktail__text {
    order: 1;
  }
  .cocktail__visual {
    order: 2;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 40px 24px;
  }

  /* Mobile menu open state: slide down from top and full width */
  .nav__links.open {
    transform: translateY(0);
    background: rgba(10,10,10,0.98);
    padding-top: 18px;
    padding-bottom: 24px;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    pointer-events: auto; /* make interactive */
  }
  .nav__links.open a {
    color: #fff;
    padding: 10px 8px;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  /* hide desktop inline language buttons on small screens and show the menu language item */
  .nav__langs { display: none; }
  .nav__lang-item { display: none; align-items: center; gap: 8px; }
  .nav__links.open .nav__lang-item { display: flex; width: 100%; justify-content: center; padding: 10px 8px; }
  .nav__links.open .nav__lang-item .lang-btn { padding: 10px 18px; background: transparent; border: 1px solid rgba(255,255,255,0.06); color: #fff; }

  .nav__toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav__toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav__toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Prevent body scroll when mobile menu open */
  .no-scroll {
    overflow: hidden;
  }
}

/* Back to top button */
#back-to-top {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  background: rgba(19,19,19,0.9);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1100;
  pointer-events: none;
}

#back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

#back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
}

#back-to-top:focus {
  outline: 3px solid rgba(201,168,76,0.18);
  outline-offset: 2px;
}

/* smaller on very small screens */
@media (max-width: 520px) {
  #back-to-top {
    right: 12px;
    bottom: 18px;
    width: 40px;
    height: 40px;
  }
}
